mirror of
https://github.com/LemmyNet/lemmy.git
synced 2025-01-08 11:11:37 +00:00
5d837780f5
* Moving settings to Database. - Moves many settings into the database. Fixes #2285 - Adds a local_site and instance table. Fixes #2365 . Fixes #2368 - Separates SQL update an insert forms, to avoid runtime errors. - Adds TypedBuilder to all the SQL forms, instead of default. * Fix weird clippy issue. * Removing extra lines. * Some fixes from suggestions. * Fixing apub tests. * Using instance creation helper function. * Move forms to their own line. * Trying to fix local_site_data, still broken. * Testing out async * Testing out async 2 * Fixing federation tests. * Trying to fix check features 1. * Starting on adding diesel async. 1/4th done. * Added async to views and schema. * Adding some more async * Compiling now. * Added diesel async. Fixes #2465 * Running clippy --fix * Trying to fix cargo test on drone. * Trying new muslrust. * Trying a custom dns * Trying a custom dns 2 * Trying a custom dns 3 * Trying a custom dns 4 * Trying a custom dns 5 * Trying a custom dns 6 * Trying a custom dns 7 * Addressing PR comments. * Adding check_apub to all verify functions. * Reverting back drone. * Fixing merge * Fix docker images. * Adding missing discussion_languages. * Trying to fix federation tests. * Fix site setup user creation. * Fix clippy * Fix clippy 2 * Test api faster * Try to fix 1 * Try to fix 2 * What are these lines about * Trying to fix 3 * Moving federation test back to top. * Remove logging cat.
131 lines
3.9 KiB
Rust
131 lines
3.9 KiB
Rust
use crate::{
|
|
activities::{
|
|
community::{announce::GetCommunity, send_activity_in_community},
|
|
generate_activity_id,
|
|
verify_person_in_community,
|
|
voting::{vote_comment, vote_post},
|
|
},
|
|
activity_lists::AnnouncableActivities,
|
|
local_instance,
|
|
objects::{community::ApubCommunity, person::ApubPerson},
|
|
protocol::activities::voting::vote::{Vote, VoteType},
|
|
ActorType,
|
|
PostOrComment,
|
|
};
|
|
use activitypub_federation::{core::object_id::ObjectId, data::Data, traits::ActivityHandler};
|
|
use anyhow::anyhow;
|
|
use lemmy_db_schema::{
|
|
newtypes::CommunityId,
|
|
source::{community::Community, local_site::LocalSite, post::Post},
|
|
traits::Crud,
|
|
};
|
|
use lemmy_utils::error::LemmyError;
|
|
use lemmy_websocket::LemmyContext;
|
|
use url::Url;
|
|
|
|
/// Vote has as:Public value in cc field, unlike other activities. This indicates to other software
|
|
/// (like GNU social, or presumably Mastodon), that the like actor should not be disclosed.
|
|
impl Vote {
|
|
pub(in crate::activities::voting) fn new(
|
|
object: &PostOrComment,
|
|
actor: &ApubPerson,
|
|
kind: VoteType,
|
|
context: &LemmyContext,
|
|
) -> Result<Vote, LemmyError> {
|
|
Ok(Vote {
|
|
actor: ObjectId::new(actor.actor_id()),
|
|
object: ObjectId::new(object.ap_id()),
|
|
kind: kind.clone(),
|
|
id: generate_activity_id(kind, &context.settings().get_protocol_and_hostname())?,
|
|
unparsed: Default::default(),
|
|
})
|
|
}
|
|
|
|
#[tracing::instrument(skip_all)]
|
|
pub async fn send(
|
|
object: &PostOrComment,
|
|
actor: &ApubPerson,
|
|
community_id: CommunityId,
|
|
kind: VoteType,
|
|
context: &LemmyContext,
|
|
) -> Result<(), LemmyError> {
|
|
let community = Community::read(context.pool(), community_id).await?.into();
|
|
let vote = Vote::new(object, actor, kind, context)?;
|
|
|
|
let activity = AnnouncableActivities::Vote(vote);
|
|
send_activity_in_community(activity, actor, &community, vec![], context).await
|
|
}
|
|
}
|
|
|
|
#[async_trait::async_trait(?Send)]
|
|
impl ActivityHandler for Vote {
|
|
type DataType = LemmyContext;
|
|
type Error = LemmyError;
|
|
|
|
fn id(&self) -> &Url {
|
|
&self.id
|
|
}
|
|
|
|
fn actor(&self) -> &Url {
|
|
self.actor.inner()
|
|
}
|
|
|
|
#[tracing::instrument(skip_all)]
|
|
async fn verify(
|
|
&self,
|
|
context: &Data<LemmyContext>,
|
|
request_counter: &mut i32,
|
|
) -> Result<(), LemmyError> {
|
|
let community = self.get_community(context, request_counter).await?;
|
|
verify_person_in_community(&self.actor, &community, context, request_counter).await?;
|
|
let enable_downvotes = LocalSite::read(context.pool())
|
|
.await
|
|
.map(|l| l.enable_downvotes)
|
|
.unwrap_or(true);
|
|
if self.kind == VoteType::Dislike && !enable_downvotes {
|
|
return Err(anyhow!("Downvotes disabled").into());
|
|
}
|
|
Ok(())
|
|
}
|
|
|
|
#[tracing::instrument(skip_all)]
|
|
async fn receive(
|
|
self,
|
|
context: &Data<LemmyContext>,
|
|
request_counter: &mut i32,
|
|
) -> Result<(), LemmyError> {
|
|
let actor = self
|
|
.actor
|
|
.dereference(context, local_instance(context).await, request_counter)
|
|
.await?;
|
|
let object = self
|
|
.object
|
|
.dereference(context, local_instance(context).await, request_counter)
|
|
.await?;
|
|
match object {
|
|
PostOrComment::Post(p) => vote_post(&self.kind, actor, &p, context).await,
|
|
PostOrComment::Comment(c) => vote_comment(&self.kind, actor, &c, context).await,
|
|
}
|
|
}
|
|
}
|
|
|
|
#[async_trait::async_trait(?Send)]
|
|
impl GetCommunity for Vote {
|
|
#[tracing::instrument(skip_all)]
|
|
async fn get_community(
|
|
&self,
|
|
context: &LemmyContext,
|
|
request_counter: &mut i32,
|
|
) -> Result<ApubCommunity, LemmyError> {
|
|
let object = self
|
|
.object
|
|
.dereference(context, local_instance(context).await, request_counter)
|
|
.await?;
|
|
let cid = match object {
|
|
PostOrComment::Post(p) => p.community_id,
|
|
PostOrComment::Comment(c) => Post::read(context.pool(), c.post_id).await?.community_id,
|
|
};
|
|
let community = Community::read(context.pool(), cid).await?;
|
|
Ok(community.into())
|
|
}
|
|
}
|