tachybase_todo/packages/plugin-file-manager/src/server.ts

40 lines
1.1 KiB
TypeScript
Raw Normal View History

import { Plugin } from '@nocobase/server';
2022-02-11 18:13:14 +08:00
import { resolve } from 'path';
2021-12-06 21:23:34 +08:00
import { action as uploadAction, middleware as uploadMiddleware } from './actions/upload';
import { STORAGE_TYPE_LOCAL } from './constants';
2022-02-11 18:13:14 +08:00
import { getStorageConfig } from './storages';
export default class PluginFileManager extends Plugin {
storageType() {
return process.env.DEFAULT_STORAGE_TYPE;
}
2022-02-11 18:13:14 +08:00
async install() {
const defaultStorageConfig = getStorageConfig(this.storageType());
if (defaultStorageConfig) {
const Storage = this.db.getCollection('storages');
await Storage.repository.create({
values: {
...defaultStorageConfig.defaults(),
type: this.storageType(),
default: true,
},
});
}
}
async load() {
await this.db.import({
2022-02-11 18:13:14 +08:00
directory: resolve(__dirname, 'collections'),
});
// 暂时中间件只能通过 use 加进来
this.app.resourcer.use(uploadMiddleware);
this.app.resourcer.registerActionHandler('upload', uploadAction);
if (process.env.NOCOBASE_ENV !== 'production') {
await getStorageConfig(STORAGE_TYPE_LOCAL).middleware(this.app);
}
}
}