mirror of
https://github.com/binary-kitchen/doorlockd
synced 2024-10-31 22:47:05 +01:00
pydoorlock: switch to new config parser
We want to use doorlockd for more than just serving webapps. Get rid of the Flask config parser and use python's own config parser. Signed-off-by: Ralf Ramsauer <ralf@binary-kitchen.de>
This commit is contained in:
parent
aaaad9b6ef
commit
faecb6b98f
59
doorlockd
59
doorlockd
@ -20,6 +20,7 @@ details.
|
|||||||
import logging
|
import logging
|
||||||
import sys
|
import sys
|
||||||
|
|
||||||
|
from configparser import ConfigParser
|
||||||
from enum import Enum
|
from enum import Enum
|
||||||
from os.path import join
|
from os.path import join
|
||||||
from serial import Serial
|
from serial import Serial
|
||||||
@ -46,8 +47,6 @@ static_folder = join(root_prefix, 'static')
|
|||||||
template_folder = join(root_prefix, 'templates')
|
template_folder = join(root_prefix, 'templates')
|
||||||
scripts_prefix = join(root_prefix, 'scripts')
|
scripts_prefix = join(root_prefix, 'scripts')
|
||||||
|
|
||||||
flask_config = join(SYSCONFDIR, 'doorlockd.cfg')
|
|
||||||
|
|
||||||
__author__ = 'Ralf Ramsauer'
|
__author__ = 'Ralf Ramsauer'
|
||||||
__copyright = 'Copyright (c) Ralf Ramsauer, 2018'
|
__copyright = 'Copyright (c) Ralf Ramsauer, 2018'
|
||||||
__license__ = 'GPLv2'
|
__license__ = 'GPLv2'
|
||||||
@ -64,22 +63,47 @@ log = logging.getLogger()
|
|||||||
webapp = Flask(__name__,
|
webapp = Flask(__name__,
|
||||||
template_folder=template_folder,
|
template_folder=template_folder,
|
||||||
static_folder=static_folder)
|
static_folder=static_folder)
|
||||||
webapp.config.from_pyfile(flask_config)
|
|
||||||
socketio = SocketIO(webapp, async_mode='threading')
|
socketio = SocketIO(webapp, async_mode='threading')
|
||||||
serial_port = webapp.config.get('SERIAL_PORT')
|
|
||||||
simulate_auth = webapp.config.get('SIMULATE_AUTH')
|
class Config:
|
||||||
simulate_serial = webapp.config.get('SIMULATE_SERIAL')
|
config_topic = 'doorlock'
|
||||||
run_hooks = webapp.config.get('RUN_HOOKS')
|
|
||||||
room = webapp.config.get('ROOM')
|
def __init__(self, sysconfdir):
|
||||||
title = webapp.config.get('TITLE')
|
self.config = ConfigParser()
|
||||||
welcome = webapp.config.get('WELCOME')
|
self.config.read([join(sysconfdir, 'doorlockd.default.cfg'),
|
||||||
file_local_db = webapp.config.get('LOCAL_USER_DB')
|
join(sysconfdir, 'doorlockd.cfg')])
|
||||||
|
|
||||||
|
def boolean(self, key):
|
||||||
|
return self.config.getboolean(self.config_topic, key)
|
||||||
|
|
||||||
|
def str(self, key):
|
||||||
|
return self.config.get(self.config_topic, key)
|
||||||
|
|
||||||
|
cfg = Config(SYSCONFDIR)
|
||||||
|
|
||||||
|
# Booleans
|
||||||
|
debug = cfg.boolean('DEBUG')
|
||||||
|
simulate_auth = cfg.boolean('SIMULATE_AUTH')
|
||||||
|
simulate_serial = cfg.boolean('SIMULATE_SERIAL')
|
||||||
|
run_hooks = cfg.boolean('RUN_HOOKS')
|
||||||
|
sounds = cfg.boolean('SOUNDS')
|
||||||
|
|
||||||
|
serial_port = cfg.str('SERIAL_PORT')
|
||||||
|
room = cfg.str('ROOM')
|
||||||
|
title = cfg.str('TITLE')
|
||||||
|
welcome = cfg.str('WELCOME')
|
||||||
|
|
||||||
|
# Auth backends
|
||||||
|
file_local_db = cfg.str('LOCAL_USER_DB')
|
||||||
|
|
||||||
|
ldap_uri = cfg.str('LDAP_URI')
|
||||||
|
ldap_binddn = cfg.str('LDAP_BINDDN')
|
||||||
|
|
||||||
|
webapp.config['SECRET_KEY'] = cfg.str('SECRET_KEY')
|
||||||
|
|
||||||
|
|
||||||
html_title = '%s (%s - v%s)' % (title, __status__, __version__)
|
html_title = '%s (%s - v%s)' % (title, __status__, __version__)
|
||||||
|
|
||||||
ldap_uri = webapp.config.get('LDAP_URI')
|
|
||||||
ldap_binddn = webapp.config.get('LDAP_BINDDN')
|
|
||||||
|
|
||||||
wave_emergency = 'emergency_unlock.wav'
|
wave_emergency = 'emergency_unlock.wav'
|
||||||
|
|
||||||
wave_lock = 'lock.wav'
|
wave_lock = 'lock.wav'
|
||||||
@ -93,10 +117,9 @@ wave_unlock_button = 'unlock_button.wav'
|
|||||||
|
|
||||||
wave_zonk = 'zonk.wav'
|
wave_zonk = 'zonk.wav'
|
||||||
|
|
||||||
sounds = webapp.config.get('SOUNDS')
|
|
||||||
|
|
||||||
host = 'localhost'
|
host = 'localhost'
|
||||||
if webapp.config.get('DEBUG'):
|
if debug:
|
||||||
host = '0.0.0.0'
|
host = '0.0.0.0'
|
||||||
|
|
||||||
|
|
||||||
@ -408,10 +431,10 @@ if __name__ == '__main__':
|
|||||||
logging.basicConfig(level=log_level, stream=sys.stdout,
|
logging.basicConfig(level=log_level, stream=sys.stdout,
|
||||||
format=log_fmt, datefmt=date_fmt)
|
format=log_fmt, datefmt=date_fmt)
|
||||||
log.info('Starting doorlockd')
|
log.info('Starting doorlockd')
|
||||||
log.info('Using serial port: %s' % webapp.config.get('SERIAL_PORT'))
|
log.info('Using serial port: %s' % serial_port)
|
||||||
|
|
||||||
logic = Logic()
|
logic = Logic()
|
||||||
|
|
||||||
socketio.run(webapp, host=host, port=8080, use_reloader=False)
|
socketio.run(webapp, host=host, port=8080, use_reloader=False, debug=debug)
|
||||||
|
|
||||||
sys.exit(0)
|
sys.exit(0)
|
||||||
|
@ -1,18 +1,17 @@
|
|||||||
DEBUG = False
|
[doorlock]
|
||||||
SIMULATE_SERIAL = False
|
# Authentication Backends
|
||||||
SIMULATE_LDAP = False
|
|
||||||
RUN_HOOKS = True
|
|
||||||
SOUNDS = True
|
|
||||||
|
|
||||||
LDAP_CA = './ssl/BKCA.crt'
|
# LDAP
|
||||||
LDAP_URI = 'ldaps://ldap1.binary.kitchen'
|
# LDAP_URI = ldaps://ldap1.binary.kitchen
|
||||||
LDAP_BINDDN = 'cn=%s,ou=people,dc=binary-kitchen,dc=de'
|
# LDAP_BINDDN = cn=%%s,ou=people,dc=binary-kitchen,dc=de
|
||||||
|
|
||||||
BOOTSTRAP_SERVE_LOCAL = True
|
# Local
|
||||||
|
LOCAL_USER_DB = ./doorlockd.passwd
|
||||||
|
|
||||||
TITLE = 'Binary Kitchen Doorlock'
|
TITLE = Binary Kitchen Doorlock
|
||||||
ROOM = 'Hauptraum'
|
ROOM = Hauptraum
|
||||||
WELCOME = 'Willkommen in der Binary Kitchen'
|
WELCOME = Willkommen in der Binary Kitchen
|
||||||
# LOCAL_USER_DB = '/etc/doorlockd.passwd'
|
|
||||||
|
|
||||||
SERIAL_PORT = '/dev/ttyAMA0'
|
SERIAL_PORT = /dev/ttyAMA0
|
||||||
|
|
||||||
|
SECRET_KEY = foobar
|
||||||
|
9
doorlockd.default.cfg
Normal file
9
doorlockd.default.cfg
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
[DEFAULT]
|
||||||
|
DEBUG = True
|
||||||
|
SIMULATE_SERIAL = True
|
||||||
|
SIMULATE_AUTH = False
|
||||||
|
RUN_HOOKS = False
|
||||||
|
SOUNDS = False
|
||||||
|
|
||||||
|
LDAP_URI =
|
||||||
|
LDAP_BINDDN =
|
Loading…
Reference in New Issue
Block a user