##// END OF EJS Templates
added jump to revision from file history.
added jump to revision from file history.

File last commit:

r392:b27d32cb default
r413:0ebec9b8 default
Show More
db_manage.py
205 lines | 6.8 KiB | text/x-python | PythonLexer
licensing updates, code cleanups
r252 #!/usr/bin/env python
# encoding: utf-8
# database managment for hg app
# Copyright (C) 2009-2010 Marcin Kuzminski <marcin@python-works.com>
updated db manage script, and remove broken test
r351 #
licensing updates, code cleanups
r252 # 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
"""
Adde draft for permissions systems, made all needed decorators, and checks. For future usage in the system.
r239 from os.path import dirname as dn, join as jn
fixed import errors on db_manage
r249 import os
import sys
updated installation instruction, made more user friendly way of creating all needed configs. All is done now from paster setup-app
r327 import uuid
fixed import errors on db_manage
r249 ROOT = dn(dn(dn(os.path.realpath(__file__))))
sys.path.append(ROOT)
Adde draft for permissions systems, made all needed decorators, and checks. For future usage in the system.
r239 from pylons_app.lib.auth import get_crypt_password
updated db manage script, and remove broken test
r351 from pylons_app.lib.utils import ask_ok
Adde draft for permissions systems, made all needed decorators, and checks. For future usage in the system.
r239 from pylons_app.model import init_model
updated hg-app db manage and global settings
r345 from pylons_app.model.db import User, Permission, HgAppUi, HgAppSettings
Added application settings, are now customizable from database...
r350 from pylons_app.model import meta
Adde draft for permissions systems, made all needed decorators, and checks. For future usage in the system.
r239 from sqlalchemy.engine import create_engine
Marcin Kuzminski
added db_manage script
r59 import logging
updated db manage script, and remove broken test
r351 log = logging.getLogger(__name__)
Marcin Kuzminski
updated db manage script for creating interactive admin account and db
r66
rewritten db manage script to use sqlalchemy. Fixed sqlalchemy models to more generic.
r226 class DbManage(object):
db manage added more logging, set custom logger and add optional print sql statments
r229 def __init__(self, log_sql):
self.dbname = 'hg_app.db'
changed naming convention for db modules.
r234 dburi = 'sqlite:////%s' % jn(ROOT, self.dbname)
db manage added more logging, set custom logger and add optional print sql statments
r229 engine = create_engine(dburi, echo=log_sql)
rewritten db manage script to use sqlalchemy. Fixed sqlalchemy models to more generic.
r226 init_model(engine)
Added application settings, are now customizable from database...
r350 self.sa = meta.Session
fixed bug when there was no dbfile, and dbmanage raise an exception
r243 self.db_exists = False
rewritten db manage script to use sqlalchemy. Fixed sqlalchemy models to more generic.
r226
def check_for_db(self, override):
db manage added more logging, set custom logger and add optional print sql statments
r229 log.info('checking for exisiting db')
changed naming convention for db modules.
r234 if os.path.isfile(jn(ROOT, self.dbname)):
fixed bug when there was no dbfile, and dbmanage raise an exception
r243 self.db_exists = True
db manage added more logging, set custom logger and add optional print sql statments
r229 log.info('database exisist')
if not override:
rewritten db manage script to use sqlalchemy. Fixed sqlalchemy models to more generic.
r226 raise Exception('database already exists')
db manage added more logging, set custom logger and add optional print sql statments
r229
rewritten db manage script to use sqlalchemy. Fixed sqlalchemy models to more generic.
r226 def create_tables(self, override=False):
"""
Create a auth database
"""
self.check_for_db(override)
db manage added more logging, set custom logger and add optional print sql statments
r229 if override:
log.info("database exisist and it's going to be destroyed")
updated db manage script, and remove broken test
r351 destroy = ask_ok('Are you sure to destroy old database ? [y/n]')
if not destroy:
sys.exit()
if self.db_exists and destroy:
fixed bug when there was no dbfile, and dbmanage raise an exception
r243 os.remove(jn(ROOT, self.dbname))
updated db manage script, and remove broken test
r351 checkfirst = not override
meta.Base.metadata.create_all(checkfirst=checkfirst)
db manage added more logging, set custom logger and add optional print sql statments
r229 log.info('Created tables for %s', self.dbname)
Marcin Kuzminski
added db_manage script
r59
rewritten db manage script to use sqlalchemy. Fixed sqlalchemy models to more generic.
r226 def admin_prompt(self):
import getpass
db manage added more logging, set custom logger and add optional print sql statments
r229 username = raw_input('Specify admin username:')
rewritten db manage script to use sqlalchemy. Fixed sqlalchemy models to more generic.
r226 password = getpass.getpass('Specify admin password:')
self.create_user(username, password, True)
Made config file free configuration based on database and capable of beeing manage via application settings + some code cleanups
r341
def config_prompt(self):
updated hg-app db manage and global settings
r345 log.info('Setting up repositories config')
rewritten db manage script to use sqlalchemy. Fixed sqlalchemy models to more generic.
r226
Made config file free configuration based on database and capable of beeing manage via application settings + some code cleanups
r341 path = raw_input('Specify valid full path to your repositories'
updated db manage script, and remove broken test
r351 ' you can change this later in application settings:')
Made config file free configuration based on database and capable of beeing manage via application settings + some code cleanups
r341
if not os.path.isdir(path):
log.error('You entered wrong path')
sys.exit()
Implemented hooks system,...
r392 hooks1 = HgAppUi()
hooks1.ui_section = 'hooks'
hooks1.ui_key = 'changegroup.update'
hooks1.ui_value = 'hg update >&2'
Made config file free configuration based on database and capable of beeing manage via application settings + some code cleanups
r341
Implemented hooks system,...
r392 hooks2 = HgAppUi()
hooks2.ui_section = 'hooks'
hooks2.ui_key = 'changegroup.repo_size'
hooks2.ui_value = 'python:pylons_app.lib.hooks.repo_size'
Made config file free configuration based on database and capable of beeing manage via application settings + some code cleanups
r341 web1 = HgAppUi()
web1.ui_section = 'web'
web1.ui_key = 'push_ssl'
web1.ui_value = 'false'
web2 = HgAppUi()
web2.ui_section = 'web'
web2.ui_key = 'allow_archive'
web2.ui_value = 'gz zip bz2'
web3 = HgAppUi()
web3.ui_section = 'web'
web3.ui_key = 'allow_push'
web3.ui_value = '*'
web4 = HgAppUi()
web4.ui_section = 'web'
web4.ui_key = 'baseurl'
web4.ui_value = '/'
paths = HgAppUi()
paths.ui_section = 'paths'
paths.ui_key = '/'
paths.ui_value = os.path.join(path, '*')
cleared global application settings....
r381 hgsettings1 = HgAppSettings()
hgsettings1.app_settings_name = 'realm'
hgsettings1.app_settings_value = 'hg-app authentication'
hgsettings2 = HgAppSettings()
hgsettings2.app_settings_name = 'title'
hgsettings2.app_settings_value = 'hg-app'
updated hg-app db manage and global settings
r345
Made config file free configuration based on database and capable of beeing manage via application settings + some code cleanups
r341 try:
Implemented hooks system,...
r392 self.sa.add(hooks1)
self.sa.add(hooks2)
Made config file free configuration based on database and capable of beeing manage via application settings + some code cleanups
r341 self.sa.add(web1)
self.sa.add(web2)
self.sa.add(web3)
self.sa.add(web4)
self.sa.add(paths)
cleared global application settings....
r381 self.sa.add(hgsettings1)
self.sa.add(hgsettings2)
Made config file free configuration based on database and capable of beeing manage via application settings + some code cleanups
r341 self.sa.commit()
except:
self.sa.rollback()
raise
log.info('created ui config')
rewritten db manage script to use sqlalchemy. Fixed sqlalchemy models to more generic.
r226 def create_user(self, username, password, admin=False):
first permissions commit: added permission managment on repository edit. Changed db rmissions, validators.
r296
log.info('creating default user')
#create default user for handling default permissions.
def_user = User()
def_user.username = 'default'
updated installation instruction, made more user friendly way of creating all needed configs. All is done now from paster setup-app
r327 def_user.password = get_crypt_password(str(uuid.uuid1())[:8])
first permissions commit: added permission managment on repository edit. Changed db rmissions, validators.
r296 def_user.name = 'default'
def_user.lastname = 'default'
updated installation instruction, made more user friendly way of creating all needed configs. All is done now from paster setup-app
r327 def_user.email = 'default@default.com'
first permissions commit: added permission managment on repository edit. Changed db rmissions, validators.
r296 def_user.admin = False
def_user.active = False
db manage added more logging, set custom logger and add optional print sql statments
r229 log.info('creating administrator user %s', username)
changed naming convention for db modules.
r234 new_user = User()
rewritten db manage script to use sqlalchemy. Fixed sqlalchemy models to more generic.
r226 new_user.username = username
new_user.password = get_crypt_password(password)
first permissions commit: added permission managment on repository edit. Changed db rmissions, validators.
r296 new_user.name = 'Hg'
updated db manage with some defaults
r262 new_user.lastname = 'Admin'
typo fix
r263 new_user.email = 'admin@localhost'
rewritten db manage script to use sqlalchemy. Fixed sqlalchemy models to more generic.
r226 new_user.admin = admin
new_user.active = True
try:
Made config file free configuration based on database and capable of beeing manage via application settings + some code cleanups
r341 self.sa.add(def_user)
rewritten db manage script to use sqlalchemy. Fixed sqlalchemy models to more generic.
r226 self.sa.add(new_user)
self.sa.commit()
except:
self.sa.rollback()
raise
Marcin Kuzminski
updated db manage script for creating interactive admin account and db
r66
Adde draft for permissions systems, made all needed decorators, and checks. For future usage in the system.
r239 def create_permissions(self):
small fixes
r240 #module.(access|create|change|delete)_[name]
first permissions commit: added permission managment on repository edit. Changed db rmissions, validators.
r296 #module.(read|write|owner)
perms = [('repository.none', 'Repository no access'),
('repository.read', 'Repository read access'),
('repository.write', 'Repository write access'),
('repository.admin', 'Repository admin access'),
routes python 2.5 compatible...
r371 ('repository.create', 'Repository create'),
added permission functions to webhelpers, updated dbmanage permissions
r307 ('hg.admin', 'Hg Administrator'),
routes python 2.5 compatible...
r371 ]
Adde draft for permissions systems, made all needed decorators, and checks. For future usage in the system.
r239
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