#include "utils.h" #include #include #include #include #include #include #include #include "../exceptions/ofdrequestexception.h" #include "settings/settings.h" #include #include #include #include std::string get_local_ip_address() { struct ifaddrs * ifAddrStruct=NULL; struct ifaddrs * ifa=NULL; void * tmpAddrPtr=NULL; getifaddrs(&ifAddrStruct); for (ifa = ifAddrStruct; ifa != NULL; ifa = ifa->ifa_next) { if (ifa->ifa_addr == nullptr) continue; if (ifa->ifa_addr->sa_family==AF_INET) { tmpAddrPtr=&((struct sockaddr_in *)ifa->ifa_addr)->sin_addr; char addressBuffer[128]; inet_ntop(AF_INET, tmpAddrPtr, addressBuffer, INET_ADDRSTRLEN); std::string value(addressBuffer); if (!strncmp(value.c_str(), "192.168", 7)) { return value; } } } if (ifAddrStruct!=NULL) freeifaddrs(ifAddrStruct); throw std::runtime_error(QWidget::tr("Could not find any usable local IP address. If you beleive that this is problem with the program, please, contact the developer.").toStdString()); } std::string to_utf8(std::wstring wide_string) { static std::wstring_convert> utf8_conv; return utf8_conv.to_bytes(wide_string); } std::wstring from_utf8(std::string string) { static std::wstring_convert> utf8_conv; return utf8_conv.from_bytes(string); } std::string get_path_relative_to_home(std::string path) { return std::string(std::getenv("HOME")) + "/" + path; } template bool vector_contains_element(const std::vector& vector, const T& to_find) { for (const T& element : vector) { if (element == to_find) return true; } return false; } //ужас template bool vector_contains_element(const std::vector& vector, const std::string& to_find); std::vector split(std::string s, std::string delimiter) { std::vector result; size_t pos = 0; std::string token; while ((pos = s.find(delimiter)) != std::string::npos) { token = s.substr(0, pos); result.push_back(token); s.erase(0, pos + delimiter.length()); } result.push_back(s); return result; } std::wstring substring_from_to(std::wstring& text, std::wstring from, std::wstring to) { unsigned int start_pos = 0; unsigned int end_pos = 0; std::wstring substring; std::wregex start_regex(from); std::wregex end_regex(to); for (std::wsregex_iterator it{text.begin(), text.end(), start_regex}, end{}; it != end; it++) { start_pos = it->position() + it->str().size(); break; } if(text == from_utf8("")) return text; substring = text.substr(start_pos, text.size()); for (std::wsregex_iterator it{substring.begin(), substring.end(), end_regex}, end{}; it != end; it++) { end_pos = it->position(); break; } if (end_pos == 0) return substring; substring = substring.substr(0, end_pos); return substring; } std::wstring trim_html_response(std::wstring& check) { std::wstring begin_check_marker = from_utf8(""); std::wstring end_check_marker = from_utf8(""); std::wstring trimmed = substring_from_to(check, begin_check_marker, end_check_marker); trimmed += from_utf8("\n"); return trimmed; } std::vector find_in_html(std::string& html, std::string regex, std::string html_start, std::string html_end) { std::regex searching_regex(regex); std::vector parsed; for (std::sregex_iterator it{html.begin(), html.end(), searching_regex}, end{}; it != end; it++) { std::wstring found_entry = from_utf8(it->str()); std::wcout << "Found: " << found_entry << std::endl; std::wstring extracted = substring_from_to(found_entry, from_utf8(html_start), from_utf8(html_end)); std::wcout << "Extracted: " << extracted << std::endl; parsed.push_back(extracted); } return parsed; } std::vector find_products_in_html(std::string html) { return find_in_html(html, "
.*<\\/b><\\/div>", "
", "<\\/b><\\/div>"); } std::vector find_amounts_in_html(std::string html) { std::vector founds = find_in_html(html, "
\\d+(\\.|\\,)?\\d{0,3}<\\/span>", "", "<\\/span>"); for (auto &found : founds) { std::replace(found.begin(), found.end(), ',', '.'); } return founds; } std::vector find_prices_in_html(std::string html) { std::vector founds = find_in_html(html, "X <\\/span>\\d+(\\.|,)\\d{2}<\\/span>", "X <\\/span>", "<\\/span>"); for (auto &found : founds) { std::replace(found.begin(), found.end(), ',', '.'); } return founds; } void dumpVectorsToStderr(std::vector &products, std::vector &amounts, std::vector &prices) { std::cerr << "Products: "; for (auto &product : products) { std::cerr << to_utf8(product) << "|[]|"; } std::cerr << std::endl; std::cerr << "Amounts: "; for (auto &amount : amounts) { std::wcerr << amount << " "; } std::cerr << std::endl; std::cerr << "Prices: "; for (auto &price : prices) { std::wcerr << price << " "; } std::cerr << std::endl; } Check parseOfdRuAnswer(std::string html) { std::wstring wstr_html = from_utf8(html); std::string trimmed = to_utf8(trim_html_response(wstr_html)); std::vector products = find_products_in_html(trimmed); std::vector amounts = find_amounts_in_html(trimmed); std::vector prices = find_prices_in_html(trimmed); if ((products.size() + amounts.size() + prices.size()) == 0) { if (html == "Bad Request4") { // Failed to solve a captcha throw OfdRequestException("Incorrect captcha"); } else if (html.find("500 - Internal server error.") != std::string::npos) { throw OfdRequestException("Internal server error"); } else { // Most likely that the check does not exist throw OfdRequestException("Does not exist"); } return Check(); } if ((products.size() + amounts.size() + prices.size())/products.size() != 3) { dumpVectorsToStderr(products, amounts, prices); //TOOD: make new setting "app_home" and get all path using it. std::ofstream error_log(get_path_relative_to_home(".local/share/checks_parser/error_log.txt"), std::ios_base::app); error_log << trimmed << std::endl; std::cerr << "An error has occured during the parsing of html. Please, contact the developer." << std::endl; std::exit(-1); } Check c; for (int i = 0; i < products.size(); i ++) { Goods goods(to_utf8(products[i]), std::stod(prices[i]), std::stod(amounts[i])); c.add_goods(goods); } return c; }