gradido/src/cpp/HTTPInterface/ElopageWebhook.h
2020-09-03 12:43:32 +02:00

41 lines
994 B
C++

#ifndef Elopage_Webhook_INCLUDED
#define Elopage_Webhook_INCLUDED
#include "PageRequestMessagedHandler.h"
#include "../tasks/CPUTask.h"
#include "../lib/NotificationList.h"
#include "Poco/Net/NameValueCollection.h"
class ElopageWebhook : public PageRequestMessagedHandler
{
public:
void handleRequest(Poco::Net::HTTPServerRequest& request, Poco::Net::HTTPServerResponse& response);
};
class HandleElopageRequestTask : public UniLib::controller::CPUTask, protected NotificationList
{
public:
HandleElopageRequestTask(Poco::Net::NameValueCollection& requestData);
const char* getResourceType() const { return "HandleElopageRequestTask"; };
int run();
protected:
// return true if at least one entry in db with this email exist
bool validateInput();
void writeUserIntoDB();
int getUserIdFromDB(bool checkEmail = false);
Poco::Net::NameValueCollection mRequestData;
std::string mEmail;
std::string mFirstName;
std::string mLastName;
};
#endif // Elopage_Webhook_INCLUDED