Files
@ c60eeeb8ac4d
Branch filter:
Location: kallithea/pylons_app/lib/db_manage.py - annotation
c60eeeb8ac4d
4.1 KiB
text/x-python
fixes #5, links, are not visible highlited in top breadcrumbs
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 | 3782a6d698af 3782a6d698af 3782a6d698af 3782a6d698af 3782a6d698af 3782a6d698af 3782a6d698af 3782a6d698af 3782a6d698af 3782a6d698af 3782a6d698af 3782a6d698af 3782a6d698af 3782a6d698af 3782a6d698af 3782a6d698af 3782a6d698af 3782a6d698af 3782a6d698af 3782a6d698af 3782a6d698af 3782a6d698af 3782a6d698af 3782a6d698af 3782a6d698af 3782a6d698af b18f89d6d17f bad9ccac26b7 bad9ccac26b7 bad9ccac26b7 bad9ccac26b7 bad9ccac26b7 b18f89d6d17f b18f89d6d17f b18f89d6d17f b18f89d6d17f b18f89d6d17f 736078908f37 736078908f37 69a29242ba61 69a29242ba61 69a29242ba61 69a29242ba61 69a29242ba61 69a29242ba61 163464441e0d c6526b7531e9 69a29242ba61 69a29242ba61 a0116e944da1 69a29242ba61 c6526b7531e9 c6526b7531e9 9d64df490248 c6526b7531e9 c6526b7531e9 69a29242ba61 a0116e944da1 9d64df490248 69a29242ba61 69a29242ba61 c6526b7531e9 69a29242ba61 c6526b7531e9 c6526b7531e9 c6526b7531e9 c6526b7531e9 c6526b7531e9 69a29242ba61 69a29242ba61 9d64df490248 9d64df490248 c6526b7531e9 69a29242ba61 736078908f37 c6526b7531e9 c6526b7531e9 69a29242ba61 c6526b7531e9 c6526b7531e9 c6526b7531e9 c6526b7531e9 69a29242ba61 c6526b7531e9 a0116e944da1 c6526b7531e9 c6526b7531e9 0d68a749db33 a4be1ebb214f c3aeb819d9ab c6526b7531e9 c6526b7531e9 c6526b7531e9 c6526b7531e9 c6526b7531e9 c6526b7531e9 c6526b7531e9 c6526b7531e9 c6526b7531e9 163464441e0d b18f89d6d17f 7c4fa2a66195 7c4fa2a66195 b18f89d6d17f b18f89d6d17f b18f89d6d17f b18f89d6d17f b18f89d6d17f b18f89d6d17f b18f89d6d17f b18f89d6d17f b18f89d6d17f b18f89d6d17f b18f89d6d17f b18f89d6d17f b18f89d6d17f b18f89d6d17f b18f89d6d17f b18f89d6d17f 163464441e0d 69a29242ba61 c6526b7531e9 b18f89d6d17f b18f89d6d17f 163464441e0d 163464441e0d | #!/usr/bin/env python
# encoding: utf-8
# database managment for hg app
# Copyright (C) 2009-2010 Marcin Kuzminski <marcin@python-works.com>
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; version 2
# of the License or (at your opinion) any later version of the license.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
# MA 02110-1301, USA.
"""
Created on April 10, 2010
database managment and creation for hg app
@author: marcink
"""
from os.path import dirname as dn, join as jn
import os
import sys
ROOT = dn(dn(dn(os.path.realpath(__file__))))
sys.path.append(ROOT)
from pylons_app.lib.auth import get_crypt_password
from pylons_app.model import init_model
from pylons_app.model.db import User, Permission
from pylons_app.model.meta import Session, Base
from sqlalchemy.engine import create_engine
import logging
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' % jn(ROOT, self.dbname)
engine = create_engine(dburi, echo=log_sql)
init_model(engine)
self.sa = Session()
self.db_exists = False
def check_for_db(self, override):
log.info('checking for exisiting db')
if os.path.isfile(jn(ROOT, self.dbname)):
self.db_exists = True
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")
if self.db_exists:
os.remove(jn(ROOT, self.dbname))
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 = User()
new_user.username = username
new_user.password = get_crypt_password(password)
new_user.name = 'Admin'
new_user.lastname = 'Admin'
new_user.email = 'admin@localhost'
new_user.admin = admin
new_user.active = True
try:
self.sa.add(new_user)
self.sa.commit()
except:
self.sa.rollback()
raise
def create_permissions(self):
#module.(access|create|change|delete)_[name]
perms = [('admin.access_home', 'Access to admin user view'),
]
for p in perms:
new_perm = Permission()
new_perm.permission_name = p[0]
new_perm.permission_longname = p[1]
try:
self.sa.add(new_perm)
self.sa.commit()
except:
self.sa.rollback()
raise
if __name__ == '__main__':
dbmanage = DbManage(log_sql=True)
dbmanage.create_tables(override=True)
dbmanage.admin_prompt()
dbmanage.create_permissions()
|