2022-04-24 22:10:15 +00:00
|
|
|
use crate::{
|
|
|
|
config,
|
|
|
|
details::Details,
|
2023-06-20 20:59:08 +00:00
|
|
|
store::{file_store::FileId, Identifier, StoreError},
|
2022-04-24 22:10:15 +00:00
|
|
|
};
|
2023-01-29 17:47:28 +00:00
|
|
|
use base64::{prelude::BASE64_STANDARD, Engine};
|
2022-03-24 18:16:41 +00:00
|
|
|
use futures_util::Stream;
|
2022-04-24 22:10:15 +00:00
|
|
|
use std::{fmt::Debug, path::PathBuf};
|
2022-09-28 04:19:52 +00:00
|
|
|
use tracing::Instrument;
|
2022-03-24 18:16:41 +00:00
|
|
|
use uuid::Uuid;
|
|
|
|
|
2022-03-25 23:47:50 +00:00
|
|
|
mod old;
|
2022-03-24 22:09:15 +00:00
|
|
|
pub(crate) mod sled;
|
|
|
|
|
2022-03-26 21:49:23 +00:00
|
|
|
#[derive(Clone, Debug)]
|
2022-03-25 23:47:50 +00:00
|
|
|
pub(crate) enum Repo {
|
|
|
|
Sled(self::sled::SledRepo),
|
|
|
|
}
|
|
|
|
|
2022-03-26 21:49:23 +00:00
|
|
|
#[derive(Clone, Debug, PartialEq, Eq, PartialOrd, Ord, Hash)]
|
|
|
|
enum MaybeUuid {
|
|
|
|
Uuid(Uuid),
|
|
|
|
Name(String),
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Clone, Debug, PartialEq, Eq, PartialOrd, Ord, Hash)]
|
2022-03-24 18:16:41 +00:00
|
|
|
pub(crate) struct Alias {
|
2022-03-26 21:49:23 +00:00
|
|
|
id: MaybeUuid,
|
|
|
|
extension: Option<String>,
|
2022-03-24 18:16:41 +00:00
|
|
|
}
|
2022-03-25 03:06:29 +00:00
|
|
|
|
2022-03-26 21:49:23 +00:00
|
|
|
#[derive(Debug, PartialEq, Eq, PartialOrd, Ord, Hash)]
|
2022-03-24 18:16:41 +00:00
|
|
|
pub(crate) struct DeleteToken {
|
2022-03-26 21:49:23 +00:00
|
|
|
id: MaybeUuid,
|
2022-03-24 18:16:41 +00:00
|
|
|
}
|
2022-03-25 03:06:29 +00:00
|
|
|
|
2023-07-07 18:17:26 +00:00
|
|
|
pub(crate) struct HashAlreadyExists;
|
|
|
|
pub(crate) struct AliasAlreadyExists;
|
|
|
|
|
|
|
|
pub(crate) struct AlreadyExists(pub(super) DeleteToken);
|
2022-03-24 18:16:41 +00:00
|
|
|
|
2022-04-03 01:56:29 +00:00
|
|
|
#[derive(Clone, Copy, Debug, PartialEq, Eq, PartialOrd, Ord, Hash)]
|
2022-04-01 21:51:12 +00:00
|
|
|
pub(crate) struct UploadId {
|
|
|
|
id: Uuid,
|
|
|
|
}
|
|
|
|
|
|
|
|
pub(crate) enum UploadResult {
|
|
|
|
Success { alias: Alias, token: DeleteToken },
|
|
|
|
Failure { message: String },
|
|
|
|
}
|
|
|
|
|
2023-06-20 20:59:08 +00:00
|
|
|
#[derive(Debug, thiserror::Error)]
|
|
|
|
pub(crate) enum RepoError {
|
|
|
|
#[error("Error in sled")]
|
|
|
|
SledError(#[from] crate::repo::sled::SledError),
|
|
|
|
|
|
|
|
#[error("Upload was already claimed")]
|
|
|
|
AlreadyClaimed,
|
|
|
|
|
|
|
|
#[error("Panic in blocking operation")]
|
|
|
|
Canceled,
|
|
|
|
|
2023-07-07 18:17:26 +00:00
|
|
|
#[error("Required field is missing {0}")]
|
|
|
|
Missing(&'static str),
|
2023-07-05 14:52:19 +00:00
|
|
|
}
|
|
|
|
|
2022-04-02 21:44:03 +00:00
|
|
|
#[async_trait::async_trait(?Send)]
|
|
|
|
pub(crate) trait FullRepo:
|
2023-02-25 17:34:48 +00:00
|
|
|
UploadRepo
|
2022-04-02 21:44:03 +00:00
|
|
|
+ SettingsRepo
|
|
|
|
+ IdentifierRepo
|
|
|
|
+ AliasRepo
|
|
|
|
+ QueueRepo
|
|
|
|
+ HashRepo
|
2023-07-17 03:07:42 +00:00
|
|
|
+ MigrationRepo
|
2022-04-02 21:44:03 +00:00
|
|
|
+ Send
|
|
|
|
+ Sync
|
|
|
|
+ Clone
|
|
|
|
+ Debug
|
|
|
|
{
|
2023-06-20 20:59:08 +00:00
|
|
|
async fn health_check(&self) -> Result<(), RepoError>;
|
2023-01-29 17:36:09 +00:00
|
|
|
|
2022-09-28 04:19:52 +00:00
|
|
|
#[tracing::instrument(skip(self))]
|
2022-04-02 21:44:03 +00:00
|
|
|
async fn identifier_from_alias<I: Identifier + 'static>(
|
|
|
|
&self,
|
|
|
|
alias: &Alias,
|
2023-07-05 21:46:44 +00:00
|
|
|
) -> Result<Option<I>, StoreError> {
|
|
|
|
let Some(hash) = self.hash(alias).await? else {
|
|
|
|
return Ok(None);
|
|
|
|
};
|
|
|
|
|
2023-07-07 18:17:26 +00:00
|
|
|
self.identifier(hash).await
|
2022-04-02 21:44:03 +00:00
|
|
|
}
|
|
|
|
|
2022-09-28 04:19:52 +00:00
|
|
|
#[tracing::instrument(skip(self))]
|
2023-06-20 20:59:08 +00:00
|
|
|
async fn aliases_from_alias(&self, alias: &Alias) -> Result<Vec<Alias>, RepoError> {
|
2023-07-05 21:46:44 +00:00
|
|
|
let Some(hash) = self.hash(alias).await? else {
|
|
|
|
return Ok(vec![]);
|
|
|
|
};
|
|
|
|
|
2022-04-02 21:44:03 +00:00
|
|
|
self.aliases(hash).await
|
|
|
|
}
|
|
|
|
|
2022-09-28 04:19:52 +00:00
|
|
|
#[tracing::instrument(skip(self))]
|
2022-04-02 21:44:03 +00:00
|
|
|
async fn still_identifier_from_alias<I: Identifier + 'static>(
|
|
|
|
&self,
|
|
|
|
alias: &Alias,
|
2023-06-20 20:59:08 +00:00
|
|
|
) -> Result<Option<I>, StoreError> {
|
2023-07-05 21:46:44 +00:00
|
|
|
let Some(hash) = self.hash(alias).await? else {
|
|
|
|
return Ok(None);
|
|
|
|
};
|
|
|
|
|
2023-07-07 18:17:26 +00:00
|
|
|
let Some(identifier) = self.identifier::<I>(hash.clone()).await? else {
|
|
|
|
return Ok(None);
|
|
|
|
};
|
2022-04-02 21:44:03 +00:00
|
|
|
|
|
|
|
match self.details(&identifier).await? {
|
2023-07-13 18:48:59 +00:00
|
|
|
Some(details) if details.is_video() => self.motion_identifier::<I>(hash).await,
|
2022-04-02 21:44:03 +00:00
|
|
|
Some(_) => Ok(Some(identifier)),
|
|
|
|
None => Ok(None),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-01-29 17:36:09 +00:00
|
|
|
#[async_trait::async_trait(?Send)]
|
2023-01-29 17:47:28 +00:00
|
|
|
impl<T> FullRepo for actix_web::web::Data<T>
|
|
|
|
where
|
|
|
|
T: FullRepo,
|
|
|
|
{
|
2023-06-20 20:59:08 +00:00
|
|
|
async fn health_check(&self) -> Result<(), RepoError> {
|
2023-01-29 17:36:09 +00:00
|
|
|
T::health_check(self).await
|
|
|
|
}
|
|
|
|
}
|
2022-09-11 00:29:22 +00:00
|
|
|
|
2022-03-29 17:51:16 +00:00
|
|
|
pub(crate) trait BaseRepo {
|
2022-04-02 21:44:03 +00:00
|
|
|
type Bytes: AsRef<[u8]> + From<Vec<u8>> + Clone;
|
2022-03-29 17:51:16 +00:00
|
|
|
}
|
|
|
|
|
2022-09-11 00:29:22 +00:00
|
|
|
impl<T> BaseRepo for actix_web::web::Data<T>
|
|
|
|
where
|
|
|
|
T: BaseRepo,
|
|
|
|
{
|
|
|
|
type Bytes = T::Bytes;
|
|
|
|
}
|
|
|
|
|
2022-04-01 21:51:12 +00:00
|
|
|
#[async_trait::async_trait(?Send)]
|
|
|
|
pub(crate) trait UploadRepo: BaseRepo {
|
2023-06-20 20:59:08 +00:00
|
|
|
async fn create(&self, upload_id: UploadId) -> Result<(), RepoError>;
|
2022-04-03 01:56:29 +00:00
|
|
|
|
2023-06-20 20:59:08 +00:00
|
|
|
async fn wait(&self, upload_id: UploadId) -> Result<UploadResult, RepoError>;
|
2022-04-01 21:51:12 +00:00
|
|
|
|
2023-06-20 20:59:08 +00:00
|
|
|
async fn claim(&self, upload_id: UploadId) -> Result<(), RepoError>;
|
2022-04-01 21:51:12 +00:00
|
|
|
|
2023-06-20 20:59:08 +00:00
|
|
|
async fn complete(&self, upload_id: UploadId, result: UploadResult) -> Result<(), RepoError>;
|
2022-04-01 21:51:12 +00:00
|
|
|
}
|
|
|
|
|
2022-09-11 00:29:22 +00:00
|
|
|
#[async_trait::async_trait(?Send)]
|
|
|
|
impl<T> UploadRepo for actix_web::web::Data<T>
|
|
|
|
where
|
|
|
|
T: UploadRepo,
|
|
|
|
{
|
2023-06-20 20:59:08 +00:00
|
|
|
async fn create(&self, upload_id: UploadId) -> Result<(), RepoError> {
|
2022-09-11 15:04:37 +00:00
|
|
|
T::create(self, upload_id).await
|
2022-09-11 00:29:22 +00:00
|
|
|
}
|
|
|
|
|
2023-06-20 20:59:08 +00:00
|
|
|
async fn wait(&self, upload_id: UploadId) -> Result<UploadResult, RepoError> {
|
2022-09-11 15:04:37 +00:00
|
|
|
T::wait(self, upload_id).await
|
2022-09-11 00:29:22 +00:00
|
|
|
}
|
|
|
|
|
2023-06-20 20:59:08 +00:00
|
|
|
async fn claim(&self, upload_id: UploadId) -> Result<(), RepoError> {
|
2022-09-11 15:04:37 +00:00
|
|
|
T::claim(self, upload_id).await
|
2022-09-11 00:29:22 +00:00
|
|
|
}
|
|
|
|
|
2023-06-20 20:59:08 +00:00
|
|
|
async fn complete(&self, upload_id: UploadId, result: UploadResult) -> Result<(), RepoError> {
|
2022-09-11 15:04:37 +00:00
|
|
|
T::complete(self, upload_id, result).await
|
2022-09-11 00:29:22 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-03-29 17:51:16 +00:00
|
|
|
#[async_trait::async_trait(?Send)]
|
|
|
|
pub(crate) trait QueueRepo: BaseRepo {
|
2023-06-20 20:59:08 +00:00
|
|
|
async fn requeue_in_progress(&self, worker_prefix: Vec<u8>) -> Result<(), RepoError>;
|
2022-03-29 17:51:16 +00:00
|
|
|
|
2023-06-20 20:59:08 +00:00
|
|
|
async fn push(&self, queue: &'static str, job: Self::Bytes) -> Result<(), RepoError>;
|
2022-03-24 18:16:41 +00:00
|
|
|
|
2023-06-20 20:59:08 +00:00
|
|
|
async fn pop(&self, queue: &'static str, worker_id: Vec<u8>) -> Result<Self::Bytes, RepoError>;
|
2022-03-29 17:51:16 +00:00
|
|
|
}
|
|
|
|
|
2022-09-11 00:29:22 +00:00
|
|
|
#[async_trait::async_trait(?Send)]
|
|
|
|
impl<T> QueueRepo for actix_web::web::Data<T>
|
|
|
|
where
|
|
|
|
T: QueueRepo,
|
|
|
|
{
|
2023-06-20 20:59:08 +00:00
|
|
|
async fn requeue_in_progress(&self, worker_prefix: Vec<u8>) -> Result<(), RepoError> {
|
2022-09-11 15:04:37 +00:00
|
|
|
T::requeue_in_progress(self, worker_prefix).await
|
2022-09-11 00:29:22 +00:00
|
|
|
}
|
|
|
|
|
2023-06-20 20:59:08 +00:00
|
|
|
async fn push(&self, queue: &'static str, job: Self::Bytes) -> Result<(), RepoError> {
|
2022-09-11 15:04:37 +00:00
|
|
|
T::push(self, queue, job).await
|
2022-09-11 00:29:22 +00:00
|
|
|
}
|
|
|
|
|
2023-06-20 20:59:08 +00:00
|
|
|
async fn pop(&self, queue: &'static str, worker_id: Vec<u8>) -> Result<Self::Bytes, RepoError> {
|
2022-09-11 15:04:37 +00:00
|
|
|
T::pop(self, queue, worker_id).await
|
2022-09-11 00:29:22 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-03-29 17:51:16 +00:00
|
|
|
#[async_trait::async_trait(?Send)]
|
|
|
|
pub(crate) trait SettingsRepo: BaseRepo {
|
2023-06-20 20:59:08 +00:00
|
|
|
async fn set(&self, key: &'static str, value: Self::Bytes) -> Result<(), RepoError>;
|
|
|
|
async fn get(&self, key: &'static str) -> Result<Option<Self::Bytes>, RepoError>;
|
|
|
|
async fn remove(&self, key: &'static str) -> Result<(), RepoError>;
|
2022-03-24 18:16:41 +00:00
|
|
|
}
|
|
|
|
|
2022-09-11 00:29:22 +00:00
|
|
|
#[async_trait::async_trait(?Send)]
|
|
|
|
impl<T> SettingsRepo for actix_web::web::Data<T>
|
|
|
|
where
|
|
|
|
T: SettingsRepo,
|
|
|
|
{
|
2023-06-20 20:59:08 +00:00
|
|
|
async fn set(&self, key: &'static str, value: Self::Bytes) -> Result<(), RepoError> {
|
2022-09-11 15:04:37 +00:00
|
|
|
T::set(self, key, value).await
|
2022-09-11 00:29:22 +00:00
|
|
|
}
|
|
|
|
|
2023-06-20 20:59:08 +00:00
|
|
|
async fn get(&self, key: &'static str) -> Result<Option<Self::Bytes>, RepoError> {
|
2022-09-11 15:04:37 +00:00
|
|
|
T::get(self, key).await
|
2022-09-11 00:29:22 +00:00
|
|
|
}
|
|
|
|
|
2023-06-20 20:59:08 +00:00
|
|
|
async fn remove(&self, key: &'static str) -> Result<(), RepoError> {
|
2022-09-11 15:04:37 +00:00
|
|
|
T::remove(self, key).await
|
2022-09-11 00:29:22 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-03-26 21:49:23 +00:00
|
|
|
#[async_trait::async_trait(?Send)]
|
2022-03-29 17:51:16 +00:00
|
|
|
pub(crate) trait IdentifierRepo: BaseRepo {
|
2022-03-26 21:49:23 +00:00
|
|
|
async fn relate_details<I: Identifier>(
|
|
|
|
&self,
|
|
|
|
identifier: &I,
|
|
|
|
details: &Details,
|
2023-06-20 20:59:08 +00:00
|
|
|
) -> Result<(), StoreError>;
|
|
|
|
async fn details<I: Identifier>(&self, identifier: &I) -> Result<Option<Details>, StoreError>;
|
2022-03-24 18:16:41 +00:00
|
|
|
|
2023-06-20 20:59:08 +00:00
|
|
|
async fn cleanup<I: Identifier>(&self, identifier: &I) -> Result<(), StoreError>;
|
2022-03-24 18:16:41 +00:00
|
|
|
}
|
|
|
|
|
2022-09-11 00:29:22 +00:00
|
|
|
#[async_trait::async_trait(?Send)]
|
|
|
|
impl<T> IdentifierRepo for actix_web::web::Data<T>
|
|
|
|
where
|
|
|
|
T: IdentifierRepo,
|
|
|
|
{
|
|
|
|
async fn relate_details<I: Identifier>(
|
|
|
|
&self,
|
|
|
|
identifier: &I,
|
|
|
|
details: &Details,
|
2023-06-20 20:59:08 +00:00
|
|
|
) -> Result<(), StoreError> {
|
2022-09-11 15:04:37 +00:00
|
|
|
T::relate_details(self, identifier, details).await
|
2022-09-11 00:29:22 +00:00
|
|
|
}
|
|
|
|
|
2023-06-20 20:59:08 +00:00
|
|
|
async fn details<I: Identifier>(&self, identifier: &I) -> Result<Option<Details>, StoreError> {
|
2022-09-11 15:04:37 +00:00
|
|
|
T::details(self, identifier).await
|
2022-09-11 00:29:22 +00:00
|
|
|
}
|
|
|
|
|
2023-06-20 20:59:08 +00:00
|
|
|
async fn cleanup<I: Identifier>(&self, identifier: &I) -> Result<(), StoreError> {
|
2022-09-11 15:04:37 +00:00
|
|
|
T::cleanup(self, identifier).await
|
2022-09-11 00:29:22 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-07-17 03:07:42 +00:00
|
|
|
#[async_trait::async_trait(?Send)]
|
|
|
|
pub(crate) trait MigrationRepo: BaseRepo {
|
|
|
|
async fn is_continuing_migration(&self) -> Result<bool, RepoError>;
|
|
|
|
|
|
|
|
async fn mark_migrated<I1: Identifier, I2: Identifier>(
|
|
|
|
&self,
|
|
|
|
old_identifier: &I1,
|
|
|
|
new_identifier: &I2,
|
|
|
|
) -> Result<(), StoreError>;
|
|
|
|
|
|
|
|
async fn is_migrated<I: Identifier>(&self, identifier: &I) -> Result<bool, StoreError>;
|
|
|
|
|
|
|
|
async fn clear(&self) -> Result<(), RepoError>;
|
|
|
|
}
|
|
|
|
|
|
|
|
#[async_trait::async_trait(?Send)]
|
|
|
|
impl<T> MigrationRepo for actix_web::web::Data<T>
|
|
|
|
where
|
|
|
|
T: MigrationRepo,
|
|
|
|
{
|
|
|
|
async fn is_continuing_migration(&self) -> Result<bool, RepoError> {
|
|
|
|
T::is_continuing_migration(self).await
|
|
|
|
}
|
|
|
|
|
|
|
|
async fn mark_migrated<I1: Identifier, I2: Identifier>(
|
|
|
|
&self,
|
|
|
|
old_identifier: &I1,
|
|
|
|
new_identifier: &I2,
|
|
|
|
) -> Result<(), StoreError> {
|
|
|
|
T::mark_migrated(self, old_identifier, new_identifier).await
|
|
|
|
}
|
|
|
|
|
|
|
|
async fn is_migrated<I: Identifier>(&self, identifier: &I) -> Result<bool, StoreError> {
|
|
|
|
T::is_migrated(self, identifier).await
|
|
|
|
}
|
|
|
|
|
|
|
|
async fn clear(&self) -> Result<(), RepoError> {
|
|
|
|
T::clear(self).await
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-03-26 21:49:23 +00:00
|
|
|
#[async_trait::async_trait(?Send)]
|
2022-03-29 17:51:16 +00:00
|
|
|
pub(crate) trait HashRepo: BaseRepo {
|
2023-06-20 20:59:08 +00:00
|
|
|
type Stream: Stream<Item = Result<Self::Bytes, RepoError>>;
|
2022-03-24 18:16:41 +00:00
|
|
|
|
2023-06-29 16:39:47 +00:00
|
|
|
async fn size(&self) -> Result<u64, RepoError>;
|
|
|
|
|
2022-03-24 18:16:41 +00:00
|
|
|
async fn hashes(&self) -> Self::Stream;
|
|
|
|
|
2023-07-07 18:17:26 +00:00
|
|
|
async fn create(&self, hash: Self::Bytes) -> Result<Result<(), HashAlreadyExists>, RepoError>;
|
2022-03-24 22:09:15 +00:00
|
|
|
|
2023-06-20 20:59:08 +00:00
|
|
|
async fn relate_alias(&self, hash: Self::Bytes, alias: &Alias) -> Result<(), RepoError>;
|
|
|
|
async fn remove_alias(&self, hash: Self::Bytes, alias: &Alias) -> Result<(), RepoError>;
|
|
|
|
async fn aliases(&self, hash: Self::Bytes) -> Result<Vec<Alias>, RepoError>;
|
2022-03-24 18:16:41 +00:00
|
|
|
|
2022-03-26 21:49:23 +00:00
|
|
|
async fn relate_identifier<I: Identifier>(
|
|
|
|
&self,
|
|
|
|
hash: Self::Bytes,
|
|
|
|
identifier: &I,
|
2023-06-20 20:59:08 +00:00
|
|
|
) -> Result<(), StoreError>;
|
2023-07-07 18:17:26 +00:00
|
|
|
async fn identifier<I: Identifier + 'static>(
|
|
|
|
&self,
|
|
|
|
hash: Self::Bytes,
|
|
|
|
) -> Result<Option<I>, StoreError>;
|
2022-03-24 18:16:41 +00:00
|
|
|
|
2022-03-26 21:49:23 +00:00
|
|
|
async fn relate_variant_identifier<I: Identifier>(
|
2022-03-25 23:47:50 +00:00
|
|
|
&self,
|
|
|
|
hash: Self::Bytes,
|
|
|
|
variant: String,
|
2022-03-26 21:49:23 +00:00
|
|
|
identifier: &I,
|
2023-06-20 20:59:08 +00:00
|
|
|
) -> Result<(), StoreError>;
|
2022-03-26 21:49:23 +00:00
|
|
|
async fn variant_identifier<I: Identifier + 'static>(
|
2022-03-25 23:47:50 +00:00
|
|
|
&self,
|
|
|
|
hash: Self::Bytes,
|
|
|
|
variant: String,
|
2023-06-20 20:59:08 +00:00
|
|
|
) -> Result<Option<I>, StoreError>;
|
2022-03-26 21:49:23 +00:00
|
|
|
async fn variants<I: Identifier + 'static>(
|
|
|
|
&self,
|
|
|
|
hash: Self::Bytes,
|
2023-06-20 20:59:08 +00:00
|
|
|
) -> Result<Vec<(String, I)>, StoreError>;
|
|
|
|
async fn remove_variant(&self, hash: Self::Bytes, variant: String) -> Result<(), RepoError>;
|
2022-03-25 23:47:50 +00:00
|
|
|
|
2022-03-26 21:49:23 +00:00
|
|
|
async fn relate_motion_identifier<I: Identifier>(
|
2022-03-25 23:47:50 +00:00
|
|
|
&self,
|
|
|
|
hash: Self::Bytes,
|
2022-03-26 21:49:23 +00:00
|
|
|
identifier: &I,
|
2023-06-20 20:59:08 +00:00
|
|
|
) -> Result<(), StoreError>;
|
2022-03-26 21:49:23 +00:00
|
|
|
async fn motion_identifier<I: Identifier + 'static>(
|
|
|
|
&self,
|
|
|
|
hash: Self::Bytes,
|
2023-06-20 20:59:08 +00:00
|
|
|
) -> Result<Option<I>, StoreError>;
|
2022-03-25 23:47:50 +00:00
|
|
|
|
2023-06-20 20:59:08 +00:00
|
|
|
async fn cleanup(&self, hash: Self::Bytes) -> Result<(), RepoError>;
|
2022-03-24 18:16:41 +00:00
|
|
|
}
|
|
|
|
|
2022-09-11 00:29:22 +00:00
|
|
|
#[async_trait::async_trait(?Send)]
|
|
|
|
impl<T> HashRepo for actix_web::web::Data<T>
|
|
|
|
where
|
|
|
|
T: HashRepo,
|
|
|
|
{
|
|
|
|
type Stream = T::Stream;
|
|
|
|
|
2023-06-29 16:39:47 +00:00
|
|
|
async fn size(&self) -> Result<u64, RepoError> {
|
|
|
|
T::size(self).await
|
|
|
|
}
|
|
|
|
|
2022-09-11 00:29:22 +00:00
|
|
|
async fn hashes(&self) -> Self::Stream {
|
2022-09-11 15:04:37 +00:00
|
|
|
T::hashes(self).await
|
2022-09-11 00:29:22 +00:00
|
|
|
}
|
|
|
|
|
2023-07-07 18:17:26 +00:00
|
|
|
async fn create(&self, hash: Self::Bytes) -> Result<Result<(), HashAlreadyExists>, RepoError> {
|
2022-09-11 15:04:37 +00:00
|
|
|
T::create(self, hash).await
|
2022-09-11 00:29:22 +00:00
|
|
|
}
|
|
|
|
|
2023-06-20 20:59:08 +00:00
|
|
|
async fn relate_alias(&self, hash: Self::Bytes, alias: &Alias) -> Result<(), RepoError> {
|
2022-09-11 15:04:37 +00:00
|
|
|
T::relate_alias(self, hash, alias).await
|
2022-09-11 00:29:22 +00:00
|
|
|
}
|
|
|
|
|
2023-06-20 20:59:08 +00:00
|
|
|
async fn remove_alias(&self, hash: Self::Bytes, alias: &Alias) -> Result<(), RepoError> {
|
2022-09-11 15:04:37 +00:00
|
|
|
T::remove_alias(self, hash, alias).await
|
2022-09-11 00:29:22 +00:00
|
|
|
}
|
|
|
|
|
2023-06-20 20:59:08 +00:00
|
|
|
async fn aliases(&self, hash: Self::Bytes) -> Result<Vec<Alias>, RepoError> {
|
2022-09-11 15:04:37 +00:00
|
|
|
T::aliases(self, hash).await
|
2022-09-11 00:29:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
async fn relate_identifier<I: Identifier>(
|
|
|
|
&self,
|
|
|
|
hash: Self::Bytes,
|
|
|
|
identifier: &I,
|
2023-06-20 20:59:08 +00:00
|
|
|
) -> Result<(), StoreError> {
|
2022-09-11 15:04:37 +00:00
|
|
|
T::relate_identifier(self, hash, identifier).await
|
2022-09-11 00:29:22 +00:00
|
|
|
}
|
|
|
|
|
2023-06-20 20:59:08 +00:00
|
|
|
async fn identifier<I: Identifier + 'static>(
|
|
|
|
&self,
|
|
|
|
hash: Self::Bytes,
|
2023-07-07 18:17:26 +00:00
|
|
|
) -> Result<Option<I>, StoreError> {
|
2022-09-11 15:04:37 +00:00
|
|
|
T::identifier(self, hash).await
|
2022-09-11 00:29:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
async fn relate_variant_identifier<I: Identifier>(
|
|
|
|
&self,
|
|
|
|
hash: Self::Bytes,
|
|
|
|
variant: String,
|
|
|
|
identifier: &I,
|
2023-06-20 20:59:08 +00:00
|
|
|
) -> Result<(), StoreError> {
|
2022-09-11 15:04:37 +00:00
|
|
|
T::relate_variant_identifier(self, hash, variant, identifier).await
|
2022-09-11 00:29:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
async fn variant_identifier<I: Identifier + 'static>(
|
|
|
|
&self,
|
|
|
|
hash: Self::Bytes,
|
|
|
|
variant: String,
|
2023-06-20 20:59:08 +00:00
|
|
|
) -> Result<Option<I>, StoreError> {
|
2022-09-11 15:04:37 +00:00
|
|
|
T::variant_identifier(self, hash, variant).await
|
2022-09-11 00:29:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
async fn variants<I: Identifier + 'static>(
|
|
|
|
&self,
|
|
|
|
hash: Self::Bytes,
|
2023-06-20 20:59:08 +00:00
|
|
|
) -> Result<Vec<(String, I)>, StoreError> {
|
2022-09-11 15:04:37 +00:00
|
|
|
T::variants(self, hash).await
|
2022-09-11 00:29:22 +00:00
|
|
|
}
|
|
|
|
|
2023-06-20 20:59:08 +00:00
|
|
|
async fn remove_variant(&self, hash: Self::Bytes, variant: String) -> Result<(), RepoError> {
|
2022-09-11 15:04:37 +00:00
|
|
|
T::remove_variant(self, hash, variant).await
|
2022-09-11 00:29:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
async fn relate_motion_identifier<I: Identifier>(
|
|
|
|
&self,
|
|
|
|
hash: Self::Bytes,
|
|
|
|
identifier: &I,
|
2023-06-20 20:59:08 +00:00
|
|
|
) -> Result<(), StoreError> {
|
2022-09-11 15:04:37 +00:00
|
|
|
T::relate_motion_identifier(self, hash, identifier).await
|
2022-09-11 00:29:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
async fn motion_identifier<I: Identifier + 'static>(
|
|
|
|
&self,
|
|
|
|
hash: Self::Bytes,
|
2023-06-20 20:59:08 +00:00
|
|
|
) -> Result<Option<I>, StoreError> {
|
2022-09-11 15:04:37 +00:00
|
|
|
T::motion_identifier(self, hash).await
|
2022-09-11 00:29:22 +00:00
|
|
|
}
|
|
|
|
|
2023-06-20 20:59:08 +00:00
|
|
|
async fn cleanup(&self, hash: Self::Bytes) -> Result<(), RepoError> {
|
2022-09-11 15:04:37 +00:00
|
|
|
T::cleanup(self, hash).await
|
2022-09-11 00:29:22 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-03-26 21:49:23 +00:00
|
|
|
#[async_trait::async_trait(?Send)]
|
2022-03-29 17:51:16 +00:00
|
|
|
pub(crate) trait AliasRepo: BaseRepo {
|
2023-07-07 18:17:26 +00:00
|
|
|
async fn create(&self, alias: &Alias) -> Result<Result<(), AliasAlreadyExists>, RepoError>;
|
2022-03-24 18:16:41 +00:00
|
|
|
|
2022-03-24 22:09:15 +00:00
|
|
|
async fn relate_delete_token(
|
2022-03-24 18:16:41 +00:00
|
|
|
&self,
|
2022-03-26 21:49:23 +00:00
|
|
|
alias: &Alias,
|
|
|
|
delete_token: &DeleteToken,
|
2023-06-20 20:59:08 +00:00
|
|
|
) -> Result<Result<(), AlreadyExists>, RepoError>;
|
2023-07-07 18:17:26 +00:00
|
|
|
async fn delete_token(&self, alias: &Alias) -> Result<Option<DeleteToken>, RepoError>;
|
2022-03-24 18:16:41 +00:00
|
|
|
|
2023-06-20 20:59:08 +00:00
|
|
|
async fn relate_hash(&self, alias: &Alias, hash: Self::Bytes) -> Result<(), RepoError>;
|
2023-07-05 21:46:44 +00:00
|
|
|
async fn hash(&self, alias: &Alias) -> Result<Option<Self::Bytes>, RepoError>;
|
2022-03-24 18:16:41 +00:00
|
|
|
|
2023-06-20 20:59:08 +00:00
|
|
|
async fn cleanup(&self, alias: &Alias) -> Result<(), RepoError>;
|
2022-03-24 18:16:41 +00:00
|
|
|
}
|
2022-03-25 23:47:50 +00:00
|
|
|
|
2022-09-11 00:29:22 +00:00
|
|
|
#[async_trait::async_trait(?Send)]
|
|
|
|
impl<T> AliasRepo for actix_web::web::Data<T>
|
|
|
|
where
|
|
|
|
T: AliasRepo,
|
|
|
|
{
|
2023-07-07 18:17:26 +00:00
|
|
|
async fn create(&self, alias: &Alias) -> Result<Result<(), AliasAlreadyExists>, RepoError> {
|
2022-09-11 15:04:37 +00:00
|
|
|
T::create(self, alias).await
|
2022-09-11 00:29:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
async fn relate_delete_token(
|
|
|
|
&self,
|
|
|
|
alias: &Alias,
|
|
|
|
delete_token: &DeleteToken,
|
2023-06-20 20:59:08 +00:00
|
|
|
) -> Result<Result<(), AlreadyExists>, RepoError> {
|
2022-09-11 15:04:37 +00:00
|
|
|
T::relate_delete_token(self, alias, delete_token).await
|
2022-09-11 00:29:22 +00:00
|
|
|
}
|
|
|
|
|
2023-07-07 18:17:26 +00:00
|
|
|
async fn delete_token(&self, alias: &Alias) -> Result<Option<DeleteToken>, RepoError> {
|
2022-09-11 15:04:37 +00:00
|
|
|
T::delete_token(self, alias).await
|
2022-09-11 00:29:22 +00:00
|
|
|
}
|
|
|
|
|
2023-06-20 20:59:08 +00:00
|
|
|
async fn relate_hash(&self, alias: &Alias, hash: Self::Bytes) -> Result<(), RepoError> {
|
2022-09-11 15:04:37 +00:00
|
|
|
T::relate_hash(self, alias, hash).await
|
2022-09-11 00:29:22 +00:00
|
|
|
}
|
|
|
|
|
2023-07-05 21:46:44 +00:00
|
|
|
async fn hash(&self, alias: &Alias) -> Result<Option<Self::Bytes>, RepoError> {
|
2022-09-11 15:04:37 +00:00
|
|
|
T::hash(self, alias).await
|
2022-09-11 00:29:22 +00:00
|
|
|
}
|
|
|
|
|
2023-06-20 20:59:08 +00:00
|
|
|
async fn cleanup(&self, alias: &Alias) -> Result<(), RepoError> {
|
2022-09-11 15:04:37 +00:00
|
|
|
T::cleanup(self, alias).await
|
2022-09-11 00:29:22 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-03-25 23:47:50 +00:00
|
|
|
impl Repo {
|
2023-07-08 15:42:03 +00:00
|
|
|
#[tracing::instrument]
|
2022-03-29 01:47:46 +00:00
|
|
|
pub(crate) fn open(config: config::Repo) -> color_eyre::Result<Self> {
|
2022-03-25 23:47:50 +00:00
|
|
|
match config {
|
2022-03-28 04:27:07 +00:00
|
|
|
config::Repo::Sled(config::Sled {
|
2023-07-08 22:35:57 +00:00
|
|
|
path,
|
2022-03-25 23:47:50 +00:00
|
|
|
cache_capacity,
|
2023-07-08 22:35:57 +00:00
|
|
|
export_path,
|
2022-03-25 23:47:50 +00:00
|
|
|
}) => {
|
2023-07-08 22:35:57 +00:00
|
|
|
let repo = self::sled::SledRepo::build(path, cache_capacity, export_path)?;
|
2022-03-25 23:47:50 +00:00
|
|
|
|
2023-07-08 22:35:57 +00:00
|
|
|
Ok(Self::Sled(repo))
|
2022-03-25 23:47:50 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-09-28 04:23:06 +00:00
|
|
|
pub(crate) async fn migrate_from_db(&self, path: PathBuf) -> color_eyre::Result<()> {
|
2022-03-25 23:47:50 +00:00
|
|
|
if self.has_migrated().await? {
|
|
|
|
return Ok(());
|
|
|
|
}
|
|
|
|
|
2022-08-14 16:49:20 +00:00
|
|
|
if let Some(old) = self::old::Old::open(path)? {
|
2022-09-28 04:19:52 +00:00
|
|
|
let span = tracing::warn_span!("Migrating Database from 0.3 layout to 0.4 layout");
|
|
|
|
|
|
|
|
match self {
|
|
|
|
Self::Sled(repo) => {
|
|
|
|
async {
|
|
|
|
for hash in old.hashes() {
|
|
|
|
if let Err(e) = migrate_hash(repo, &old, hash).await {
|
2023-01-29 17:57:59 +00:00
|
|
|
tracing::error!("Failed to migrate hash: {}", format!("{e:?}"));
|
2022-09-28 04:19:52 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if let Ok(Some(value)) = old.setting(STORE_MIGRATION_PROGRESS.as_bytes()) {
|
|
|
|
tracing::warn!("Setting STORE_MIGRATION_PROGRESS");
|
|
|
|
let _ = repo.set(STORE_MIGRATION_PROGRESS, value).await;
|
|
|
|
}
|
2022-08-14 16:49:20 +00:00
|
|
|
|
2022-09-28 04:19:52 +00:00
|
|
|
if let Ok(Some(value)) = old.setting(GENERATOR_KEY.as_bytes()) {
|
|
|
|
tracing::warn!("Setting GENERATOR_KEY");
|
|
|
|
let _ = repo.set(GENERATOR_KEY, value).await;
|
2022-08-14 16:49:20 +00:00
|
|
|
}
|
2022-03-25 23:47:50 +00:00
|
|
|
}
|
2022-09-28 04:19:52 +00:00
|
|
|
.instrument(span)
|
|
|
|
.await;
|
2022-03-25 23:47:50 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
self.mark_migrated().await?;
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2022-04-24 22:10:15 +00:00
|
|
|
pub(crate) async fn migrate_identifiers(&self) -> color_eyre::Result<()> {
|
|
|
|
if self.has_migrated_identifiers().await? {
|
|
|
|
return Ok(());
|
|
|
|
}
|
|
|
|
|
2022-09-28 04:19:52 +00:00
|
|
|
let span = tracing::warn_span!("Migrating File Identifiers from 0.3 format to 0.4 format");
|
2022-04-24 22:10:15 +00:00
|
|
|
|
|
|
|
match self {
|
|
|
|
Self::Sled(repo) => {
|
2022-09-28 04:19:52 +00:00
|
|
|
async {
|
|
|
|
use futures_util::StreamExt;
|
|
|
|
let mut hashes = repo.hashes().await;
|
|
|
|
|
|
|
|
while let Some(res) = hashes.next().await {
|
|
|
|
let hash = res?;
|
|
|
|
if let Err(e) = migrate_identifiers_for_hash(repo, hash).await {
|
|
|
|
tracing::error!(
|
|
|
|
"Failed to migrate identifiers for hash: {}",
|
2023-01-29 17:57:59 +00:00
|
|
|
format!("{e:?}")
|
2022-09-28 04:19:52 +00:00
|
|
|
);
|
|
|
|
}
|
2022-04-24 22:10:15 +00:00
|
|
|
}
|
2022-09-28 04:19:52 +00:00
|
|
|
|
|
|
|
Ok(()) as color_eyre::Result<()>
|
2022-04-24 22:10:15 +00:00
|
|
|
}
|
2022-09-28 04:19:52 +00:00
|
|
|
.instrument(span)
|
|
|
|
.await?;
|
2022-04-24 22:10:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
self.mark_migrated_identifiers().await?;
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2022-03-29 01:47:46 +00:00
|
|
|
async fn has_migrated(&self) -> color_eyre::Result<bool> {
|
2022-03-25 23:47:50 +00:00
|
|
|
match self {
|
|
|
|
Self::Sled(repo) => Ok(repo.get(REPO_MIGRATION_O1).await?.is_some()),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-04-24 22:10:15 +00:00
|
|
|
async fn has_migrated_identifiers(&self) -> color_eyre::Result<bool> {
|
|
|
|
match self {
|
|
|
|
Self::Sled(repo) => Ok(repo.get(REPO_MIGRATION_02).await?.is_some()),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-03-29 01:47:46 +00:00
|
|
|
async fn mark_migrated(&self) -> color_eyre::Result<()> {
|
2022-03-25 23:47:50 +00:00
|
|
|
match self {
|
|
|
|
Self::Sled(repo) => {
|
|
|
|
repo.set(REPO_MIGRATION_O1, b"1".to_vec().into()).await?;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
2022-04-24 22:10:15 +00:00
|
|
|
|
|
|
|
async fn mark_migrated_identifiers(&self) -> color_eyre::Result<()> {
|
|
|
|
match self {
|
|
|
|
Self::Sled(repo) => {
|
|
|
|
repo.set(REPO_MIGRATION_02, b"1".to_vec().into()).await?;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
2022-03-25 23:47:50 +00:00
|
|
|
}
|
|
|
|
|
2022-04-01 16:51:46 +00:00
|
|
|
const REPO_MIGRATION_O1: &str = "repo-migration-01";
|
2022-04-24 22:10:15 +00:00
|
|
|
const REPO_MIGRATION_02: &str = "repo-migration-02";
|
2022-04-01 16:51:46 +00:00
|
|
|
const STORE_MIGRATION_PROGRESS: &str = "store-migration-progress";
|
|
|
|
const GENERATOR_KEY: &str = "last-path";
|
2022-03-25 23:47:50 +00:00
|
|
|
|
2022-09-28 04:19:52 +00:00
|
|
|
#[tracing::instrument(skip(repo, hash), fields(hash = hex::encode(&hash)))]
|
2022-04-24 22:10:15 +00:00
|
|
|
async fn migrate_identifiers_for_hash<T>(repo: &T, hash: ::sled::IVec) -> color_eyre::Result<()>
|
|
|
|
where
|
|
|
|
T: FullRepo,
|
|
|
|
{
|
|
|
|
let hash: T::Bytes = hash.to_vec().into();
|
|
|
|
|
|
|
|
if let Some(motion_identifier) = repo.motion_identifier::<FileId>(hash.clone()).await? {
|
|
|
|
if let Some(new_motion_identifier) = motion_identifier.normalize_for_migration() {
|
|
|
|
migrate_identifier_details(repo, &motion_identifier, &new_motion_identifier).await?;
|
|
|
|
repo.relate_motion_identifier(hash.clone(), &new_motion_identifier)
|
|
|
|
.await?;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for (variant_path, variant_identifier) in repo.variants::<FileId>(hash.clone()).await? {
|
|
|
|
if let Some(new_variant_identifier) = variant_identifier.normalize_for_migration() {
|
|
|
|
migrate_identifier_details(repo, &variant_identifier, &new_variant_identifier).await?;
|
|
|
|
repo.relate_variant_identifier(hash.clone(), variant_path, &new_variant_identifier)
|
|
|
|
.await?;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-07-07 18:17:26 +00:00
|
|
|
let Some(main_identifier) = repo.identifier::<FileId>(hash.clone()).await? else {
|
|
|
|
tracing::warn!("Missing identifier for hash {}, queueing cleanup", hex::encode(&hash));
|
|
|
|
crate::queue::cleanup_hash(repo, hash.clone()).await?;
|
|
|
|
return Err(RepoError::Missing("hash -> identifier").into());
|
|
|
|
};
|
2022-04-24 22:10:15 +00:00
|
|
|
|
|
|
|
if let Some(new_main_identifier) = main_identifier.normalize_for_migration() {
|
|
|
|
migrate_identifier_details(repo, &main_identifier, &new_main_identifier).await?;
|
|
|
|
repo.relate_identifier(hash, &new_main_identifier).await?;
|
|
|
|
}
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2022-10-02 02:17:18 +00:00
|
|
|
#[tracing::instrument(level = "debug", skip(repo))]
|
2022-04-24 22:10:15 +00:00
|
|
|
async fn migrate_identifier_details<T>(
|
|
|
|
repo: &T,
|
|
|
|
old: &FileId,
|
|
|
|
new: &FileId,
|
|
|
|
) -> color_eyre::Result<()>
|
|
|
|
where
|
|
|
|
T: FullRepo,
|
|
|
|
{
|
2022-09-28 04:19:52 +00:00
|
|
|
if old == new {
|
|
|
|
tracing::warn!("Old FileId and new FileId are identical");
|
|
|
|
return Ok(());
|
|
|
|
}
|
|
|
|
|
2022-04-24 22:10:15 +00:00
|
|
|
if let Some(details) = repo.details(old).await? {
|
|
|
|
repo.relate_details(new, &details).await?;
|
|
|
|
IdentifierRepo::cleanup(repo, old).await?;
|
|
|
|
}
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2022-09-28 04:19:52 +00:00
|
|
|
#[tracing::instrument(skip(repo, old, hash), fields(hash = hex::encode(&hash)))]
|
2022-03-29 01:47:46 +00:00
|
|
|
async fn migrate_hash<T>(repo: &T, old: &old::Old, hash: ::sled::IVec) -> color_eyre::Result<()>
|
2022-03-25 23:47:50 +00:00
|
|
|
where
|
2022-04-24 22:10:15 +00:00
|
|
|
T: IdentifierRepo + HashRepo + AliasRepo + SettingsRepo + Debug,
|
2022-03-25 23:47:50 +00:00
|
|
|
{
|
2022-09-28 04:19:52 +00:00
|
|
|
let new_hash: T::Bytes = hash.to_vec().into();
|
|
|
|
let main_ident = old.main_identifier(&hash)?.to_vec();
|
|
|
|
|
|
|
|
if HashRepo::create(repo, new_hash.clone()).await?.is_err() {
|
|
|
|
tracing::warn!("Duplicate hash detected");
|
2022-03-26 21:49:23 +00:00
|
|
|
return Ok(());
|
|
|
|
}
|
2022-03-25 23:47:50 +00:00
|
|
|
|
2022-09-28 04:19:52 +00:00
|
|
|
repo.relate_identifier(new_hash.clone(), &main_ident)
|
2022-03-26 21:49:23 +00:00
|
|
|
.await?;
|
2022-03-25 23:47:50 +00:00
|
|
|
|
|
|
|
for alias in old.aliases(&hash) {
|
2022-03-26 21:49:23 +00:00
|
|
|
if let Ok(Ok(())) = AliasRepo::create(repo, &alias).await {
|
2022-09-28 04:19:52 +00:00
|
|
|
let _ = repo.relate_alias(new_hash.clone(), &alias).await;
|
|
|
|
let _ = repo.relate_hash(&alias, new_hash.clone()).await;
|
2022-03-25 23:47:50 +00:00
|
|
|
|
|
|
|
if let Ok(Some(delete_token)) = old.delete_token(&alias) {
|
2022-03-26 21:49:23 +00:00
|
|
|
let _ = repo.relate_delete_token(&alias, &delete_token).await;
|
2022-03-25 23:47:50 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if let Ok(Some(identifier)) = old.motion_identifier(&hash) {
|
2022-03-26 21:49:23 +00:00
|
|
|
let _ = repo
|
2022-09-28 04:19:52 +00:00
|
|
|
.relate_motion_identifier(new_hash.clone(), &identifier.to_vec())
|
2022-03-26 21:49:23 +00:00
|
|
|
.await;
|
2022-03-25 23:47:50 +00:00
|
|
|
}
|
|
|
|
|
2022-03-26 21:49:23 +00:00
|
|
|
for (variant_path, identifier) in old.variants(&hash)? {
|
|
|
|
let variant = variant_path.to_string_lossy().to_string();
|
|
|
|
|
|
|
|
let _ = repo
|
2022-09-28 04:19:52 +00:00
|
|
|
.relate_variant_identifier(new_hash.clone(), variant, &identifier.to_vec())
|
2022-03-26 21:49:23 +00:00
|
|
|
.await;
|
2022-03-25 23:47:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
for (identifier, details) in old.details(&hash)? {
|
2022-03-26 21:49:23 +00:00
|
|
|
let _ = repo.relate_details(&identifier.to_vec(), &details).await;
|
2022-03-25 23:47:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2022-03-26 21:49:23 +00:00
|
|
|
impl MaybeUuid {
|
|
|
|
fn from_str(s: &str) -> Self {
|
|
|
|
if let Ok(uuid) = Uuid::parse_str(s) {
|
|
|
|
MaybeUuid::Uuid(uuid)
|
|
|
|
} else {
|
|
|
|
MaybeUuid::Name(s.into())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn as_bytes(&self) -> &[u8] {
|
|
|
|
match self {
|
|
|
|
Self::Uuid(uuid) => &uuid.as_bytes()[..],
|
|
|
|
Self::Name(name) => name.as_bytes(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn split_at_dot(s: &str) -> Option<(&str, &str)> {
|
|
|
|
let index = s.find('.')?;
|
|
|
|
|
|
|
|
Some(s.split_at(index))
|
|
|
|
}
|
|
|
|
|
2022-03-25 23:47:50 +00:00
|
|
|
impl Alias {
|
2022-03-26 21:49:23 +00:00
|
|
|
pub(crate) fn generate(extension: String) -> Self {
|
|
|
|
Alias {
|
|
|
|
id: MaybeUuid::Uuid(Uuid::new_v4()),
|
|
|
|
extension: Some(extension),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub(crate) fn from_existing(alias: &str) -> Self {
|
|
|
|
if let Some((start, end)) = split_at_dot(alias) {
|
|
|
|
Alias {
|
|
|
|
id: MaybeUuid::from_str(start),
|
|
|
|
extension: Some(end.into()),
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
Alias {
|
|
|
|
id: MaybeUuid::from_str(alias),
|
|
|
|
extension: None,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub(crate) fn extension(&self) -> Option<&str> {
|
|
|
|
self.extension.as_deref()
|
|
|
|
}
|
|
|
|
|
2023-07-07 18:33:27 +00:00
|
|
|
pub(crate) fn to_bytes(&self) -> Vec<u8> {
|
2022-03-25 23:47:50 +00:00
|
|
|
let mut v = self.id.as_bytes().to_vec();
|
|
|
|
|
2022-03-26 21:49:23 +00:00
|
|
|
if let Some(ext) = self.extension() {
|
|
|
|
v.extend_from_slice(ext.as_bytes());
|
|
|
|
}
|
2022-03-25 23:47:50 +00:00
|
|
|
|
|
|
|
v
|
|
|
|
}
|
|
|
|
|
2023-07-07 18:33:27 +00:00
|
|
|
pub(crate) fn from_slice(bytes: &[u8]) -> Option<Self> {
|
2022-03-26 21:49:23 +00:00
|
|
|
if let Ok(s) = std::str::from_utf8(bytes) {
|
|
|
|
Some(Self::from_existing(s))
|
|
|
|
} else if bytes.len() >= 16 {
|
2022-03-25 23:47:50 +00:00
|
|
|
let id = Uuid::from_slice(&bytes[0..16]).expect("Already checked length");
|
|
|
|
|
2022-03-26 21:49:23 +00:00
|
|
|
let extension = if bytes.len() > 16 {
|
|
|
|
Some(String::from_utf8_lossy(&bytes[16..]).to_string())
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
};
|
|
|
|
|
|
|
|
Some(Self {
|
|
|
|
id: MaybeUuid::Uuid(id),
|
|
|
|
extension,
|
|
|
|
})
|
2022-03-25 23:47:50 +00:00
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl DeleteToken {
|
2022-03-26 21:49:23 +00:00
|
|
|
pub(crate) fn from_existing(existing: &str) -> Self {
|
|
|
|
if let Ok(uuid) = Uuid::parse_str(existing) {
|
|
|
|
DeleteToken {
|
|
|
|
id: MaybeUuid::Uuid(uuid),
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
DeleteToken {
|
|
|
|
id: MaybeUuid::Name(existing.into()),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub(crate) fn generate() -> Self {
|
|
|
|
Self {
|
|
|
|
id: MaybeUuid::Uuid(Uuid::new_v4()),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-03-25 23:47:50 +00:00
|
|
|
fn to_bytes(&self) -> Vec<u8> {
|
|
|
|
self.id.as_bytes().to_vec()
|
|
|
|
}
|
|
|
|
|
|
|
|
fn from_slice(bytes: &[u8]) -> Option<Self> {
|
2022-03-26 21:49:23 +00:00
|
|
|
if let Ok(s) = std::str::from_utf8(bytes) {
|
|
|
|
Some(DeleteToken::from_existing(s))
|
|
|
|
} else if bytes.len() == 16 {
|
|
|
|
Some(DeleteToken {
|
|
|
|
id: MaybeUuid::Uuid(Uuid::from_slice(bytes).ok()?),
|
|
|
|
})
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-04-01 21:51:12 +00:00
|
|
|
impl UploadId {
|
|
|
|
pub(crate) fn generate() -> Self {
|
|
|
|
Self { id: Uuid::new_v4() }
|
|
|
|
}
|
|
|
|
|
|
|
|
pub(crate) fn as_bytes(&self) -> &[u8] {
|
|
|
|
&self.id.as_bytes()[..]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-04-03 01:56:29 +00:00
|
|
|
impl std::str::FromStr for UploadId {
|
|
|
|
type Err = <Uuid as std::str::FromStr>::Err;
|
|
|
|
|
|
|
|
fn from_str(s: &str) -> Result<Self, Self::Err> {
|
|
|
|
Ok(UploadId { id: s.parse()? })
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl std::fmt::Display for UploadId {
|
|
|
|
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
|
|
|
|
std::fmt::Display::fmt(&self.id, f)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-03-26 21:49:23 +00:00
|
|
|
impl std::fmt::Display for MaybeUuid {
|
|
|
|
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
|
|
|
|
match self {
|
2023-01-29 17:57:59 +00:00
|
|
|
Self::Uuid(id) => write!(f, "{id}"),
|
|
|
|
Self::Name(name) => write!(f, "{name}"),
|
2022-03-26 21:49:23 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-04-02 21:44:03 +00:00
|
|
|
impl std::str::FromStr for DeleteToken {
|
|
|
|
type Err = std::convert::Infallible;
|
|
|
|
|
|
|
|
fn from_str(s: &str) -> Result<Self, Self::Err> {
|
|
|
|
Ok(DeleteToken::from_existing(s))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-03-26 21:49:23 +00:00
|
|
|
impl std::fmt::Display for DeleteToken {
|
|
|
|
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
|
|
|
|
write!(f, "{}", self.id)
|
2022-03-25 23:47:50 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-04-01 21:51:12 +00:00
|
|
|
impl std::str::FromStr for Alias {
|
|
|
|
type Err = std::convert::Infallible;
|
|
|
|
|
|
|
|
fn from_str(s: &str) -> Result<Self, Self::Err> {
|
|
|
|
Ok(Alias::from_existing(s))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-03-25 23:47:50 +00:00
|
|
|
impl std::fmt::Display for Alias {
|
|
|
|
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
|
2022-03-26 21:49:23 +00:00
|
|
|
if let Some(ext) = self.extension() {
|
2023-01-29 17:57:59 +00:00
|
|
|
write!(f, "{}{ext}", self.id)
|
2022-03-26 21:49:23 +00:00
|
|
|
} else {
|
|
|
|
write!(f, "{}", self.id)
|
|
|
|
}
|
2022-03-25 23:47:50 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Identifier for Vec<u8> {
|
2023-06-20 20:59:08 +00:00
|
|
|
fn from_bytes(bytes: Vec<u8>) -> Result<Self, StoreError>
|
2022-03-25 23:47:50 +00:00
|
|
|
where
|
|
|
|
Self: Sized,
|
|
|
|
{
|
|
|
|
Ok(bytes)
|
|
|
|
}
|
|
|
|
|
2023-06-20 20:59:08 +00:00
|
|
|
fn to_bytes(&self) -> Result<Vec<u8>, StoreError> {
|
2022-03-25 23:47:50 +00:00
|
|
|
Ok(self.clone())
|
|
|
|
}
|
2022-09-26 01:59:57 +00:00
|
|
|
|
|
|
|
fn string_repr(&self) -> String {
|
2023-01-29 17:47:28 +00:00
|
|
|
BASE64_STANDARD.encode(self.as_slice())
|
2022-09-26 01:59:57 +00:00
|
|
|
}
|
2022-03-25 23:47:50 +00:00
|
|
|
}
|
|
|
|
|
2022-03-26 21:49:23 +00:00
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
|
|
|
use super::{Alias, DeleteToken, MaybeUuid, Uuid};
|
2022-03-25 23:47:50 +00:00
|
|
|
|
2022-03-26 21:49:23 +00:00
|
|
|
#[test]
|
|
|
|
fn string_delete_token() {
|
|
|
|
let delete_token = DeleteToken::from_existing("blah");
|
|
|
|
|
|
|
|
assert_eq!(
|
|
|
|
delete_token,
|
|
|
|
DeleteToken {
|
|
|
|
id: MaybeUuid::Name(String::from("blah"))
|
|
|
|
}
|
|
|
|
)
|
2022-03-25 23:47:50 +00:00
|
|
|
}
|
|
|
|
|
2022-03-26 21:49:23 +00:00
|
|
|
#[test]
|
|
|
|
fn uuid_string_delete_token() {
|
|
|
|
let uuid = Uuid::new_v4();
|
|
|
|
|
|
|
|
let delete_token = DeleteToken::from_existing(&uuid.to_string());
|
|
|
|
|
|
|
|
assert_eq!(
|
|
|
|
delete_token,
|
|
|
|
DeleteToken {
|
|
|
|
id: MaybeUuid::Uuid(uuid),
|
|
|
|
}
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn bytes_delete_token() {
|
|
|
|
let delete_token = DeleteToken::from_slice(b"blah").unwrap();
|
|
|
|
|
|
|
|
assert_eq!(
|
|
|
|
delete_token,
|
|
|
|
DeleteToken {
|
|
|
|
id: MaybeUuid::Name(String::from("blah"))
|
|
|
|
}
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn uuid_bytes_delete_token() {
|
|
|
|
let uuid = Uuid::new_v4();
|
|
|
|
|
|
|
|
let delete_token = DeleteToken::from_slice(&uuid.as_bytes()[..]).unwrap();
|
|
|
|
|
|
|
|
assert_eq!(
|
|
|
|
delete_token,
|
|
|
|
DeleteToken {
|
|
|
|
id: MaybeUuid::Uuid(uuid),
|
|
|
|
}
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn uuid_bytes_string_delete_token() {
|
|
|
|
let uuid = Uuid::new_v4();
|
|
|
|
|
|
|
|
let delete_token = DeleteToken::from_slice(uuid.to_string().as_bytes()).unwrap();
|
|
|
|
|
|
|
|
assert_eq!(
|
|
|
|
delete_token,
|
|
|
|
DeleteToken {
|
|
|
|
id: MaybeUuid::Uuid(uuid),
|
|
|
|
}
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn string_alias() {
|
|
|
|
let alias = Alias::from_existing("blah");
|
|
|
|
|
|
|
|
assert_eq!(
|
|
|
|
alias,
|
|
|
|
Alias {
|
|
|
|
id: MaybeUuid::Name(String::from("blah")),
|
|
|
|
extension: None
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn string_alias_ext() {
|
|
|
|
let alias = Alias::from_existing("blah.mp4");
|
|
|
|
|
|
|
|
assert_eq!(
|
|
|
|
alias,
|
|
|
|
Alias {
|
|
|
|
id: MaybeUuid::Name(String::from("blah")),
|
|
|
|
extension: Some(String::from(".mp4")),
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn uuid_string_alias() {
|
|
|
|
let uuid = Uuid::new_v4();
|
|
|
|
|
|
|
|
let alias = Alias::from_existing(&uuid.to_string());
|
|
|
|
|
|
|
|
assert_eq!(
|
|
|
|
alias,
|
|
|
|
Alias {
|
|
|
|
id: MaybeUuid::Uuid(uuid),
|
|
|
|
extension: None,
|
|
|
|
}
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn uuid_string_alias_ext() {
|
|
|
|
let uuid = Uuid::new_v4();
|
|
|
|
|
2023-01-29 17:57:59 +00:00
|
|
|
let alias_str = format!("{uuid}.mp4");
|
2022-03-26 21:49:23 +00:00
|
|
|
let alias = Alias::from_existing(&alias_str);
|
|
|
|
|
|
|
|
assert_eq!(
|
|
|
|
alias,
|
|
|
|
Alias {
|
|
|
|
id: MaybeUuid::Uuid(uuid),
|
|
|
|
extension: Some(String::from(".mp4")),
|
|
|
|
}
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn bytes_alias() {
|
|
|
|
let alias = Alias::from_slice(b"blah").unwrap();
|
|
|
|
|
|
|
|
assert_eq!(
|
|
|
|
alias,
|
|
|
|
Alias {
|
|
|
|
id: MaybeUuid::Name(String::from("blah")),
|
|
|
|
extension: None
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn bytes_alias_ext() {
|
|
|
|
let alias = Alias::from_slice(b"blah.mp4").unwrap();
|
|
|
|
|
|
|
|
assert_eq!(
|
|
|
|
alias,
|
|
|
|
Alias {
|
|
|
|
id: MaybeUuid::Name(String::from("blah")),
|
|
|
|
extension: Some(String::from(".mp4")),
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn uuid_bytes_alias() {
|
|
|
|
let uuid = Uuid::new_v4();
|
|
|
|
|
|
|
|
let alias = Alias::from_slice(&uuid.as_bytes()[..]).unwrap();
|
|
|
|
|
|
|
|
assert_eq!(
|
|
|
|
alias,
|
|
|
|
Alias {
|
|
|
|
id: MaybeUuid::Uuid(uuid),
|
|
|
|
extension: None,
|
|
|
|
}
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn uuid_bytes_string_alias() {
|
|
|
|
let uuid = Uuid::new_v4();
|
|
|
|
|
|
|
|
let alias = Alias::from_slice(uuid.to_string().as_bytes()).unwrap();
|
|
|
|
|
|
|
|
assert_eq!(
|
|
|
|
alias,
|
|
|
|
Alias {
|
|
|
|
id: MaybeUuid::Uuid(uuid),
|
|
|
|
extension: None,
|
|
|
|
}
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn uuid_bytes_alias_ext() {
|
|
|
|
let uuid = Uuid::new_v4();
|
|
|
|
|
|
|
|
let mut alias_bytes = uuid.as_bytes().to_vec();
|
|
|
|
alias_bytes.extend_from_slice(b".mp4");
|
|
|
|
|
|
|
|
let alias = Alias::from_slice(&alias_bytes).unwrap();
|
|
|
|
|
|
|
|
assert_eq!(
|
|
|
|
alias,
|
|
|
|
Alias {
|
|
|
|
id: MaybeUuid::Uuid(uuid),
|
|
|
|
extension: Some(String::from(".mp4")),
|
|
|
|
}
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn uuid_bytes_string_alias_ext() {
|
|
|
|
let uuid = Uuid::new_v4();
|
|
|
|
|
2023-01-29 17:57:59 +00:00
|
|
|
let alias_str = format!("{uuid}.mp4");
|
2022-03-26 21:49:23 +00:00
|
|
|
let alias = Alias::from_slice(alias_str.as_bytes()).unwrap();
|
|
|
|
|
|
|
|
assert_eq!(
|
|
|
|
alias,
|
|
|
|
Alias {
|
|
|
|
id: MaybeUuid::Uuid(uuid),
|
|
|
|
extension: Some(String::from(".mp4")),
|
|
|
|
}
|
|
|
|
)
|
2022-03-25 23:47:50 +00:00
|
|
|
}
|
|
|
|
}
|