Add schema to retrieve file content and api to get a file by id
Signed-off-by: trivernis <trivernis@protonmail.com>pull/4/head
parent
3f667b8d72
commit
2a69c5b748
@ -1,24 +1,104 @@
|
||||
use crate::tauri_plugin::state::BufferState;
|
||||
use tauri::http::ResponseBuilder;
|
||||
use tauri::{Builder, Manager, Runtime};
|
||||
use crate::tauri_plugin::state::{ApiState, BufferState};
|
||||
use crate::types::identifier::FileIdentifier;
|
||||
use std::borrow::Cow;
|
||||
use std::collections::HashMap;
|
||||
use tauri::http::{Request, Response, ResponseBuilder};
|
||||
use tauri::{AppHandle, Builder, Manager, Runtime};
|
||||
use url::Url;
|
||||
|
||||
type Result<T> = std::result::Result<T, Box<dyn std::error::Error>>;
|
||||
|
||||
pub fn register_custom_uri_schemes<R: Runtime>(builder: Builder<R>) -> Builder<R> {
|
||||
builder.register_uri_scheme_protocol("once", |app, request| {
|
||||
let buf_state = app.state::<BufferState>();
|
||||
let resource_key = request.uri().trim_start_matches("once://");
|
||||
|
||||
let buffer = buf_state.get_entry(resource_key);
|
||||
|
||||
if let Some(buffer) = buffer {
|
||||
ResponseBuilder::new()
|
||||
.mimetype(&buffer.mime)
|
||||
.status(200)
|
||||
.body(buffer.buf)
|
||||
} else {
|
||||
ResponseBuilder::new()
|
||||
.mimetype("text/plain")
|
||||
.status(404)
|
||||
.body("Resource not found".as_bytes().to_vec())
|
||||
}
|
||||
})
|
||||
builder
|
||||
.register_uri_scheme_protocol("once", once_scheme)
|
||||
.register_uri_scheme_protocol("content", content_scheme)
|
||||
.register_uri_scheme_protocol("thumb", thumb_scheme)
|
||||
}
|
||||
|
||||
fn once_scheme<R: Runtime>(app: &AppHandle<R>, request: &Request) -> Result<Response> {
|
||||
let buf_state = app.state::<BufferState>();
|
||||
let resource_key = request.uri().trim_start_matches("once://");
|
||||
|
||||
let buffer = buf_state.get_entry(resource_key);
|
||||
|
||||
if let Some(buffer) = buffer {
|
||||
ResponseBuilder::new()
|
||||
.mimetype(&buffer.mime)
|
||||
.status(200)
|
||||
.body(buffer.buf)
|
||||
} else {
|
||||
ResponseBuilder::new()
|
||||
.mimetype("text/plain")
|
||||
.status(404)
|
||||
.body("Resource not found".as_bytes().to_vec())
|
||||
}
|
||||
}
|
||||
|
||||
fn content_scheme<R: Runtime>(app: &AppHandle<R>, request: &Request) -> Result<Response> {
|
||||
let api_state = app.state::<ApiState>();
|
||||
let buf_state = app.state::<BufferState>();
|
||||
let hash = request.uri().trim_start_matches("content://");
|
||||
|
||||
if let Some(buffer) = buf_state.get_entry(hash) {
|
||||
ResponseBuilder::new()
|
||||
.status(200)
|
||||
.mimetype(&buffer.mime)
|
||||
.body(buffer.buf)
|
||||
} else {
|
||||
let api = api_state.api_sync()?;
|
||||
let file =
|
||||
futures::executor::block_on(api.file.get_file(FileIdentifier::Hash(hash.to_string())))?;
|
||||
let mime = file.mime_type.unwrap_or("image/png".to_string());
|
||||
let bytes = futures::executor::block_on(
|
||||
api.file
|
||||
.read_file_by_hash(FileIdentifier::Hash(hash.to_string())),
|
||||
)?;
|
||||
buf_state.add_entry(hash.to_string(), mime.clone(), bytes.clone());
|
||||
ResponseBuilder::new()
|
||||
.mimetype(&mime)
|
||||
.status(200)
|
||||
.body(bytes)
|
||||
}
|
||||
}
|
||||
|
||||
fn thumb_scheme<R: Runtime>(app: &AppHandle<R>, request: &Request) -> Result<Response> {
|
||||
let api_state = app.state::<ApiState>();
|
||||
let buf_state = app.state::<BufferState>();
|
||||
|
||||
let url = Url::parse(request.uri())?;
|
||||
let hash = url.path();
|
||||
|
||||
let query_pairs = url
|
||||
.query_pairs()
|
||||
.collect::<HashMap<Cow<'_, str>, Cow<'_, str>>>();
|
||||
|
||||
let height = query_pairs
|
||||
.get("height")
|
||||
.and_then(|h| h.parse::<u32>().ok())
|
||||
.unwrap_or(250);
|
||||
|
||||
let width = query_pairs
|
||||
.get("width")
|
||||
.and_then(|w| w.parse::<u32>().ok())
|
||||
.unwrap_or(250);
|
||||
|
||||
if let Some(buffer) = buf_state.get_entry(hash) {
|
||||
ResponseBuilder::new()
|
||||
.status(200)
|
||||
.mimetype(&buffer.mime)
|
||||
.body(buffer.buf)
|
||||
} else {
|
||||
let api = api_state.api_sync()?;
|
||||
let (thumb, bytes) = futures::executor::block_on(api.file.get_thumbnail_of_size(
|
||||
FileIdentifier::Hash(hash.to_string()),
|
||||
((height as f32 * 0.8) as u32, (width as f32 * 0.8) as u32),
|
||||
((height as f32 * 1.2) as u32, (width as f32 * 1.2) as u32),
|
||||
))?;
|
||||
let mime = thumb.mime_type.unwrap_or(String::from("image/png"));
|
||||
buf_state.add_entry(hash.to_string(), mime.clone(), bytes.clone());
|
||||
ResponseBuilder::new()
|
||||
.mimetype(&mime)
|
||||
.status(200)
|
||||
.body(bytes)
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue