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>
2019-08-03 16:23:12 +00:00
# include <sys/stat.h>
2019-08-17 15:55:00 +00:00
# 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()
2019-10-26 14:18:47 +00:00
# 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
2020-06-26 11:02:04 +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"
2020-06-26 11:02:04 +00:00
2021-02-28 13:59:33 +00:00
//default, anime, normal,
//suche: für jede katego. eine
//zu beginn, erst eiunmal serie suchen
2020-02-23 22:07:46 +00:00
2021-06-14 16:07:09 +00:00
2019-07-06 18:47:29 +00:00
enum Modus {
EXIT = - 1 ,
DEFAULT_MODUS = 0 ,
2019-08-03 16:23:12 +00:00
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 ,
2020-02-17 19:17:19 +00:00
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
} ;
2021-02-28 13:59:33 +00:00
struct PAGE {
2021-03-01 12:59:37 +00:00
PAGE ( ) { }
PAGE ( std : : string url , std : : string nameID , std : : string urlAphabetSerienList , std : : string urlDir )
: name_id ( nameID ) , url ( url ) , urlAlphabetSerienList ( urlAphabetSerienList ) , UrlDir ( urlDir )
{
2021-02-28 13:59:33 +00:00
2021-03-01 12:59:37 +00:00
}
std : : string name_id , url , urlAlphabetSerienList , UrlDir ;
2021-02-28 13:59:33 +00:00
} ;
2021-04-27 19:01:08 +00:00
2019-07-06 18:47:29 +00:00
struct Settings {
2021-02-28 13:59:33 +00:00
2021-03-01 12:59:37 +00:00
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 } ;
2021-03-01 12:59:37 +00:00
std : : vector < PAGE > pages ; // Priority sorted
bool useFirstPage = false ;
2021-02-28 13:59:33 +00:00
2021-03-01 12:59:37 +00:00
PAGE direktLink_explizitPage ;
2021-02-28 13:59:33 +00:00
2021-03-01 12:59:37 +00:00
Settings ( ) {
pages . push_back ( sto ) ;
pages . push_back ( anicio ) ;
2021-02-28 13:59:33 +00:00
}
2019-11-04 16:32:14 +00:00
// 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 " ) ;
2019-11-04 16:32:14 +00:00
# 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 " ) ;
2019-11-04 16:32:14 +00:00
# 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 = " " ;
2019-11-04 16:32:14 +00:00
# endif
# endif
//Nicht x86 Architekture
# else
2020-02-23 22:07:46 +00:00
//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 " ) ;
2020-02-23 22:07:46 +00:00
# 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 = " " ;
2020-02-23 22:07:46 +00:00
# endif
2019-10-14 16:27:14 +00:00
# endif
2019-11-04 16:32:14 +00:00
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 ,
2021-02-28 13:59:33 +00:00
accountFilePath = " " ,
accountNumberPath = " " ,
cookieFilePath = " " ,
serienListPath = " " ,
2019-10-26 14:18:47 +00:00
lastUpdateDateFilePath = " " ,
configDir = " " ,
cacheDir = " " ,
2020-02-17 19:17:19 +00:00
logFilePath = " " ,
2019-10-26 14:18:47 +00:00
defaultsFilePath = " " ,
2019-07-07 16:30:37 +00:00
proxy_ip = " 127.0.0.1 " ,
2019-10-26 14:18:47 +00:00
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 ,
2019-08-21 14:59:22 +00:00
default_checkPath = " " ,
2019-08-13 16:59:01 +00:00
default_Searchmuster = " S%Staffel%E%Folge% " ;
2019-08-03 19:48:27 +00:00
2020-02-22 14:26:24 +00:00
std : : vector < std : : string > outputFilePaths ;
2021-02-28 13:59:33 +00:00
2019-10-27 18:13:11 +00:00
Modus modus = Modus : : EXIT ;
2019-07-08 18:17:11 +00:00
bool colorless = false ,
2019-08-03 16:23:12 +00:00
debugMode = false ,
search_IgnoreUpperLower = true ,
2019-10-26 14:18:47 +00:00
search_wantUpdate = false ,
2021-03-02 20:57:19 +00:00
search_show_othernames = false ,
2019-10-31 12:15:54 +00:00
askForEveryDir = true ,
2019-11-11 18:01:15 +00:00
skipEpisodenNameOutput = false ,
showLastUpdate = false ;
2019-07-08 18:17:11 +00:00
int startEpisode = 1 ,
stopEpisode = 0 ,
startSeason = 1 ,
2019-08-03 16:23:12 +00:00
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 = ' / ' ;
2021-01-12 19:41:58 +00:00
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
2020-02-23 14:38:31 +00:00
std : : string replace ( std : : string str , std : : string substr1 , std : : string substr2 ) ;
2019-07-06 18:47:29 +00:00
2019-08-03 16:23:12 +00:00
int manageParameter ( Settings & settings , int argc , char * * argv ) ;
2019-08-17 14:03:28 +00:00
int loadDefaulOptions ( Settings & settings ) ;
2019-08-21 16:39:35 +00:00
std : : vector < std : : string > compare ( std : : string All_Options_with_komma_between , std : : string input ) ;
2019-11-11 18:24:27 +00:00
bool isSame ( char * * argv , std : : string FunktionName ) ;
2019-08-31 17:57:42 +00:00
bool isNumber ( std : : string number ) ;
2019-07-07 16:30:37 +00:00
2019-09-04 08:42:20 +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 ) ;
2019-08-21 19:22:40 +00:00
bool nothingExists ( std : : string path ) ;
2019-09-04 15:50:53 +00:00
2019-08-31 18:35:11 +00:00
bool createDirIsOk ( std : : string path ) ;
2019-09-04 15:50:53 +00:00
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
2019-09-04 15:50:53 +00:00
int unterOption_help ( Settings & settings ) ;
2019-10-14 15:59:59 +00:00
void unterOption_printVersion ( Settings & settings ) ;
2019-07-07 16:30:37 +00:00
2019-08-03 16:23:12 +00:00
int unterOption_default ( Settings * settings , int argc , char * * argv ) ;
2019-09-04 09:04:20 +00:00
void unterOption_default_help ( std : : string programName ) ;
2019-07-07 16:30:37 +00:00
2019-08-03 16:23:12 +00:00
int unterOption_url ( Settings * settings , int argc , char * * argv ) ;
2019-09-04 09:04:20 +00:00
void unterOption_url_help ( std : : string programName ) ;
2019-07-07 16:30:37 +00:00
2019-08-03 16:23:12 +00:00
int unterOption_search ( Settings * settings , int argc , char * * argv ) ;
2019-09-04 09:04:20 +00:00
void unterOption_search_help ( std : : string programName ) ;
2019-08-03 16:23:12 +00:00
2019-08-13 16:59:01 +00:00
int unterOption_info ( Settings * settings , int argc , char * * argv ) ;
2019-09-04 09:04:20 +00:00
void unterOption_info_help ( std : : string programName ) ;
2019-08-03 16:23:12 +00:00
2019-08-16 18:12:25 +00:00
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 ) ;
2019-10-14 15:59:59 +00:00
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 ) ;
2020-02-17 19:17:19 +00:00
int unterOption_printLogFile ( Settings * settings , int argc , char * * argv ) ;
void unterOption_printLogFile ( std : : string programName ) ;
2019-08-31 17:57:42 +00:00
int setS5ProxytoSettings ( Settings & settings , std : : string optarg ) ;
2021-03-02 13:17:20 +00:00
int setUpInternetPages ( Settings & settings , std : : string optarg ) ;
2019-08-31 17:57:42 +00:00
2019-07-06 18:47:29 +00:00
# endif // PARAMETERMANAGER_H