* Fix log file access, refactor configuration reading class * Remove bypass option in favor of failmode * fix loging, print enrolment info * Add EMAIL method * Add yubi authentication method * Add support for verification message * Add verification * Made changes in Vagrant's files to run different OSs * Switch off tests and packages demands to run PAM on Debian 11 * Add authentication totp * Changes in utils * Remove unnessesary interface * Changed vagrant files and postinstal script for Ubuntu 20 and 22 * Moved adding PasswordAuth to vagrant file from posinst * Added ubuntu 24.04 * Set version * Poprawki UI * WebSocket implementation * Add totp authentication method * fixup changes in utils * Remove unnessesary interface and simplify code * Remove "default" message handler from WebSocket class * Change display names of known authentication methods * Cleanup code in 'main' file * Add CheckApplication * Remove unused function * Changed vagrant files and postinstal script for Ubuntu 20 and 22 * Moved adding PasswordAuth to vagrant file from posinst * Added ubuntu 24.04 * Set version to 2.0.2 * Proper handle for missing configuration * Fixup use value of optional object * Add more vCPU/RAM to vagrant VM's + fix translations * Minor WS fixes, translations * Proper handler for Werification error * Make use of prompt parameter * Add max number of prompts * remove unused code, fir includes * Add Waiting status * Add check application status check --------- Co-authored-by: Madzik <m.w@linux.pl>
39 lines
1.1 KiB
C++
Executable File
39 lines
1.1 KiB
C++
Executable File
#pragma once
|
|
|
|
#include <cstddef>
|
|
#include <iterator>
|
|
#include <rublon/core_handler_interface.hpp>
|
|
#include <rublon/pam.hpp>
|
|
#include <rublon/pam_action.hpp>
|
|
#include <rublon/utils.hpp>
|
|
#include <string_view>
|
|
|
|
namespace rublon {
|
|
|
|
class AuthenticationStep {
|
|
protected:
|
|
std::string _systemToken;
|
|
std::string _tid;
|
|
|
|
public:
|
|
AuthenticationStep() = default;
|
|
AuthenticationStep(std::string systemToken, std::string tid) : _systemToken{std::move(systemToken)}, _tid{std::move(tid)} {}
|
|
protected:
|
|
void addSystemToken(Document & body) const {
|
|
auto & alloc = body.GetAllocator();
|
|
body.AddMember("systemToken", Value{this->_systemToken.c_str(), alloc}, alloc);
|
|
}
|
|
|
|
void addTid(Document & body) const {
|
|
auto & alloc = body.GetAllocator();
|
|
body.AddMember("tid", Value{this->_tid.c_str(), alloc}, alloc);
|
|
}
|
|
|
|
void addAccessToken(Document & body, std::string_view token) const {
|
|
auto & alloc = body.GetAllocator();
|
|
body.AddMember("accessToken", Value{token.data(), static_cast< unsigned >(token.length()), alloc}, alloc);
|
|
}
|
|
};
|
|
|
|
} // namespace rublon
|