68 lines
1.8 KiB
C++
68 lines
1.8 KiB
C++
#pragma once
|
|
|
|
#include <hex.hpp>
|
|
|
|
#include <hex/ui/view.hpp>
|
|
#include <hex/helpers/http_requests.hpp>
|
|
#include <hex/helpers/fs.hpp>
|
|
|
|
#include <array>
|
|
#include <future>
|
|
#include <string>
|
|
#include <filesystem>
|
|
|
|
namespace hex::plugin::builtin {
|
|
|
|
enum class RequestStatus {
|
|
NotAttempted,
|
|
InProgress,
|
|
Failed,
|
|
Succeeded,
|
|
};
|
|
|
|
struct StoreEntry {
|
|
std::string name;
|
|
std::string description;
|
|
std::string fileName;
|
|
std::string link;
|
|
std::string hash;
|
|
|
|
bool isFolder;
|
|
|
|
bool downloading;
|
|
bool installed;
|
|
bool hasUpdate;
|
|
};
|
|
|
|
class ViewStore : public View {
|
|
public:
|
|
ViewStore();
|
|
~ViewStore() override = default;
|
|
|
|
void drawContent() override;
|
|
|
|
[[nodiscard]] bool isAvailable() const override { return true; }
|
|
[[nodiscard]] bool hasViewMenuItemEntry() const override { return false; }
|
|
|
|
[[nodiscard]] ImVec2 getMinSize() const override { return { 600, 400 }; }
|
|
[[nodiscard]] ImVec2 getMaxSize() const override { return { 900, 700 }; }
|
|
|
|
private:
|
|
HttpRequest m_httpRequest = HttpRequest("GET", "");
|
|
std::future<HttpRequest::Result<std::string>> m_apiRequest;
|
|
std::future<HttpRequest::Result<std::string>> m_download;
|
|
std::fs::path m_downloadPath;
|
|
RequestStatus m_requestStatus = RequestStatus::NotAttempted;
|
|
|
|
std::vector<StoreEntry> m_patterns, m_includes, m_magics, m_constants, m_yara, m_encodings, m_nodes, m_themes;
|
|
|
|
void drawStore();
|
|
|
|
void refresh();
|
|
void parseResponse();
|
|
|
|
bool download(fs::ImHexPath pathType, const std::string &fileName, const std::string &url, bool update);
|
|
bool remove(fs::ImHexPath pathType, const std::string &fileName);
|
|
};
|
|
|
|
} |