1
0
mirror of https://github.com/binary-kitchen/doorlockd synced 2024-10-01 18:22:23 +02:00
doorlockd-mirror/logic.h

71 lines
1.7 KiB
C
Raw Normal View History

2015-05-11 00:18:22 +02:00
#ifndef LOGIC_H
#define LOGIC_H
#include <cstdint>
#include <string>
#include <fstream>
#include "config.h"
#include "epaper.h"
#include "door.h"
#include "logger.h"
class Logic
{
public:
static Logic &get();
~Logic();
2015-05-12 15:59:04 +02:00
enum Response {
Success = 0, // Request successful
Fail, // General non-specified error
AlreadyUnlocked, // Authentication successful, but door is already unlocked
AlreadyLocked, // Authentication successful, but door is already locked
NotJson, // Request is not a valid JSON object
JsonError, // Request is valid JSON, but does not contain necessary material
InvalidToken, // Request contains invalid token
InvalidCredentials, // Invalid LDAP credentials
InvalidIP, // IP check failure
UnknownAction, // Unknown action
LDAPInit, // Ldap initialization failed
};
Response parseRequest(const std::string &str);
2015-05-12 03:49:26 +02:00
void createNewToken(const bool stillValid);
2015-05-11 00:18:22 +02:00
private:
Logic();
2015-05-12 15:59:04 +02:00
Response _lock();
Response _unlock();
2015-05-11 00:18:22 +02:00
bool _checkToken(const std::string &token);
2015-05-12 15:59:04 +02:00
Response _checkLDAP(const std::string &user, const std::string &password);
2015-05-12 01:28:02 +02:00
bool _checkIP(const std::string &ip);
2015-05-11 00:18:22 +02:00
const Logger &_logger;
Door &_door;
Epaper &_epaper;
using Token = uint64_t;
Token _curToken;
bool _prevValid = { false };
Token _prevToken;
const static std::string _lockPagePrefix;
2015-05-11 20:40:26 +02:00
const static std::string _bindDN;
const static std::string _ldapServer;
2015-05-12 01:28:02 +02:00
const static std::string _allowedIpPrefix;
2015-05-11 00:18:22 +02:00
static constexpr int _tokenTimeout = TOKEN_TIMEOUT;
enum {LOCKED, UNLOCKED} _state = { LOCKED };
};
#endif