use crate::Perform;
use actix_web::web::Data;
use lemmy_api_common::{
- community::{CommunityResponse, FollowCommunity},
+ community::{FollowCommunity, FollowCommunityResponse},
utils::{
blocking,
check_community_ban,
source::community::{Community, CommunityFollower, CommunityFollowerForm},
traits::{Crud, Followable},
};
-use lemmy_db_views_actor::structs::CommunityView;
+use lemmy_db_views_actor::structs::CommunityFollowerView;
use lemmy_utils::{ConnectionId, LemmyError};
use lemmy_websocket::LemmyContext;
#[async_trait::async_trait(?Send)]
impl Perform for FollowCommunity {
- type Response = CommunityResponse;
+ type Response = FollowCommunityResponse;
#[tracing::instrument(skip(context, _websocket_id))]
async fn perform(
&self,
context: &Data<LemmyContext>,
_websocket_id: Option<ConnectionId>,
- ) -> Result<CommunityResponse, LemmyError> {
+ ) -> Result<Self::Response, LemmyError> {
let data: &FollowCommunity = self;
let local_user_view =
get_local_user_view_from_jwt(&data.auth, context.pool(), context.secret()).await?;
let community_follower_form = CommunityFollowerForm {
community_id: data.community_id,
person_id: local_user_view.person.id,
- pending: false,
+ pending: false, // Don't worry, this form isn't used for remote follows
};
if community.local {
let community_id = data.community_id;
let person_id = local_user_view.person.id;
- let mut community_view = blocking(context.pool(), move |conn| {
- CommunityView::read(conn, community_id, Some(person_id))
+ let community_follower_view = blocking(context.pool(), move |conn| {
+ CommunityFollowerView::read(conn, community_id, person_id)
})
.await??;
- // TODO: this needs to return a "pending" state, until Accept is received from the remote server
- // For now, just assume that remote follows are accepted.
- // Otherwise, the subscribed will be null
- if !community.local {
- community_view.subscribed = data.follow;
- }
-
- Ok(CommunityResponse { community_view })
+ Ok(Self::Response {
+ community_follower_view,
+ })
}
}
ListingType,
SortType,
};
-use lemmy_db_views_actor::structs::{CommunityModeratorView, CommunityView, PersonViewSafe};
+use lemmy_db_views_actor::structs::{
+ CommunityFollowerView,
+ CommunityModeratorView,
+ CommunityView,
+ PersonViewSafe,
+};
use serde::{Deserialize, Serialize};
#[derive(Debug, Serialize, Deserialize, Clone, Default)]
pub community_view: CommunityView,
}
+#[derive(Debug, Serialize, Deserialize, Clone)]
+pub struct FollowCommunityResponse {
+ pub community_follower_view: CommunityFollowerView,
+}
+
#[derive(Debug, Serialize, Deserialize, Clone, Default)]
pub struct ListCommunities {
pub type_: Option<ListingType>,
traits::{ToSafe, ViewToVec},
};
-type CommunityFollowerViewTuple = (CommunitySafe, PersonSafe);
+type CommunityFollowerViewTuple = (CommunitySafe, PersonSafe, Option<bool>);
impl CommunityFollowerView {
pub fn for_community(conn: &PgConnection, community_id: CommunityId) -> Result<Vec<Self>, Error> {
.select((
Community::safe_columns_tuple(),
Person::safe_columns_tuple(),
+ community_follower::pending,
))
.filter(community_follower::community_id.eq(community_id))
.order_by(community::title)
.select((
Community::safe_columns_tuple(),
Person::safe_columns_tuple(),
+ community_follower::pending,
))
.filter(community_follower::person_id.eq(person_id))
.order_by(community::title)
Ok(Self::from_tuple_to_vec(res))
}
+
+ pub fn read(
+ conn: &PgConnection,
+ community_id: CommunityId,
+ person_id: PersonId,
+ ) -> Result<Self, Error> {
+ let (community, follower, pending) = community_follower::table
+ .inner_join(community::table)
+ .inner_join(person::table)
+ .select((
+ Community::safe_columns_tuple(),
+ Person::safe_columns_tuple(),
+ community_follower::pending,
+ ))
+ .filter(community_follower::person_id.eq(person_id))
+ .filter(community_follower::community_id.eq(community_id))
+ .first::<CommunityFollowerViewTuple>(conn)?;
+
+ Ok(Self {
+ community,
+ follower,
+ pending,
+ })
+ }
}
impl ViewToVec for CommunityFollowerView {
.map(|a| Self {
community: a.0.to_owned(),
follower: a.1.to_owned(),
+ pending: a.2.to_owned(),
})
.collect::<Vec<Self>>()
}
pub struct CommunityFollowerView {
pub community: CommunitySafe,
pub follower: PersonSafe,
+ pub pending: Option<bool>,
}
#[derive(Debug, Serialize, Deserialize, Clone)]