2021-10-18 04:49:37 +00:00
|
|
|
import cors from '@koa/cors';
|
|
|
|
import Database from '@nocobase/database';
|
|
|
|
import Resourcer from '@nocobase/resourcer';
|
|
|
|
import { Command } from 'commander';
|
2022-02-06 17:14:00 +00:00
|
|
|
import i18next from 'i18next';
|
|
|
|
import { DefaultContext, DefaultState } from 'koa';
|
|
|
|
import bodyParser from 'koa-bodyparser';
|
2021-10-18 04:49:37 +00:00
|
|
|
import Application, { ApplicationOptions } from './application';
|
|
|
|
import { dataWrapping } from './middlewares/data-wrapping';
|
|
|
|
import { table2resource } from './middlewares/table2resource';
|
|
|
|
|
2022-03-06 04:07:56 +00:00
|
|
|
export function createI18n(options: ApplicationOptions) {
|
|
|
|
const instance = i18next.createInstance();
|
|
|
|
instance.init({
|
|
|
|
lng: 'en-US',
|
|
|
|
resources: {},
|
|
|
|
...options.i18n,
|
|
|
|
});
|
|
|
|
return instance;
|
|
|
|
}
|
|
|
|
|
2021-10-18 04:49:37 +00:00
|
|
|
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 });
|
|
|
|
}
|
|
|
|
|
2022-02-07 02:07:39 +00:00
|
|
|
export function createCli(app: Application, options: ApplicationOptions): Command {
|
2021-10-18 04:49:37 +00:00
|
|
|
const cli = new Command();
|
|
|
|
|
|
|
|
cli
|
|
|
|
.command('db:sync')
|
|
|
|
.option('-f, --force')
|
2022-02-06 17:14:00 +00:00
|
|
|
.action(async (...cliArgs) => {
|
|
|
|
const [opts] = cliArgs;
|
2021-10-18 04:49:37 +00:00
|
|
|
console.log('db sync...');
|
|
|
|
await app.db.sync(
|
2022-02-06 17:14:00 +00:00
|
|
|
opts.force
|
2021-10-18 04:49:37 +00:00
|
|
|
? {
|
|
|
|
force: true,
|
|
|
|
alter: {
|
|
|
|
drop: true,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
: {},
|
|
|
|
);
|
2022-02-06 17:14:00 +00:00
|
|
|
await app.stop({
|
|
|
|
cliArgs,
|
|
|
|
});
|
2021-10-18 04:49:37 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
cli
|
2022-02-06 17:14:00 +00:00
|
|
|
.command('install')
|
2021-10-18 04:49:37 +00:00
|
|
|
.option('-f, --force')
|
2022-02-22 07:14:32 +00:00
|
|
|
.option('-c, --clean')
|
2022-02-06 17:14:00 +00:00
|
|
|
.action(async (...cliArgs) => {
|
|
|
|
const [opts] = cliArgs;
|
|
|
|
await app.install({
|
|
|
|
cliArgs,
|
2022-02-22 07:14:32 +00:00
|
|
|
clean: opts.clean,
|
2022-02-06 17:14:00 +00:00
|
|
|
sync: {
|
|
|
|
force: opts.force,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
await app.stop({
|
|
|
|
cliArgs,
|
2021-10-18 04:49:37 +00:00
|
|
|
});
|
|
|
|
});
|
2021-11-09 05:04:10 +00:00
|
|
|
|
2021-10-18 04:49:37 +00:00
|
|
|
cli
|
|
|
|
.command('start')
|
|
|
|
.option('-p, --port [port]')
|
2022-02-06 17:14:00 +00:00
|
|
|
.action(async (...cliArgs) => {
|
|
|
|
const [opts] = cliArgs;
|
|
|
|
const port = opts.port || 3000;
|
|
|
|
|
|
|
|
await app.start({
|
|
|
|
cliArgs,
|
|
|
|
listen: {
|
|
|
|
port,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
console.log(`http://localhost:${port}/`);
|
2021-10-18 04:49:37 +00:00
|
|
|
});
|
2022-02-06 17:14:00 +00:00
|
|
|
|
2021-10-18 04:49:37 +00:00
|
|
|
return cli;
|
|
|
|
}
|
|
|
|
|
2021-12-06 13:23:34 +00:00
|
|
|
export function registerMiddlewares(app: Application, options: ApplicationOptions) {
|
2021-10-18 04:49:37 +00:00
|
|
|
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 });
|
2021-11-08 11:32:59 +00:00
|
|
|
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();
|
2021-11-08 11:32:59 +00:00
|
|
|
if (lng !== '*' && lng) {
|
|
|
|
i18n.changeLanguage(lng);
|
|
|
|
}
|
2021-10-18 04:49:37 +00:00
|
|
|
await next();
|
|
|
|
});
|
|
|
|
|
|
|
|
if (options.dataWrapping !== false) {
|
|
|
|
app.use(dataWrapping());
|
|
|
|
}
|
|
|
|
|
|
|
|
app.use(table2resource());
|
|
|
|
app.use(app.resourcer.restApiMiddleware());
|
|
|
|
}
|