blob: 8f0ea40ff81b4258bdb4ec959b54dce9e4013bf2 (
plain) (
blame)
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
|
#ifndef NEWSBOAT_OCNEWSAPI_H_
#define NEWSBOAT_OCNEWSAPI_H_
#include <json-c/json.h>
#include <map>
#include "remoteapi.h"
#include "rss/feed.h"
namespace newsboat {
class OcNewsApi : public RemoteApi {
public:
explicit OcNewsApi(ConfigContainer* cfg);
~OcNewsApi() override;
bool authenticate() override;
std::vector<TaggedFeedUrl> get_subscribed_urls() override;
bool mark_all_read(const std::string& feedurl) override;
bool mark_article_read(const std::string& guid, bool read) override;
bool update_article_flags(const std::string& oldflags,
const std::string& newflags,
const std::string& guid) override;
void add_custom_headers(curl_slist**) override;
rsspp::Feed fetch_feed(const std::string& feed_id);
private:
typedef std::map<std::string, std::pair<rsspp::Feed, long>> FeedMap;
std::string retrieve_auth();
bool query(const std::string& query,
json_object** result = nullptr,
const std::string& post = "");
std::string md5(const std::string& str);
std::string auth;
std::string server;
FeedMap known_feeds;
};
} // namespace newsboat
#endif /* NEWSBOAT_OCNEWSAPI_H_ */
|