|
|
@ -35,58 +35,6 @@ export class FileService {
|
|
|
|
this.displayedFiles.next(files);
|
|
|
|
this.displayedFiles.next(files);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public async readFile(file: File): Promise<SafeResourceUrl> {
|
|
|
|
|
|
|
|
const once_uri = await invoke<string>("plugin:mediarepo|read_file_by_hash",
|
|
|
|
|
|
|
|
{id: file.id, hash: file.hash, mimeType: file.mime_type});
|
|
|
|
|
|
|
|
return this.sanitizer.bypassSecurityTrustResourceUrl(once_uri);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
|
|
* Returns the thumbnail for a file with a specific size (allowing +-10%)
|
|
|
|
|
|
|
|
* If none can be found it asks the backend if it has one or generates one of that size
|
|
|
|
|
|
|
|
* @param {File} file
|
|
|
|
|
|
|
|
* @param {number} width
|
|
|
|
|
|
|
|
* @param {number} height
|
|
|
|
|
|
|
|
* @returns {Promise<SafeResourceUrl>}
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
public async getFileThumbnail(file: File, width: number, height: number): Promise<SafeResourceUrl> {
|
|
|
|
|
|
|
|
const thumbnails = await this.getThumbnails(file);
|
|
|
|
|
|
|
|
const thumbnail = thumbnails.find(t => t.height >= height * 0.7 && t.width >= width * 0.7 && t.height <= height * 1.3 && t.width <= width * 1.3);
|
|
|
|
|
|
|
|
let url;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (thumbnail) {
|
|
|
|
|
|
|
|
url = await this.readThumbnail(thumbnail);
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
url = await this.getThumbnailOfSize(file, height * 0.9, width * 0.9, height * 1.1, width * 1.1);
|
|
|
|
|
|
|
|
delete this.thumbnailCache[file.id];
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return url;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public async readThumbnail(thumbnail: Thumbnail): Promise<SafeResourceUrl> {
|
|
|
|
|
|
|
|
let once_uri = await invoke<string>("plugin:mediarepo|read_thumbnail",
|
|
|
|
|
|
|
|
{hash: thumbnail.hash, mimeType: thumbnail.mime_type});
|
|
|
|
|
|
|
|
return this.sanitizer.bypassSecurityTrustResourceUrl(once_uri);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public async getThumbnailOfSize(file: File, minHeight: number, minWidth: number, maxHeight: number, maxWidth: number): Promise<SafeResourceUrl> {
|
|
|
|
|
|
|
|
let once_uri = await invoke<string>("plugin:mediarepo|get_thumbnail_of_size", {fileId: file.id, minSize: [minHeight, minWidth], maxSize: [maxHeight, maxWidth]});
|
|
|
|
|
|
|
|
return this.sanitizer.bypassSecurityTrustResourceUrl(once_uri);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public async getThumbnails(file: File): Promise<Thumbnail[]> {
|
|
|
|
|
|
|
|
const cachedThumbnails = this.thumbnailCache[file.id];
|
|
|
|
|
|
|
|
if (cachedThumbnails) {
|
|
|
|
|
|
|
|
return cachedThumbnails;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
const thumbnails = await invoke<Thumbnail[]>("plugin:mediarepo|get_file_thumbnails",
|
|
|
|
|
|
|
|
{id: file.id});
|
|
|
|
|
|
|
|
this.thumbnailCache[file.id] = thumbnails;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return thumbnails;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public async updateFileName(file: File, name: string): Promise<File> {
|
|
|
|
public async updateFileName(file: File, name: string): Promise<File> {
|
|
|
|
return await invoke<File>("plugin:mediarepo|update_file_name", {id: file.id, name})
|
|
|
|
return await invoke<File>("plugin:mediarepo|update_file_name", {id: file.id, name})
|
|
|
|
}
|
|
|
|
}
|
|
|
|