forked from dcai/airnotifier
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathupgrade.py
executable file
·131 lines (121 loc) · 6.17 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
#!/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
from pymongo import *
from bson import *
from constants import *
import tornado.options
from tornado.options import define, options
define("apns", default=(), help="APNs address and port")
define("pemdir", default="pemdir", help="Directory to store pems")
define("passwordsalt", default="d2o0n1g2s0h3e1n1g", help="Being used to make password hash")
define("mongohost", default="localhost", help="MongoDB host name")
define("mongoport", default=27017, help="MongoDB port")
define("mongodbname", default="airnotifier", help="MongoDB database name")
define("masterdb", default="airnotifier", help="MongoDB DB to store information")
if __name__ == "__main__":
tornado.options.parse_config_file("airnotifier.conf")
tornado.options.parse_command_line()
mongodb = Connection(options.mongohost, options.mongoport)
masterdb = mongodb[options.masterdb]
version_object = masterdb['options'].find_one({'name': 'version'})
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, safe=True, upsert=True)
## Adding device to token collections
db = mongodb[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, safe=True, upsert=True)
r = masterdb['options'].update({'name': 'version'}, {'$set': {'value': 20140315}}, safe=True, 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({'_id': appid}, app, safe=True, upsert=True)
masterdb['options'].update({'name': 'version'}, {'$set': {'value': 20140720}}, safe=True, 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 app.has_key('certfile'):
app['certfile'] = os.path.basename(app.get('certfile'))
if app.has_key('keyfile'):
app['keyfile'] = os.path.basename(app.get('keyfile'))
if app.has_key('mpnscertificatefile'):
app['mpnscertificatefile'] = os.path.basename(app.get('mpnscertificatefile'))
masterdb.applications.update({'_id': appid}, app, safe=True, upsert=True)
masterdb['options'].update({'name': 'version'}, {'$set': {'value': 20140814}}, safe=True, 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({'_id': appid}, app, safe=True, upsert=True)
masterdb['options'].update({'name': 'version'}, {'$set': {'value': 20140820}}, safe=True, upsert=True)
version_object = masterdb['options'].find_one({'name': 'version'})
version = version_object['value']
logging.info("You're using version: %d" % version)