2023-05-15 11:30:24 +02:00
|
|
|
#include <hex/api/content_registry.hpp>
|
2023-11-21 14:38:01 +01:00
|
|
|
#include <hex/api/localization_manager.hpp>
|
2023-11-18 14:50:43 +01:00
|
|
|
#include <hex/api/event_manager.hpp>
|
2023-12-11 11:42:33 +01:00
|
|
|
#include <hex/api/project_file_manager.hpp>
|
2023-05-15 11:30:24 +02:00
|
|
|
|
2023-11-30 10:22:15 +01:00
|
|
|
#include <wolv/utils/guards.hpp>
|
2023-05-15 11:30:24 +02:00
|
|
|
#include <wolv/net/socket_server.hpp>
|
|
|
|
|
2023-12-11 11:42:33 +01:00
|
|
|
#include <hex/helpers/fmt.hpp>
|
|
|
|
#include <fmt/chrono.h>
|
2023-05-15 11:30:24 +02:00
|
|
|
#include <hex/helpers/logger.hpp>
|
|
|
|
|
|
|
|
#include <nlohmann/json.hpp>
|
|
|
|
|
|
|
|
namespace hex::plugin::builtin {
|
|
|
|
|
|
|
|
static bool networkInterfaceServiceEnabled = false;
|
2023-12-11 11:42:33 +01:00
|
|
|
static int autoBackupTime = 0;
|
2023-05-15 11:30:24 +02:00
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
|
|
|
void handleNetworkInterfaceService() {
|
|
|
|
if (!networkInterfaceServiceEnabled) {
|
2023-06-18 10:18:58 +02:00
|
|
|
std::this_thread::sleep_for(std::chrono::milliseconds(100));
|
2023-05-15 11:30:24 +02:00
|
|
|
return;
|
|
|
|
}
|
2023-06-18 10:18:58 +02:00
|
|
|
|
2023-05-16 11:01:59 +02:00
|
|
|
static wolv::net::SocketServer networkInterfaceServer(31337);
|
2023-11-04 22:20:22 +01:00
|
|
|
|
2023-11-04 23:41:52 +01:00
|
|
|
AT_FIRST_TIME {
|
2023-12-08 10:29:44 +01:00
|
|
|
EventImHexClosing::subscribe([]{
|
2023-11-04 23:41:52 +01:00
|
|
|
networkInterfaceServer.shutdown();
|
|
|
|
});
|
|
|
|
};
|
2023-11-04 22:20:22 +01:00
|
|
|
|
2023-05-15 11:30:24 +02:00
|
|
|
networkInterfaceServer.accept([](auto, const std::vector<u8> &data) -> std::vector<u8> {
|
|
|
|
nlohmann::json result;
|
|
|
|
|
|
|
|
try {
|
|
|
|
auto json = nlohmann::json::parse(data.begin(), data.end());
|
|
|
|
|
|
|
|
const auto &endpoints = ContentRegistry::CommunicationInterface::impl::getNetworkEndpoints();
|
2023-05-16 11:33:00 +02:00
|
|
|
if (auto callback = endpoints.find(json.at("endpoint").get<std::string>()); callback != endpoints.end()) {
|
|
|
|
log::info("Network endpoint {} called with arguments '{}'", json.at("endpoint").get<std::string>(), json.contains("data") ? json.at("data").dump() : "");
|
2023-05-16 11:20:46 +02:00
|
|
|
|
2023-05-16 11:33:00 +02:00
|
|
|
auto responseData = callback->second(json.contains("data") ? json.at("data") : nlohmann::json::object());
|
2023-05-15 11:30:24 +02:00
|
|
|
|
|
|
|
result["status"] = "success";
|
|
|
|
result["data"] = responseData;
|
2023-05-16 11:20:46 +02:00
|
|
|
} else {
|
|
|
|
throw std::runtime_error("Endpoint not found");
|
2023-05-15 11:30:24 +02:00
|
|
|
}
|
|
|
|
} catch (const std::exception &e) {
|
2023-05-16 11:20:46 +02:00
|
|
|
log::warn("Network interface service error: {}", e.what());
|
2023-05-15 11:30:24 +02:00
|
|
|
|
|
|
|
result["status"] = "error";
|
|
|
|
result["data"]["error"] = e.what();
|
|
|
|
}
|
|
|
|
|
|
|
|
auto resultString = result.dump();
|
|
|
|
return { resultString.begin(), resultString.end() };
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2023-12-11 11:42:33 +01:00
|
|
|
void handleAutoBackup() {
|
|
|
|
auto now = std::chrono::steady_clock::now();
|
|
|
|
static std::chrono::time_point<std::chrono::steady_clock> lastBackupTime = now;
|
|
|
|
|
|
|
|
if (autoBackupTime > 0 && (now - lastBackupTime) > std::chrono::seconds(autoBackupTime)) {
|
|
|
|
lastBackupTime = now;
|
|
|
|
|
2023-12-22 21:16:09 +01:00
|
|
|
if (ImHexApi::Provider::isValid() && ImHexApi::Provider::isDirty()) {
|
2023-12-11 11:42:33 +01:00
|
|
|
for (const auto &path : fs::getDefaultPaths(fs::ImHexPath::Backups)) {
|
|
|
|
const auto fileName = hex::format("auto_backup.{:%y%m%d_%H%M%S}.hexproj", fmt::gmtime(std::chrono::system_clock::now()));
|
|
|
|
if (ProjectFile::store(path / fileName, false))
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
log::info("Backed up project");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
std::this_thread::sleep_for(std::chrono::seconds(1));
|
|
|
|
}
|
|
|
|
|
2023-05-15 11:30:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void registerBackgroundServices() {
|
2024-02-18 11:29:18 +01:00
|
|
|
ContentRegistry::Settings::onChange("hex.builtin.setting.general", "hex.builtin.setting.general.network_interface", [](const ContentRegistry::Settings::SettingsValue &value) {
|
|
|
|
networkInterfaceServiceEnabled = value.get<bool>(false);
|
|
|
|
});
|
|
|
|
|
|
|
|
ContentRegistry::Settings::onChange("hex.builtin.setting.general", "hex.builtin.setting.general.auto_backup_time", [](const ContentRegistry::Settings::SettingsValue &value) {
|
|
|
|
autoBackupTime = value.get<int>(0) * 30;
|
2023-05-15 11:30:24 +02:00
|
|
|
});
|
|
|
|
|
2023-12-19 12:22:28 +01:00
|
|
|
ContentRegistry::BackgroundServices::registerService("hex.builtin.background_service.network_interface", handleNetworkInterfaceService);
|
|
|
|
ContentRegistry::BackgroundServices::registerService("hex.builtin.background_service.auto_backup", handleAutoBackup);
|
2023-05-15 11:30:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|