nocobase/packages/server/src/helper.ts

131 lines
3.4 KiB
TypeScript
Raw Normal View History

import { DefaultContext, DefaultState } from 'koa';
import bodyParser from 'koa-bodyparser';
import cors from '@koa/cors';
import Database from '@nocobase/database';
import Resourcer from '@nocobase/resourcer';
import { Command } from 'commander';
import Application, { ApplicationOptions } from './application';
import { dataWrapping } from './middlewares/data-wrapping';
import { table2resource } from './middlewares/table2resource';
import i18next from 'i18next';
export function createDatabase(options: ApplicationOptions) {
if (options.database instanceof Database) {
return options.database;
} else {
return new Database(options.database);
}
}
export function createResourcer(options: ApplicationOptions) {
return new Resourcer({ ...options.resourcer });
}
export function createI18n(options: ApplicationOptions) {
const instance = i18next.createInstance();
instance.init({
lng: 'en-US',
resources: {},
...options.i18n,
});
return instance;
}
export function createCli(app: Application, options: ApplicationOptions) {
const cli = new Command();
cli
.command('db:sync')
.option('-f, --force')
.action(async (...args) => {
console.log('db sync...');
const cli = args.pop();
const force = cli.opts()?.force;
await app.db.sync(
force
? {
force: true,
alter: {
drop: true,
},
}
: {},
);
await app.destroy();
});
cli
.command('init')
.option('-f, --force')
.action(async (opts, ...args) => {
if (!opts?.force) {
const tables = await app.db.sequelize.getQueryInterface().showAllTables();
if (tables.includes('collections')) {
console.log('NocoBase is already installed. To reinstall, please execute:');
console.log();
2021-12-06 13:23:34 +00:00
let command = 'yarn nocobase init --force';
for (const [key, value] of Object.entries(opts || {})) {
command += value === true ? ` --${key}` : ` --${key}=${value}`;
}
console.log(command);
console.log();
return;
}
}
await app.db.sync({
force: true,
});
await app.emitAsync('db.init', opts, ...args);
await app.destroy();
});
cli
.command('start')
.option('-p, --port [port]')
.action(async (...args) => {
const cli = args.pop();
const opts = cli.opts();
await app.emitAsync('beforeStart');
Application (#175) * feat: getRepository * getRepository return type * export action * add: acl * feat: setResourceAction * feat: action alias * chore: code struct * feat: removeResourceAction * chore: file name * ignorecase * remove ACL * feat: ACL * feat: role toJSON * using emit * chore: test * feat: plugin-acl * feat: acl with predicate * grant universal action test * grant action test * update resource action test * revoke resource action * usingActionsConfig switch * plugin-ui-schema-storage * remove global acl instance * fix: collection manager with sqlite * add own action listener * add acl middleware * add acl allowConfigure strategy option * add plugin-acl allowConfigure * change acl resourceName * add acl middleware merge params * bugfix * append fields on acl action params * acl middleware parse template * fix: collection-manager migrate * add acl association field test * feat(plugin-acl): grant association field actions * chore(plugin-acl): type name * feat(plugin-acl): regrant actions on resource action update * feat(plugin-acl): regrant action on field destroy * fix(plugin-acl): test * fix(plugin-acl): test run * feat(plugin-acl): set default role * feat(plugin-users): set user default role * test(plugin-users): create user with role * feat(plugin-users): create user with role * feat(application): application hook * feat(database): reconnect * feat(database): application life cycle * feat(database): sync with option * feat(database): hook position * feat(database): hook position * feat(database): remove load in start * fix(application): get plugin * feat(test): loadAndInstall * feat: improve code * feat: improve code * fix: listen options * fix: bug * test(database): add test case Co-authored-by: chenos <chenlinxh@gmail.com>
2022-01-30 03:11:36 +00:00
await app.start(opts.port || 3000);
console.log(`http://localhost:${opts.port || 3000}/`);
});
return cli;
}
2021-12-06 13:23:34 +00:00
export function registerMiddlewares(app: Application, options: ApplicationOptions) {
if (options.bodyParser !== false) {
app.use(
bodyParser({
...options.bodyParser,
}),
);
}
app.use(
cors({
exposeHeaders: ['content-disposition'],
...options.cors,
}),
);
app.use<DefaultState, DefaultContext>(async (ctx, next) => {
ctx.db = app.db;
ctx.resourcer = app.resourcer;
2021-12-06 13:23:34 +00:00
const i18n = app.i18n.cloneInstance({ initImmediate: false });
ctx.i18n = i18n;
ctx.t = i18n.t.bind(i18n);
2021-12-06 13:23:34 +00:00
const lng = (ctx.request.query.locale as string) || ctx.acceptsLanguages().shift();
if (lng !== '*' && lng) {
i18n.changeLanguage(lng);
}
await next();
});
if (options.dataWrapping !== false) {
app.use(dataWrapping());
}
app.use(table2resource());
app.use(app.resourcer.restApiMiddleware());
}