➕ replace tomlib with tomlkit
tomlkit can read and write toml files
This commit is contained in:
parent
3effd5558f
commit
0d4d6d3f46
8 changed files with 129 additions and 117 deletions
|
@ -4,19 +4,83 @@ import os
|
|||
from pathlib import Path
|
||||
|
||||
import pytz
|
||||
import yaml
|
||||
import tomlkit
|
||||
from tomlkit.toml_file import TOMLFile
|
||||
|
||||
logger = logging.getLogger(__package__)
|
||||
|
||||
|
||||
def create_config_file(dest: Path):
|
||||
if dest.is_dir():
|
||||
dest = dest / f"{__package__}_config.yml"
|
||||
example_conf = Path(__file__).parent / 'resources' / 'example_config.yml'
|
||||
with open(example_conf, "r") as source:
|
||||
with open(dest, "w") as d:
|
||||
d.writelines(source)
|
||||
dest = dest / f"{__package__}_config.toml"
|
||||
|
||||
conf = tomlkit.document()
|
||||
conf.add(tomlkit.comment(f"Configuration file for {__package__}"))
|
||||
conf.add(tomlkit.nl())
|
||||
|
||||
# Add AD section
|
||||
ad = tomlkit.table()
|
||||
ad.add('DOMAIN', 'ad.example.com')
|
||||
ad['DOMAIN'].comment('The domain of the Active Directory server')
|
||||
ad.add('LDAP_SERVER', ['ldaps://server1.ad.example.com:636'])
|
||||
ad['LDAP_SERVER'].comment('List of LDAP servers to connect to')
|
||||
ad.add('PARENT_GROUP', 'Mailinglists')
|
||||
ad['PARENT_GROUP'].comment('The parent group in Active Directory that '
|
||||
'contains all groups that should be '
|
||||
'synchronized')
|
||||
ad.add('TIMEZONE', 'UTC')
|
||||
ad.add('USER', tomlkit.string('example\\username', literal=True))
|
||||
ad['USER'].comment('The username of the user to connect to the Active '
|
||||
'Directory server. (use single quotes)')
|
||||
ad.add('PASSWORD', 'xxxxxxxx')
|
||||
ad['PASSWORD'].comment('The password of the user to connect to the Active '
|
||||
'Directory')
|
||||
conf.add('AD', ad)
|
||||
|
||||
# Add CiviCRM section
|
||||
civicrm = tomlkit.table()
|
||||
civicrm.add('BASE_URL', 'https://civicrm.example.com')
|
||||
civicrm.add('API_KEY', 'xxxxxxxx')
|
||||
civicrm['API_KEY'].comment('The API key of the CiviCRM user')
|
||||
civicrm['BASE_URL'].comment('The URL of the CiviCRM server')
|
||||
civicrm.add('BATCH_SIZE', 50)
|
||||
civicrm['BATCH_SIZE'].comment('The batch size for the API requests to the '
|
||||
'CiviCRM server - only applied to contact '
|
||||
'sync (default: 50)')
|
||||
civicrm.add('RETRIES', 3)
|
||||
civicrm['RETRIES'].comment('The number of retries for the API requests to '
|
||||
'the CiviCRM (default: 3)')
|
||||
civicrm.add('IGNORE_SSL', False)
|
||||
civicrm.value.item('IGNORE_SSL').comment('Allow insecure connections to '
|
||||
'the CiviCRM server (default: '
|
||||
'false)')
|
||||
conf.add('CIVICRM', civicrm)
|
||||
|
||||
# Add Logging section
|
||||
logging_ = tomlkit.table()
|
||||
logging_.add('STDOUT_LOG_LEVEL', 'info')
|
||||
logging_['STDOUT_LOG_LEVEL'].comment('The log level for the stdout logger '
|
||||
'(default: info)')
|
||||
logging_.add('FILE_LOG_LEVEL', 'info')
|
||||
logging_['FILE_LOG_LEVEL'].comment('The log level for the file logger '
|
||||
'(default: info)')
|
||||
logging_.add('LOG_DIR', '/var/log/adGroupSync/')
|
||||
logging_['LOG_DIR'].comment('The directory to store the log file')
|
||||
conf.add('LOGGING', logging_)
|
||||
|
||||
# Add Ntfy section
|
||||
ntfy = tomlkit.table()
|
||||
ntfy.add(tomlkit.comment('Optional section for ntfy configuration'))
|
||||
ntfy.add('URL', 'https://ntfy.example.com')
|
||||
ntfy['URL'].comment('The URL of the ntfy server')
|
||||
ntfy.add('TOPIC', 'adGroupSync')
|
||||
ntfy['TOPIC'].comment('The topic to post the message to')
|
||||
ntfy.add('ACCESS_TOKEN', 'tk_xxxxxxxxxxxxxxxxxxx')
|
||||
ntfy['ACCESS_TOKEN'].comment('The access token for the ntfy server')
|
||||
conf.add('NTFY', ntfy)
|
||||
|
||||
# Write configuration file
|
||||
TOMLFile(dest).write(conf)
|
||||
|
||||
# Assign environment variables or configuration file values
|
||||
AD_DOMAIN = os.getenv('AD_DOMAIN')
|
||||
|
@ -77,8 +141,7 @@ try:
|
|||
exit(0)
|
||||
|
||||
# Load configuration file
|
||||
with open(config_file, 'r') as file:
|
||||
config = yaml.safe_load(file)
|
||||
config = TOMLFile(config_file).read()
|
||||
|
||||
# Get values from configuration file
|
||||
AD_DOMAIN = AD_DOMAIN or config['AD']['DOMAIN']
|
||||
|
@ -98,13 +161,16 @@ try:
|
|||
CIVICRM_BATCH_SIZE = CIVICRM_BATCH_SIZE \
|
||||
or config['CIVICRM']['BATCH_SIZE']
|
||||
CIVICRM_RETRIES = CIVICRM_RETRIES \
|
||||
or config['CIVICRM'].get('RETRIES', 3)
|
||||
or config['CIVICRM'].get('RETRIES', 3)
|
||||
CIVICRM_IGNORE_SSL = CIVICRM_IGNORE_SSL \
|
||||
or bool(config['CIVICRM'].get('IGNORE_SSL', False))
|
||||
NTFY_URL = NTFY_URL or config['NTFY'].get('URL') if 'NTFY' in config else None
|
||||
NTFY_TOPIC = NTFY_TOPIC or config['NTFY'].get('TOPIC') if 'NTFY' in config else None
|
||||
NTFY_URL = NTFY_URL or config['NTFY'].get(
|
||||
'URL') if 'NTFY' in config else None
|
||||
NTFY_TOPIC = NTFY_TOPIC or config['NTFY'].get(
|
||||
'TOPIC') if 'NTFY' in config else None
|
||||
NTFY_ACCESS_TOKEN = NTFY_ACCESS_TOKEN \
|
||||
or config['NTFY'].get('ACCESS_TOKEN') if 'NTFY' in config else None
|
||||
or config['NTFY'].get(
|
||||
'ACCESS_TOKEN') if 'NTFY' in config else None
|
||||
|
||||
# Check if some required values are missing
|
||||
required = {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue