use revolt_result::Result;
use crate::File;
use super::FileUsedFor;
#[cfg(feature = "mongodb")]
mod mongodb;
mod reference;
#[async_trait]
pub trait AbstractAttachments: Sync + Send {
async fn insert_attachment(&self, attachment: &File) -> Result<()>;
async fn fetch_attachment(&self, tag: &str, file_id: &str) -> Result<File>;
async fn fetch_deleted_attachments(&self) -> Result<Vec<File>>;
async fn fetch_dangling_files(&self) -> Result<Vec<File>>;
async fn count_file_hash_references(&self, hash: &str) -> Result<usize>;
async fn find_and_use_attachment(
&self,
id: &str,
tag: &str,
used_for: FileUsedFor,
uploader_id: String,
) -> Result<File>;
async fn mark_attachment_as_reported(&self, id: &str) -> Result<()>;
async fn mark_attachment_as_deleted(&self, id: &str) -> Result<()>;
async fn mark_attachments_as_deleted(&self, ids: &[String]) -> Result<()>;
async fn delete_attachment(&self, id: &str) -> Result<()>;
}