aboutsummaryrefslogtreecommitdiffstats
path: root/config.py
blob: ee72f1c6f5066d4863a0756afd4abc651057bc4a (plain)
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
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
import sys
from pathlib import Path

from ruamel.yaml import YAML
from ruamel.yaml.parser import ParserError
from ruamel.yaml.scanner import ScannerError


class Config:
    def __init__(self):
        # class variables
        self.content = None

        # select config file
        self.conf_file = Path("config.yml")
        if not Path.exists(self.conf_file):
            self.conf_file = Path("/etc/ejabberd-metrics.yml")

        # read config file
        self._read()

    def _read(self):
        """init the config object with this method"""
        self._check()

        # open file as an iostream
        with open(self.conf_file, "r", encoding="utf-8") as f:
            try:
                self.content = YAML(typ="safe").load(f)

            # catch json decoding errors
            except (ParserError, ScannerError) as err:
                print(err, file=sys.stderr)
                exit(1)

    def _check(self):
        """internal method to check if the config file exists"""
        try:
            # if file is present continue
            if self.conf_file.exists():
                return

            # if not create a blank file
            else:
                self.conf_file.touch(mode=0o640)

        # catch permission exceptions as this tries to write to /etc/
        except PermissionError as err:
            print(err, file=sys.stderr)
            sys.exit(err.errno)

    def get(self, key: str = None, default: (str, int) = None) -> (dict, str, int, None):
        """method to retrieve the whole config data, a single value or the optional default value"""
        # if a special key is request, return only that value
        if key is not None:

            # safety measure
            if key in self.content:
                return self.content[key]

            # if a default value is given return that
            if default is not None:
                return default

            # if the key isn't part if self.content return None
            else:
                return None

        # else return everything
        return self.content