2021-08-29 11:10:48 +02:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <hex.hpp>
|
|
|
|
|
|
|
|
#include <hex/views/view.hpp>
|
2021-09-03 02:34:40 +02:00
|
|
|
#include <hex/helpers/net.hpp>
|
|
|
|
#include <hex/helpers/paths.hpp>
|
2021-08-29 11:10:48 +02:00
|
|
|
|
|
|
|
#include <array>
|
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
|
|
|
|
2021-09-03 02:34:40 +02:00
|
|
|
struct StoreEntry {
|
|
|
|
std::string name;
|
|
|
|
std::string description;
|
|
|
|
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;
|
|
|
|
};
|
|
|
|
|
|
|
|
class ViewStore : public View {
|
2021-08-29 11:10:48 +02:00
|
|
|
public:
|
2021-09-03 02:34:40 +02:00
|
|
|
ViewStore();
|
|
|
|
~ViewStore() override;
|
2021-08-29 11:10:48 +02:00
|
|
|
|
|
|
|
void drawContent() override;
|
|
|
|
void drawMenu() 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
|
|
|
|
|
|
|
private:
|
|
|
|
Net m_net;
|
|
|
|
std::future<Response<std::string>> m_apiRequest;
|
|
|
|
std::future<Response<void>> m_download;
|
2022-01-13 14:33:30 +01:00
|
|
|
fs::path m_downloadPath;
|
2021-09-03 02:34:40 +02:00
|
|
|
|
2021-09-23 22:56:49 +02:00
|
|
|
std::vector<StoreEntry> m_patterns, m_includes, m_magics, m_constants, m_yara;
|
2021-09-03 02:34:40 +02:00
|
|
|
|
|
|
|
void drawStore();
|
|
|
|
|
|
|
|
void refresh();
|
|
|
|
void parseResponse();
|
|
|
|
|
|
|
|
void download(ImHexPath pathType, const std::string &fileName, const std::string &url, bool update);
|
|
|
|
void remove(ImHexPath pathType, const std::string &fileName);
|
2021-08-29 11:10:48 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|