aboutsummaryrefslogtreecommitdiff
path: root/plugins/AniList.hpp
blob: 3d71f5c07574844d612c14bd5b70cd7c7f332481 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#pragma once

#include "Page.hpp"

namespace QuickMedia {
    class AniListSearchPage : public Page {
    public:
        AniListSearchPage(Program *program) : Page(program) {}
        const char* get_title() const override { return "Search for anime or manga"; }
        bool search_is_filter() override { return false; }
        bool submit_is_async() const override { return false; }
        SearchResult search(const std::string &str, BodyItems &result_items) override;
        PluginResult submit(const std::string &title, const std::string &url, std::vector<Tab> &result_tabs) override;
        PluginResult get_page(const std::string &str, int page, BodyItems &result_items) override;
    private:
        SearchResult search_page(const std::string &str, int page, BodyItems &result_items);
    };

    class AniListRelatedPage : public LazyFetchPage {
    public:
        AniListRelatedPage(Program *program, std::string id) : LazyFetchPage(program), id(std::move(id)) {}
        const char* get_title() const override { return "Related"; }
        bool submit_is_async() const override { return false; }
        PluginResult submit(const std::string &title, const std::string &url, std::vector<Tab> &result_tabs) override;
        PluginResult lazy_fetch(BodyItems &result_items) override;
    private:
        std::string id;
    };

    class AniListDetailsPage : public LazyFetchPage {
    public:
        AniListDetailsPage(Program *program, std::string id) : LazyFetchPage(program), id(std::move(id)) {}
        const char* get_title() const override { return "Details"; }
        bool submit_is_async() const override { return false; }
        PluginResult submit(const std::string &title, const std::string &url, std::vector<Tab> &result_tabs) override;
        PluginResult lazy_fetch(BodyItems &result_items) override;
    private:
        std::string id;
    };

    class AniListRecommendationsPage : public LazyFetchPage {
    public:
        AniListRecommendationsPage(Program *program, std::string id) : LazyFetchPage(program), id(std::move(id)) {}
        const char* get_title() const override { return "Recommendations"; }
        bool submit_is_async() const override { return false; }
        PluginResult submit(const std::string &title, const std::string &url, std::vector<Tab> &result_tabs) override;
        PluginResult lazy_fetch(BodyItems &result_items) override;
    private:
        std::string id;
    };
}