Files
@ 69a29242ba61
Branch filter:
Location: kallithea/pylons_app/lib/db_manage.py - annotation
69a29242ba61
2.3 KiB
text/x-python
db manage added more logging, set custom logger and add optional print sql statments
736078908f37 c6526b7531e9 c6526b7531e9 736078908f37 c49ebe560af2 c49ebe560af2 c49ebe560af2 c49ebe560af2 c6526b7531e9 69a29242ba61 736078908f37 c6526b7531e9 c6526b7531e9 736078908f37 69a29242ba61 69a29242ba61 69a29242ba61 69a29242ba61 69a29242ba61 69a29242ba61 163464441e0d c6526b7531e9 69a29242ba61 69a29242ba61 69a29242ba61 69a29242ba61 c6526b7531e9 c6526b7531e9 c6526b7531e9 c6526b7531e9 69a29242ba61 69a29242ba61 69a29242ba61 69a29242ba61 c6526b7531e9 69a29242ba61 c6526b7531e9 c6526b7531e9 c6526b7531e9 c6526b7531e9 c6526b7531e9 69a29242ba61 69a29242ba61 c6526b7531e9 69a29242ba61 736078908f37 c6526b7531e9 c6526b7531e9 69a29242ba61 c6526b7531e9 c6526b7531e9 c6526b7531e9 c6526b7531e9 69a29242ba61 c6526b7531e9 c6526b7531e9 c6526b7531e9 c6526b7531e9 c6526b7531e9 c6526b7531e9 c6526b7531e9 c6526b7531e9 c6526b7531e9 c6526b7531e9 c6526b7531e9 c6526b7531e9 c6526b7531e9 163464441e0d 163464441e0d 69a29242ba61 c6526b7531e9 c6526b7531e9 163464441e0d 163464441e0d | import logging
from os.path import dirname as dn
from sqlalchemy.engine import create_engine
import os
import sys
ROOT = dn(dn(dn(os.path.realpath(__file__))))
sys.path.append(ROOT)
from pylons_app.model.db import Users
from pylons_app.model.meta import Session, Base
from pylons_app.lib.auth import get_crypt_password
from pylons_app.model import init_model
log = logging.getLogger('db manage')
log.setLevel(logging.DEBUG)
console_handler = logging.StreamHandler()
console_handler.setFormatter(logging.Formatter("%(asctime)s.%(msecs)03d"
" %(levelname)-5.5s [%(name)s] %(message)s"))
log.addHandler(console_handler)
class DbManage(object):
def __init__(self, log_sql):
self.dbname = 'hg_app.db'
dburi = 'sqlite:////%s' % os.path.join(ROOT, self.dbname)
engine = create_engine(dburi, echo=log_sql)
init_model(engine)
self.sa = Session()
def check_for_db(self, override):
log.info('checking for exisiting db')
if os.path.isfile(os.path.join(ROOT, self.dbname)):
log.info('database exisist')
if not override:
raise Exception('database already exists')
def create_tables(self, override=False):
"""
Create a auth database
"""
self.check_for_db(override)
if override:
log.info("database exisist and it's going to be destroyed")
Base.metadata.create_all(checkfirst=override)
log.info('Created tables for %s', self.dbname)
def admin_prompt(self):
import getpass
username = raw_input('Specify admin username:')
password = getpass.getpass('Specify admin password:')
self.create_user(username, password, True)
def create_user(self, username, password, admin=False):
log.info('creating administrator user %s', username)
new_user = Users()
new_user.username = username
new_user.password = get_crypt_password(password)
new_user.admin = admin
new_user.active = True
try:
self.sa.add(new_user)
self.sa.commit()
except:
self.sa.rollback()
raise
if __name__ == '__main__':
dbmanage = DbManage(log_sql=True)
dbmanage.create_tables(override=True)
dbmanage.admin_prompt()
|