osynic_osuapi 0.1.10

High performance, well-structured, extensible Rust osu! API client. Supports both WASM and native environments.
Documentation
use crate::error::Result;
use crate::v2::client::request::check::check_res;
use crate::v2::interface::wiki::IWiki;
use crate::v2::model::oauth::structs::o_token::OToken;
use crate::v2::model::wiki::WikiPage;

use std::sync::Arc;
use tokio::sync::RwLock;

#[derive(Clone)]
pub struct ReqwestWiki {
    pub client: reqwest::Client,
    pub o_token: Arc<RwLock<OToken>>,
}

impl IWiki for ReqwestWiki {
    async fn get_wiki_page(&self, locale: String, path: String) -> Result<WikiPage> {
        println!("ReqwestWiki get_wiki_page");

        let access_token = {
            let token = self.o_token.read().await;
            token.access_token.clone()
        };

        let res = self
            .client
            .get(format!(
                "https://osu.ppy.sh/api/v2/wiki/{}/{}",
                locale, path
            ))
            .header("Accept", "application/json")
            .header("Content-Type", "application/x-www-form-urlencoded")
            .header("Authorization", format!("Bearer {}", access_token))
            .send()
            .await?;

        let response = check_res(res)?;

        let wiki: WikiPage = response.json().await?;

        Ok(wiki)
    }
}