aboutsummaryrefslogtreecommitdiff
path: root/plugins/Saucenao.hpp
blob: 297dde3b7f27e88c67611b6653b6a02833973012 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#pragma once

#include "Page.hpp"

namespace QuickMedia {
    class SaucenaoPage : public LazyFetchPage {
    public:
        SaucenaoPage(Program *program, const std::string &path, bool is_local) : LazyFetchPage(program), path(path), is_local(is_local) {}
        const char* get_title() const override { return "SauceNAO"; }
        PluginResult submit(const std::string&, const std::string&, std::vector<Tab>&) override {
            return PluginResult::OK;
        }
        PluginResult lazy_fetch(BodyItems &result_items) override;
        bool is_single_page() const override { return true; }
    private:
        std::string path;
        bool is_local;
    };
}