checks-parser/main.cpp

55 lines
1.6 KiB
C++
Raw Normal View History

2024-11-22 23:26:42 +03:00
#include "mainwindow.h"
#include "net/net.h"
#include "settings/settings.h"
#include "utils/utils.h"
#include <QApplication>
#include <curl/curl.h>
#include <iostream>
#include <filesystem>
2024-11-27 01:46:36 +03:00
#include <fstream>
2024-11-22 23:26:42 +03:00
int main(int argc, char *argv[]) {
2024-11-27 01:46:36 +03:00
// std::ifstream test_file("/home/leca/projects/qt/checks-parser/test.html");
// std::string content;
// std::string str;
// while(getline(test_file, str)) {
// content += str + "\n";
// }
// parseOfdRuAnswer(content);
// return 0;
2024-11-22 23:26:42 +03:00
curl_global_init(CURL_GLOBAL_ALL);
std::string program_data_path = get_path_relative_to_home(".local/share/checks_parser");
std::filesystem::create_directories(program_data_path);
std::string settings_file_path =
get_path_relative_to_home(".local/share/checks_parser/settings.json");
Settings s(settings_file_path);
Net n;
Parser p;
2024-11-27 01:46:36 +03:00
std::vector<std::string> stores_updates = p.check_updates();
2024-11-22 23:26:42 +03:00
for (const std::string &update : stores_updates) {
std::cout << "Downloading "
<< s.get_setting("stores_modules_url") + update << " to "
<< get_path_relative_to_home(s.get_setting("stores_modules_dir") +
"/" + update)
<< std::endl;
n.get_file(s.get_setting("stores_modules_url") + "/" + update,
get_path_relative_to_home(s.get_setting("stores_modules_dir") +
"/" + update));
}
QApplication a(argc, argv);
MainWindow w;
w.show();
return a.exec();
}