##// END OF EJS Templates
fix(imports): fixed circular import problem
fix(imports): fixed circular import problem

File last commit:

r5096:a0018795 default
r5341:115837d2 tip default
Show More
__init__.py
140 lines | 4.6 KiB | text/x-python | PythonLexer
copyrights: updated for 2023
r5088 # Copyright (C) 2010-2023 RhodeCode GmbH
project: added all source files and assets
r1 #
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License, version 3
# (only), as published by the Free Software Foundation.
#
# 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 Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
# This program is dual-licensed. If you wish to learn more about the
# RhodeCode Enterprise Edition, including its added features, Support services,
# and proprietary license terms, please see https://rhodecode.com/licenses/
import logging
logging: show version at app startup for debugging.
r3283 import rhodecode
project: added all source files and assets
r1 from rhodecode.model import meta, db
encryption: use common method to fetch encryption key for encrypted fields.
r261 from rhodecode.lib.utils2 import obfuscate_url_pw, get_encryption_key
project: added all source files and assets
r1
log = logging.getLogger(__name__)
models: new sqlalchemy logic and encryption setup for python3
r5069 def init_model(engine, encryption_key: bytes = b''):
project: added all source files and assets
r1 """
Initializes db session, bind the engine with the metadata,
Call this before using any of the tables or classes in the model,
preferably once in application start
:param engine: engine to bind to
models: new sqlalchemy logic and encryption setup for python3
r5069 :param encryption_key: key used for encryption
project: added all source files and assets
r1 """
models: new sqlalchemy logic and encryption setup for python3
r5069
project: added all source files and assets
r1 engine_str = obfuscate_url_pw(str(engine.url))
logging: show version at app startup for debugging.
r3283 log.info("RhodeCode %s initializing db for %s", rhodecode.__version__, engine_str)
models: new sqlalchemy logic and encryption setup for python3
r5069
meta.bind_engine_to_session(engine)
init_model_encryption(db, enc_key=encryption_key)
project: added all source files and assets
r1
models: new sqlalchemy logic and encryption setup for python3
r5069 def init_model_encryption(*db_models, enc_key: bytes = b'', config=None):
if not enc_key:
from pyramid.threadlocal import get_current_registry
config = config or get_current_registry().settings
enc_key = get_encryption_key(config)
for db_model in db_models:
log.debug('setting encryption key for model %s', db_model)
db_model.ENCRYPTION_KEY = enc_key
project: added all source files and assets
r1
class BaseModel(object):
"""
Base Model for all RhodeCode models, it adds sql alchemy session
into instance of model
:param sa: If passed it reuses this session instead of creating a new one
"""
cls = None # override in child class
def __init__(self, sa=None):
if sa is not None:
self.sa = sa
else:
self.sa = meta.Session()
def _get_instance(self, cls, instance, callback=None):
"""
Gets instance of given cls using some simple lookup mechanism.
pull-requests: added version browsing for pull requests....
r1192 :param cls: classes to fetch
project: added all source files and assets
r1 :param instance: int or Instance
:param callback: callback to call if all lookups failed
"""
if isinstance(instance, cls):
return instance
python3: fix usage of int/long
r4935 elif isinstance(instance, int):
pull-requests: added version browsing for pull requests....
r1192 if isinstance(cls, tuple):
# if we pass multi instances we pick first to .get()
cls = cls[0]
project: added all source files and assets
r1 return cls.get(instance)
else:
if instance:
if callback is None:
raise Exception(
python3: fixed usage of .next() and .func_name
r4936 'given object must be int or Instance of %s '
project: added all source files and assets
r1 'got %s, no callback provided' % (cls, type(instance))
)
else:
return callback(instance)
def _get_user(self, user):
"""
Helper method to get user by ID, or username fallback
:param user: UserID, username, or User instance
"""
return self._get_instance(
db.User, user, callback=db.User.get_by_username)
def _get_user_group(self, user_group):
"""
Helper method to get user by ID, or username fallback
:param user_group: UserGroupID, user_group_name, or UserGroup instance
"""
return self._get_instance(
db.UserGroup, user_group, callback=db.UserGroup.get_by_group_name)
def _get_repo(self, repository):
"""
Helper method to get repository by ID, or repository name
:param repository: RepoID, repository name or Repository Instance
"""
return self._get_instance(
db.Repository, repository, callback=db.Repository.get_by_repo_name)
def _get_perm(self, permission):
"""
Helper method to get permission by ID, or permission name
:param permission: PermissionID, permission_name or Permission instance
"""
return self._get_instance(
db.Permission, permission, callback=db.Permission.get_by_key)
@classmethod
def get_all(cls):
"""
Returns all instances of what is defined in `cls` class variable
"""
return cls.cls.getAll()