forked from fossasia/open-event-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
create_db.py
49 lines (43 loc) · 1.59 KB
/
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
39
40
41
42
43
44
45
46
47
48
49
import argparse
import getpass
import re
from flask_migrate import stamp
from app.instance import current_app
from app.models import db
from populate_db import populate
from tests.all.integration.auth_helper import create_super_admin
def create_default_user(email, password):
print("Your login is 'super_admin'.")
if not email:
ask_email = True
while ask_email:
email = input("Enter email for super_admin : ")
if not re.match(r'[^@]+@[^@]+\.[^@]+', email):
print('\nInvalid email address\n')
continue
ask_email = False
if not password:
ask_password = True
while ask_password:
password = getpass.getpass("Enter password for super_admin : ")
if len(password) < 8:
print('\nPassword should have minimum 8 characters')
continue
repassword = getpass.getpass("Enter your password again to confirm : ")
if password != repassword:
print('\nPassword did not match')
continue
ask_password = False
create_super_admin(email, password)
if __name__ == "__main__":
parser = argparse.ArgumentParser()
parser.add_argument("email", nargs='?', help="The email for super_admin.", default='')
parser.add_argument(
"password", nargs='?', help="The password for super_admin.", default=''
)
parsed = parser.parse_args()
with current_app.app_context():
db.create_all()
stamp()
create_default_user(parsed.email, parsed.password)
populate()