2021-10-18 04:49:37 +00:00
|
|
|
import cors from '@koa/cors';
|
|
|
|
import Database from '@nocobase/database';
|
|
|
|
import Resourcer from '@nocobase/resourcer';
|
2022-02-06 17:14:00 +00:00
|
|
|
import i18next from 'i18next';
|
|
|
|
import bodyParser from 'koa-bodyparser';
|
2021-10-18 04:49:37 +00:00
|
|
|
import Application, { ApplicationOptions } from './application';
|
|
|
|
import { dataWrapping } from './middlewares/data-wrapping';
|
2022-09-23 01:22:17 +00:00
|
|
|
import { i18n } from './middlewares/i18n';
|
2021-10-18 04:49:37 +00:00
|
|
|
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 });
|
|
|
|
}
|
|
|
|
|
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,
|
|
|
|
}),
|
|
|
|
);
|
|
|
|
|
2022-09-23 01:22:17 +00:00
|
|
|
app.use(async (ctx, next) => {
|
2022-04-09 07:30:43 +00:00
|
|
|
ctx.getBearerToken = () => {
|
|
|
|
return ctx.get('Authorization').replace(/^Bearer\s+/gi, '');
|
|
|
|
};
|
2021-10-18 04:49:37 +00:00
|
|
|
await next();
|
|
|
|
});
|
|
|
|
|
2022-09-23 01:22:17 +00:00
|
|
|
app.use(i18n);
|
|
|
|
|
2021-10-18 04:49:37 +00:00
|
|
|
if (options.dataWrapping !== false) {
|
|
|
|
app.use(dataWrapping());
|
|
|
|
}
|
|
|
|
|
2022-09-02 03:44:22 +00:00
|
|
|
app.use(table2resource);
|
2021-10-18 04:49:37 +00:00
|
|
|
app.use(app.resourcer.restApiMiddleware());
|
|
|
|
}
|