#include "functions.hpp" #include "filesystem.hpp" #include #include #include #include #include #include #include constexpr std::array languages{ "en", "English", "sv", "Svenska", "no", "Norsk", "da", "Dansk", "fi", "Suomeksi", "nl", "Nederlands", "de", "Deutsch", "it", "Italiano", "es", "Español", "fr", "Français", "pl", "Polski", "hu", "Magyar", "el", "Greek", "tr", "Turkish", "ru", "Russian", "he", "Hebrew", "ja", "Japanese", "pt", "Portuguese", "zh", "Chinese", "cs", "Czech", "sl", "Slovenian", "hr", "Croatian", "ko","Korea" }; // return true if filename has specified season // set ep_pos to position where episode number starts bool searchSpecificSeason(const char *const p, size_t &ep_pos, const std::string &number) { size_t cur_pos{}; bool found_season{false}; while( p[cur_pos] != '\0' ) { if( (p[cur_pos] == 's' || p[cur_pos] == 'S') && isdigit(p[cur_pos+1]) ) { cur_pos++; while( p[cur_pos] == '0' ) cur_pos++; size_t offset{}; while( offset < number.size() && p[cur_pos + offset] == number[offset] ) offset++; cur_pos += offset; if( offset != number.size() ) continue; if( (p[cur_pos] == 'e' || p[cur_pos] == 'E') && isdigit(p[cur_pos+1]) ) { found_season = true; ep_pos = cur_pos + 1; break; } } cur_pos++; } return found_season; } bool searchSpecificSeason(const char *const p, const std::string &number) { size_t tmp; return searchSpecificSeason(p, tmp, number); } bool searchSeason(const char *const p, size_t &season_pos) { size_t cur_pos{}; bool found_season{false}; while( p[cur_pos] != '\0' ) { if( (p[cur_pos] == 's' || p[cur_pos] == 'S') && isdigit(p[cur_pos+1]) ) { cur_pos++; season_pos = cur_pos; // after ++ because we want the first pos to point to season's number while( isdigit(p[cur_pos]) ) cur_pos++; if( (p[cur_pos] == 'e' || p[cur_pos] == 'E') && isdigit(p[cur_pos+1]) ) { found_season = true; break; } } cur_pos++; } return found_season; } bool searchSeason(const char *const p) { size_t tmp{}; return searchSeason(p, tmp); } void findSeason(std::set &files, int season, const std::string &path) { auto number = std::to_string(season); for( const auto p: FSLib::Directory(path) ) { if(FSLib::isDirectory(path + "/" + p)) { findSeason(files, season, path + "/" + p); continue; } if( searchSpecificSeason(p, number) ) files.insert(path + "/" + p); } } void findSeasons(std::map> &seasons, const std::string &path, const std::set &season_numbers) { size_t season_pos{std::string::npos}; // season_pos - position of first digit of the season for( const auto p: FSLib::Directory(path) ) { if(FSLib::isDirectory(path + "/" + p)) { findSeasons(seasons, path + "/" + p, season_numbers); continue; } if( searchSeason(p, season_pos) ) { auto num = atoi(p+season_pos); if( season_numbers.find(num) != season_numbers.end() ) seasons[num].insert(path + "/" + p); } } } void iterateFS(std::map> &seasons, const std::string &path) { size_t season_pos{std::string::npos}; // season_pos - position of first digit of the season for( const auto p: FSLib::Directory(path) ) { if(FSLib::isDirectory(path + "/" + p)) { iterateFS(seasons, path + "/" + p); continue; } if( searchSeason(p, season_pos) ) seasons[atoi(p+season_pos)].insert(path + "/" + p); } } std::string getDefUrl( std::string show, const std::string &language, Curl &c ) { std::replace(show.begin(), show.end(), ' ', '+'); auto source_code = c.execute("https://www.thetvdb.com/search?q=" + encodeUrl(show) + "&l=" + language); size_t order{}, pos{}; std::vector urls; while( true ) { pos = source_code.find("/ser", pos); if( pos != std::string::npos ) { auto end = source_code.find(">", pos); end--; urls.push_back(source_code.substr(pos, end - pos)); pos = end + 2; end = source_code.find("<", pos); std::cout << ++order << ". " << source_code.substr(pos, end - pos) << std::endl; } else { break; } } std::cout << "Which TV Show is the right one? "; std::cin >> pos; std::cin.clear(); std::cin.ignore(1, '\n'); return "https://www.thetvdb.com" + urls[pos-1]; } void printHelp() { std::cout << "usage: tv_rename [--help] [--show show name] [--season season number]" << std::endl; std::cout << " [--correct-path] [--show-path show path] [--trust]" << std::endl; std::cout << " [--linux] [--lang language] [--print-langs]" << std::endl; std::cout << std::endl << "Rename TV episodes" << std::endl << std::endl << "optional arguments:" << std::endl; std::cout << " -h, --help\t\tshow this help message and exit" << std::endl; std::cout << " --show show name, -s show name" << std::endl; std::cout << "\t\t\tTV show from which you want episode names (needs to be" << std::endl; std::cout << "\t\t\tin quotation marks if it has more than one word)" << std::endl; std::cout << " --season season number, -n season number" << std::endl; std::cout << "\t\t\tSeason number/s (if multiple seasons, put them in" << std::endl; std::cout << "\t\t\tquotation marks and seperate by one space)" << std::endl; std::cout << "\t\t\tor 'all' for all seasons in selected subdirectory" << std::endl; std::cout << " --show-path show path, -p show path" << std::endl; std::cout << "\t\t\tPath of the directory with episodes" << std::endl; std::cout << " --correct-path, -c\tThis is the correct path, stop asking me!" << std::endl; std::cout << " --trust, -t\t\tDon't ask whether the names are correct" << std::endl; std::cout << " --linux, -x\t\tDon't replace characters characters that are illegal in Windows" << std::endl; std::cout << " --lang language, -l language" << std::endl; std::cout << "\t\t\tSelect which language the episode names shoud be in" << std::endl; std::cout << " --print-langs\t\tPring available language" << std::endl; } void parseSeasonNumbers(std::set &seasons_num, const char *argument) { size_t pos{0}; while(!isdigit(argument[pos]) && argument[pos] != '\0') pos++; if( argument[pos] == '\0' ) { seasons_num.clear(); return; } int temp; std::istringstream iss(argument + pos); while(iss >> temp) { seasons_num.insert(temp); } } void printLangs() { for( size_t i = 0; i < languages.size(); i += 2 ) { std::cout << languages[i] << " - " << languages[i+1] << std::endl; } } bool findLanguage( const char *language ) { for( size_t i = 0; i < languages.size(); i += 2 ) { if( !strcmp(language, languages[i]) ) return true; } return false; } std::string encodeUrl( const std::string &url ) { //stolen from here - https://stackoverflow.com/questions/154536/encode-decode-urls-in-c std::ostringstream encoded; encoded.fill('0'); encoded << std::hex; for( auto &x : url ) { if( std::isalnum(x) || x == '-' || x == '_' || x == '.' || x == '~' ) { encoded << x; continue; } encoded << std::uppercase << '%' << std::setw(2); encoded << int(static_cast(x)) << std::nouppercase; } return encoded.str(); }