S_New4/src/parameterManager.h

259 lines
7.2 KiB
C
Raw Normal View History

2019-07-06 18:47:29 +00:00
#ifndef PARAMETERMANAGER_H
#define PARAMETERMANAGER_H
2019-09-23 14:41:30 +00:00
#ifndef __linux__
#ifndef _WIN32
2021-06-14 16:07:09 +00:00
#error "Error Invalid System: Only for Linux and Windows systems!"
2019-09-19 17:15:23 +00:00
#endif
#endif
2019-09-19 17:13:31 +00:00
2021-03-01 09:42:50 +00:00
2019-07-06 18:47:29 +00:00
#include <iostream>
2019-07-07 16:30:37 +00:00
#include <getopt.h>
2019-09-01 08:40:36 +00:00
#include <string.h> // strlen
2019-07-08 18:17:11 +00:00
#include <sstream>
#include <sys/stat.h>
#include <fstream>
2019-09-01 08:40:36 +00:00
#include <vector>
2019-08-13 16:59:01 +00:00
#include <limits.h> // PATH_MAX
#include <unistd.h> // readlink()
#include <dirent.h>
2019-08-13 16:59:01 +00:00
2019-10-04 18:11:01 +00:00
2021-03-01 09:42:50 +00:00
#include "logger.h"
2019-08-13 16:59:01 +00:00
#define UpdaterCloudUrlWithPath "https://cloud.obermui.de/s/tXz7SWdaPJ7TacZ/download?path=%2F&files="
2020-08-19 20:10:28 +00:00
#define SecondUpdaterCloudUrlWithPath "https://snew4.obermui.de/download?path=%2F&files="
2021-06-14 15:43:56 +00:00
#define VERSION "5.0.5"
2021-03-02 20:58:36 +00:00
#define DEFAULT_FILE_VERSION "2.1"
//default, anime, normal,
//suche: für jede katego. eine
//zu beginn, erst eiunmal serie suchen
2021-06-14 16:07:09 +00:00
2019-07-06 18:47:29 +00:00
enum Modus {
EXIT = -1,
DEFAULT_MODUS = 0,
DIRECT_LINK_MODUS = 1,
2019-08-13 16:59:01 +00:00
SEARCH_MODUS = 2,
2019-09-20 19:47:02 +00:00
INFO_MODUS = 3,
2019-10-13 12:28:53 +00:00
NEWS_MODUS = 4,
2019-10-26 14:27:46 +00:00
UPDATE_MODUS = 5,
REMOVE_SETTINGS_AND_CACHE_MODUS = 6,
PRINT_LOG_FILE_MODUS
2019-08-03 19:48:27 +00:00
2019-07-06 18:47:29 +00:00
};
struct PAGE {
PAGE() {}
PAGE( std::string url, std::string nameID, std::string urlAphabetSerienList, std::string urlDir )
: name_id(nameID), url(url), urlAlphabetSerienList(urlAphabetSerienList), UrlDir(urlDir)
{
}
std::string name_id, url, urlAlphabetSerienList, UrlDir;
};
2021-04-27 19:01:08 +00:00
2019-07-06 18:47:29 +00:00
struct Settings {
const std::string programName = "S_New4";
PAGE sto = PAGE( "serienstream.sx", "Normale_Serien", "/serien-alphabet", "/serie/stream/");
PAGE anicio = PAGE( "anicloud.io", "Animes", "/animes-alphabet", "/anime/stream/");
2021-03-02 13:17:20 +00:00
PAGE pagesALL[2] = { sto, anicio };
std::vector<PAGE> pages; // Priority sorted
bool useFirstPage = false;
PAGE direktLink_explizitPage;
Settings() {
pages.push_back( sto );
pages.push_back( anicio );
}
// Wenn das Betriebsystem x86 ist:
#if defined (_X86_) || defined (__amd64__) || defined (_M_IX86)
// Wenn das Betriebsystem LINUX ist und 64 Bit ist:
#if defined (__linux) && ( defined (_LP64) || defined (__LP64__))
2020-08-19 20:10:28 +00:00
const std::string VersionFileName = std::string("Version-LINx86.txt");
const std::string ProgrammFileName = std::string("S_New4-LINx86");
#else
//Wenn das Betriebsystem Windows ist und 64 Bit ist
#if defined (_WIN64)
2020-08-19 20:10:28 +00:00
const std::string VersionFileName = std::string("Version-WINx86.txt");
const std::string ProgrammFileName = std::string("S_New4-WINx86.exe");
#else
//Ungültiges Betriebsystem => Error
2019-11-04 16:54:11 +00:00
#error Kein Windows oder Linux 64 Bit System: Der Updater Fuktion wird nicht Funktionieren! Remove this Line in the Code to use S_New4 without the Updater. ( But your System must be Windows or Linux )
2020-08-19 20:10:28 +00:00
const std::string VersionFileName = "";
const std::string ProgrammFileName = "";
#endif
#endif
//Nicht x86 Architekture
#else
//Raspberry Pi -> ARMv6 -> 32Bit
#if defined(__ARM_ARCH_6__) && defined (__linux)
2020-08-19 20:10:28 +00:00
const std::string VersionFileName = std::string("Version-LIN-ARMv6.txt");
const std::string ProgrammFileName = std::string("S_New4-LIN-ARMv6");
#else
2021-06-14 16:07:09 +00:00
#error Falsche Architektur: Der Updater Fuktion wird nicht Funktionieren! Remove this Line in the Code to use S_New4 without the Updater. ( But your System must be Windows or Linux )
2020-08-19 20:10:28 +00:00
const std::string VersionFileName = "";
const std::string ProgrammFileName = "";
#endif
#endif
2021-03-01 09:42:50 +00:00
2021-04-27 19:01:08 +00:00
2019-09-04 09:05:11 +00:00
std::string name,
accountFilePath = "",
accountNumberPath= "",
cookieFilePath = "",
serienListPath = "",
lastUpdateDateFilePath = "",
configDir="",
cacheDir="",
logFilePath="",
defaultsFilePath = "",
2019-07-07 16:30:37 +00:00
proxy_ip = "127.0.0.1",
languages = "GerDub,GerSub,Eng,",
2019-08-21 18:26:22 +00:00
genaueHoster = "",
2021-01-12 17:42:29 +00:00
version = VERSION,
2021-03-02 20:58:36 +00:00
defaultFileVersion= DEFAULT_FILE_VERSION,
default_checkPath = "",
2019-08-13 16:59:01 +00:00
default_Searchmuster = "S%Staffel%E%Folge%";
2019-08-03 19:48:27 +00:00
std::vector<std::string> outputFilePaths;
2019-10-27 18:13:11 +00:00
Modus modus = Modus::EXIT;
2019-07-08 18:17:11 +00:00
bool colorless = false,
debugMode = false,
search_IgnoreUpperLower = true,
search_wantUpdate = false,
search_show_othernames = false,
askForEveryDir = true,
skipEpisodenNameOutput = false,
showLastUpdate = false;
2019-07-08 18:17:11 +00:00
int startEpisode = 1,
stopEpisode = 0,
startSeason = 1,
stopSeason = 0,
2019-08-03 19:48:27 +00:00
proxy_port = 9050,
2019-10-04 18:11:01 +00:00
default_maxDirs = 20,
updateWarningDays = 10;
2019-08-13 16:59:01 +00:00
char pathSymbol = '/';
char wrongPathSymbol = '\\';
2019-08-16 12:34:44 +00:00
unsigned maxThreads = 0;
2019-07-08 18:17:11 +00:00
2021-04-27 19:01:08 +00:00
enum COLOR {
NO_COLOR = 0,
Black = 30,
Dark_Gray = 90,
Red = 31,
Light_Red = 91,
Green = 32,
Light_Green = 92,
Brown_Orange = 33,
Yellow = 93,
Blue = 34,
Light_Blue = 94,
Purple = 35,
Light_Purple = 95,
Cyan = 36,
Light_Cyan = 96,
Light_Gray = 37,
White = 97
};
std::string setPColor(const COLOR &color) {
return ( (colorless) ? "" : "\033[" + std::to_string(color) +"m" );
}
std::string resetPColor() {
return ( (colorless) ? "" : "\033[0m" );
}
2019-07-06 18:47:29 +00:00
};
2021-04-27 19:01:08 +00:00
std::string replace(std::string str, std::string substr1, std::string substr2);
2019-07-06 18:47:29 +00:00
int manageParameter(Settings &settings, int argc, char ** argv);
2019-08-17 14:03:28 +00:00
int loadDefaulOptions(Settings & settings);
std::vector<std::string> compare(std::string All_Options_with_komma_between, std::string input);
bool isSame(char ** argv, std::string FunktionName);
bool isNumber(std::string number);
2019-07-07 16:30:37 +00:00
int setPaths(Settings &settings);
2019-08-13 16:59:01 +00:00
2019-08-17 14:03:28 +00:00
bool fileExists (const std::string& name);
bool dirExists(std::string dir);
bool nothingExists(std::string path);
2019-08-31 18:35:11 +00:00
bool createDirIsOk(std::string path);
bool makePathIsOk(std::string path);
2021-03-02 13:17:20 +00:00
bool removeDirIsOk(std::string path, Settings *settings, bool askForDelete);
2019-08-13 16:59:01 +00:00
int unterOption_help(Settings &settings);
void unterOption_printVersion(Settings &settings);
2019-07-07 16:30:37 +00:00
int unterOption_default(Settings * settings, int argc, char **argv);
void unterOption_default_help(std::string programName);
2019-07-07 16:30:37 +00:00
int unterOption_url(Settings * settings, int argc, char **argv);
void unterOption_url_help(std::string programName);
2019-07-07 16:30:37 +00:00
int unterOption_search(Settings * settings, int argc, char **argv);
void unterOption_search_help(std::string programName);
2019-08-13 16:59:01 +00:00
int unterOption_info(Settings * settings, int argc, char **argv);
void unterOption_info_help(std::string programName);
void unterOption_clean(Settings * settings, int argc, char **argv);
2019-09-20 19:47:02 +00:00
int unterOption_news(Settings * settings, int argc, char **argv);
void unterOption_news_help(std::string programName);
int unterOption_update(Settings * settings, int argc, char **argv);
void unterOption_update_help(std::string programName);
2019-07-06 18:47:29 +00:00
2019-10-26 14:27:46 +00:00
int unterOption_RemoveSettings_or_CacheDir(Settings * settings, int argc, char **argv);
void unterOption_RemoveSettings_or_CacheDire_help(std::string programName);
int unterOption_printLogFile(Settings * settings, int argc, char **argv);
void unterOption_printLogFile(std::string programName);
int setS5ProxytoSettings(Settings &settings, std::string optarg);
2021-03-02 13:17:20 +00:00
int setUpInternetPages(Settings &settings, std::string optarg);
2019-07-06 18:47:29 +00:00
#endif // PARAMETERMANAGER_H