Compare commits

...

2 Commits

Author SHA1 Message Date
Simon Pirkelmann ca1de7f82d logging configuration 2022-12-28 17:47:14 +01:00
Simon Pirkelmann 786df6b552 skip empty lines in admins file 2022-12-28 17:10:06 +01:00
2 changed files with 14 additions and 8 deletions

View File

@ -28,7 +28,7 @@ def create_super_admins(app, user_datastore):
# afterwards
admin_data = admin_file.read_text().split('\n')
for i, line in enumerate(admin_data):
if not line.strip().startswith('#'):
if len(line.strip()) > 0 and not line.strip().startswith('#'):
try:
user, email, pw = line.split()
validate_email(email)
@ -80,6 +80,8 @@ def create_app():
)
app.config.from_envvar('APPLICATION_SETTINGS')
logging.basicConfig(filename=app.config['LOG_FILE'], level=logging.INFO)
token_file = Path(app.config.get('TOKEN_FILE'))
if not token_file.exists():
app.logger.warning(

View File

@ -30,7 +30,7 @@ class DoorHandle:
self.nfc_sock.connect(nfc_socket)
self.logger.info(f"Connected to NFC socket at {nfc_socket}.")
except Exception as e:
print(f"Could not connect to NFC socket at {nfc_socket}. "
self.logger.error(f"Could not connect to NFC socket at {nfc_socket}. "
f"Exception: {e}")
self.nfc_sock = None
#raise
@ -77,11 +77,13 @@ class DoorHandle:
email = data[3].strip() if len(data) > 3 else None
valid_thru = data[4].strip() if len(data) > 4 else None
tokens[token] = {'name': name,
'organization': organization,
'email': email,
'valid_thru': valid_thru,
'inactive': inactive}
tokens[token] = {
'name': name,
'organization': organization,
'email': email,
'valid_thru': valid_thru,
'inactive': inactive
}
return tokens
def store_tokens(self, tokens):
@ -105,12 +107,14 @@ class DoorHandle:
if self.nfc_sock is not None:
self.nfc_sock.send(b'open ' + user.encode() + b'\n')
else:
raise RuntimeError("No connection to NFC socket. Cannot close door!")
self.logger.error("No connection to NFC socket. Cannot open door!")
raise RuntimeError("No connection to NFC socket. Cannot open door!")
def close_door(self, user=''):
if self.nfc_sock is not None:
self.nfc_sock.send(b'close ' + user.encode() + b'\n')
else:
self.logger.error("No connection to NFC socket. Cannot close door!")
raise RuntimeError("No connection to NFC socket. Cannot close door!")
def get_most_recent_token(self):