-
Notifications
You must be signed in to change notification settings - Fork 23
/
migrate.py
executable file
·247 lines (204 loc) · 8.27 KB
/
migrate.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
#!/usr/bin/env python3
"""
This program is free software: you can redistribute it and/or modify it under
the terms of the GNU General Public License as published by the Free Software
Foundation, either version 3 of the License, or (at your option) any later
version.
This program is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with
this program. If not, see <http://www.gnu.org/licenses/>.
"""
__author__ = "Armin Felder"
__contact__ = "armin.felder@osalliance.com"
__copyright__ = "Copyright 2019, Armin Felder"
__credits__ = ["all contributers"]
__date__ = "2019.05.05"
__deprecated__ = False
__email__ = "armin.felder@osalliance.com"
__license__ = "GPLv3"
__maintainer__ = "Armin Felder"
__status__ = "Production"
__version__ = "1.0.0"
from pymongo import MongoClient
import gridfs
from pprint import pprint
from mimetypes import MimeTypes
import os
import sys
import getopt
import csv
import argparse
import urllib.parse
import os
class FileSystemStore():
def __init__(self, migrator, directory):
self.migrator = migrator
self.outDir = directory
def put(self, filename, data, entry):
# Sanitize filename in ASCII
filename = "".join([c for c in filename if c.isalpha() or c.isdigit() or c in [' ','.']]).rstrip()
file = open(self.outDir + "/" + filename, "wb")
file.write(data)
file.close()
return ""
class AmazonS3Store():
def __init__(self, migrator, bucket):
self.migrator = migrator
self.bucket = bucket
import boto3
self.s3 = boto3.resource('s3')
self.uniqueID = migrator.uniqueid()
def encodeURI(self, str):
return urllib.parse.quote(str, safe='~@#$&()*!+=:;,.?/\'')
def put(self, filename, data, entry):
key = self.uniqueID + "/uploads/" + entry['rid'] + "/" + entry[
'userId'] + "/" + entry['_id']
if 'type' in entry.keys():
self.s3.Object(self.bucket, key).put(
Body=data,
ContentType=entry['type'],
ContentDisposition='inline; filename="' + self.encodeURI(entry['name']) + '"')
else:
self.s3.Object(self.bucket, key).put(
Body=data,
ContentDisposition='inline; filename="' + self.encodeURI(entry['name']) + '"')
return key
class Migrator():
def __init__(self,
db="rocketchat",
host="localhost",
username="rocketchat",
password="rocketchat",
port=27017,
logfile='./log.csv'):
self.logfile = logfile
self.log = list()
self.db = db
self.host = host
self.username = username
self.password = password
self.port = port
def getdb(self):
return MongoClient(host=self.host, port=self.port, username=self.username, password=self.password, retryWrites=False)[self.db]
def dumpfiles(self, collection, store):
mime = MimeTypes()
db = self.getdb()
uploadsCollection = db[collection]
fs = gridfs.GridFSBucket(db, bucket_name=collection)
uploads = uploadsCollection.find({}, no_cursor_timeout=True).batch_size(50)
i = 0
for upload in uploads:
if upload["store"] == "GridFS:Uploads":
gridfsId = upload['_id']
if "complete" in upload and upload["complete"] is True:
for res in fs.find({"_id": gridfsId}):
data = res.read()
filename = gridfsId
# Only use the extension if it is in the db
if upload.get("extension"):
filename = filename + "." + upload["extension"]
i += 1
print("%i. Dumping %s %s" % (i, gridfsId,
upload['name']))
key = store.put(filename, data, upload)
self.addtolog({
"id": gridfsId,
"file": filename,
"collection": collection,
"key": key
})
else:
print("[Warning] Skipping incomplete upload %s" % (gridfsId), file=sys.stderr)
self.writelog()
def addtolog(self, entry):
self.log.append(entry)
def writelog(self):
file = open(self.logfile, "a")
for entry in self.log:
line = entry["id"] + "," + entry["file"] + "," + entry[
"collection"] + ",log" + "," + entry[
"key"] + "\n"
file.write(line)
file.close()
def dedup(self):
pass
def uniqueid(self):
db = self.getdb()
row = db.rocketchat_settings.find_one({"_id": "uniqueID"})
return row['value']
def updateDb(self, target):
with open(self.logfile) as csvfile:
db = self.getdb()
reader = csv.reader(csvfile, delimiter=',')
i = 0
for row in reader:
dbId = row[0]
filename = row[1]
collectionName = row[2]
key = row[3]
collection = db[collectionName]
update_data = {
"store":
target + ":Uploads",
"path":
"/ufs/" + target + ":Uploads/" + dbId + "/" + filename,
"url":
"/ufs/" + target + ":Uploads/" + dbId + "/" + filename
}
if target == "AmazonS3":
update_data['AmazonS3'] = {"path": key}
i += 1
print("%i. Updating record %s" % (i, dbId))
collection.update_one({"_id": dbId}, {"$set": update_data})
def removeBlobs(self):
with open(self.logfile) as csvfile:
db = self.getdb()
reader = csv.reader(csvfile, delimiter=',')
i = 0
for row in reader:
dbId = row[0]
collectionName = row[2]
fs = gridfs.GridFSBucket(db, bucket_name=collectionName)
i += 1
print("%i. Removing blob %s" % (i, dbId))
try:
fs.delete(dbId)
except:
continue
if __name__ == "__main__":
parser = argparse.ArgumentParser(description='Process some integers.')
parser.add_argument('-s', '--host', help='mongodb host')
parser.add_argument('-p', '--port', help='mongodb port')
parser.add_argument('-r', '--database', help='database')
parser.add_argument('-c', '--command', help='[dump|updatedb|removeblobs]')
parser.add_argument(
'-t', '--target', help='AmazonS3|FileSystem', default='FileSystem')
parser.add_argument(
'-d', '--destination', help='s3 bucket|output directory')
parser.add_argument(
'-l', '--log-file', help='log file path', default='./log.csv')
parser.add_argument(
'--user', help='db user', default='rocketchat')
parser.add_argument(
'--password', help='db password', default='rocketchat')
parser.set_defaults(host="localhost", port=27017, database="rocketchat")
args = parser.parse_args()
obj = Migrator(args.database, args.host, args.user, args.password, int(args.port), args.log_file)
if args.command == "dump":
if args.target == "AmazonS3":
if args.destination == None:
raise Exception("S3 bucket name cannot be empty")
store = AmazonS3Store(obj, args.destination)
else:
if args.destination == None or os.path.isdir(
args.destination) == False:
raise Exception(
"An existing directory is required for saving files")
store = FileSystemStore(obj, args.destination)
obj.dumpfiles("rocketchat_uploads", store)
if args.command == "updatedb":
obj.updateDb(args.target)
if args.command == "removeblobs":
obj.removeBlobs()