192 lines
5.9 KiB
Rust
192 lines
5.9 KiB
Rust
|
use super::*;
|
||
|
use crate::cache::Cache;
|
||
|
use crate::model::{
|
||
|
Error, Result, auth::User, permissions::FinePermission,
|
||
|
communities_permissions::CommunityPermission, uploads::CustomEmoji,
|
||
|
};
|
||
|
use crate::{auto_method, execute, get, query_row, query_rows, params};
|
||
|
|
||
|
#[cfg(feature = "sqlite")]
|
||
|
use rusqlite::Row;
|
||
|
|
||
|
#[cfg(feature = "postgres")]
|
||
|
use tokio_postgres::Row;
|
||
|
|
||
|
impl DataManager {
|
||
|
/// Get a [`CustomEmoji`] from an SQL row.
|
||
|
pub(crate) fn get_emoji_from_row(
|
||
|
#[cfg(feature = "sqlite")] x: &Row<'_>,
|
||
|
#[cfg(feature = "postgres")] x: &Row,
|
||
|
) -> CustomEmoji {
|
||
|
CustomEmoji {
|
||
|
id: get!(x->0(i64)) as usize,
|
||
|
owner: get!(x->1(i64)) as usize,
|
||
|
created: get!(x->2(i64)) as usize,
|
||
|
community: get!(x->3(i64)) as usize,
|
||
|
upload_id: get!(x->4(i64)) as usize,
|
||
|
name: get!(x->5(String)),
|
||
|
}
|
||
|
}
|
||
|
|
||
|
auto_method!(get_emoji_by_id(usize as i64)@get_emoji_from_row -> "SELECT * FROM emojis WHERE id = $1" --name="emoji" --returns=CustomEmoji --cache-key-tmpl="atto.emoji:{}");
|
||
|
|
||
|
/// Get all emojis by community.
|
||
|
///
|
||
|
/// # Arguments
|
||
|
/// * `community` - the ID of the community to fetch emojis for
|
||
|
pub async fn get_emojis_by_community(&self, community: usize) -> Result<Vec<CustomEmoji>> {
|
||
|
let conn = match self.connect().await {
|
||
|
Ok(c) => c,
|
||
|
Err(e) => return Err(Error::DatabaseConnection(e.to_string())),
|
||
|
};
|
||
|
|
||
|
let res = query_rows!(
|
||
|
&conn,
|
||
|
"SELECT * FROM emojis WHERE community = $1 ORDER BY name ASC",
|
||
|
&[&(community as i64)],
|
||
|
|x| { Self::get_emoji_from_row(x) }
|
||
|
);
|
||
|
|
||
|
if res.is_err() {
|
||
|
return Err(Error::GeneralNotFound("emoji".to_string()));
|
||
|
}
|
||
|
|
||
|
Ok(res.unwrap())
|
||
|
}
|
||
|
|
||
|
/// Get all emojis by user.
|
||
|
///
|
||
|
/// # Arguments
|
||
|
/// * `user` - the ID of the user to fetch emojis for
|
||
|
pub async fn get_emojis_by_user(&self, user: usize) -> Result<Vec<CustomEmoji>> {
|
||
|
let conn = match self.connect().await {
|
||
|
Ok(c) => c,
|
||
|
Err(e) => return Err(Error::DatabaseConnection(e.to_string())),
|
||
|
};
|
||
|
|
||
|
let res = query_rows!(
|
||
|
&conn,
|
||
|
"SELECT * FROM emojis WHERE (owner = $1 OR members LIKE $2) AND community = 0 ORDER BY created DESC",
|
||
|
params![&(user as i64), &format!("%{user}%")],
|
||
|
|x| { Self::get_emoji_from_row(x) }
|
||
|
);
|
||
|
|
||
|
if res.is_err() {
|
||
|
return Err(Error::GeneralNotFound("emoji".to_string()));
|
||
|
}
|
||
|
|
||
|
Ok(res.unwrap())
|
||
|
}
|
||
|
|
||
|
/// Get a emoji given its `owner` and a member.
|
||
|
///
|
||
|
/// # Arguments
|
||
|
/// * `owner` - the ID of the owner
|
||
|
/// * `member` - the ID of the member
|
||
|
pub async fn get_emoji_by_owner_member(
|
||
|
&self,
|
||
|
owner: usize,
|
||
|
member: usize,
|
||
|
) -> Result<CustomEmoji> {
|
||
|
let conn = match self.connect().await {
|
||
|
Ok(c) => c,
|
||
|
Err(e) => return Err(Error::DatabaseConnection(e.to_string())),
|
||
|
};
|
||
|
|
||
|
let res = query_row!(
|
||
|
&conn,
|
||
|
"SELECT * FROM emojis WHERE owner = $1 AND members = $2 AND community = 0 ORDER BY created DESC",
|
||
|
params![&(owner as i64), &format!("[{member}]")],
|
||
|
|x| { Ok(Self::get_emoji_from_row(x)) }
|
||
|
);
|
||
|
|
||
|
if res.is_err() {
|
||
|
return Err(Error::GeneralNotFound("emoji".to_string()));
|
||
|
}
|
||
|
|
||
|
Ok(res.unwrap())
|
||
|
}
|
||
|
|
||
|
/// Create a new emoji in the database.
|
||
|
///
|
||
|
/// # Arguments
|
||
|
/// * `data` - a mock [`CustomEmoji`] object to insert
|
||
|
pub async fn create_emoji(&self, data: CustomEmoji) -> Result<()> {
|
||
|
let user = self.get_user_by_id(data.owner).await?;
|
||
|
|
||
|
// check user permission in community
|
||
|
if data.community != 0 {
|
||
|
let membership = self
|
||
|
.get_membership_by_owner_community(user.id, data.community)
|
||
|
.await?;
|
||
|
|
||
|
if !membership.role.check(CommunityPermission::MANAGE_EMOJIS)
|
||
|
&& !user.permissions.check(FinePermission::MANAGE_EMOJIS)
|
||
|
{
|
||
|
return Err(Error::NotAllowed);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// ...
|
||
|
let conn = match self.connect().await {
|
||
|
Ok(c) => c,
|
||
|
Err(e) => return Err(Error::DatabaseConnection(e.to_string())),
|
||
|
};
|
||
|
|
||
|
let res = execute!(
|
||
|
&conn,
|
||
|
"INSERT INTO emojis VALUES ($1, $2, $3, $4, $5, $6)",
|
||
|
params![
|
||
|
&(data.id as i64),
|
||
|
&(data.owner as i64),
|
||
|
&(data.created as i64),
|
||
|
&(data.community as i64),
|
||
|
&(data.upload_id as i64),
|
||
|
&data.name
|
||
|
]
|
||
|
);
|
||
|
|
||
|
if let Err(e) = res {
|
||
|
return Err(Error::DatabaseError(e.to_string()));
|
||
|
}
|
||
|
|
||
|
Ok(())
|
||
|
}
|
||
|
|
||
|
pub async fn delete_emoji(&self, id: usize, user: &User) -> Result<()> {
|
||
|
let emoji = self.get_emoji_by_id(id).await?;
|
||
|
|
||
|
// check user permission in community
|
||
|
if user.id != emoji.owner {
|
||
|
let membership = self
|
||
|
.get_membership_by_owner_community(user.id, emoji.community)
|
||
|
.await?;
|
||
|
|
||
|
if !membership.role.check(CommunityPermission::MANAGE_EMOJIS) {
|
||
|
return Err(Error::NotAllowed);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// ...
|
||
|
let conn = match self.connect().await {
|
||
|
Ok(c) => c,
|
||
|
Err(e) => return Err(Error::DatabaseConnection(e.to_string())),
|
||
|
};
|
||
|
|
||
|
let res = execute!(&conn, "DELETE FROM emojis WHERE id = $1", &[&(id as i64)]);
|
||
|
|
||
|
if let Err(e) = res {
|
||
|
return Err(Error::DatabaseError(e.to_string()));
|
||
|
}
|
||
|
|
||
|
// delete uploads
|
||
|
self.delete_upload(emoji.upload_id).await?;
|
||
|
|
||
|
// ...
|
||
|
self.2.remove(format!("atto.emoji:{}", id)).await;
|
||
|
Ok(())
|
||
|
}
|
||
|
|
||
|
auto_method!(update_emoji_name(&str)@get_emoji_by_id:MANAGE_EMOJIS -> "UPDATE emojis SET title = $1 WHERE id = $2" --cache-key-tmpl="atto.emoji:{}");
|
||
|
}
|