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

#include "Plugin.hpp"

namespace QuickMedia {
    class Pornhub : public Plugin {
    public:
        Pornhub() : Plugin("pornhub") {}
        SuggestionResult update_search_suggestions(const std::string &text, BodyItems &result_items) override;
        BodyItems get_related_media(const std::string &url) override;
        bool search_suggestions_has_thumbnails() const override { return true; }
        bool search_results_has_thumbnails() const override { return false; }
        int get_search_delay() const override { return 500; }
        bool search_suggestion_is_search() const override { return true; }
        Page get_page_after_search() const override { return Page::VIDEO_CONTENT; }
    };
}