aboutsummaryrefslogtreecommitdiff
path: root/src-tauri/src/github/release_notes.rs
blob: 20c535ba2eff9dcea8ce8faae239762965cebecf (plain)
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
use std::vec::Vec;
use serde::{Deserialize, Serialize};

#[derive(Serialize, Deserialize, Debug, Clone)]
pub struct ReleaseInfo {
    pub name: String,
    pub published_at: String,
    pub body: String
}

// Fetches repo release API and returns response as string
async fn fetch_github_releases_api(url: &str) -> Result<String, String> {
    println!("Fetching releases notes from GitHub API");

    let user_agent = "GeckoEidechse/FlightCore";
    let client = reqwest::Client::new();
    let res = client
        .get(url)
        .header(reqwest::header::USER_AGENT, user_agent)
        .send()
        .await
        .unwrap()
        .text()
        .await
        .unwrap();

    Ok(res)
}

#[tauri::command]
pub async fn get_northstar_release_notes() -> Result<Vec<ReleaseInfo>, String> {
    let url = "https://api.github.com/repos/R2Northstar/Northstar/releases";
    let res = fetch_github_releases_api(url).await?;

    let json_response: Vec<serde_json::Value> =
        serde_json::from_str(&res).expect("JSON was not well-formatted");
    println!("Done checking GitHub API");

    return Ok(
        json_response.iter().map(|release| ReleaseInfo {
            name: release.get("name")
                .and_then(|value| value.as_str())
                .unwrap()
                .to_string(),
            published_at: release.get("published_at")
                .and_then(|value| value.as_str())
                .unwrap()
                .to_string(),
            body: release.get("body")
                .and_then(|value| value.as_str())
                .unwrap()
                .to_string(),
        }).collect()
    );
}