forked from fossasia/open-event-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcreate_db.py
38 lines (29 loc) · 952 Bytes
/
create_db.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
import re
import sys
from getpass import getpass
from app import current_app
from flask.ext.migrate import stamp
from app.helpers.data import DataManager
from app.models import db
from populate_db import populate
def _validate_email(email):
if not re.match(r'[^@]+@[^@]+\.[^@]+', email):
print '\nInvalid email address'
sys.exit(1)
def _validate_password(password):
if len(password) < 4:
print '\nPassword should have minimum 4 characters'
sys.exit(1)
def create_default_user():
print "Your login is 'super_admin'."
email = raw_input("Enter email for super_admin : ")
_validate_email(email)
password = getpass("Enter password for super_admin : ")
_validate_password(password)
DataManager.create_super_admin(email, password)
if __name__ == "__main__":
with current_app.app_context():
db.create_all()
stamp()
create_default_user()
populate()