05ecb25d1b
* feat: create nocobase app with simple & quickstart option * chore: delete template file * create-nocobase-app: add env API_PORT fallback * chore: log * env default fallback * move config dir * change has yarn * chore: prettier * fix: npm running issue * database testing support sqlite * once... * chore: typo * fix: sqlite test * update readme * feat: copy .env.example to .env at create-nocobase-app * create-nocobase-app: change sqlite3 to github master * create-nocobase-app: .env template * create-nocobase-app: update .env * chore: typo * update README * chore: Application constructor * feat: sqlite demo data support * fix test * fix: application error * chore: plugin-client run sql * fix: application createCli * fix: can choose whether to register actions * chore: model compile error * fix: support sqlite * fix: demo data set index sequence on postgresql * chore: code reduce * fix: operators are compatible with sqlite * add impor demo option to init command * update env Co-authored-by: chenos <chenlinxh@gmail.com>
101 lines
2.4 KiB
TypeScript
101 lines
2.4 KiB
TypeScript
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';
|
|
|
|
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 createCli(app, 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 (...args) => {
|
|
await app.db.sync({
|
|
force: true,
|
|
});
|
|
await app.emitAsync('db.init', ...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');
|
|
app.listen(opts.port || 3000);
|
|
console.log(`http://localhost:${opts.port || 3000}/`);
|
|
});
|
|
return cli;
|
|
}
|
|
|
|
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;
|
|
await next();
|
|
});
|
|
|
|
if (options.dataWrapping !== false) {
|
|
app.use(dataWrapping());
|
|
}
|
|
|
|
app.use(table2resource());
|
|
app.use(app.resourcer.restApiMiddleware());
|
|
}
|