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-11-19 04:33:54 +00:00
|
|
|
use lemmy_api_common::{
|
2022-11-28 14:29:33 +00:00
|
|
|
context::LemmyContext,
|
2022-11-19 04:33:54 +00:00
|
|
|
utils::get_local_user_view_from_jwt,
|
2022-12-09 15:31:47 +00:00
|
|
|
websocket::structs::{
|
|
|
|
CommunityJoin,
|
|
|
|
CommunityJoinResponse,
|
|
|
|
ModJoin,
|
|
|
|
ModJoinResponse,
|
|
|
|
PostJoin,
|
|
|
|
PostJoinResponse,
|
|
|
|
UserJoin,
|
|
|
|
UserJoinResponse,
|
2022-11-19 04:33:54 +00:00
|
|
|
},
|
2021-01-18 21:57:31 +00:00
|
|
|
};
|
2022-11-26 02:04:46 +00:00
|
|
|
use lemmy_utils::{error::LemmyError, ConnectionId};
|
2021-01-18 21:57:31 +00:00
|
|
|
|
|
|
|
#[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 {
|
2022-12-09 15:31:47 +00:00
|
|
|
context
|
|
|
|
.chat_server()
|
|
|
|
.join_user_room(local_user_view.local_user.id, ws_id)?;
|
2021-01-18 21:57:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
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 {
|
2022-12-09 15:31:47 +00:00
|
|
|
context
|
|
|
|
.chat_server()
|
|
|
|
.join_community_room(data.community_id, ws_id)?;
|
2021-01-18 21:57:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
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 {
|
2022-12-09 15:31:47 +00:00
|
|
|
context
|
|
|
|
.chat_server()
|
|
|
|
.join_mod_room(data.community_id, ws_id)?;
|
2021-01-18 21:57:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
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 {
|
2022-12-09 15:31:47 +00:00
|
|
|
context.chat_server().join_post_room(data.post_id, ws_id)?;
|
2021-01-18 21:57:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Ok(PostJoinResponse { joined: true })
|
|
|
|
}
|
|
|
|
}
|