2017-07-04 16:43:07 +08:00
|
|
|
import yapi from './yapi.js';
|
|
|
|
import commons from './utils/commons';
|
|
|
|
yapi.commons = commons;
|
|
|
|
import dbModule from './utils/db.js';
|
2017-07-26 22:03:18 +08:00
|
|
|
import mockServer from './middleware/mockServer.js';
|
|
|
|
import Koa from 'koa';
|
|
|
|
import koaStatic from 'koa-static';
|
|
|
|
import bodyParser from 'koa-bodyparser';
|
|
|
|
import router from './router.js';
|
|
|
|
|
|
|
|
yapi.connect = dbModule.connect();
|
|
|
|
const app = new Koa();
|
2017-08-11 10:25:19 +08:00
|
|
|
let indexFile = process.argv[2] === 'dev' ? 'dev.html' : 'index.html';
|
|
|
|
|
2017-07-26 22:03:18 +08:00
|
|
|
|
|
|
|
app.use(mockServer);
|
|
|
|
app.use(bodyParser());
|
|
|
|
app.use(router.routes());
|
|
|
|
app.use(router.allowedMethods());
|
2017-08-11 10:25:19 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
app.use( async (ctx, next) => {
|
|
|
|
if( /^\/(?!api)[a-zA-Z0-9\/\-]*$/.test(ctx.path) ){
|
|
|
|
ctx.path = "/"
|
|
|
|
await next()
|
|
|
|
}else{
|
|
|
|
await next()
|
|
|
|
}
|
|
|
|
|
|
|
|
})
|
2017-07-04 16:43:07 +08:00
|
|
|
app.use(koaStatic(
|
2017-08-11 10:25:19 +08:00
|
|
|
yapi.path.join(yapi.WEBROOT, 'static'),
|
|
|
|
{index: indexFile}
|
2017-07-26 22:03:18 +08:00
|
|
|
));
|
2017-08-11 10:25:19 +08:00
|
|
|
|
2017-07-26 22:03:18 +08:00
|
|
|
app.listen(yapi.WEBCONFIG.port);
|
|
|
|
commons.log(`the server is start at port ${yapi.WEBCONFIG.port}`);
|