2021-03-25 19:19:40 +00:00
|
|
|
use crate::Perform;
|
2021-01-18 21:57:31 +00:00
|
|
|
use actix_web::web::Data;
|
2022-05-03 17:44:13 +00:00
|
|
|
use lemmy_api_common::{utils::get_local_user_view_from_jwt, websocket::*};
|
2022-06-02 14:33:41 +00:00
|
|
|
use lemmy_utils::{error::LemmyError, ConnectionId};
|
2021-01-18 21:57:31 +00:00
|
|
|
use lemmy_websocket::{
|
|
|
|
messages::{JoinCommunityRoom, JoinModRoom, JoinPostRoom, JoinUserRoom},
|
|
|
|
LemmyContext,
|
|
|
|
};
|
|
|
|
|
|
|
|
#[async_trait::async_trait(?Send)]
|
|
|
|
impl Perform for UserJoin {
|
|
|
|
type Response = UserJoinResponse;
|
|
|
|
|
2021-12-06 14:54:47 +00:00
|
|
|
#[tracing::instrument(skip(context, websocket_id))]
|
2021-01-18 21:57:31 +00:00
|
|
|
async fn perform(
|
|
|
|
&self,
|
|
|
|
context: &Data<LemmyContext>,
|
|
|
|
websocket_id: Option<ConnectionId>,
|
|
|
|
) -> Result<UserJoinResponse, LemmyError> {
|
2021-07-05 16:07:26 +00:00
|
|
|
let data: &UserJoin = self;
|
2021-09-22 15:57:09 +00:00
|
|
|
let local_user_view =
|
|
|
|
get_local_user_view_from_jwt(&data.auth, context.pool(), context.secret()).await?;
|
2021-01-18 21:57:31 +00:00
|
|
|
|
|
|
|
if let Some(ws_id) = websocket_id {
|
|
|
|
context.chat_server().do_send(JoinUserRoom {
|
2021-03-11 22:47:44 +00:00
|
|
|
local_user_id: local_user_view.local_user.id,
|
2021-01-18 21:57:31 +00:00
|
|
|
id: ws_id,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
Ok(UserJoinResponse { joined: true })
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[async_trait::async_trait(?Send)]
|
|
|
|
impl Perform for CommunityJoin {
|
|
|
|
type Response = CommunityJoinResponse;
|
|
|
|
|
2021-12-06 14:54:47 +00:00
|
|
|
#[tracing::instrument(skip(context, websocket_id))]
|
2021-01-18 21:57:31 +00:00
|
|
|
async fn perform(
|
|
|
|
&self,
|
|
|
|
context: &Data<LemmyContext>,
|
|
|
|
websocket_id: Option<ConnectionId>,
|
|
|
|
) -> Result<CommunityJoinResponse, LemmyError> {
|
2021-07-05 16:07:26 +00:00
|
|
|
let data: &CommunityJoin = self;
|
2021-01-18 21:57:31 +00:00
|
|
|
|
|
|
|
if let Some(ws_id) = websocket_id {
|
|
|
|
context.chat_server().do_send(JoinCommunityRoom {
|
|
|
|
community_id: data.community_id,
|
|
|
|
id: ws_id,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
Ok(CommunityJoinResponse { joined: true })
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[async_trait::async_trait(?Send)]
|
|
|
|
impl Perform for ModJoin {
|
|
|
|
type Response = ModJoinResponse;
|
|
|
|
|
2021-12-06 14:54:47 +00:00
|
|
|
#[tracing::instrument(skip(context, websocket_id))]
|
2021-01-18 21:57:31 +00:00
|
|
|
async fn perform(
|
|
|
|
&self,
|
|
|
|
context: &Data<LemmyContext>,
|
|
|
|
websocket_id: Option<ConnectionId>,
|
|
|
|
) -> Result<ModJoinResponse, LemmyError> {
|
2021-07-05 16:07:26 +00:00
|
|
|
let data: &ModJoin = self;
|
2021-01-18 21:57:31 +00:00
|
|
|
|
|
|
|
if let Some(ws_id) = websocket_id {
|
|
|
|
context.chat_server().do_send(JoinModRoom {
|
|
|
|
community_id: data.community_id,
|
|
|
|
id: ws_id,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
Ok(ModJoinResponse { joined: true })
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[async_trait::async_trait(?Send)]
|
|
|
|
impl Perform for PostJoin {
|
|
|
|
type Response = PostJoinResponse;
|
|
|
|
|
2021-12-06 14:54:47 +00:00
|
|
|
#[tracing::instrument(skip(context, websocket_id))]
|
2021-01-18 21:57:31 +00:00
|
|
|
async fn perform(
|
|
|
|
&self,
|
|
|
|
context: &Data<LemmyContext>,
|
|
|
|
websocket_id: Option<ConnectionId>,
|
|
|
|
) -> Result<PostJoinResponse, LemmyError> {
|
2021-07-05 16:07:26 +00:00
|
|
|
let data: &PostJoin = self;
|
2021-01-18 21:57:31 +00:00
|
|
|
|
|
|
|
if let Some(ws_id) = websocket_id {
|
|
|
|
context.chat_server().do_send(JoinPostRoom {
|
|
|
|
post_id: data.post_id,
|
|
|
|
id: ws_id,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
Ok(PostJoinResponse { joined: true })
|
|
|
|
}
|
|
|
|
}
|