2021-08-29 11:10:48 +02:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <hex.hpp>
|
|
|
|
|
2022-02-01 18:09:40 +01:00
|
|
|
#include <hex/ui/view.hpp>
|
2023-03-23 11:23:07 +01:00
|
|
|
#include <hex/helpers/http_requests.hpp>
|
2022-03-04 11:36:37 +01:00
|
|
|
#include <hex/helpers/fs.hpp>
|
2023-07-11 09:19:52 +02:00
|
|
|
#include <hex/api/task.hpp>
|
2021-08-29 11:10:48 +02:00
|
|
|
|
2021-09-03 02:34:40 +02:00
|
|
|
#include <future>
|
2021-08-29 11:10:48 +02:00
|
|
|
#include <string>
|
2021-09-23 22:56:49 +02:00
|
|
|
#include <filesystem>
|
2021-08-29 11:10:48 +02:00
|
|
|
|
2021-12-07 22:47:41 +01:00
|
|
|
namespace hex::plugin::builtin {
|
2021-08-29 11:10:48 +02:00
|
|
|
|
2022-10-27 13:12:24 +02:00
|
|
|
enum class RequestStatus {
|
|
|
|
NotAttempted,
|
|
|
|
InProgress,
|
|
|
|
Failed,
|
2023-02-16 18:55:21 +01:00
|
|
|
Succeeded,
|
2022-10-27 13:12:24 +02:00
|
|
|
};
|
|
|
|
|
2021-09-03 02:34:40 +02:00
|
|
|
struct StoreEntry {
|
|
|
|
std::string name;
|
|
|
|
std::string description;
|
2023-09-02 18:36:34 +02:00
|
|
|
std::vector<std::string> authors;
|
2021-09-03 02:34:40 +02:00
|
|
|
std::string fileName;
|
|
|
|
std::string link;
|
|
|
|
std::string hash;
|
2021-08-29 11:10:48 +02:00
|
|
|
|
2021-09-23 22:56:49 +02:00
|
|
|
bool isFolder;
|
|
|
|
|
2021-09-03 02:34:40 +02:00
|
|
|
bool downloading;
|
|
|
|
bool installed;
|
|
|
|
bool hasUpdate;
|
2023-10-24 20:00:49 +02:00
|
|
|
bool system;
|
2021-09-03 02:34:40 +02:00
|
|
|
};
|
|
|
|
|
2023-07-11 09:19:52 +02:00
|
|
|
struct StoreCategory {
|
|
|
|
std::string unlocalizedName;
|
|
|
|
std::string requestName;
|
|
|
|
fs::ImHexPath path;
|
|
|
|
std::vector<StoreEntry> entries;
|
|
|
|
std::function<void()> downloadCallback;
|
|
|
|
};
|
|
|
|
|
2021-09-03 02:34:40 +02:00
|
|
|
class ViewStore : public View {
|
2021-08-29 11:10:48 +02:00
|
|
|
public:
|
2021-09-03 02:34:40 +02:00
|
|
|
ViewStore();
|
2022-03-04 20:52:39 +01:00
|
|
|
~ViewStore() override = default;
|
2021-08-29 11:10:48 +02:00
|
|
|
|
|
|
|
void drawContent() override;
|
|
|
|
|
2022-01-10 21:05:37 +01:00
|
|
|
[[nodiscard]] bool isAvailable() const override { return true; }
|
|
|
|
[[nodiscard]] bool hasViewMenuItemEntry() const override { return false; }
|
2021-09-03 02:34:40 +02:00
|
|
|
|
2023-04-10 21:30:27 +02:00
|
|
|
[[nodiscard]] ImVec2 getMinSize() const override { return scaled({ 600, 400 }); }
|
|
|
|
[[nodiscard]] ImVec2 getMaxSize() const override { return scaled({ 900, 700 }); }
|
2022-02-21 18:57:53 +01:00
|
|
|
|
2021-09-03 02:34:40 +02:00
|
|
|
private:
|
2023-03-23 11:23:07 +01:00
|
|
|
HttpRequest m_httpRequest = HttpRequest("GET", "");
|
|
|
|
std::future<HttpRequest::Result<std::string>> m_apiRequest;
|
|
|
|
std::future<HttpRequest::Result<std::string>> m_download;
|
2022-03-04 11:36:37 +01:00
|
|
|
std::fs::path m_downloadPath;
|
2022-10-27 13:12:24 +02:00
|
|
|
RequestStatus m_requestStatus = RequestStatus::NotAttempted;
|
2021-09-03 02:34:40 +02:00
|
|
|
|
2023-07-11 09:19:52 +02:00
|
|
|
std::vector<StoreCategory> m_categories;
|
|
|
|
TaskHolder m_updateAllTask;
|
|
|
|
std::atomic<u32> m_updateCount = 0;
|
2021-09-03 02:34:40 +02:00
|
|
|
|
|
|
|
void drawStore();
|
2023-07-11 09:19:52 +02:00
|
|
|
void drawTab(StoreCategory &category);
|
|
|
|
void handleDownloadFinished(const StoreCategory &category, StoreEntry &entry);
|
2021-09-03 02:34:40 +02:00
|
|
|
|
|
|
|
void refresh();
|
|
|
|
void parseResponse();
|
|
|
|
|
2023-07-11 09:19:52 +02:00
|
|
|
void addCategory(const std::string &unlocalizedName, const std::string &requestName, fs::ImHexPath path, std::function<void()> downloadCallback = []{});
|
|
|
|
|
2022-03-04 11:36:37 +01:00
|
|
|
bool download(fs::ImHexPath pathType, const std::string &fileName, const std::string &url, bool update);
|
|
|
|
bool remove(fs::ImHexPath pathType, const std::string &fileName);
|
2021-08-29 11:10:48 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|