S_New4/src/pageManager.h

82 lines
2.5 KiB
C
Raw Normal View History

2019-07-06 18:47:29 +00:00
#ifndef MANAGEPAGE_H
#define MANAGEPAGE_H
2021-03-01 09:42:50 +00:00
#include "accountManager.h"
2019-10-17 16:10:13 +00:00
#include "parameterManager.h" // for isNumber
2019-08-19 15:32:52 +00:00
2021-03-01 09:42:50 +00:00
#ifdef _WIN32
2022-03-25 20:50:29 +00:00
#include "./../include/curl/curl.h"
2021-03-01 09:42:50 +00:00
#include <windows.h>
//----------------------?????????????????
#define noSLLCheck
2022-03-25 20:50:29 +00:00
#else
#include "curl/curl.h"
2021-03-01 09:42:50 +00:00
#endif
2019-07-06 18:47:29 +00:00
#include <sstream>
2019-09-01 08:40:36 +00:00
#include <unistd.h> // sleep
#include <algorithm>
2019-10-04 18:11:01 +00:00
#include <ctime> // std::time, localtime ...
2019-07-06 18:47:29 +00:00
struct Reply {
Reply() {}
Reply(std::string value_both) : html(value_both), url(value_both) {}
Reply(std::string html, std::string url) : html(html), url(url) {}
std::string html, url;
};
struct checkNameRply {
std::string name;
PAGE pageInUse;
enum STATUS { SUCCESS, FAILED, NOTHING_FOUND, MULTIPLE_OPTIONS, NO_WORKING_PAGE } status;
checkNameRply(const std::string &name, const PAGE &p, const checkNameRply::STATUS &s )
: name(name), pageInUse(p), status(s) {}
};
2019-07-06 18:47:29 +00:00
class PageManager
{
public:
2021-03-02 13:17:20 +00:00
PageManager(std::string sock5ProxyOnlyAddress = "127.0.0.1:9150");
2019-07-06 18:47:29 +00:00
~PageManager();
void setProxy(std::string ip, int port);
2019-07-08 18:17:11 +00:00
void setDebugMode(bool status);
2019-07-07 16:30:37 +00:00
void get_terminal_size(int& width);
2022-03-25 23:23:20 +00:00
Reply getServerRequest(std::string protocol, std::string Url, bool useCookies = false, std::string data = "", bool generateCookieFile = false, bool UrlAfterRedirectOnlyNeeded = false, std::string cookieFilePath = "");
2019-10-13 10:54:58 +00:00
int downLoadToFile(std::string filePath, std::string url);
2021-03-03 16:23:48 +00:00
int login(PAGE page, Account account, std::string cookieFilePath);
2022-03-25 23:23:20 +00:00
Reply getUrlAfterRedirect(std::string p, std::string Url, std::string cookieFilePath);
checkNameRply checkName(std::vector<PAGE> &pages, std::string Name, bool useFirstPage);
2019-07-06 18:47:29 +00:00
std::string getLinks(std::string HTML);
std::string chooseHosterLink(std::string HosterList, std::string Hoster_with_Highst_Priority_at_First, std::string languages_with_highst_priority_at_first, bool withWarnMsg);
std::string getLinkAfterHosterBasedOperation(std::string url);
2019-07-06 18:47:29 +00:00
int counterContains(std::string text, std::string substring_with_prozent_i_for_number, int starte_mit_dieser_Zahl = 1);
std::string grep(std::string text, std::string substring, bool IgnoreCaseSensetifity = false);
static std::string upper_string(const std::string& str);
2019-10-04 18:11:01 +00:00
size_t getDate();
2019-10-14 13:34:49 +00:00
std::string getExePath();
2019-10-17 16:10:13 +00:00
int compareVersions(std::string Version1, std::string Version2);
int writeToFile(std::vector<std::string> paths, std::string text);
2019-07-06 18:47:29 +00:00
2022-03-25 20:50:29 +00:00
static std::string getCurlVersion();
std::string sock5Proxy;
2019-07-06 18:47:29 +00:00
private:
2019-07-08 18:17:11 +00:00
bool debugMode = false;
2019-07-06 18:47:29 +00:00
};
#endif // MANAGEPAGE_H