2023-05-08 13:18:44 +03:00
|
|
|
"""
|
|
|
|
mastoposter - configurable reposter from Mastodon-compatible Fediverse servers
|
|
|
|
Copyright (C) 2022-2023 hatkidchan <hatkidchan@gmail.com>
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
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.
|
|
|
|
"""
|
2022-11-01 12:55:23 +03:00
|
|
|
from configparser import ConfigParser
|
2022-11-01 14:33:47 +03:00
|
|
|
from logging import getLogger
|
2022-08-31 16:19:39 +03:00
|
|
|
|
2022-11-01 14:33:47 +03:00
|
|
|
logger = getLogger("utils")
|
|
|
|
|
2022-08-31 16:19:39 +03:00
|
|
|
|
2022-11-01 12:55:23 +03:00
|
|
|
def normalize_config(conf: ConfigParser):
|
|
|
|
for section in conf.sections():
|
|
|
|
_remove = set()
|
|
|
|
for k, v in conf[section].items():
|
|
|
|
normalized_key = k.replace(" ", "_").replace("-", "_")
|
|
|
|
if k == normalized_key:
|
|
|
|
continue
|
2022-11-01 14:33:47 +03:00
|
|
|
logger.info(
|
|
|
|
"moving %r.%r -> %r.%r", section, k, section, normalized_key
|
|
|
|
)
|
2022-11-01 12:55:23 +03:00
|
|
|
conf[section][normalized_key] = v
|
|
|
|
_remove.add(k)
|
|
|
|
for k in _remove:
|
2022-11-01 14:33:47 +03:00
|
|
|
logger.info("removing key %r.%r", section, k)
|
2022-11-01 12:55:23 +03:00
|
|
|
del conf[section][k]
|