-
-
Notifications
You must be signed in to change notification settings - Fork 190
/
upgrade.py
executable file
·241 lines (220 loc) · 9.6 KB
/
upgrade.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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# Copyright (c) 2012, Dongsheng Cai
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are met:
#
# * Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
# * Redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in the
# documentation and/or other materials provided with the distribution.
# * Neither the name of the Dongsheng Cai nor the names of its
# contributors may be used to endorse or promote products derived
# from this software without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
# DISCLAIMED. IN NO EVENT SHALL DONGSHENG CAI BE LIABLE FOR ANY
# DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
# (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
# ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
import logging
import tornado
import os
import pymongo
from bson import *
from constants import *
from tornado.options import define, options
define("mongouri", default="mongodb://localhost:27017/", help="MongoDB host name")
define("masterdb", default="airnotifier", help="MongoDB DB to store information")
define("appprefix", default="", help="DB name prefix")
if __name__ == "__main__":
curpath = os.path.dirname(os.path.realpath(__file__))
tornado.options.parse_config_file("%s/config.py" % curpath)
tornado.options.parse_command_line()
mongodb = pymongo.MongoClient(options.mongouri)
masterdb = mongodb[options.masterdb]
version_object = masterdb["options"].find_one({"name": "version"})
appprefix = options.appprefix
version = version_object["value"]
if version < 20140315:
apps = masterdb.applications.find()
for app in apps:
appname = app["shortname"]
appid = ObjectId(app["_id"])
## Repair application setting collection
if not "blockediplist" in app:
app["blockediplist"] = ""
if not "description" in app:
app["description"] = ""
if not "gcmprojectnumber" in app:
app["gcmprojectnumber"] = ""
if not "gcmapikey" in app:
app["gcmapikey"] = ""
masterdb.applications.update({"_id": appid}, app, upsert=True)
## Adding device to token collections
db = mongodb[appprefix + appname]
tokens = db["tokens"].find()
for token in tokens:
tokenid = ObjectId(token["_id"])
if not "device" in token:
token["device"] = DEVICE_TYPE_IOS
result = db["tokens"].update({"_id": tokenid}, token, upsert=True)
r = masterdb["options"].update(
{"name": "version"}, {"$set": {"value": 20140315}}, upsert=True
)
version_object = masterdb["options"].find_one({"name": "version"})
if version < 20140720:
apps = masterdb.applications.find()
for app in apps:
appname = app["shortname"]
appid = ObjectId(app["_id"])
## Repair application setting collection
if not "wnsclientid" in app:
app["wnsclientid"] = ""
if not "wnsclientsecret" in app:
app["wnsclientsecret"] = ""
if not "wnsaccesstoken" in app:
app["wnsaccesstoken"] = ""
if not "wnstokentype" in app:
app["wnstokentype"] = ""
if not "wnstokenexpiry" in app:
app["wnstokenexpiry"] = ""
masterdb.applications.update_one({"_id": appid}, app, upsert=True)
masterdb["options"].update_one(
{"name": "version"}, {"$set": {"value": 20140720}}, upsert=True
)
if version < 20140814:
## Don't store fullpath in db, only filename
import os
apps = masterdb.applications.find()
for app in apps:
appname = app["shortname"]
appid = ObjectId(app["_id"])
if "certfile" in app:
app["certfile"] = os.path.basename(app.get("certfile"))
if "keyfile" in app:
app["keyfile"] = os.path.basename(app.get("keyfile"))
if "mpnscertificatefile" in app:
app["mpnscertificatefile"] = os.path.basename(
app.get("mpnscertificatefile")
)
masterdb.applications.update_one({"_id": appid}, app, upsert=True)
masterdb["options"].update_one(
{"name": "version"}, {"$set": {"value": 20140814}}, upsert=True
)
if version < 20140820:
apps = masterdb.applications.find()
for app in apps:
appname = app["shortname"]
appid = ObjectId(app["_id"])
## Repair application setting collection
if not "clickatellusername" in app:
app["clickatellusername"] = ""
if not "clickatellpassword" in app:
app["clickatellpassword"] = ""
if not "clickatellappid" in app:
app["clickatellappid"] = ""
masterdb.applications.update_one({"_id": appid}, app, upsert=True)
masterdb["options"].update_one(
{"name": "version"}, {"$set": {"value": 20140820}}, upsert=True
)
if version < 20151101:
apps = masterdb.applications.find()
for app in apps:
appname = app["shortname"]
db = mongodb[appprefix + appname]
indexes = [("created", DESCENDING)]
logging.info(
("Adding index to %s%s['tokens'].%s" % (appprefix, appname, "created"))
)
db["tokens"].create_index(indexes)
logging.info(
("Adding index to %s%s['logs'].%s" % (appprefix, appname, "created"))
)
db["logs"].create_index(indexes)
masterdb["options"].update_one(
{"name": "version"}, {"$set": {"value": 20151101}}, upsert=True
)
if version < 20190125:
masterdb["options"].update_one(
{"name": "version"}, {"$set": {"value": 20190125}}, upsert=True
)
if version < 20190825:
users = masterdb.managers.find()
for user in users:
# appname = app["shortname"]
# Repair application setting collection
if not "orgid" in user:
masterdb.managers.find_one_and_update(
{"username": user["username"]}, {"$set": {"orgid": 0}}
)
if not "email" in user:
masterdb.managers.find_one_and_update(
{"username": user["username"]},
{"$set": {"email": user["username"]}},
)
apps = masterdb.applications.find()
for app in apps:
if not "orgid" in app:
masterdb.applications.find_one_and_update(
{"shortname": app["shortname"]}, {"$set": {"orgid": 0}}
)
# if not "clickatellpassword" in app:
# app["clickatellpassword"] = ""
# if not "clickatellappid" in app:
# app["clickatellappid"] = ""
# masterdb["options"].update_one(
# {"name": "version"}, {"$set": {"value": 20190814}}, upsert=True
# )
masterdb["options"].update_one(
{"name": "version"}, {"$set": {"value": 20190825}}, upsert=True
)
if version < 20191117:
masterdb.managers.ensure_index("email", unique=True)
try:
masterdb.managers.drop_index("user")
except Exception as ex:
logging.error(ex)
masterdb["options"].update_one(
{"name": "version"}, {"$set": {"value": 20191117}}, upsert=True
)
if version < 20191213.01:
apps = masterdb.applications.find()
for app in apps:
appname = app["shortname"]
appid = ObjectId(app["_id"])
if not KEY_APNS_AUTHKEY in app:
app[KEY_APNS_AUTHKEY] = ""
if not KEY_APNS_BUNDLEID in app:
app[KEY_APNS_BUNDLEID] = ""
if not KEY_APNS_KEYID in app:
app[KEY_APNS_KEYID] = ""
if not KEY_APNS_TEAMID in app:
app[KEY_APNS_TEAMID] = ""
masterdb.applications.update({"_id": appid}, app, upsert=True)
masterdb.applications.update(
{"_id": appid},
{
"$unset": {
"gcmprojectnumber": "",
"gcmapikey": "",
"connections": "",
"enableapns": "",
"environment": "",
}
},
upsert=True,
)
masterdb["options"].update_one(
{"name": "version"}, {"$set": {"value": 20191213.01}}, upsert=True
)
version_object = masterdb["options"].find_one({"name": "version"})
version = version_object["value"]
logging.info("Upgraded, you're using version: %d" % version)