use crate::{ newtypes::{CommunityId, DbUrl, PersonId}, utils::DbPool, }; use diesel::result::Error; #[async_trait] pub trait Crud { type InsertForm; type UpdateForm; type IdType; async fn create(pool: &DbPool, form: &Self::InsertForm) -> Result where Self: Sized; async fn read(pool: &DbPool, id: Self::IdType) -> Result where Self: Sized; /// when you want to null out a column, you have to send Some(None)), since sending None means you just don't want to update that column. async fn update(pool: &DbPool, id: Self::IdType, form: &Self::UpdateForm) -> Result where Self: Sized; async fn delete(_pool: &DbPool, _id: Self::IdType) -> Result where Self: Sized, Self::IdType: Send, { async { Err(Error::NotFound) }.await } } #[async_trait] pub trait Followable { type Form; async fn follow(pool: &DbPool, form: &Self::Form) -> Result where Self: Sized; async fn follow_accepted( pool: &DbPool, community_id: CommunityId, person_id: PersonId, ) -> Result where Self: Sized; async fn unfollow(pool: &DbPool, form: &Self::Form) -> Result where Self: Sized; } #[async_trait] pub trait Joinable { type Form; async fn join(pool: &DbPool, form: &Self::Form) -> Result where Self: Sized; async fn leave(pool: &DbPool, form: &Self::Form) -> Result where Self: Sized; } #[async_trait] pub trait Likeable { type Form; type IdType; async fn like(pool: &DbPool, form: &Self::Form) -> Result where Self: Sized; async fn remove( pool: &DbPool, person_id: PersonId, item_id: Self::IdType, ) -> Result where Self: Sized; } #[async_trait] pub trait Bannable { type Form; async fn ban(pool: &DbPool, form: &Self::Form) -> Result where Self: Sized; async fn unban(pool: &DbPool, form: &Self::Form) -> Result where Self: Sized; } #[async_trait] pub trait Saveable { type Form; async fn save(pool: &DbPool, form: &Self::Form) -> Result where Self: Sized; async fn unsave(pool: &DbPool, form: &Self::Form) -> Result where Self: Sized; } #[async_trait] pub trait Blockable { type Form; async fn block(pool: &DbPool, form: &Self::Form) -> Result where Self: Sized; async fn unblock(pool: &DbPool, form: &Self::Form) -> Result where Self: Sized; } #[async_trait] pub trait Readable { type Form; async fn mark_as_read(pool: &DbPool, form: &Self::Form) -> Result where Self: Sized; async fn mark_as_unread(pool: &DbPool, form: &Self::Form) -> Result where Self: Sized; } #[async_trait] pub trait Reportable { type Form; type IdType; async fn report(pool: &DbPool, form: &Self::Form) -> Result where Self: Sized; async fn resolve( pool: &DbPool, report_id: Self::IdType, resolver_id: PersonId, ) -> Result where Self: Sized; async fn unresolve( pool: &DbPool, report_id: Self::IdType, resolver_id: PersonId, ) -> Result where Self: Sized; } pub trait JoinView { type JoinTuple; fn from_tuple(tuple: Self::JoinTuple) -> Self where Self: Sized; } #[async_trait] pub trait ApubActor { async fn read_from_apub_id(pool: &DbPool, object_id: &DbUrl) -> Result, Error> where Self: Sized; /// - actor_name is the name of the community or user to read. /// - include_deleted, if true, will return communities or users that were deleted/removed async fn read_from_name( pool: &DbPool, actor_name: &str, include_deleted: bool, ) -> Result where Self: Sized; async fn read_from_name_and_domain( pool: &DbPool, actor_name: &str, protocol_domain: &str, ) -> Result where Self: Sized; }