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
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
pub mod error;
#[cfg(test)]
mod tests;

pub use crate::error::{ApiError, ApiErrorKind};
use failure::ResultExt;
use reqwest::{multipart, Client, StatusCode};
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 {
        // add slash at the end to prevent treating .php as a file
        let url_tmp = Url::parse(&(url.as_str().to_owned() + "/")).unwrap();
        NewsBlurApi {
            base_uri: url_tmp,
            username: username.to_string(),
            password: password.to_string(),
            cookie,
        }
    }

    /// 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").context(ApiErrorKind::Url)?;

        let response = client
            .post(api_url)
            .header(reqwest::header::USER_AGENT, "curl/7.64.0")
            .multipart(form)
            .send()
            .await
            .context(ApiErrorKind::Http)?;

        let status = response.status();
        if status != StatusCode::OK {
            return Err(ApiErrorKind::AccessDenied.into());
        }

        let cookie = response
            .cookies()
            .next()
            .ok_or(ApiErrorKind::AccessDenied)?;
        let cookie_string = format!("{}={}", cookie.name(), cookie.value());
        self.cookie = Some(cookie_string.clone());
        return 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")
            .context(ApiErrorKind::Url)?;

        let response = client
            .post(api_url)
            .header(reqwest::header::USER_AGENT, "curl/7.64.0")
            .header(reqwest::header::COOKIE, self.cookie.as_ref().unwrap())
            .send()
            .await
            .context(ApiErrorKind::Http)?;

        let status = response.status();
        if status != StatusCode::OK {
            return Err(ApiErrorKind::AccessDenied.into());
        }

        Ok(())
    }

    /// Sign up to NewsBlur
    pub async fn signup(&self, _client: &Client) -> Result<(), ApiError> {
        panic!("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")
            .context(ApiErrorKind::Url)?;

        let response = client
            .get(api_url)
            .header(reqwest::header::USER_AGENT, "curl/7.64.0")
            .header(reqwest::header::COOKIE, self.cookie.as_ref().unwrap())
            .multipart(form)
            .send()
            .await
            .context(ApiErrorKind::Http)?;

        let status = response.status();
        if status != StatusCode::OK {
            return Err(ApiErrorKind::AccessDenied.into());
        }

        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")
            .context(ApiErrorKind::Url)?;

        let response = client
            .get(api_url)
            .header(reqwest::header::USER_AGENT, "curl/7.64.0")
            .header(reqwest::header::COOKIE, self.cookie.as_ref().unwrap())
            .multipart(form)
            .send()
            .await
            .context(ApiErrorKind::Http)?;

        let status = response.status();
        if status != StatusCode::OK {
            return Err(ApiErrorKind::AccessDenied.into());
        }

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

        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")
            .context(ApiErrorKind::Url)?;

        let response = client
            .get(api_url)
            .header(reqwest::header::USER_AGENT, "curl/7.64.0")
            .header(reqwest::header::COOKIE, self.cookie.as_ref().unwrap())
            .multipart(form)
            .send()
            .await
            .context(ApiErrorKind::Http)?;

        let status = response.status();
        if status != StatusCode::OK {
            return Err(ApiErrorKind::AccessDenied.into());
        }

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

        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).context(ApiErrorKind::Url)?;

        let response = client
            .get(api_url)
            .header(reqwest::header::USER_AGENT, "curl/7.64.0")
            .header(reqwest::header::COOKIE, self.cookie.as_ref().unwrap())
            .send()
            .await
            .context(ApiErrorKind::Http)?;

        let status = response.status();
        if status != StatusCode::OK {
            return Err(ApiErrorKind::AccessDenied.into());
        }

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

        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")
            .context(ApiErrorKind::Url)?;

        let mut query = Vec::new();
        query.push(("story_hash", id.to_string()));

        let response = client
            .get(api_url)
            .header(reqwest::header::USER_AGENT, "curl/7.64.0")
            .header(reqwest::header::COOKIE, self.cookie.as_ref().unwrap())
            .query(&query)
            .send()
            .await
            .context(ApiErrorKind::Http)?;

        let status = response.status();
        if status != StatusCode::OK {
            return Err(ApiErrorKind::AccessDenied.into());
        }

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

        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")
            .context(ApiErrorKind::Url)?;

        let response = client
            .get(api_url)
            .header(reqwest::header::USER_AGENT, "curl/7.64.0")
            .header(reqwest::header::COOKIE, self.cookie.as_ref().unwrap())
            .send()
            .await
            .context(ApiErrorKind::Http)?;

        let status = response.status();
        if status != StatusCode::OK {
            return Err(ApiErrorKind::AccessDenied.into());
        }

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

        Ok(response_json)
    }

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

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

        let response = client
            .get(api_url)
            .header(reqwest::header::USER_AGENT, "curl/7.64.0")
            .header(reqwest::header::COOKIE, self.cookie.as_ref().unwrap())
            .query(&query)
            .send()
            .await
            .context(ApiErrorKind::Http)?;

        let status = response.status();
        if status != StatusCode::OK {
            return Err(ApiErrorKind::AccessDenied.into());
        }

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

        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 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).context(ApiErrorKind::Url)?;

        let response = client
            .get(api_url)
            .header(reqwest::header::USER_AGENT, "curl/7.64.0")
            .header(reqwest::header::COOKIE, self.cookie.as_ref().unwrap())
            .query(&query)
            .send()
            .await
            .context(ApiErrorKind::Http)?;

        let status = response.status();
        if status != StatusCode::OK {
            return Err(ApiErrorKind::AccessDenied.into());
        }

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

        Ok(response_json)
    }

    /// Mark stories as read using their unique story_hash.
    pub async fn mark_stories_read(
        &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_hashes_as_read")
            .context(ApiErrorKind::Url)?;

        let response = client
            .post(api_url)
            .header(reqwest::header::USER_AGENT, "curl/7.64.0")
            .header(reqwest::header::COOKIE, self.cookie.as_ref().unwrap())
            .multipart(form)
            .send()
            .await
            .context(ApiErrorKind::Http)?;

        let status = response.status();
        if status != StatusCode::OK {
            return Err(ApiErrorKind::AccessDenied.into());
        }

        Ok(())
    }

    /// Mark a single story as unread using its unique story_hash.
    pub async fn mark_story_unread(
        &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_unread")
            .context(ApiErrorKind::Url)?;

        let response = client
            .post(api_url)
            .header(reqwest::header::USER_AGENT, "curl/7.64.0")
            .header(reqwest::header::COOKIE, self.cookie.as_ref().unwrap())
            .multipart(form)
            .send()
            .await
            .context(ApiErrorKind::Http)?;

        let status = response.status();
        if status != StatusCode::OK {
            return Err(ApiErrorKind::AccessDenied.into());
        }

        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")
            .context(ApiErrorKind::Url)?;

        let response = client
            .post(api_url)
            .header(reqwest::header::USER_AGENT, "curl/7.64.0")
            .header(reqwest::header::COOKIE, self.cookie.as_ref().unwrap())
            .multipart(form)
            .send()
            .await
            .context(ApiErrorKind::Http)?;

        let status = response.status();
        if status != StatusCode::OK {
            return Err(ApiErrorKind::AccessDenied.into());
        }

        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")
            .context(ApiErrorKind::Url)?;

        let response = client
            .post(api_url)
            .header(reqwest::header::USER_AGENT, "curl/7.64.0")
            .header(reqwest::header::COOKIE, self.cookie.as_ref().unwrap())
            .multipart(form)
            .send()
            .await
            .context(ApiErrorKind::Http)?;

        let status = response.status();
        if status != StatusCode::OK {
            return Err(ApiErrorKind::AccessDenied.into());
        }

        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")
            .context(ApiErrorKind::Url)?;

        let response = client
            .get(api_url)
            .header(reqwest::header::USER_AGENT, "curl/7.64.0")
            .header(reqwest::header::COOKIE, self.cookie.as_ref().unwrap())
            .send()
            .await
            .context(ApiErrorKind::Http)?;

        let status = response.status();
        if status != StatusCode::OK {
            return Err(ApiErrorKind::AccessDenied.into());
        }

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

        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")
            .context(ApiErrorKind::Url)?;

        let response = client
            .get(api_url)
            .header(reqwest::header::USER_AGENT, "curl/7.64.0")
            .header(reqwest::header::COOKIE, self.cookie.as_ref().unwrap())
            .send()
            .await
            .context(ApiErrorKind::Http)?;

        let status = response.status();
        if status != StatusCode::OK {
            return Err(ApiErrorKind::AccessDenied.into());
        }

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

        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")
            .context(ApiErrorKind::Url)?;
        let mut query = Vec::new();

        for hash in hashes {
            query.push(("h", hash));
        }

        let response = client
            .get(api_url)
            .header(reqwest::header::USER_AGENT, "curl/7.64.0")
            .header(reqwest::header::COOKIE, self.cookie.as_ref().unwrap())
            .query(&query)
            .send()
            .await
            .context(ApiErrorKind::Http)?;

        let status = response.status();
        if status != StatusCode::OK {
            return Err(ApiErrorKind::AccessDenied.into());
        }

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

        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")
            .context(ApiErrorKind::Url)?;

        let response = client
            .post(api_url)
            .header(reqwest::header::USER_AGENT, "curl/7.64.0")
            .header(reqwest::header::COOKIE, self.cookie.as_ref().unwrap())
            .multipart(form)
            .send()
            .await
            .context(ApiErrorKind::Http)?;

        let status = response.status();
        if status != StatusCode::OK {
            return Err(ApiErrorKind::AccessDenied.into());
        }

        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")
            .context(ApiErrorKind::Url)?;

        let response = client
            .post(api_url)
            .header(reqwest::header::USER_AGENT, "curl/7.64.0")
            .header(reqwest::header::COOKIE, self.cookie.as_ref().unwrap())
            .send()
            .await
            .context(ApiErrorKind::Http)?;

        let status = response.status();
        if status != StatusCode::OK {
            return Err(ApiErrorKind::AccessDenied.into());
        }

        Ok(())
    }
}