* feat: supports subdirectory deployment * feat: auto publicPath * fix: buildIndexHtml * fix: format * fix: regexp * fix: test error * fix: nocobase.conf * fix: path * fix: nocobase.conf * fix: bugs * fix: resourcer prefix * fix: cas
20 lines
779 B
TypeScript
20 lines
779 B
TypeScript
import { Model } from '@nocobase/database';
|
|
|
|
export class FileModel extends Model {
|
|
public toJSON() {
|
|
const json = super.toJSON();
|
|
const fileStorages = this.constructor['database']?.['_fileStorages'];
|
|
if (json.storageId && fileStorages && fileStorages.has(json.storageId)) {
|
|
const storage = fileStorages.get(json.storageId);
|
|
json['thumbnailRule'] = storage?.options?.thumbnailRule;
|
|
if (!json['thumbnailRule'] && storage?.type === 'ali-oss') {
|
|
json['thumbnailRule'] = '?x-oss-process=image/auto-orient,1/resize,m_fill,w_94,h_94/quality,q_90';
|
|
}
|
|
if (storage?.type === 'local' && process.env.APP_PUBLIC_PATH) {
|
|
json['url'] = process.env.APP_PUBLIC_PATH.replace(/\/$/g, '') + json.url;
|
|
}
|
|
}
|
|
return json;
|
|
}
|
|
}
|