2017-04-12 10:44:47 +01:00
|
|
|
from sanic.defaultFilter import DefaultFilter
|
2016-12-16 15:07:14 +00:00
|
|
|
import os
|
2017-04-13 08:26:13 +01:00
|
|
|
import sys
|
|
|
|
import syslog
|
|
|
|
import platform
|
2016-12-16 15:07:14 +00:00
|
|
|
import types
|
|
|
|
|
2017-03-22 01:37:46 +00:00
|
|
|
SANIC_PREFIX = 'SANIC_'
|
2016-12-16 15:07:14 +00:00
|
|
|
|
2017-04-13 08:26:13 +01:00
|
|
|
_address_dict = {
|
|
|
|
'Windows': ('localhost', 514),
|
|
|
|
'Darwin': '/var/run/syslog',
|
|
|
|
'Linux': '/dev/log',
|
|
|
|
'FreeBSD': '/dev/log'
|
|
|
|
}
|
2017-03-29 04:57:58 +01:00
|
|
|
|
2017-04-13 05:49:45 +01:00
|
|
|
LOGGING = {
|
2017-04-12 10:44:47 +01:00
|
|
|
'version': 1,
|
|
|
|
'filters': {
|
2017-04-13 08:26:13 +01:00
|
|
|
'accessFilter': {
|
2017-04-12 10:44:47 +01:00
|
|
|
'()': DefaultFilter,
|
|
|
|
'param': [0, 10, 20]
|
|
|
|
},
|
2017-04-13 08:26:13 +01:00
|
|
|
'errorFilter': {
|
2017-04-12 10:44:47 +01:00
|
|
|
'()': DefaultFilter,
|
|
|
|
'param': [30, 40, 50]
|
|
|
|
}
|
|
|
|
},
|
|
|
|
'formatters': {
|
|
|
|
'simple': {
|
|
|
|
'format': '%(asctime)s - (%(name)s)[%(levelname)s]: %(message)s',
|
|
|
|
'datefmt': '%Y-%m-%d %H:%M:%S'
|
|
|
|
},
|
|
|
|
'access': {
|
2017-04-13 08:26:13 +01:00
|
|
|
'format': '%(asctime)s - (%(name)s)[%(levelname)s][%(host)s]: ' +
|
2017-04-12 10:44:47 +01:00
|
|
|
'%(request)s %(message)s %(status)d %(byte)d',
|
|
|
|
'datefmt': '%Y-%m-%d %H:%M:%S'
|
|
|
|
}
|
|
|
|
},
|
|
|
|
'handlers': {
|
|
|
|
'internal': {
|
2017-04-13 08:26:13 +01:00
|
|
|
'class': 'logging.StreamHandler',
|
|
|
|
'filters': ['accessFilter'],
|
2017-04-12 10:44:47 +01:00
|
|
|
'formatter': 'simple',
|
2017-04-13 08:26:13 +01:00
|
|
|
'stream': sys.stderr
|
2017-04-12 10:44:47 +01:00
|
|
|
},
|
2017-04-13 08:26:13 +01:00
|
|
|
'accessStream': {
|
|
|
|
'class': 'logging.StreamHandler',
|
|
|
|
'filters': ['accessFilter'],
|
|
|
|
'formatter': 'access',
|
|
|
|
'stream': sys.stderr
|
|
|
|
},
|
|
|
|
'errorStream': {
|
|
|
|
'class': 'logging.StreamHandler',
|
|
|
|
'filters': ['errorFilter'],
|
|
|
|
'formatter': 'simple',
|
|
|
|
'stream': sys.stderr
|
|
|
|
},
|
|
|
|
# before you use accessSysLog, be sure that log levels
|
|
|
|
# 0, 10, 20 have been enabled in you syslog configuration
|
|
|
|
# otherwise you won't be able to see the output in syslog
|
|
|
|
# logging file.
|
|
|
|
'accessSysLog': {
|
|
|
|
'class': 'logging.handlers.SysLogHandler',
|
|
|
|
'address': _address_dict.get(platform.system(),
|
|
|
|
('localhost', 514)),
|
|
|
|
'facility': syslog.LOG_DAEMON,
|
|
|
|
'filters': ['accessFilter'],
|
|
|
|
'formatter': 'access'
|
|
|
|
},
|
|
|
|
'errorSysLog': {
|
|
|
|
'class': 'logging.handlers.SysLogHandler',
|
|
|
|
'address': _address_dict.get(platform.system(),
|
|
|
|
('localhost', 514)),
|
|
|
|
'facility': syslog.LOG_DAEMON,
|
|
|
|
'filters': ['errorFilter'],
|
|
|
|
'formatter': 'simple'
|
|
|
|
},
|
|
|
|
'accessTimedRotatingFile': {
|
2017-04-12 10:44:47 +01:00
|
|
|
'class': 'logging.handlers.TimedRotatingFileHandler',
|
2017-04-13 08:26:13 +01:00
|
|
|
'filters': ['accessFilter'],
|
2017-04-12 10:44:47 +01:00
|
|
|
'formatter': 'access',
|
|
|
|
'when': 'D',
|
|
|
|
'interval': 1,
|
|
|
|
'backupCount': 7,
|
|
|
|
'filename': 'access.log'
|
|
|
|
},
|
2017-04-13 08:26:13 +01:00
|
|
|
'errorTimedRotatingFile': {
|
2017-04-12 10:44:47 +01:00
|
|
|
'class': 'logging.handlers.TimedRotatingFileHandler',
|
2017-04-13 08:26:13 +01:00
|
|
|
'filters': ['errorFilter'],
|
2017-04-12 10:44:47 +01:00
|
|
|
'when': 'D',
|
|
|
|
'interval': 1,
|
|
|
|
'backupCount': 7,
|
|
|
|
'filename': 'error.log',
|
|
|
|
'formatter': 'simple'
|
|
|
|
}
|
|
|
|
},
|
|
|
|
'loggers': {
|
|
|
|
'sanic': {
|
|
|
|
'level': 'DEBUG',
|
2017-04-13 08:26:13 +01:00
|
|
|
'handlers': ['internal', 'errorStream']
|
2017-04-12 10:44:47 +01:00
|
|
|
},
|
|
|
|
'network': {
|
|
|
|
'level': 'DEBUG',
|
2017-04-13 08:26:13 +01:00
|
|
|
'handlers': ['accessStream', 'errorStream']
|
2017-04-12 10:44:47 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-13 08:49:36 +01:00
|
|
|
# this happens when using container or systems without syslog
|
|
|
|
# keep things in config would cause file not exists error
|
|
|
|
_addr = LOGGING['handlers']['accessSysLog']['address']
|
2017-04-13 08:52:40 +01:00
|
|
|
if type(_addr) is str and not os.path.exists(_addr):
|
2017-04-13 08:49:36 +01:00
|
|
|
LOGGING['handlers'].pop('accessSysLog')
|
|
|
|
LOGGING['handlers'].pop('errorSysLog')
|
|
|
|
|
2017-04-12 10:44:47 +01:00
|
|
|
|
2016-12-16 15:07:14 +00:00
|
|
|
class Config(dict):
|
2017-04-17 06:43:49 +01:00
|
|
|
def __init__(self, defaults=None, load_env=True, keep_alive=True):
|
2016-12-16 17:46:07 +00:00
|
|
|
super().__init__(defaults or {})
|
2016-12-16 15:07:14 +00:00
|
|
|
self.LOGO = """
|
2016-10-15 20:59:00 +01:00
|
|
|
▄▄▄▄▄
|
|
|
|
▀▀▀██████▄▄▄ _______________
|
|
|
|
▄▄▄▄▄ █████████▄ / \\
|
|
|
|
▀▀▀▀█████▌ ▀▐▄ ▀▐█ | Gotta go fast! |
|
|
|
|
▀▀█████▄▄ ▀██████▄██ | _________________/
|
|
|
|
▀▄▄▄▄▄ ▀▀█▄▀█════█▀ |/
|
|
|
|
▀▀▀▄ ▀▀███ ▀ ▄▄
|
|
|
|
▄███▀▀██▄████████▄ ▄▀▀▀▀▀▀█▌
|
|
|
|
██▀▄▄▄██▀▄███▀ ▀▀████ ▄██
|
|
|
|
▄▀▀▀▄██▄▀▀▌████▒▒▒▒▒▒███ ▌▄▄▀
|
|
|
|
▌ ▐▀████▐███▒▒▒▒▒▐██▌
|
|
|
|
▀▄▄▄▄▀ ▀▀████▒▒▒▒▄██▀
|
|
|
|
▀▀█████████▀
|
|
|
|
▄▄██▀██████▀█
|
|
|
|
▄██▀ ▀▀▀ █
|
|
|
|
▄█ ▐▌
|
|
|
|
▄▄▄▄█▌ ▀█▄▄▄▄▀▀▄
|
|
|
|
▌ ▐ ▀▀▄▄▄▀
|
|
|
|
▀▀▄▄▀
|
|
|
|
"""
|
2016-12-16 15:07:14 +00:00
|
|
|
self.REQUEST_MAX_SIZE = 100000000 # 100 megababies
|
|
|
|
self.REQUEST_TIMEOUT = 60 # 60 seconds
|
2017-04-17 06:43:49 +01:00
|
|
|
self.KEEP_ALIVE = keep_alive
|
2016-12-16 15:07:14 +00:00
|
|
|
|
2017-03-22 01:37:46 +00:00
|
|
|
if load_env:
|
|
|
|
self.load_environment_vars()
|
|
|
|
|
2016-12-16 15:07:14 +00:00
|
|
|
def __getattr__(self, attr):
|
2016-12-16 17:46:07 +00:00
|
|
|
try:
|
|
|
|
return self[attr]
|
|
|
|
except KeyError as ke:
|
|
|
|
raise AttributeError("Config has no '{}'".format(ke.args[0]))
|
2016-12-16 15:07:14 +00:00
|
|
|
|
|
|
|
def __setattr__(self, attr, value):
|
|
|
|
self[attr] = value
|
|
|
|
|
|
|
|
def from_envvar(self, variable_name):
|
2017-02-14 19:10:19 +00:00
|
|
|
"""Load a configuration from an environment variable pointing to
|
2016-12-16 15:07:14 +00:00
|
|
|
a configuration file.
|
2017-02-14 19:10:19 +00:00
|
|
|
|
2016-12-16 15:07:14 +00:00
|
|
|
:param variable_name: name of the environment variable
|
|
|
|
:return: bool. ``True`` if able to load config, ``False`` otherwise.
|
|
|
|
"""
|
|
|
|
config_file = os.environ.get(variable_name)
|
|
|
|
if not config_file:
|
|
|
|
raise RuntimeError('The environment variable %r is not set and '
|
|
|
|
'thus configuration could not be loaded.' %
|
|
|
|
variable_name)
|
|
|
|
return self.from_pyfile(config_file)
|
|
|
|
|
|
|
|
def from_pyfile(self, filename):
|
2017-02-14 19:10:19 +00:00
|
|
|
"""Update the values in the config from a Python file.
|
|
|
|
Only the uppercase variables in that module are stored in the config.
|
|
|
|
|
2016-12-16 15:07:14 +00:00
|
|
|
:param filename: an absolute path to the config file
|
|
|
|
"""
|
|
|
|
module = types.ModuleType('config')
|
|
|
|
module.__file__ = filename
|
|
|
|
try:
|
|
|
|
with open(filename) as config_file:
|
|
|
|
exec(compile(config_file.read(), filename, 'exec'),
|
|
|
|
module.__dict__)
|
|
|
|
except IOError as e:
|
|
|
|
e.strerror = 'Unable to load configuration file (%s)' % e.strerror
|
|
|
|
raise
|
|
|
|
self.from_object(module)
|
|
|
|
return True
|
|
|
|
|
|
|
|
def from_object(self, obj):
|
2017-02-14 19:10:19 +00:00
|
|
|
"""Update the values from the given object.
|
2016-12-16 15:07:14 +00:00
|
|
|
Objects are usually either modules or classes.
|
|
|
|
|
|
|
|
Just the uppercase variables in that object are stored in the config.
|
|
|
|
Example usage::
|
|
|
|
|
|
|
|
from yourapplication import default_config
|
|
|
|
app.config.from_object(default_config)
|
|
|
|
|
|
|
|
You should not use this function to load the actual configuration but
|
|
|
|
rather configuration defaults. The actual config should be loaded
|
|
|
|
with :meth:`from_pyfile` and ideally from a location not within the
|
|
|
|
package because the package might be installed system wide.
|
|
|
|
|
2016-12-17 19:20:07 +00:00
|
|
|
:param obj: an object holding the configuration
|
2016-12-16 15:07:14 +00:00
|
|
|
"""
|
|
|
|
for key in dir(obj):
|
|
|
|
if key.isupper():
|
|
|
|
self[key] = getattr(obj, key)
|
2017-03-22 01:37:46 +00:00
|
|
|
|
|
|
|
def load_environment_vars(self):
|
2017-04-17 05:39:18 +01:00
|
|
|
"""
|
|
|
|
Looks for any SANIC_ prefixed environment variables and applies
|
|
|
|
them to the configuration if present.
|
|
|
|
"""
|
2017-03-22 01:37:46 +00:00
|
|
|
for k, v in os.environ.items():
|
|
|
|
if k.startswith(SANIC_PREFIX):
|
|
|
|
_, config_key = k.split(SANIC_PREFIX, 1)
|
|
|
|
self[config_key] = v
|