2022-03-28 20:17:54 +08:00

57 lines
1.4 KiB
JavaScript

import { readFileSync } from 'fs';
import { join } from 'path';
import { resolvePkg } from '@fesjs/utils';
const namespace = 'plugin-access';
export default (api) => {
const {
utils: { Mustache },
} = api;
api.describe({
config: {
schema(joi) {
return joi.object({
roles: joi.object(),
});
},
default: {},
},
});
const absoluteFilePath = join(namespace, 'core.js');
const absRuntimeFilePath = join(namespace, 'runtime.js');
api.onGenerateFiles(() => {
// 文件写出
const { roles = {} } = api.config.access || {};
api.writeTmpFile({
path: absoluteFilePath,
content: Mustache.render(readFileSync(join(__dirname, 'runtime/core.tpl'), 'utf-8'), {
REPLACE_ROLES: JSON.stringify(roles),
lodashPath: resolvePkg('lodash-es'),
}),
});
api.copyTmpFiles({
namespace,
path: join(__dirname, 'runtime'),
ignore: ['.tpl'],
});
});
api.addPluginExports(() => [
{
specifiers: ['access', 'useAccess'],
source: absoluteFilePath,
},
]);
api.addRuntimePluginKey(() => 'access');
api.addRuntimePlugin(() => `@@/${absRuntimeFilePath}`);
};