MFALoginResponse.h
Go to the documentation of this file.
1 // Copyright (c) 2020 Digital Barriers
4 
19 #pragma once
20 
21 #include "EdgeVisSDK.h"
22 #include "Pimpl.h"
23 
24 #include "LoginResponse.h"
25 
26 #include "MFAVersion.h"
27 
28 namespace EdgeVisDecoderSDK
29 {
30  class MFALoginResponseImpl;
31 
32  class MFALoginResponse : public LoginResponse
33  {
34  public:
35 
36  DB_EDGEVIS_SDK MFALoginResponse();
37 
38  MFALoginResponse(std::weak_ptr<MFALoginResponseImpl> pimpl);
39 
40  DB_EDGEVIS_SDK virtual ~MFALoginResponse();
41 
47  DB_EDGEVIS_SDK std::vector<MFAVersion> SupportedProtocols() const;
48 
56  DB_EDGEVIS_SDK bool EnrolmentRequired() const;
57 
64  DB_EDGEVIS_SDK std::wstring EnrolmentPath() const;
65 
73  DB_EDGEVIS_SDK int32_t EmergencyCodesLeft() const;
74 
80  DB_EDGEVIS_SDK std::wstring MFAPasscodeValidationRegex() const;
81 
87  DB_EDGEVIS_SDK MFAVersion Version() const;
88  };
89 }
DB_EDGEVIS_SDK std::wstring MFAPasscodeValidationRegex() const
Retrieve a regex to allow MFA passcode validation for the MFA version in use.
DB_EDGEVIS_SDK bool EnrolmentRequired() const
Determine if the current user account is required to complete MFA enrolment before being permitted to...
DB_EDGEVIS_SDK MFAVersion Version() const
Determine the MFA version being used to log in to the server.
MFAVersion
Definition: MFAVersion.h:26
DB_EDGEVIS_SDK std::wstring EnrolmentPath() const
Retrieve a URL to a web page on the server where the user can enrol for MFA.
DB_EDGEVIS_SDK std::vector< MFAVersion > SupportedProtocols() const
Retrieve the list of supported MFA protocols tha may be used for an MFA login request.
DB_EDGEVIS_SDK int32_t EmergencyCodesLeft() const
Provides the number of emergency codes still available after logging in using an emergency code...
The EdgeVis Decoder SDK namespace.
Holds the result of a time based one time passcode (OTP) login attempt.
Definition: MFALoginResponse.h:32
Specifies the supported MFA protocols.