mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-12 08:54:00 +02:00
50 lines
1.2 KiB
JavaScript
50 lines
1.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 lodash from 'lodash';
|
|
|
|
class Resource extends BaseItem {
|
|
|
|
static tableName() {
|
|
return 'resources';
|
|
}
|
|
|
|
static modelType() {
|
|
return BaseModel.TYPE_RESOURCE;
|
|
}
|
|
|
|
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_');
|
|
lodash.pull(fieldNames, 'sync_time');
|
|
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 pathToId(path) {
|
|
return filename(path);
|
|
}
|
|
|
|
static content(resource) {
|
|
return this.fsDriver().readFile(this.fullPath(resource));
|
|
}
|
|
|
|
static setContent(resource, content) {
|
|
return this.fsDriver().writeBinaryFile(this.fullPath(resource), content);
|
|
}
|
|
|
|
}
|
|
|
|
export { Resource }; |