forked from kincl/oncall
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanage.py
49 lines (39 loc) · 1.1 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
from flask import url_for
from flask_script import Manager
from main import create_app
from database import db
from api.models import User
app = create_app()
manager = Manager(app)
@manager.command
def init_db():
''' Initialize the database '''
with app.test_request_context():
db.create_all()
@manager.command
def create_superuser(user):
''' create user '''
with app.test_request_context():
db.session.add(User(user, 'SuperUser'))
db.session.commit()
# @manager.command
# def sync_ldap():
# ''' Perform an LDAP sync '''
# sync_users()
# sync_teams()
@manager.command
def list_routes():
import urllib
output = []
for rule in app.url_map.iter_rules():
options = {}
for arg in rule.arguments:
options[arg] = "[{0}]".format(arg)
methods = ','.join(rule.methods)
url = url_for(rule.endpoint, **options)
line = urllib.unquote("{:50s} {:20s} {}".format(rule.endpoint, methods, url))
output.append(line)
for line in sorted(output):
print line
if __name__ == "__main__":
manager.run()