mirror of
https://github.com/binary-kitchen/doorlockd
synced 2024-11-16 03:59:11 +01:00
45 lines
1.1 KiB
C++
45 lines
1.1 KiB
C++
#ifndef RESPONSE_H
|
|
#define RESPONSE_H
|
|
|
|
#include <string>
|
|
|
|
struct Response
|
|
{
|
|
enum Code {
|
|
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
|
|
UnknownCommand, // Unknown action
|
|
LDAPInit, // Ldap initialization failed
|
|
} code;
|
|
|
|
std::string message;
|
|
std::string toJson() const;
|
|
operator bool() const;
|
|
|
|
Response() :
|
|
code(Fail),
|
|
message("General failure")
|
|
{
|
|
}
|
|
|
|
Response(Response::Code code, const std::string &message = "") :
|
|
code(code),
|
|
message(message)
|
|
{
|
|
}
|
|
|
|
private:
|
|
|
|
const static std::string _codeKey;
|
|
const static std::string _messageKey;
|
|
};
|
|
|
|
#endif // RESPONSE_H
|