File size: 16,412 Bytes
27867f1 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 |
"""
MIT License
Copyright (C) 2023 ROCKY4546
https://github.com/rocky4546
This file is part of Cabernet
Permission is hereby granted, free of charge, to any person obtaining a copy of this software
and associated documentation files (the “Software”), to deal in the Software without restriction,
including without limitation the rights to use, copy, modify, merge, publish, distribute,
sublicense, and/or sell copies of the Software, and to permit persons to whom the Software
is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or
substantial portions of the Software.
"""
import copy
import configparser
import json
import logging
import pathlib
import os
import re
import shutil
import lib.common.utils as utils
import lib.config.config_defn as config_defn
from lib.common.utils import clean_exit
from lib.common.decorators import getrequest
from lib.db.db_config_defn import DBConfigDefn
from lib.web.pages.templates import web_templates
from lib.common.decorators import Backup
from lib.common.decorators import Restore
CONFIG_BKUP_NAME = 'backups-config_ini'
CONFIG_FILENAME = 'config.ini'
def get_config(script_dir, opersystem, args):
return TVHUserConfig(script_dir, opersystem, args)
@getrequest.route('/config.json')
def config_json(_webserver):
if _webserver.config['web']['disable_web_config']:
_webserver.do_mime_response(501, 'text/html', web_templates['htmlError']
.format('501 - Config pages disabled.'
' Set [web][disable_web_config] to False in the config file to enable'))
else:
_webserver.do_mime_response(200, 'application/json',
json.dumps(_webserver.plugins.config_obj.filter_config_data()))
class TVHUserConfig:
def __init__(self, _script_dir=None, _opersystem=None, _args=None, _config=None):
self.logger = None
self.defn_json = None
self.db = None
self.script_dir = str(_script_dir)
self.defn_json = config_defn.load_default_config_defns()
self.data = self.defn_json.get_default_config()
self.config_handler = configparser.ConfigParser(interpolation=None)
if _script_dir is not None:
config_file = TVHUserConfig.get_config_path(_script_dir, _args)
self.import_config(config_file)
self.defn_json.call_oninit(self)
utils.logging_setup(self.data)
# at this point, the config is setup
self.db = DBConfigDefn(self.data)
self.db.reinitialize_tables()
self.defn_json.set_config(self.data)
self.defn_json.save_defn_to_db()
else:
self.set_config(_config)
self.defn_json.garbage_collect()
self.db = DBConfigDefn(self.data)
self.db.add_config(self.data)
def refresh_config_data(self):
self.data = self.db.get_config()
def set_config(self, _config):
self.data = copy.deepcopy(_config)
self.config_handler.read(self.data['paths']['config_file'])
self.logger = logging.getLogger(__name__)
def init_logger_config(self):
log_sections = ['loggers', 'logger_root', 'handlers', 'formatters',
'handler_filehandler', 'handler_loghandler',
'formatter_extend', 'formatter_simple']
for section in log_sections:
try:
self.config_handler.add_section(section)
except configparser.DuplicateSectionError:
pass
for key, value in self.data[section].items():
self.config_handler.set(section, key, str(value))
with open(self.data['paths']['config_file'], 'w') as config_file:
self.config_handler.write(config_file)
utils.logging_setup(self.data)
def import_config(self, config_file):
self.config_handler.read(config_file)
self.data['paths']['config_file'] = str(config_file)
try:
utils.logging_setup(self.data)
except (KeyError, RuntimeError):
self.init_logger_config()
self.logger = logging.getLogger(__name__)
self.logger.info("Loading Configuration File: " + str(config_file))
search_section_name = re.compile('^[a-zA-Z0-9]+_?[a-zA-Z0-9]+$')
for each_section in self.config_handler.sections():
lower_section = each_section.lower()
if each_section != lower_section:
self.logger.error('ERROR: ALL SECTIONS IN THE config.ini MUST BE LOWER CASE. Found: {}'
.format(each_section))
continue
m = re.match(search_section_name, each_section)
if m is None:
self.logger.error('ERROR: INVALID SECTION NAME IN THE config.ini. Found: {}'
.format(each_section))
continue
if lower_section not in self.data.keys():
self.data.update({lower_section: {}})
for (each_key, each_val) in self.config_handler.items(each_section):
lower_key = each_key.lower()
self.data[lower_section][lower_key] = \
self.fix_value_type(lower_section, lower_key, each_val)
@staticmethod
def get_config_path(_script_dir, args=None):
config_file = None
poss_config = None
if args is not None and args.cfg:
config_file = pathlib.Path(str(args.cfg))
else:
for x in [CONFIG_FILENAME, 'data/' + CONFIG_FILENAME]:
poss_config = pathlib.Path(_script_dir).joinpath(x)
if os.path.exists(poss_config):
config_file = poss_config
break
if config_file:
if not os.path.exists(config_file):
try:
# config file missing, create it
f = open(config_file, 'wb')
f.close()
except PermissionError as e:
print('1 ERROR: {} unable to create {}'.format(str(e), config_file))
else:
# create one in the data folder
try:
data_folder = pathlib.Path(_script_dir).joinpath('data')
if not data_folder.exists():
os.mkdir(data_folder)
f = open('data/' + CONFIG_FILENAME, 'wb')
config_file = pathlib.Path(data_folder).joinpath(CONFIG_FILENAME)
f.close()
except PermissionError as e:
print('2 ERROR: {} unable to create {}'.format(str(e), poss_config))
if config_file and os.path.exists(config_file):
return config_file
else:
print('ERROR: Config file missing {} {}, Exiting...'.format(config_file, poss_config))
clean_exit(1)
def fix_value_type(self, _section, _key, _value):
try:
val_type = self.defn_json.get_type(_section, _key, _value)
if val_type == 'boolean':
return self.config_handler.getboolean(_section, _key)
elif val_type == 'list':
if isinstance(_value, str) and _value.isdigit():
_value = int(_value)
if not self.defn_json.validate_list_item(_section, _key, _value):
logging.info('INVALID VALUE ({}) FOR CONFIG ITEM [{}][{}]'
.format(_value, _section, _key))
return _value
elif val_type == 'integer':
return int(_value)
elif val_type == 'float':
return float(_value)
elif val_type is None:
return _value
else:
return _value
except (configparser.NoOptionError, configparser.NoSectionError, TypeError):
return _value
except ValueError:
return None
# removes sensitive data from config and returns a copy
def filter_config_data(self):
restricted_list = self.defn_json.get_restricted_items()
filtered_config = copy.deepcopy(self.data)
for item in restricted_list:
del filtered_config[item[0]][item[1]]
return filtered_config
def detect_change(self, _section, _key, _updated_data):
current_value = self.data[_section][_key]
if type(current_value) is int:
if _updated_data[_section][_key][0] is not None:
_updated_data[_section][_key][0] = int(_updated_data[_section][_key][0])
elif type(current_value) is bool:
_updated_data[_section][_key][0] = bool(int(_updated_data[_section][_key][0]))
elif type(current_value) is str:
pass
elif current_value is None:
pass
else:
self.logger.debug('unknown value type for [{}][{}] type is {}'
.format(_section, _key, type(self.data[_section][_key])))
if self.data[_section][_key] != _updated_data[_section][_key][0]:
if len(_updated_data[_section][_key]) > 1:
_updated_data[_section][_key][1] = True
else:
_updated_data[_section][_key].append(True)
else:
if len(_updated_data[_section][_key]) > 1:
_updated_data[_section][_key][1] = False
else:
_updated_data[_section][_key].append(False)
def merge_config(self, _delta_config_dict):
self.data = utils.merge_dict(self.data, _delta_config_dict, ignore_conflicts=True)
def update_config(self, _area, _updated_data):
# make sure the config_handler has all the data from the file
self.config_handler.read(self.data['paths']['config_file'])
results = '<hr><h3>Status Results</h3><ul>'
area_data = self.defn_json.get_defn(_area)
for section, section_data in area_data['sections'].items():
if section in _updated_data:
for setting, setting_data in section_data['settings'].items():
if setting in _updated_data[section]:
if setting_data['level'] == 4:
pass
elif 'writable' in setting_data and not setting_data['writable']:
if setting in _updated_data[section]:
_updated_data[section][setting].append(False)
elif 'hidden' in setting_data and setting_data['hidden']:
if _updated_data[section][setting][0] is None:
_updated_data[section][setting].append(False)
else:
_updated_data[section][setting].append(True)
_updated_data[section][setting].append(True)
else:
self.detect_change(section, setting, _updated_data)
# save the changes to config.ini and self.data
config_defaults = self.defn_json.get_default_config_area(_area)
for key in _updated_data.keys():
results += self.save_config_section(key, _updated_data, config_defaults)
results += self.defn_json.call_onchange(_area, _updated_data, self)
with open(self.data['paths']['config_file'], 'w') as config_file:
self.config_handler.write(config_file)
# need to inform things that changes occurred...
restart = False
self.db.add_config(self.data)
if restart:
results += '</ul><b>Service may need to be restarted if not all changes were implemented</b><hr><br>'
else:
results += '</ul><hr><br>'
return results
def save_config_section(self, _section, _updated_data, _config_defaults):
results = ''
for (key, value) in _updated_data[_section].items():
if len(value) > 1 and value[1]:
if value[0] is None:
# use default and remove item from config.ini
try:
self.config_handler.remove_option(_section, key)
except configparser.NoSectionError:
pass
self.data[_section][key] \
= _config_defaults[_section][key]
self.logger.debug(
'Config Update: Removed [{}][{}]'.format(_section, key))
results += '<li>Removed [{}][{}] from {}, using default value</li>'\
.format(_section, key, CONFIG_FILENAME)
else:
# set new value
if len(_updated_data[_section][key]) == 3:
self.logger.debug(
'Config Update: Changed [{}][{}] updated'
.format(_section, key))
else:
self.logger.debug(
'Config Update: Changed [{}][{}] to {}'
.format(_section, key, _updated_data[_section][key][0]))
try:
self.config_handler.set(
_section, key, str(_updated_data[_section][key][0]))
except configparser.NoSectionError:
self.config_handler.add_section(_section)
self.config_handler.set(
_section, key, str(_updated_data[_section][key][0]))
if self.data.get(_section) is not None:
self.data[_section][key] = _updated_data[_section][key][0]
if len(_updated_data[_section][key]) == 3:
results += '<li>Updated [{}][{}] updated</li>' \
.format(_section, key)
else:
results += '<li>Updated [{}][{}] to {}</li>' \
.format(_section, key, _updated_data[_section][key][0])
return results
def write(self, _section, _key, _value):
if _section not in self.data.keys():
self.data.update({_section: {}})
self.data[_section][_key] = _value
try:
if _value is None:
self.config_handler.remove_option(_section, _key)
return
self.config_handler.set(_section, _key, str(_value))
except configparser.NoSectionError:
self.config_handler.add_section(_section)
self.config_handler.set(_section, _key, str(_value))
with open(self.data['paths']['config_file'], 'w') as config_file:
self.config_handler.write(config_file)
if self.db:
self.db.add_config(self.data)
class BackupConfig:
def __init__(self, _config):
self.logger = logging.getLogger(__class__.__name__)
self.config = _config
@Backup(CONFIG_BKUP_NAME)
def backup(self, backup_folder):
self.logger.debug('Running backup for {}'.format(CONFIG_FILENAME))
try:
if not os.path.isdir(backup_folder):
os.mkdir(backup_folder)
backup_file = pathlib.Path(backup_folder, CONFIG_FILENAME)
shutil.copyfile(self.config['paths']['config_file'],
backup_file)
except PermissionError as e:
self.logger.warning(e)
self.logger.warning('Unable to make backups')
@Restore(CONFIG_BKUP_NAME)
def restore(self, backup_folder):
self.logger.debug('Running restore for {}'.format(CONFIG_FILENAME))
if not os.path.isdir(backup_folder):
msg = 'Backup folder does not exist: {}'.format(backup_folder)
self.logger.warning(msg)
return msg
backup_file = pathlib.Path(backup_folder, CONFIG_FILENAME)
if not os.path.isfile(backup_file):
msg = 'Backup file does not exist, skipping: {}'.format(backup_file)
self.logger.info(msg)
return msg
shutil.copyfile(backup_file,
self.config['paths']['config_file'])
return CONFIG_FILENAME + ' restored, please restart the app'
|