-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathmanage.py
190 lines (157 loc) · 5.97 KB
/
manage.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
import sys
import traceback
from email import message_from_file
from flask.ext.script import Command
from flask.ext.script import Manager
from flask.ext.script import Option
from flask.ext.script.commands import InvalidCommand
from flask.ext.migrate import Migrate
from flask.ext.migrate import MigrateCommand
from flask.ext.security.utils import encrypt_password
from app import app
from app import db
from app import user_datastore
from app.models import User
from app.models import Project
from mailparse import import_mail
from mailparse import import_mailbox
class CreateProject(Command):
"""Create a new project"""
option_list = (
Option('--name', '-n', required=True, dest='name', type=unicode,
help="Set the project name to NAME."),
Option('--listid', '-i', required=True, dest='listid', type=unicode,
help="Set the project listid to LISTID."),
Option('--linkname', '-l', required=True, dest="linkname",
type=unicode,
help="Set the project linkname to LINKNAME."),
Option('--description', '-d', required=True, dest='description',
type=unicode,
help="Set the project description to DESCRIPTION."),
)
def run(self, name, listid, linkname, description):
p = Project(name=name, listid=listid, linkname=linkname,
description=description)
db.session.add(p)
db.session.commit()
class CreateUser(Command):
"""Create a new user account"""
option_list = (
Option('--name', '-n', required=True, dest='name', type=unicode,
help="Set the user name to NAME."),
Option('--email', '-e', required=True, dest='email', type=unicode,
help="Set the user's email address to EMAIL."),
Option('--password', '-p', required=True, dest="password",
type=unicode,
help="Set the user's password to PASSWORD."),
Option('--role', '-r', required=False, dest="role", type=unicode,
help="Role (admin or committer)")
)
_roles = {
'admin': lambda: user_datastore.find_or_create_role(
name='admin',
description='Plaid administrator.'
),
'committer': lambda: user_datastore.find_or_create_role(
name='committer',
description='Patch committer.'
)
}
def _get_or_create_role(self, role):
r = self._roles[role]
return r()
def run(self, name, email, password, role):
u = User(name=name,
password=encrypt_password(password),
email=email)
if role is not None:
try:
r = self._get_or_create_role(role)
user_datastore.add_role_to_user(u, r)
except:
raise InvalidCommand("The role %s is not supported."
% (role))
print('Creating user %s' % u)
db.session.add(u)
db.session.commit()
class ImportMails(Command):
"""Import projects data from a mailing list or a mailbox"""
option_list = (
Option('--mailbox', '-m', dest='mailbox'),
Option('--project', '-p', dest='project',
help="Override the project"),
)
def import_mail_from_stdin(self, project):
mail = message_from_file(sys.stdin)
import_mail(mail, project)
def run(self, mailbox, project):
if mailbox:
try:
import_mailbox(mailbox, project)
except Exception as e:
traceback.print_exc(e)
else:
self.import_mail_from_stdin(project)
migrate = Migrate(app, db)
manager = Manager(app)
user_manager = Manager(usage="Create/Edit/Drop users")
user_manager.add_command('create', CreateUser())
@user_manager.command
def drop(name):
"Drop the user from the database"
u = User.query.filter_by(name=name).first()
db.session.delete(u)
db.session.commit()
@user_manager.command
def list():
"List all the users"
print("{0:12} {1:16} {2:5}".format("Name", "Email", "Role"))
for u in User.query.all():
print("{0:12} {1:16} {2:5}".format(u.name, u.email, u.role))
project_manager = Manager(usage="Create/Edit/Drop projects")
project_manager.add_command('create', CreateProject())
@project_manager.command
def drop(name):
"Drop the project from the database"
p = Project.query.filter_by(name=name).first()
db.session.delete(p)
db.session.commit()
@project_manager.command
def list():
"List all the projects"
print("{0:12} {1:30} {2:10}".format("Name", "List-Id", "Maintainers"))
for p in Project.query.all():
print("{0:12} {1:30} {2:10}".format(p.name, p.listid, p.maintainers))
@project_manager.option('-a', '--add', dest='add', default='',
help="Set the users as project maintainers")
@project_manager.option('-r', '--remove', dest='remove', default='',
help="Remove the users as project mantainers")
@project_manager.command
def maintainer(name, **kwargs):
"Manage project maintainers"
p = Project.query.filter_by(name=name).first()
add = (name for name in kwargs['add'].split(',') if name)
for name in add:
u = User.query.filter_by(name=name).first()
if not u:
raise InvalidCommand("Cannot add %s: user not exists" % (name))
try:
p.maintainers.append(u)
except:
pass
remove = (name for name in kwargs['remove'].split(',') if name)
for name in remove:
u = User.query.filter_by(name=name).first()
if not u:
raise InvalidCommand("Cannot remove %s: user not exists" % (name))
try:
p.maintainers.remove(u)
except:
pass
db.session.commit()
manager.add_command('db', MigrateCommand)
manager.add_command('user', user_manager)
manager.add_command('project', project_manager)
manager.add_command('import', ImportMails())
if __name__ == '__main__':
manager.run()