osynic_osuapi 0.1.10

High performance, well-structured, extensible Rust osu! API client. Supports both WASM and native environments.
Documentation
use super::api::beatmaps::ReqwestBeatmaps;
use super::api::beatmapsets::ReqwestBeatmapsets;
use super::api::changelog::ReqwestChangelog;
use super::api::chat::ReqwestChat;
use super::api::comments::ReqwestComments;
use super::api::events::ReqwestEvents;
use super::api::forum::ReqwestForum;
use super::api::friends::ReqwestFriends;
use super::api::matches::ReqwestMatches;
use super::api::multiplayer::ReqwestMultiplayer;
use super::api::news::ReqwestNews;
use super::api::notifications::ReqwestNotifications;
use super::api::oauth::ReqwestOauth;
use super::api::ranking::ReqwestRanking;
use super::api::scores::ReqwestScores;
use super::api::search::ReqwestSearch;
use super::api::users::ReqwestUsers;
use super::api::wiki::ReqwestWiki;
use crate::v2::model::oauth::structs::o_token::OToken;

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

#[derive(Clone)]
pub struct OsynicOsuApiV2Client {
    pub oauth: ReqwestOauth,
    pub beatmapsets: ReqwestBeatmapsets,
    pub beatmaps: ReqwestBeatmaps,
    pub changelog: ReqwestChangelog,
    pub chat: ReqwestChat,
    pub comments: ReqwestComments,
    pub events: ReqwestEvents,
    pub forum: ReqwestForum,
    pub search: ReqwestSearch,
    pub matches: ReqwestMatches,
    pub multiplayer: ReqwestMultiplayer,
    pub news: ReqwestNews,
    pub notifications: ReqwestNotifications,
    pub ranking: ReqwestRanking,
    pub scores: ReqwestScores,
    pub users: ReqwestUsers,
    pub wiki: ReqwestWiki,
    pub friends: ReqwestFriends,
    pub o_token: Arc<RwLock<OToken>>,
    pub client: reqwest::Client,
}

impl OsynicOsuApiV2Client {
    pub fn new(o_token: OToken) -> Self {
        let client = reqwest::Client::new();
        let o_token = Arc::new(RwLock::new(o_token));
        OsynicOsuApiV2Client {
            oauth: ReqwestOauth {
                client: client.clone(),
                o_token: o_token.clone(),
            },
            beatmapsets: ReqwestBeatmapsets {
                client: client.clone(),
                o_token: o_token.clone(),
            },
            beatmaps: ReqwestBeatmaps {
                client: client.clone(),
                o_token: o_token.clone(),
            },
            changelog: ReqwestChangelog {
                client: client.clone(),
                o_token: o_token.clone(),
            },
            chat: ReqwestChat {
                client: client.clone(),
                o_token: o_token.clone(),
            },
            comments: ReqwestComments {
                client: client.clone(),
                o_token: o_token.clone(),
            },
            events: ReqwestEvents {
                client: client.clone(),
                o_token: o_token.clone(),
            },
            forum: ReqwestForum {
                client: client.clone(),
                o_token: o_token.clone(),
            },
            search: ReqwestSearch {
                client: client.clone(),
                o_token: o_token.clone(),
            },
            matches: ReqwestMatches {
                client: client.clone(),
                o_token: o_token.clone(),
            },
            multiplayer: ReqwestMultiplayer {
                client: client.clone(),
                o_token: o_token.clone(),
            },
            news: ReqwestNews {
                client: client.clone(),
                o_token: o_token.clone(),
            },
            notifications: ReqwestNotifications {
                client: client.clone(),
                o_token: o_token.clone(),
            },
            ranking: ReqwestRanking {
                client: client.clone(),
                o_token: o_token.clone(),
            },
            scores: ReqwestScores {
                client: client.clone(),
                o_token: o_token.clone(),
            },
            users: ReqwestUsers {
                client: client.clone(),
                o_token: o_token.clone(),
            },
            wiki: ReqwestWiki {
                client: client.clone(),
                o_token: o_token.clone(),
            },
            friends: ReqwestFriends {
                client: client.clone(),
                o_token: o_token.clone(),
            },
            o_token,
            client,
        }
    }

    pub async fn set_o_token(&self, o_token: OToken) {
        let mut token = self.o_token.write().await;
        *token = o_token;
    }
}

impl Default for OsynicOsuApiV2Client {
    fn default() -> Self {
        let client = reqwest::Client::new();
        let o_token = Arc::new(RwLock::new(OToken::default()));
        OsynicOsuApiV2Client {
            oauth: ReqwestOauth {
                client: client.clone(),
                o_token: o_token.clone(),
            },
            beatmapsets: ReqwestBeatmapsets {
                client: client.clone(),
                o_token: o_token.clone(),
            },
            beatmaps: ReqwestBeatmaps {
                client: client.clone(),
                o_token: o_token.clone(),
            },
            changelog: ReqwestChangelog {
                client: client.clone(),
                o_token: o_token.clone(),
            },
            chat: ReqwestChat {
                client: client.clone(),
                o_token: o_token.clone(),
            },
            comments: ReqwestComments {
                client: client.clone(),
                o_token: o_token.clone(),
            },
            events: ReqwestEvents {
                client: client.clone(),
                o_token: o_token.clone(),
            },
            forum: ReqwestForum {
                client: client.clone(),
                o_token: o_token.clone(),
            },
            search: ReqwestSearch {
                client: client.clone(),
                o_token: o_token.clone(),
            },
            matches: ReqwestMatches {
                client: client.clone(),
                o_token: o_token.clone(),
            },
            multiplayer: ReqwestMultiplayer {
                client: client.clone(),
                o_token: o_token.clone(),
            },
            news: ReqwestNews {
                client: client.clone(),
                o_token: o_token.clone(),
            },
            notifications: ReqwestNotifications {
                client: client.clone(),
                o_token: o_token.clone(),
            },
            ranking: ReqwestRanking {
                client: client.clone(),
                o_token: o_token.clone(),
            },
            scores: ReqwestScores {
                client: client.clone(),
                o_token: o_token.clone(),
            },
            users: ReqwestUsers {
                client: client.clone(),
                o_token: o_token.clone(),
            },
            wiki: ReqwestWiki {
                client: client.clone(),
                o_token: o_token.clone(),
            },
            friends: ReqwestFriends {
                client: client.clone(),
                o_token: o_token.clone(),
            },
            o_token,
            client,
        }
    }
}