69 lines
1.7 KiB
TypeScript
69 lines
1.7 KiB
TypeScript
import { Plugin } from '@nocobase/server';
|
|
import path from 'path';
|
|
|
|
export class PresetNocoBase extends Plugin {
|
|
async addBuiltInPlugins() {
|
|
const plugins = [
|
|
'error-handler',
|
|
'collection-manager',
|
|
'ui-schema-storage',
|
|
'ui-routes-storage',
|
|
'file-manager',
|
|
'system-settings',
|
|
'verification',
|
|
'users',
|
|
'acl',
|
|
'china-region',
|
|
'workflow',
|
|
'client',
|
|
'export',
|
|
'import',
|
|
'audit-logs',
|
|
];
|
|
await this.app.pm.add(plugins, {
|
|
enabled: true,
|
|
builtIn: true,
|
|
installed: true,
|
|
});
|
|
const samples = ['sample-hello'];
|
|
await this.app.pm.add(samples, {});
|
|
await this.app.reload();
|
|
}
|
|
|
|
afterAdd() {
|
|
this.app.on('beforeLoad', async (app, options) => {
|
|
if (options?.method !== 'upgrade') {
|
|
return;
|
|
}
|
|
const result = await this.app.version.satisfies('<0.8.0-alpha.1');
|
|
if (result) {
|
|
const r = await this.db.collectionExistsInDb('applicationPlugins');
|
|
if (r) {
|
|
await this.db.getRepository('applicationPlugins').destroy({ truncate: true });
|
|
await this.app.reload();
|
|
}
|
|
}
|
|
});
|
|
this.app.on('beforeUpgrade', async () => {
|
|
const result = await this.app.version.satisfies('<0.8.0-alpha.1');
|
|
if (result) {
|
|
await this.addBuiltInPlugins();
|
|
}
|
|
});
|
|
this.app.on('beforeInstall', async () => {
|
|
await this.addBuiltInPlugins();
|
|
});
|
|
}
|
|
beforeLoad() {
|
|
this.db.addMigrations({
|
|
namespace: this.getName(),
|
|
directory: path.resolve(__dirname, './migrations'),
|
|
context: {
|
|
plugin: this,
|
|
},
|
|
});
|
|
}
|
|
}
|
|
|
|
export default PresetNocoBase;
|