newsblur_api_updated 0.4.1

rust implementation of the NewsBlur-API
Documentation
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
pub mod error;
#[cfg(test)]
mod tests;

pub use crate::error::ApiError;
use reqwest::{Client, header::COOKIE, multipart};
use serde_json::{self, Value};
use url::Url;

pub struct NewsBlurApi {
    base_uri: Url,
    username: String,
    password: String,
    cookie: Option<String>,
}

impl NewsBlurApi {
    /// Create a new instance of the NewsBlurApi
    pub fn new(url: &Url, username: &str, password: &str, cookie: Option<String>) -> Self {
        NewsBlurApi {
            base_uri: url.clone(),
            username: username.to_string(),
            password: password.to_string(),
            cookie,
        }
    }

    fn cookie(&self) -> Result<&str, ApiError> {
        self.cookie.as_deref().ok_or(ApiError::AccessDenied)
    }

    /// Login to NewsBlur. This must be called before other functions
    ///
    /// On success returns the cookie used for login
    pub async fn login(&mut self, client: &Client) -> Result<String, ApiError> {
        let form = multipart::Form::new()
            .text("username", self.username.clone())
            .text("password", self.password.clone());

        let api_url: Url = self.base_uri.join("api/login")?;

        let response = client.post(api_url).multipart(form).send().await?;

        let status = response.status();

        if !status.is_success() {
            return Err(ApiError::AccessDenied);
        }

        let cookie = response.cookies().next().ok_or(ApiError::AccessDenied)?;
        let cookie_string = format!("{}={}", cookie.name(), cookie.value());
        self.cookie = Some(cookie_string.clone());
        Ok(cookie_string)
    }

    /// Logout of NewsBlur
    pub async fn logout(&self, client: &Client) -> Result<(), ApiError> {
        let api_url: Url = self.base_uri.join("api/logout")?;
        let cookie = self.cookie()?;

        let response = client.post(api_url).header(COOKIE, cookie).send().await?;

        if !response.status().is_success() {
            return Err(ApiError::AccessDenied);
        }

        Ok(())
    }

    /// Sign up to NewsBlur
    pub async fn signup(&self, _client: &Client) -> Result<(), ApiError> {
        unimplemented!()
    }

    /// Retrieve information about a feed from its website or RSS address.
    pub async fn search_feed(&self, client: &Client, address: &str) -> Result<(), ApiError> {
        let form = multipart::Form::new().text("address", address.to_string());
        let api_url: Url = self.base_uri.join("rss_feeds/search_feed")?;
        let cookie = self.cookie()?;

        let response = client
            .get(api_url)
            .header(COOKIE, cookie)
            .multipart(form)
            .send()
            .await?;

        if !response.status().is_success() {
            return Err(ApiError::AccessDenied);
        }

        Ok(())
    }

    /// Retrieve a list of feeds to which a user is actively subscribed.
    pub async fn get_feeds(&self, client: &Client) -> Result<Value, ApiError> {
        let form = multipart::Form::new().text("include_favicons", "false");
        let api_url: Url = self.base_uri.join("reader/feeds")?;
        let cookie = self.cookie()?;

        let response = client
            .get(api_url)
            .header(COOKIE, cookie)
            .multipart(form)
            .send()
            .await?;

        if !response.status().is_success() {
            return Err(ApiError::AccessDenied);
        }

        let response_json = response.json().await?;

        Ok(response_json)
    }

    /// Retrieve a list of favicons for a list of feeds. Used when combined
    /// with /reader/feeds and include_favicons=false, so the feeds request
    /// contains far less data. Useful for mobile devices, but requires a
    /// second request.
    pub async fn favicons(&self, client: &Client, feed_id: &str) -> Result<Value, ApiError> {
        let form = multipart::Form::new().text("feed_ids", feed_id.to_string());
        let api_url: Url = self.base_uri.join("reader/favicons")?;
        let cookie = self.cookie()?;

        let response = client
            .get(api_url)
            .header(COOKIE, cookie)
            .multipart(form)
            .send()
            .await?;

        if !response.status().is_success() {
            return Err(ApiError::AccessDenied);
        }

        let response_json = response.json().await?;

        Ok(response_json)
    }

    /// Retrieve the original page from a single feed.
    pub async fn get_original_page(&self, client: &Client, id: &str) -> Result<String, ApiError> {
        let request = format!("reader/page/{id}");
        let api_url: Url = self.base_uri.join(&request)?;
        let cookie = self.cookie()?;

        let response = client.get(api_url).header(COOKIE, cookie).send().await?;

        if !response.status().is_success() {
            return Err(ApiError::AccessDenied);
        }

        let response_text = response.text().await?;

        Ok(response_text)
    }

    /// Retrieve the original page from a single feed.
    pub async fn get_original_text(&self, client: &Client, id: &str) -> Result<String, ApiError> {
        let api_url: Url = self.base_uri.join("rss_feeds/original_text")?;
        let query = vec![("story_hash", id.to_string())];
        let cookie = self.cookie()?;

        let response = client
            .get(api_url)
            .header(COOKIE, cookie)
            .query(&query)
            .send()
            .await?;

        if !response.status().is_success() {
            return Err(ApiError::AccessDenied);
        }

        let response_text = response.text().await?;

        Ok(response_text)
    }

    /// Up-to-the-second unread counts for each active feed.
    /// Poll for these counts no more than once a minute.
    pub async fn refresh_feeds(&self, client: &Client) -> Result<Value, ApiError> {
        let api_url: Url = self.base_uri.join("reader/refresh_feeds")?;
        let cookie = self.cookie()?;

        let response = client.get(api_url).header(COOKIE, cookie).send().await?;

        if !response.status().is_success() {
            return Err(ApiError::AccessDenied);
        }

        let response_json = response.json().await?;

        Ok(response_json)
    }

    /// Feed of previously read stories.
    pub async fn get_read_stories(&self, client: &Client, page: u32) -> Result<Value, ApiError> {
        let query = vec![("page", format!("{page}"))];
        let cookie = self.cookie()?;

        let api_url: Url = self.base_uri.join("reader/read_stories")?;

        let response = client
            .get(api_url)
            .header(COOKIE, cookie)
            .query(&query)
            .send()
            .await?;

        if !response.status().is_success() {
            return Err(ApiError::AccessDenied);
        }

        let response_json = response.json().await?;

        Ok(response_json)
    }

    /// Retrieve stories from a single feed.
    pub async fn get_stories(
        &self,
        client: &Client,
        id: &str,
        include_content: bool,
        page: u32,
    ) -> Result<Value, ApiError> {
        let request = format!("reader/feed/{id}");
        let cookie = self.cookie()?;
        let mut query = Vec::new();

        if include_content {
            query.push(("include_content", "true".to_string()));
        } else {
            query.push(("include_content", "false".to_string()));
        }
        query.push(("page", format!("{page}")));

        let api_url: Url = self.base_uri.join(&request)?;

        let response = client
            .get(api_url)
            .header(COOKIE, cookie)
            .query(&query)
            .send()
            .await?;

        if !response.status().is_success() {
            return Err(ApiError::AccessDenied);
        }

        let response_json = response.json().await?;

        Ok(response_json)
    }

    /// Mark stories as read using their unique story_hash.
    pub async fn mark_stories_read(
        &self,
        client: &Client,
        story_hashes: &[&str],
    ) -> Result<(), ApiError> {
        let mut form = multipart::Form::new();
        for story_hash in story_hashes {
            form = form.text("story_hash", story_hash.to_string());
        }

        let api_url: Url = self.base_uri.join("reader/mark_story_hashes_as_read")?;
        let cookie = self.cookie()?;

        let response = client
            .post(api_url)
            .header(COOKIE, cookie)
            .multipart(form)
            .send()
            .await?;

        if !response.status().is_success() {
            return Err(ApiError::AccessDenied);
        }

        Ok(())
    }

    /// Mark a single story as unread using its unique story_hash.
    pub async fn mark_story_unread(
        &self,
        client: &Client,
        story_hashes: &[&str],
    ) -> Result<(), ApiError> {
        let mut form = multipart::Form::new();
        for story_hash in story_hashes {
            form = form.text("story_hash", story_hash.to_string());
        }

        let api_url: Url = self.base_uri.join("reader/mark_story_hash_as_unread")?;
        let cookie = self.cookie()?;

        let response = client
            .post(api_url)
            .header(COOKIE, cookie)
            .multipart(form)
            .send()
            .await?;

        if !response.status().is_success() {
            return Err(ApiError::AccessDenied);
        }

        Ok(())
    }

    /// Mark a story as starred (saved).
    pub async fn mark_story_hash_as_starred(
        &self,
        client: &Client,
        story_hash: &str,
    ) -> Result<(), ApiError> {
        let form = multipart::Form::new().text("story_hash", story_hash.to_string());

        let api_url: Url = self.base_uri.join("reader/mark_story_hash_as_starred")?;
        let cookie = self.cookie()?;

        let response = client
            .post(api_url)
            .header(COOKIE, cookie)
            .multipart(form)
            .send()
            .await?;

        if !response.status().is_success() {
            return Err(ApiError::AccessDenied);
        }

        Ok(())
    }

    /// Mark a story as unstarred (unsaved).
    pub async fn mark_story_hash_as_unstarred(
        &self,
        client: &Client,
        story_hash: &str,
    ) -> Result<(), ApiError> {
        let form = multipart::Form::new().text("story_hash", story_hash.to_string());

        let api_url: Url = self.base_uri.join("reader/mark_story_hash_as_unstarred")?;
        let cookie = self.cookie()?;

        let response = client
            .post(api_url)
            .header(COOKIE, cookie)
            .multipart(form)
            .send()
            .await?;

        if !response.status().is_success() {
            return Err(ApiError::AccessDenied);
        }

        Ok(())
    }

    /// The story_hashes of all unread stories.
    /// Useful for offline access of stories and quick unread syncing.
    /// Use include_timestamps to fetch stories in date order.
    pub async fn get_unread_story_hashes(&self, client: &Client) -> Result<Value, ApiError> {
        let api_url: Url = self.base_uri.join("reader/unread_story_hashes")?;
        let cookie = self.cookie()?;

        let response = client.get(api_url).header(COOKIE, cookie).send().await?;

        if !response.status().is_success() {
            return Err(ApiError::AccessDenied);
        }

        let response_json = response.json().await?;

        Ok(response_json)
    }

    pub async fn get_stared_story_hashes(&self, client: &Client) -> Result<Value, ApiError> {
        let api_url: Url = self.base_uri.join("reader/starred_story_hashes")?;
        let cookie = self.cookie()?;

        let response = client.get(api_url).header(COOKIE, cookie).send().await?;

        if !response.status().is_success() {
            return Err(ApiError::AccessDenied);
        }

        let response_json = response.json().await?;

        Ok(response_json)
    }

    /// Retrieve up to 100 stories when specifying by story_hash.
    pub async fn get_river_stories(
        &self,
        client: &Client,
        hashes: &[&str],
    ) -> Result<Value, ApiError> {
        let api_url: Url = self.base_uri.join("reader/river_stories")?;
        let cookie = self.cookie()?;

        let mut query = Vec::new();
        for hash in hashes {
            query.push(("h", hash));
        }

        let response = client
            .get(api_url)
            .header(COOKIE, cookie)
            .query(&query)
            .send()
            .await?;

        if !response.status().is_success() {
            return Err(ApiError::AccessDenied);
        }

        let response_json = response.json().await?;

        Ok(response_json)
    }

    pub async fn mark_feed_read(&self, client: &Client, feed_id: &str) -> Result<(), ApiError> {
        let form = multipart::Form::new().text("feed_id", feed_id.to_string());

        let api_url: Url = self.base_uri.join("reader/mark_feed_as_read")?;
        let cookie = self.cookie()?;

        let response = client
            .post(api_url)
            .header(COOKIE, cookie)
            .multipart(form)
            .send()
            .await?;

        if !response.status().is_success() {
            return Err(ApiError::AccessDenied);
        }

        Ok(())
    }

    pub async fn mark_all_read(&self, client: &Client) -> Result<(), ApiError> {
        let api_url: Url = self.base_uri.join("reader/mark_all_as_read")?;
        let cookie = self.cookie()?;

        let response = client.post(api_url).header(COOKIE, cookie).send().await?;

        if !response.status().is_success() {
            return Err(ApiError::AccessDenied);
        }

        Ok(())
    }
}