-
-
Notifications
You must be signed in to change notification settings - Fork 68
/
notifications.rs
32 lines (28 loc) · 935 Bytes
/
notifications.rs
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
use hubcaps::notifications::ThreadListOptions;
use hubcaps::{Credentials, Github};
use std::env;
use std::error::Error;
#[tokio::main]
async fn main() -> Result<(), Box<dyn Error>> {
pretty_env_logger::init();
let token = env::var("GITHUB_TOKEN")?;
let github = Github::new(
concat!(env!("CARGO_PKG_NAME"), "/", env!("CARGO_PKG_VERSION")),
Credentials::Token(token),
)?;
let opts = ThreadListOptions::builder().all(true).build();
for thread in github.activity().notifications().list(&opts).await? {
println!("{:#?}", thread);
let subscription = github
.activity()
.notifications()
.get_subscription(thread.id)
.await;
if let Ok(sub) = subscription {
println!("{:#?}", sub);
}
}
// Mark all notifications as read.
github.activity().notifications().mark_as_read(None).await?;
Ok(())
}