mirror of
https://git.asonix.dog/asonix/pict-rs
synced 2024-11-12 23:43:57 +00:00
75 lines
1.8 KiB
Rust
75 lines
1.8 KiB
Rust
|
use crate::{
|
||
|
error::Error,
|
||
|
queue::{Job, CLEANUP_QUEUE},
|
||
|
repo::{AliasRepo, HashRepo, IdentifierRepo, QueueRepo},
|
||
|
store::{Identifier, Store},
|
||
|
};
|
||
|
use tracing::error;
|
||
|
|
||
|
#[tracing::instrument(skip(repo, store))]
|
||
|
pub(super) async fn identifier<R, S>(repo: &R, store: &S, identifier: Vec<u8>) -> Result<(), Error>
|
||
|
where
|
||
|
R: QueueRepo + HashRepo + IdentifierRepo,
|
||
|
R::Bytes: Clone,
|
||
|
S: Store,
|
||
|
{
|
||
|
let identifier = S::Identifier::from_bytes(identifier)?;
|
||
|
|
||
|
let mut errors = Vec::new();
|
||
|
|
||
|
if let Err(e) = store.remove(&identifier).await {
|
||
|
errors.push(e);
|
||
|
}
|
||
|
|
||
|
if let Err(e) = IdentifierRepo::cleanup(repo, &identifier).await {
|
||
|
errors.push(e);
|
||
|
}
|
||
|
|
||
|
if !errors.is_empty() {
|
||
|
let span = tracing::error_span!("Error deleting files");
|
||
|
span.in_scope(|| {
|
||
|
for error in errors {
|
||
|
error!("{}", error);
|
||
|
}
|
||
|
});
|
||
|
}
|
||
|
|
||
|
Ok(())
|
||
|
}
|
||
|
|
||
|
#[tracing::instrument(skip(repo))]
|
||
|
pub(super) async fn hash<R, S>(repo: &R, hash: Vec<u8>) -> Result<(), Error>
|
||
|
where
|
||
|
R: QueueRepo + AliasRepo + HashRepo + IdentifierRepo,
|
||
|
R::Bytes: Clone,
|
||
|
S: Store,
|
||
|
{
|
||
|
let hash: R::Bytes = hash.into();
|
||
|
|
||
|
let aliases = repo.aliases(hash.clone()).await?;
|
||
|
|
||
|
if !aliases.is_empty() {
|
||
|
return Ok(());
|
||
|
}
|
||
|
|
||
|
let mut idents = repo
|
||
|
.variants::<S::Identifier>(hash.clone())
|
||
|
.await?
|
||
|
.into_iter()
|
||
|
.map(|(_, v)| v)
|
||
|
.collect::<Vec<_>>();
|
||
|
idents.push(repo.identifier(hash.clone()).await?);
|
||
|
idents.extend(repo.motion_identifier(hash.clone()).await?);
|
||
|
|
||
|
for identifier in idents {
|
||
|
if let Ok(identifier) = identifier.to_bytes() {
|
||
|
let job = serde_json::to_vec(&Job::CleanupIdentifier { identifier })?;
|
||
|
repo.push(CLEANUP_QUEUE, job.into()).await?;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
HashRepo::cleanup(repo, hash).await?;
|
||
|
|
||
|
Ok(())
|
||
|
}
|