2022-02-07 01:14:00 +08:00
|
|
|
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';
|
2021-12-04 07:58:31 +08:00
|
|
|
import { STORAGE_TYPE_LOCAL } from './constants';
|
2022-02-11 18:13:14 +08:00
|
|
|
import { getStorageConfig } from './storages';
|
2020-12-19 08:45:19 +08:00
|
|
|
|
2022-02-07 01:14:00 +08:00
|
|
|
export default class PluginFileManager extends Plugin {
|
|
|
|
storageType() {
|
|
|
|
return process.env.DEFAULT_STORAGE_TYPE;
|
|
|
|
}
|
2022-02-11 18:13:14 +08:00
|
|
|
|
2022-02-07 01:14:00 +08:00
|
|
|
async beforeLoad() {
|
|
|
|
this.app.on('installing', async () => {
|
|
|
|
const defaultStorageConfig = getStorageConfig(this.storageType());
|
2021-12-04 07:58:31 +08:00
|
|
|
if (defaultStorageConfig) {
|
2022-02-07 01:14:00 +08:00
|
|
|
const Storage = this.db.getCollection('storages');
|
2021-12-06 21:23:34 +08:00
|
|
|
await Storage.repository.create({
|
|
|
|
values: {
|
|
|
|
...defaultStorageConfig.defaults(),
|
2022-02-07 01:14:00 +08:00
|
|
|
type: this.storageType(),
|
2021-12-06 21:23:34 +08:00
|
|
|
default: true,
|
|
|
|
},
|
2021-12-04 07:58:31 +08:00
|
|
|
});
|
|
|
|
}
|
2021-09-11 18:53:26 +08:00
|
|
|
});
|
2022-02-07 01:14:00 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
async load() {
|
|
|
|
await this.db.import({
|
2022-02-11 18:13:14 +08:00
|
|
|
directory: resolve(__dirname, 'collections'),
|
2022-02-07 01:14:00 +08:00
|
|
|
});
|
|
|
|
|
|
|
|
// 暂时中间件只能通过 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);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|