mirror of
https://github.com/nocobase/nocobase
synced 2024-11-18 02:15:10 +00:00
28b73d7143
* feat: add examples * fix: tsconfig-paths/register * feat: more examples * fix: test errors * feat: update examples * docs: example list * fix: updates * feat: example for test case * feat: api client * fix: updates * feat: tree structures * fix: adjacency-list
77 lines
2.0 KiB
TypeScript
77 lines
2.0 KiB
TypeScript
import cors from '@koa/cors';
|
|
import Database from '@nocobase/database';
|
|
import Resourcer from '@nocobase/resourcer';
|
|
import i18next from 'i18next';
|
|
import { DefaultContext, DefaultState } from 'koa';
|
|
import bodyParser from 'koa-bodyparser';
|
|
import Application, { ApplicationOptions } from './application';
|
|
import { dataWrapping } from './middlewares/data-wrapping';
|
|
import { table2resource } from './middlewares/table2resource';
|
|
|
|
export function createI18n(options: ApplicationOptions) {
|
|
const instance = i18next.createInstance();
|
|
instance.init({
|
|
lng: 'en-US',
|
|
resources: {},
|
|
...options.i18n,
|
|
});
|
|
return instance;
|
|
}
|
|
|
|
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 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.getBearerToken = () => {
|
|
return ctx.get('Authorization').replace(/^Bearer\s+/gi, '');
|
|
};
|
|
ctx.db = app.db;
|
|
ctx.resourcer = app.resourcer;
|
|
const i18n = app.i18n.cloneInstance({ initImmediate: false });
|
|
ctx.i18n = i18n;
|
|
ctx.t = i18n.t.bind(i18n);
|
|
const lng =
|
|
ctx.get('X-Locale') ||
|
|
(ctx.request.query.locale as string) ||
|
|
app.i18n.language ||
|
|
ctx.acceptsLanguages().shift() ||
|
|
'en-US';
|
|
if (lng !== '*' && lng) {
|
|
i18n.changeLanguage(lng);
|
|
}
|
|
await next();
|
|
});
|
|
|
|
if (options.dataWrapping !== false) {
|
|
app.use(dataWrapping());
|
|
}
|
|
|
|
app.use(table2resource());
|
|
app.use(app.resourcer.restApiMiddleware());
|
|
}
|