2020-11-11 18:16:18 +08:00
|
|
|
import Koa from 'koa';
|
2021-09-05 23:59:38 +08:00
|
|
|
import cors from '@koa/cors';
|
|
|
|
import bodyParser from 'koa-bodyparser';
|
2021-09-14 11:09:26 +08:00
|
|
|
import { Command, CommandOptions } from 'commander';
|
|
|
|
import Database, { DatabaseOptions, TableOptions } from '@nocobase/database';
|
|
|
|
import Resourcer, { ResourceOptions } from '@nocobase/resourcer';
|
2021-09-09 13:05:33 +08:00
|
|
|
import { dataWrapping, table2resource } from './middlewares';
|
2021-09-14 11:09:26 +08:00
|
|
|
import { PluginType, Plugin, PluginOptions } from './plugin';
|
2021-09-09 13:05:33 +08:00
|
|
|
|
|
|
|
export interface ResourcerOptions {
|
|
|
|
prefix?: string;
|
|
|
|
}
|
2020-11-12 11:48:27 +08:00
|
|
|
|
|
|
|
export interface ApplicationOptions {
|
2021-09-09 13:05:33 +08:00
|
|
|
database?: DatabaseOptions;
|
|
|
|
resourcer?: ResourcerOptions;
|
|
|
|
bodyParser?: any;
|
|
|
|
cors?: any;
|
|
|
|
dataWrapping?: boolean;
|
2020-11-12 11:48:27 +08:00
|
|
|
}
|
2020-11-11 18:16:18 +08:00
|
|
|
|
2021-01-13 16:23:15 +08:00
|
|
|
export class Application extends Koa {
|
2021-09-14 11:09:26 +08:00
|
|
|
public readonly db: Database;
|
2021-01-13 16:23:15 +08:00
|
|
|
|
|
|
|
public readonly resourcer: Resourcer;
|
2020-11-11 18:16:18 +08:00
|
|
|
|
2021-09-05 23:59:38 +08:00
|
|
|
public readonly cli: Command;
|
|
|
|
|
2021-09-14 11:09:26 +08:00
|
|
|
protected plugins = new Map<string, Plugin>();
|
2020-11-12 11:48:27 +08:00
|
|
|
|
2021-01-13 16:23:15 +08:00
|
|
|
constructor(options: ApplicationOptions) {
|
|
|
|
super();
|
2021-09-09 13:05:33 +08:00
|
|
|
|
2021-09-14 11:09:26 +08:00
|
|
|
this.db = new Database(options.database);
|
2021-09-09 13:05:33 +08:00
|
|
|
this.resourcer = new Resourcer({ ...options.resourcer });
|
2021-09-05 23:59:38 +08:00
|
|
|
this.cli = new Command();
|
|
|
|
|
2021-09-09 13:05:33 +08:00
|
|
|
this.use(
|
|
|
|
bodyParser({
|
|
|
|
...options.bodyParser,
|
|
|
|
}),
|
|
|
|
);
|
2021-09-05 23:59:38 +08:00
|
|
|
|
2021-09-09 13:05:33 +08:00
|
|
|
this.use(
|
|
|
|
cors({
|
|
|
|
exposeHeaders: ['content-disposition'],
|
|
|
|
...options.cors,
|
|
|
|
}),
|
|
|
|
);
|
2021-09-05 23:59:38 +08:00
|
|
|
|
|
|
|
this.use(async (ctx, next) => {
|
2021-09-14 11:09:26 +08:00
|
|
|
ctx.db = this.db;
|
2021-09-09 13:05:33 +08:00
|
|
|
ctx.resourcer = this.resourcer;
|
2021-09-05 23:59:38 +08:00
|
|
|
await next();
|
|
|
|
});
|
|
|
|
|
2021-09-09 13:05:33 +08:00
|
|
|
if (options.dataWrapping !== false) {
|
|
|
|
this.use(dataWrapping);
|
|
|
|
}
|
2021-09-05 23:59:38 +08:00
|
|
|
|
2021-09-09 13:05:33 +08:00
|
|
|
this.use(table2resource);
|
|
|
|
this.use(this.resourcer.restApiMiddleware());
|
2021-09-05 23:59:38 +08:00
|
|
|
|
|
|
|
this.cli
|
|
|
|
.command('db sync')
|
|
|
|
.option('-f, --force')
|
|
|
|
.action(async (...args) => {
|
2021-09-14 11:09:26 +08:00
|
|
|
console.log('db sync');
|
2021-09-05 23:59:38 +08:00
|
|
|
const cli = args.pop();
|
2021-09-14 11:09:26 +08:00
|
|
|
const force = cli.opts()?.force;
|
|
|
|
await this.load();
|
|
|
|
await this.db.sync(
|
|
|
|
force
|
|
|
|
? {
|
|
|
|
force: true,
|
|
|
|
alter: {
|
|
|
|
drop: true,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
: {},
|
|
|
|
);
|
|
|
|
await this.destroy();
|
2021-09-05 23:59:38 +08:00
|
|
|
});
|
|
|
|
|
|
|
|
this.cli
|
|
|
|
.command('db init')
|
|
|
|
// .option('-f, --force')
|
|
|
|
.action(async (...args) => {
|
|
|
|
const cli = args.pop();
|
2021-09-14 11:09:26 +08:00
|
|
|
await this.load();
|
|
|
|
await this.db.sync({
|
|
|
|
force: true,
|
|
|
|
alter: {
|
|
|
|
drop: true,
|
|
|
|
},
|
|
|
|
});
|
2021-09-05 23:59:38 +08:00
|
|
|
await this.emitAsync('db.init');
|
2021-09-09 13:05:33 +08:00
|
|
|
await this.destroy();
|
2021-09-05 23:59:38 +08:00
|
|
|
});
|
|
|
|
|
|
|
|
this.cli
|
|
|
|
.command('start')
|
|
|
|
.option('-p, --port [port]')
|
|
|
|
.action(async (...args) => {
|
|
|
|
const cli = args.pop();
|
|
|
|
console.log(args);
|
|
|
|
const opts = cli.opts();
|
2021-09-14 11:09:26 +08:00
|
|
|
await this.load();
|
2021-09-05 23:59:38 +08:00
|
|
|
await this.emitAsync('server.beforeStart');
|
|
|
|
this.listen(opts.port || 3000);
|
|
|
|
console.log(`http://localhost:${opts.port || 3000}/`);
|
|
|
|
});
|
2020-12-18 19:54:53 +08:00
|
|
|
}
|
|
|
|
|
2021-09-14 11:09:26 +08:00
|
|
|
collection(options: TableOptions) {
|
|
|
|
return this.db.table(options);
|
|
|
|
}
|
|
|
|
|
|
|
|
resource(options: ResourceOptions) {
|
|
|
|
return this.resourcer.define(options);
|
|
|
|
}
|
|
|
|
|
|
|
|
command(nameAndArgs: string, opts?: CommandOptions) {
|
|
|
|
return this.cli.command(nameAndArgs, opts);
|
|
|
|
}
|
|
|
|
|
|
|
|
plugin(plugin: PluginType, options?: PluginOptions): Plugin {
|
|
|
|
if (typeof plugin === 'string') {
|
|
|
|
plugin = require(plugin).default;
|
|
|
|
}
|
|
|
|
let instance: Plugin;
|
|
|
|
try {
|
|
|
|
// @ts-ignore
|
|
|
|
const p = new plugin();
|
|
|
|
if (p instanceof Plugin) {
|
|
|
|
// @ts-ignore
|
|
|
|
instance = new plugin({}, {
|
|
|
|
...options,
|
|
|
|
app: this,
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
throw new Error('plugin must be instanceof Plugin');
|
|
|
|
}
|
|
|
|
} catch (err) {
|
|
|
|
instance = new Plugin(plugin, {
|
|
|
|
...options,
|
|
|
|
app: this,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
const name = instance.getName();
|
|
|
|
if (this.plugins.has(name)) {
|
|
|
|
throw new Error(`plugin name [${name}] is repeated`);
|
|
|
|
}
|
|
|
|
this.plugins.set(name, instance);
|
|
|
|
return instance;
|
|
|
|
}
|
|
|
|
|
|
|
|
async load() {
|
|
|
|
await this.emitAsync('plugins.beforeLoad');
|
|
|
|
for (const [name, plugin] of this.plugins) {
|
|
|
|
await this.emitAsync(`plugins.${name}.beforeLoad`);
|
|
|
|
await plugin.load();
|
|
|
|
await this.emitAsync(`plugins.${name}.afterLoad`);
|
|
|
|
}
|
|
|
|
await this.emitAsync('plugins.afterLoad');
|
|
|
|
}
|
|
|
|
|
2021-09-05 14:17:45 +08:00
|
|
|
async emitAsync(event: string | symbol, ...args: any[]): Promise<boolean> {
|
|
|
|
// @ts-ignore
|
|
|
|
const events = this._events;
|
|
|
|
let callbacks = events[event];
|
|
|
|
if (!callbacks) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
// helper function to reuse as much code as possible
|
|
|
|
const run = (cb) => {
|
|
|
|
switch (args.length) {
|
|
|
|
// fast cases
|
|
|
|
case 0:
|
|
|
|
cb = cb.call(this);
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
cb = cb.call(this, args[0]);
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
cb = cb.call(this, args[0], args[1]);
|
|
|
|
break;
|
|
|
|
case 3:
|
|
|
|
cb = cb.call(this, args[0], args[1], args[2]);
|
|
|
|
break;
|
|
|
|
// slower
|
|
|
|
default:
|
|
|
|
cb = cb.apply(this, args);
|
|
|
|
}
|
|
|
|
|
2021-09-09 13:05:33 +08:00
|
|
|
if (cb && (cb instanceof Promise || typeof cb.then === 'function')) {
|
2021-09-05 14:17:45 +08:00
|
|
|
return cb;
|
|
|
|
}
|
|
|
|
|
|
|
|
return Promise.resolve(true);
|
|
|
|
};
|
|
|
|
|
|
|
|
if (typeof callbacks === 'function') {
|
|
|
|
await run(callbacks);
|
|
|
|
} else if (typeof callbacks === 'object') {
|
|
|
|
callbacks = callbacks.slice().filter(Boolean);
|
|
|
|
await callbacks.reduce((prev, next) => {
|
|
|
|
return prev.then((res) => {
|
2021-09-09 13:05:33 +08:00
|
|
|
return run(next).then((result) =>
|
|
|
|
Promise.resolve(res.concat(result)),
|
|
|
|
);
|
2021-09-05 14:17:45 +08:00
|
|
|
});
|
|
|
|
}, Promise.resolve([]));
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2021-09-14 11:09:26 +08:00
|
|
|
// registerPlugin(key: string | object, plugin?: any) {
|
|
|
|
// if (typeof key === 'object') {
|
|
|
|
// Object.keys(key).forEach((k) => {
|
|
|
|
// this.registerPlugin(k, key[k]);
|
|
|
|
// });
|
|
|
|
// } else {
|
|
|
|
// const config = {};
|
|
|
|
// if (Array.isArray(plugin)) {
|
|
|
|
// const [entry, options = {}] = plugin;
|
|
|
|
// Object.assign(config, { entry, options });
|
|
|
|
// } else {
|
|
|
|
// Object.assign(config, { entry: plugin, options: {} });
|
|
|
|
// }
|
|
|
|
// this.plugins.set(key, config);
|
|
|
|
// }
|
|
|
|
// }
|
2020-12-18 09:04:40 +08:00
|
|
|
|
2021-09-14 11:09:26 +08:00
|
|
|
// async loadPlugins() {
|
|
|
|
// await this.emitAsync('plugins.beforeLoad');
|
|
|
|
// const allPlugins = this.plugins.values();
|
|
|
|
// for (const plugin of allPlugins) {
|
|
|
|
// plugin.instance = await this.loadPlugin(plugin);
|
|
|
|
// }
|
|
|
|
// await this.emitAsync('plugins.afterLoad');
|
|
|
|
// }
|
2021-09-05 14:17:45 +08:00
|
|
|
|
2021-09-05 23:59:38 +08:00
|
|
|
async start(argv = process.argv) {
|
|
|
|
return this.cli.parseAsync(argv);
|
2020-12-18 19:54:53 +08:00
|
|
|
}
|
|
|
|
|
2021-09-09 13:05:33 +08:00
|
|
|
async destroy() {
|
2021-09-14 11:09:26 +08:00
|
|
|
await this.db.close();
|
2021-09-09 13:05:33 +08:00
|
|
|
}
|
|
|
|
|
2021-09-14 11:09:26 +08:00
|
|
|
// protected async loadPlugin({
|
|
|
|
// entry,
|
|
|
|
// options = {},
|
|
|
|
// }: {
|
|
|
|
// entry: string | Function;
|
|
|
|
// options: any;
|
|
|
|
// }) {
|
|
|
|
// let main: any;
|
|
|
|
// if (typeof entry === 'function') {
|
|
|
|
// main = entry;
|
|
|
|
// } else if (typeof entry === 'string') {
|
|
|
|
// const pathname = `${entry}/${
|
|
|
|
// __filename.endsWith('.ts') ? 'src' : 'lib'
|
|
|
|
// }/server`;
|
|
|
|
// main = require(pathname).default;
|
|
|
|
// }
|
|
|
|
// return main && (await main.call(this, options));
|
|
|
|
// }
|
2020-11-11 18:16:18 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
export default Application;
|