Add configuration validation with jsonschema

Signed-off-by: Julien Riou <julien@riou.xyz>
This commit is contained in:
Julien Riou 2020-11-26 14:48:46 +01:00
parent a7c9f1455e
commit 17f0948aeb
No known key found for this signature in database
GPG key ID: FF42D23B580C89F7
6 changed files with 30 additions and 7 deletions

View file

@ -11,6 +11,8 @@ repos:
args: ['--remove'] args: ['--remove']
- id: requirements-txt-fixer - id: requirements-txt-fixer
- id: trailing-whitespace - id: trailing-whitespace
- id: check-json
- id: check-yaml
- repo: https://gitlab.com/pycqa/flake8 - repo: https://gitlab.com/pycqa/flake8
rev: master rev: master
hooks: hooks:

View file

@ -17,14 +17,14 @@ git clone https://github.com/jouir/notify-by-telegram.git /opt/notify-by-telegra
Install dependencies using the package manager: Install dependencies using the package manager:
``` ```
sudo apt install python3-jinja2 python3-requests sudo apt install python3-jinja2 python3-requests python3-jsonschema
``` ```
## Configuration ## Configuration
Copy and update the configuration file example: Copy and update the configuration file example:
``` ```
cp -p config.json.example telegram.json cp -p config.example.json telegram.json
vim telegram.json vim telegram.json
sudo mv telegram.json /etc/nagios4/telegram.json sudo mv telegram.json /etc/nagios4/telegram.json
sudo chown root:nagios /etc/nagios4/telegram.json sudo chown root:nagios /etc/nagios4/telegram.json

View file

@ -1,3 +1,2 @@
Use JSON schema to validate configuration file
Add pre-commit Dockerfile and a doc to easily lint the code Add pre-commit Dockerfile and a doc to easily lint the code
Add requirements.txt file Add requirements.txt file

21
config.schema.json Normal file
View file

@ -0,0 +1,21 @@
{
"type": "object",
"properties": {
"chat_id": {
"type": "number"
},
"auth_key": {
"type": "string"
},
"host_template": {
"type": "string"
},
"service_template": {
"type": "string"
}
},
"required": [
"chat_id",
"auth_key"
]
}

View file

@ -6,8 +6,10 @@ import os
import requests import requests
from jinja2 import Environment, FileSystemLoader from jinja2 import Environment, FileSystemLoader
from jsonschema import validate
logger = logging.getLogger(__name__) logger = logging.getLogger(__name__)
absolute_path = os.path.split(os.path.abspath(__file__))[0]
class InvalidConfigException(Exception): class InvalidConfigException(Exception):
@ -60,9 +62,9 @@ def read_config(filename=None):
def validate_config(config): def validate_config(config):
if config is None: if config is None:
raise InvalidConfigException('config is not a dict') raise InvalidConfigException('config is not a dict')
for key in ['chat_id', 'auth_key']: with open(os.path.join(absolute_path, 'config.schema.json'), 'r') as fd:
if key not in config: schema = json.loads(fd.read())
raise InvalidConfigException(f'missing "{key}" key in config') validate(instance=config, schema=schema)
def setup_logging(args): def setup_logging(args):
@ -82,7 +84,6 @@ def generate_payload(chat_id, message_type, message_variables, template_file_nam
# define jinja template name # define jinja template name
if not template_file_name: if not template_file_name:
template_name = 'host.md.j2' if message_type == 'host' else 'service.md.j2' template_name = 'host.md.j2' if message_type == 'host' else 'service.md.j2'
absolute_path = os.path.split(os.path.abspath(__file__))[0]
template_file_name = os.path.join(absolute_path, 'templates', template_name) template_file_name = os.path.join(absolute_path, 'templates', template_name)
template_path = os.path.dirname(os.path.abspath(template_file_name)) template_path = os.path.dirname(os.path.abspath(template_file_name))
template_name = os.path.basename(os.path.abspath(template_file_name)) template_name = os.path.basename(os.path.abspath(template_file_name))