core/middleware/router.js

76 lines
1.9 KiB
JavaScript
Raw Normal View History

2020-09-16 20:10:24 +08:00
/**
2020-09-18 18:14:47 +08:00
* 路由中间件
* @author yutent<yutent.io@gmail.com>
* @date 2020/09/18 15:16:29
2020-09-16 20:10:24 +08:00
*/
2023-10-25 18:48:55 +08:00
import { readonlyProp } from '../lib.js'
2023-10-27 19:16:59 +08:00
export function createRouter() {
return function (req, res, next) {
var debug = this.get('debug')
var spa = this.get('spa')
2020-09-18 18:14:47 +08:00
2023-10-27 19:16:59 +08:00
// 1. 先判断控制器是否存在
if (!this.$load(spa ? 'index' : req.app)) {
return res.error(`Controller [${req.app}] not found`, 404)
}
2020-09-16 20:10:24 +08:00
2023-10-27 19:16:59 +08:00
// 2. 默认二级路由为index
if (req.path.length < 1 && spa === false) {
req.path.push('index')
}
2020-09-16 20:10:24 +08:00
2023-10-27 19:16:59 +08:00
// 3. 实例化控制器
this.$load(spa ? 'index' : req.app)
.then(async Module => {
let mod, route, act
let err = ''
2020-09-23 19:03:44 +08:00
2023-10-27 19:16:59 +08:00
if (Module) {
mod = new Module()
2023-10-25 18:48:55 +08:00
2023-10-27 19:16:59 +08:00
readonlyProp(mod, 'context', this)
readonlyProp(mod, 'request', req)
readonlyProp(mod, 'response', res)
readonlyProp(mod, 'name', req.app)
2023-10-27 19:16:59 +08:00
// 4. 优先执行__main__方法
if (mod.__main__) {
try {
let r = await mod.__main__()
if (r === false) {
return
}
} catch (err) {
return Promise.reject(err)
2022-12-09 10:40:31 +08:00
}
2020-09-22 19:58:29 +08:00
}
2022-07-04 16:04:29 +08:00
2023-10-27 19:16:59 +08:00
if (spa) {
return mod.indexAction.apply(mod, req.path)
2022-07-04 16:04:29 +08:00
} else {
2023-10-27 19:16:59 +08:00
route = req.path.shift()
act = route + 'Action'
if (mod[act]) {
return mod[act].apply(mod, req.path)
} else {
err = new Error(`Action [${route}] not found`)
err.status = 404
}
2022-07-04 16:04:29 +08:00
}
2023-10-27 19:16:59 +08:00
} else {
err = new Error(`Controller [${req.app}] load error`)
err.status = 500
2020-09-16 20:10:24 +08:00
}
2020-09-18 18:14:47 +08:00
2023-10-27 19:16:59 +08:00
return Promise.reject(err)
})
.catch(err => {
console.error(err)
res.error(debug ? err.stack || err : err, err.status || 500)
})
}
2020-09-16 20:10:24 +08:00
}