mirror of
https://github.com/alexta69/metube.git
synced 2025-04-04 12:47:38 +03:00
Fix boolean env variables (closes #213)
This commit is contained in:
parent
3e6c63646c
commit
ea7a7b0711
5 changed files with 16 additions and 5 deletions
|
@ -26,12 +26,19 @@ class Config:
|
|||
'YTDL_OPTIONS': '{}',
|
||||
}
|
||||
|
||||
_BOOLEAN = ('CUSTOM_DIRS', 'CREATE_CUSTOM_DIRS')
|
||||
|
||||
def __init__(self):
|
||||
for k, v in self._DEFAULTS.items():
|
||||
setattr(self, k, os.environ[k] if k in os.environ else v)
|
||||
for k, v in self.__dict__.items():
|
||||
if v.startswith('%%'):
|
||||
setattr(self, k, getattr(self, v[2:]))
|
||||
if k in self._BOOLEAN:
|
||||
if v not in ('true', 'false', 'True', 'False', 'on', 'off', '1', '0'):
|
||||
log.error(f'Environment variable "{k}" is set to a non-boolean value "{v}"')
|
||||
sys.exit(1)
|
||||
setattr(self, k, v in ('true', 'True', 'on', '1'))
|
||||
if not self.URL_PREFIX.endswith('/'):
|
||||
self.URL_PREFIX += '/'
|
||||
try:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue