mirror of
https://github.com/aljazceru/CTFd.git
synced 2026-02-01 12:24:31 +01:00
* Experimental ideas to make SQLAlchemy queries faster by switching them to SQLAlchemy Core * Starts work on #1402
66 lines
1.6 KiB
Python
66 lines
1.6 KiB
Python
import mistune
|
|
import six
|
|
from flask import current_app as app
|
|
|
|
from CTFd.cache import cache
|
|
|
|
if six.PY2:
|
|
string_types = (str, unicode) # noqa: F821
|
|
text_type = unicode # noqa: F821
|
|
binary_type = str
|
|
else:
|
|
string_types = (str,)
|
|
text_type = str
|
|
binary_type = bytes
|
|
|
|
markdown = mistune.Markdown()
|
|
|
|
|
|
def get_app_config(key, default=None):
|
|
value = app.config.get(key, default)
|
|
return value
|
|
|
|
|
|
@cache.memoize()
|
|
def _get_config(key):
|
|
config = db.session.execute(
|
|
Configs.__table__.select().where(Configs.key == key)
|
|
).fetchone()
|
|
if config and config.value:
|
|
value = config.value
|
|
if value and value.isdigit():
|
|
return int(value)
|
|
elif value and isinstance(value, six.string_types):
|
|
if value.lower() == "true":
|
|
return True
|
|
elif value.lower() == "false":
|
|
return False
|
|
else:
|
|
return value
|
|
# Flask-Caching is unable to roundtrip a value of None.
|
|
# Return an exception so that we can still cache and avoid the db hit
|
|
return KeyError
|
|
|
|
|
|
def get_config(key, default=None):
|
|
value = _get_config(key)
|
|
if value is KeyError:
|
|
return default
|
|
else:
|
|
return value
|
|
|
|
|
|
def set_config(key, value):
|
|
config = Configs.query.filter_by(key=key).first()
|
|
if config:
|
|
config.value = value
|
|
else:
|
|
config = Configs(key=key, value=value)
|
|
db.session.add(config)
|
|
db.session.commit()
|
|
cache.delete_memoized(_get_config, key)
|
|
return config
|
|
|
|
|
|
from CTFd.models import Configs, db # noqa: E402
|