|
|
@ -3,28 +3,32 @@ use crate::types::requests::{
|
|
|
|
};
|
|
|
|
};
|
|
|
|
use crate::types::responses::{FileResponse, ThumbnailResponse};
|
|
|
|
use crate::types::responses::{FileResponse, ThumbnailResponse};
|
|
|
|
use mediarepo_core::error::{RepoError, RepoResult};
|
|
|
|
use mediarepo_core::error::{RepoError, RepoResult};
|
|
|
|
|
|
|
|
use mediarepo_core::rmp_ipc::prelude::*;
|
|
|
|
use mediarepo_model::file::File;
|
|
|
|
use mediarepo_model::file::File;
|
|
|
|
use mediarepo_model::repo::Repo;
|
|
|
|
use mediarepo_model::repo::Repo;
|
|
|
|
use mediarepo_model::type_keys::RepoKey;
|
|
|
|
use mediarepo_model::type_keys::RepoKey;
|
|
|
|
use rmp_ipc::context::Context;
|
|
|
|
|
|
|
|
use rmp_ipc::error::Result;
|
|
|
|
|
|
|
|
use rmp_ipc::{Event, NamespaceBuilder};
|
|
|
|
|
|
|
|
use std::path::PathBuf;
|
|
|
|
use std::path::PathBuf;
|
|
|
|
use tokio::io::AsyncReadExt;
|
|
|
|
use tokio::io::AsyncReadExt;
|
|
|
|
|
|
|
|
|
|
|
|
pub const FILES_NAMESPACE: &str = "files";
|
|
|
|
pub struct FilesNamespace;
|
|
|
|
|
|
|
|
|
|
|
|
pub fn build(builder: NamespaceBuilder) -> NamespaceBuilder {
|
|
|
|
impl NamespaceProvider for FilesNamespace {
|
|
|
|
builder
|
|
|
|
fn name() -> String {
|
|
|
|
.on("all_files", |c, e| Box::pin(all_files(c, e)))
|
|
|
|
String::from("files")
|
|
|
|
.on("add_file", |c, e| Box::pin(add_file(c, e)))
|
|
|
|
|
|
|
|
.on("read_file", |c, e| Box::pin(read_file(c, e)))
|
|
|
|
|
|
|
|
.on("get_thumbnails", |c, e| Box::pin(get_file_thumbnails(c, e)))
|
|
|
|
|
|
|
|
.on("read_thumbnail", |c, e| Box::pin(read_thumbnail(c, e)))
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
fn register(handler: &mut EventHandler) {
|
|
|
|
|
|
|
|
handler.on("all_files", callback!(Self::all_files));
|
|
|
|
|
|
|
|
handler.on("add_file", callback!(Self::add_file));
|
|
|
|
|
|
|
|
handler.on("read_file", callback!(Self::read_file));
|
|
|
|
|
|
|
|
handler.on("get_thumbnails", callback!(Self::thumbnails));
|
|
|
|
|
|
|
|
handler.on("read_thumbnail", callback!(Self::read_thumbnail));
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
impl FilesNamespace {
|
|
|
|
/// Returns a list of all files
|
|
|
|
/// Returns a list of all files
|
|
|
|
async fn all_files(ctx: &Context, event: Event) -> Result<()> {
|
|
|
|
async fn all_files(ctx: &Context, event: Event) -> IPCResult<()> {
|
|
|
|
let files = {
|
|
|
|
let files = {
|
|
|
|
let data = ctx.data.read().await;
|
|
|
|
let data = ctx.data.read().await;
|
|
|
|
let repo = data.get::<RepoKey>().unwrap();
|
|
|
|
let repo = data.get::<RepoKey>().unwrap();
|
|
|
@ -32,14 +36,14 @@ async fn all_files(ctx: &Context, event: Event) -> Result<()> {
|
|
|
|
};
|
|
|
|
};
|
|
|
|
let responses: Vec<FileResponse> = files.into_iter().map(FileResponse::from).collect();
|
|
|
|
let responses: Vec<FileResponse> = files.into_iter().map(FileResponse::from).collect();
|
|
|
|
ctx.emitter
|
|
|
|
ctx.emitter
|
|
|
|
.emit_response_to(event.id(), FILES_NAMESPACE, "all_files", responses)
|
|
|
|
.emit_response_to(event.id(), Self::name(), "all_files", responses)
|
|
|
|
.await?;
|
|
|
|
.await?;
|
|
|
|
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/// Adds a file to the repository
|
|
|
|
/// Adds a file to the repository
|
|
|
|
async fn add_file(ctx: &Context, event: Event) -> Result<()> {
|
|
|
|
async fn add_file(ctx: &Context, event: Event) -> IPCResult<()> {
|
|
|
|
let request = event.data::<AddFileRequest>()?;
|
|
|
|
let request = event.data::<AddFileRequest>()?;
|
|
|
|
let path = PathBuf::from(request.path);
|
|
|
|
let path = PathBuf::from(request.path);
|
|
|
|
let file = {
|
|
|
|
let file = {
|
|
|
@ -50,7 +54,7 @@ async fn add_file(ctx: &Context, event: Event) -> Result<()> {
|
|
|
|
ctx.emitter
|
|
|
|
ctx.emitter
|
|
|
|
.emit_response_to(
|
|
|
|
.emit_response_to(
|
|
|
|
event.id(),
|
|
|
|
event.id(),
|
|
|
|
FILES_NAMESPACE,
|
|
|
|
Self::name(),
|
|
|
|
"add_file",
|
|
|
|
"add_file",
|
|
|
|
FileResponse::from(file),
|
|
|
|
FileResponse::from(file),
|
|
|
|
)
|
|
|
|
)
|
|
|
@ -60,7 +64,7 @@ async fn add_file(ctx: &Context, event: Event) -> Result<()> {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/// Reads the binary contents of a file
|
|
|
|
/// Reads the binary contents of a file
|
|
|
|
async fn read_file(ctx: &Context, event: Event) -> Result<()> {
|
|
|
|
async fn read_file(ctx: &Context, event: Event) -> IPCResult<()> {
|
|
|
|
let request = event.data::<ReadFileRequest>()?;
|
|
|
|
let request = event.data::<ReadFileRequest>()?;
|
|
|
|
let mut reader = {
|
|
|
|
let mut reader = {
|
|
|
|
let data = ctx.data.read().await;
|
|
|
|
let data = ctx.data.read().await;
|
|
|
@ -73,14 +77,14 @@ async fn read_file(ctx: &Context, event: Event) -> Result<()> {
|
|
|
|
let mut buf = Vec::new();
|
|
|
|
let mut buf = Vec::new();
|
|
|
|
reader.read_to_end(&mut buf).await?;
|
|
|
|
reader.read_to_end(&mut buf).await?;
|
|
|
|
ctx.emitter
|
|
|
|
ctx.emitter
|
|
|
|
.emit_response_to(event.id(), FILES_NAMESPACE, "read_file", buf)
|
|
|
|
.emit_response_to(event.id(), Self::name(), "read_file", buf)
|
|
|
|
.await?;
|
|
|
|
.await?;
|
|
|
|
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/// Returns a list of available thumbnails of a file
|
|
|
|
/// Returns a list of available thumbnails of a file
|
|
|
|
async fn get_file_thumbnails(ctx: &Context, event: Event) -> Result<()> {
|
|
|
|
async fn thumbnails(ctx: &Context, event: Event) -> IPCResult<()> {
|
|
|
|
let request = event.data::<GetFileThumbnailsRequest>()?;
|
|
|
|
let request = event.data::<GetFileThumbnailsRequest>()?;
|
|
|
|
let data = ctx.data.read().await;
|
|
|
|
let data = ctx.data.read().await;
|
|
|
|
let repo = data.get::<RepoKey>().unwrap();
|
|
|
|
let repo = data.get::<RepoKey>().unwrap();
|
|
|
@ -93,19 +97,14 @@ async fn get_file_thumbnails(ctx: &Context, event: Event) -> Result<()> {
|
|
|
|
.map(ThumbnailResponse::from)
|
|
|
|
.map(ThumbnailResponse::from)
|
|
|
|
.collect();
|
|
|
|
.collect();
|
|
|
|
ctx.emitter
|
|
|
|
ctx.emitter
|
|
|
|
.emit_response_to(
|
|
|
|
.emit_response_to(event.id(), Self::name(), "get_thumbnails", thumb_responses)
|
|
|
|
event.id(),
|
|
|
|
|
|
|
|
FILES_NAMESPACE,
|
|
|
|
|
|
|
|
"get_thumbnails",
|
|
|
|
|
|
|
|
thumb_responses,
|
|
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
.await?;
|
|
|
|
.await?;
|
|
|
|
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/// Reads a thumbnail for the given thumbnail hash
|
|
|
|
/// Reads a thumbnail for the given thumbnail hash
|
|
|
|
async fn read_thumbnail(ctx: &Context, event: Event) -> Result<()> {
|
|
|
|
async fn read_thumbnail(ctx: &Context, event: Event) -> IPCResult<()> {
|
|
|
|
let hash = event.data::<String>()?;
|
|
|
|
let hash = event.data::<String>()?;
|
|
|
|
let mut reader = {
|
|
|
|
let mut reader = {
|
|
|
|
let data = ctx.data.read().await;
|
|
|
|
let data = ctx.data.read().await;
|
|
|
@ -119,11 +118,12 @@ async fn read_thumbnail(ctx: &Context, event: Event) -> Result<()> {
|
|
|
|
let mut buf = Vec::new();
|
|
|
|
let mut buf = Vec::new();
|
|
|
|
reader.read_to_end(&mut buf).await?;
|
|
|
|
reader.read_to_end(&mut buf).await?;
|
|
|
|
ctx.emitter
|
|
|
|
ctx.emitter
|
|
|
|
.emit_response_to(event.id(), FILES_NAMESPACE, "read_thumbnail", buf)
|
|
|
|
.emit_response_to(event.id(), Self::name(), "read_thumbnail", buf)
|
|
|
|
.await?;
|
|
|
|
.await?;
|
|
|
|
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
async fn file_by_identifier(identifier: FileIdentifier, repo: &Repo) -> RepoResult<Option<File>> {
|
|
|
|
async fn file_by_identifier(identifier: FileIdentifier, repo: &Repo) -> RepoResult<Option<File>> {
|
|
|
|
match identifier {
|
|
|
|
match identifier {
|
|
|
|