Make user::shell async due to gateway add

This commit is contained in:
bitfl0wer 2023-07-22 14:39:36 +02:00
parent 9246fd9504
commit 25704f6dda
5 changed files with 36 additions and 11 deletions

View File

@ -6,9 +6,10 @@ use serde_json::to_string;
use crate::api::LimitType;
use crate::errors::ChorusResult;
use crate::gateway::Gateway;
use crate::instance::{Instance, UserMeta};
use crate::ratelimiter::ChorusRequest;
use crate::types::{LoginResult, LoginSchema};
use crate::types::{GatewayIdentifyPayload, LoginResult, LoginSchema};
impl Instance {
pub async fn login_account(&mut self, login_schema: &LoginSchema) -> ChorusResult<UserMeta> {
@ -22,7 +23,8 @@ impl Instance {
// We do not have a user yet, and the UserRateLimits will not be affected by a login
// request (since login is an instance wide limit), which is why we are just cloning the
// instances' limits to pass them on as user_rate_limits later.
let mut shell = UserMeta::shell(Rc::new(RefCell::new(self.clone())), "None".to_string());
let mut shell =
UserMeta::shell(Rc::new(RefCell::new(self.clone())), "None".to_string()).await;
let login_result = chorus_request
.deserialize_response::<LoginResult>(&mut shell)
.await?;
@ -30,12 +32,17 @@ impl Instance {
if self.limits_information.is_some() {
self.limits_information.as_mut().unwrap().ratelimits = shell.limits.clone().unwrap();
}
let mut identify = GatewayIdentifyPayload::common();
let gateway = Gateway::new(self.urls.wss.clone()).await.unwrap();
identify.token = login_result.token.clone();
gateway.send_identify(identify).await;
let user = UserMeta::new(
Rc::new(RefCell::new(self.clone())),
login_result.token,
self.clone_limits_if_some(),
login_result.settings,
object,
gateway,
);
Ok(user)
}

View File

@ -3,6 +3,8 @@ use std::{cell::RefCell, rc::Rc};
use reqwest::Client;
use serde_json::to_string;
use crate::gateway::Gateway;
use crate::types::GatewayIdentifyPayload;
use crate::{
api::policies::instance::LimitType,
errors::ChorusResult,
@ -35,7 +37,8 @@ impl Instance {
// We do not have a user yet, and the UserRateLimits will not be affected by a login
// request (since register is an instance wide limit), which is why we are just cloning
// the instances' limits to pass them on as user_rate_limits later.
let mut shell = UserMeta::shell(Rc::new(RefCell::new(self.clone())), "None".to_string());
let mut shell =
UserMeta::shell(Rc::new(RefCell::new(self.clone())), "None".to_string()).await;
let token = chorus_request
.deserialize_response::<Token>(&mut shell)
.await?
@ -45,12 +48,17 @@ impl Instance {
}
let user_object = self.get_user(token.clone(), None).await.unwrap();
let settings = UserMeta::get_settings(&token, &self.urls.api.clone(), self).await?;
let mut identify = GatewayIdentifyPayload::common();
let gateway = Gateway::new(self.urls.wss.clone()).await.unwrap();
identify.token = token.clone();
gateway.send_identify(identify).await;
let user = UserMeta::new(
Rc::new(RefCell::new(self.clone())),
token.clone(),
self.clone_limits_if_some(),
settings,
user_object,
gateway,
);
Ok(user)
}

View File

@ -122,7 +122,8 @@ impl User {
let request: reqwest::RequestBuilder = Client::new()
.get(format!("{}/users/@me/settings/", url_api))
.bearer_auth(token);
let mut user = UserMeta::shell(Rc::new(RefCell::new(instance.clone())), token.clone());
let mut user =
UserMeta::shell(Rc::new(RefCell::new(instance.clone())), token.clone()).await;
let chorus_request = ChorusRequest {
request,
limit_type: LimitType::Global,
@ -151,7 +152,7 @@ impl Instance {
This function is a wrapper around [`User::get`].
*/
pub async fn get_user(&mut self, token: String, id: Option<&String>) -> ChorusResult<User> {
let mut user = UserMeta::shell(Rc::new(RefCell::new(self.clone())), token);
let mut user = UserMeta::shell(Rc::new(RefCell::new(self.clone())), token).await;
let result = User::get(&mut user, id).await;
if self.limits_information.is_some() {
self.limits_information.as_mut().unwrap().ratelimits =

View File

@ -1,3 +1,4 @@
use chorus::gateway::Gateway;
use chorus::{
instance::{Instance, UserMeta},
types::{
@ -18,8 +19,8 @@ pub(crate) struct TestBundle {
pub channel: Channel,
}
#[allow(unused)]
impl TestBundle {
#[allow(unused)]
pub(crate) async fn create_user(&mut self, username: &str) -> UserMeta {
let register_schema = RegisterSchema {
username: username.to_string(),
@ -32,6 +33,16 @@ impl TestBundle {
.await
.unwrap()
}
pub(crate) async fn clone_user_without_gateway(&self) -> UserMeta {
UserMeta {
belongs_to: self.user.belongs_to.clone(),
token: self.user.token.clone(),
limits: self.user.limits.clone(),
settings: self.user.settings.clone(),
object: self.user.object.clone(),
gateway: Gateway::new(self.instance.urls.wss.clone()).await.unwrap(),
}
}
}
// Set up a test by creating an Instance and a User. Reduces Test boilerplate.

View File

@ -1,14 +1,12 @@
use chorus::types::CreateChannelInviteSchema;
mod common;
use chorus::types::CreateChannelInviteSchema;
#[tokio::test]
async fn create_accept_invite() {
let mut bundle = common::setup().await;
let channel = bundle.channel.clone();
let mut user = bundle.user.clone();
let create_channel_invite_schema = CreateChannelInviteSchema::default();
let mut other_user = bundle.create_user("testuser1312").await;
let user = &mut bundle.user;
let create_channel_invite_schema = CreateChannelInviteSchema::default();
assert!(chorus::types::Guild::get(bundle.guild.id, &mut other_user)
.await
.is_err());