mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-12 08:54:00 +02:00
83 lines
2.2 KiB
JavaScript
83 lines
2.2 KiB
JavaScript
import { BaseModel } from 'lib/base-model.js';
|
|
import { BaseItem } from 'lib/models/base-item.js';
|
|
import { Setting } from 'lib/models/setting.js';
|
|
import { mime } from 'lib/mime-utils.js';
|
|
import { filename } from 'lib/path-utils.js';
|
|
import { FsDriverDummy } from 'lib/fs-driver-dummy.js';
|
|
import { markdownUtils } from 'lib/markdown-utils.js';
|
|
import lodash from 'lodash';
|
|
|
|
class Resource extends BaseItem {
|
|
|
|
static tableName() {
|
|
return 'resources';
|
|
}
|
|
|
|
static modelType() {
|
|
return BaseModel.TYPE_RESOURCE;
|
|
}
|
|
|
|
static isSupportedImageMimeType(type) {
|
|
const imageMimeTypes = ["image/jpg", "image/jpeg", "image/png", "image/gif"];
|
|
return imageMimeTypes.indexOf(type.toLowerCase()) >= 0;
|
|
}
|
|
|
|
static fsDriver() {
|
|
if (!Resource.fsDriver_) Resource.fsDriver_ = new FsDriverDummy();
|
|
return Resource.fsDriver_;
|
|
}
|
|
|
|
static async serialize(item, type = null, shownKeys = null) {
|
|
let fieldNames = this.fieldNames();
|
|
fieldNames.push('type_');
|
|
return super.serialize(item, 'resource', fieldNames);
|
|
}
|
|
|
|
static fullPath(resource) {
|
|
let extension = mime.toFileExtension(resource.mime);
|
|
extension = extension ? '.' + extension : '';
|
|
return Setting.value('resourceDir') + '/' + resource.id + extension;
|
|
}
|
|
|
|
static markdownTag(resource) {
|
|
let tagAlt = resource.alt ? resource.alt : resource.title;
|
|
if (!tagAlt) tagAlt = '';
|
|
let lines = [];
|
|
if (Resource.isSupportedImageMimeType(resource.mime)) {
|
|
lines.push("![");
|
|
lines.push(markdownUtils.escapeLinkText(tagAlt));
|
|
lines.push("](:/" + resource.id + ")");
|
|
} else {
|
|
lines.push("[");
|
|
lines.push(markdownUtils.escapeLinkText(tagAlt));
|
|
lines.push("](:/" + resource.id + ")");
|
|
}
|
|
return lines.join('');
|
|
}
|
|
|
|
static pathToId(path) {
|
|
return filename(path);
|
|
}
|
|
|
|
static async content(resource) {
|
|
return this.fsDriver().readFile(this.fullPath(resource));
|
|
}
|
|
|
|
static setContent(resource, content) {
|
|
return this.fsDriver().writeBinaryFile(this.fullPath(resource), content);
|
|
}
|
|
|
|
static isResourceUrl(url) {
|
|
return url.length === 34 && url[0] === ':' && url[1] === '/';
|
|
}
|
|
|
|
static urlToId(url) {
|
|
if (!this.isResourceUrl(url)) throw new Error('Not a valid resource URL: ' + url);
|
|
return url.substr(2);
|
|
}
|
|
|
|
}
|
|
|
|
Resource.IMAGE_MAX_DIMENSION = 1920;
|
|
|
|
export { Resource }; |