80 lines
1.6 KiB
JavaScript
80 lines
1.6 KiB
JavaScript
/**
|
||
* 控制器基类
|
||
* @authors yutent (yutent@doui.cc)
|
||
* @date 2016-01-02 23:19:16
|
||
*
|
||
*/
|
||
|
||
'use strict'
|
||
|
||
const smarty = new libs.Smarty()
|
||
const jwt = require('./module/jwt')
|
||
|
||
class Controller {
|
||
constructor({ ctx, req, res }) {
|
||
this.ctx = ctx
|
||
this.name = req.app
|
||
this.request = req
|
||
this.response = res
|
||
|
||
this.jwt = {
|
||
sign: jwt.sign.bind(this),
|
||
result: jwt.verify.call(this)
|
||
}
|
||
|
||
smarty.config('path', this.ctx.get('VIEWS'))
|
||
smarty.config('ext', this.ctx.get('temp_ext'))
|
||
smarty.config('cache', !!this.ctx.get('temp_cache'))
|
||
|
||
this.cookie = this.ctx.ins('cookie')
|
||
this.session = this.ctx.ins('session')
|
||
}
|
||
|
||
//定义一个变量,类似于smarty,把该
|
||
assign(key, val) {
|
||
key += ''
|
||
if (!key) {
|
||
return
|
||
}
|
||
|
||
if (val === undefined || val === null) {
|
||
val = ''
|
||
}
|
||
|
||
smarty.assign(key, val)
|
||
}
|
||
|
||
//模板渲染, 参数是模板名, 可不带后缀, 默认是 .tpl
|
||
render(file, noParse = false) {
|
||
smarty
|
||
.render(file, noParse)
|
||
.then(html => {
|
||
this.response.render(html)
|
||
})
|
||
.catch(err => {
|
||
this.response.error(err)
|
||
})
|
||
}
|
||
|
||
// RESFULL-API规范的纯API返回
|
||
send(status = 200, msg = 'success', data = {}) {
|
||
if (typeof msg === 'object') {
|
||
data = msg
|
||
msg = 'success'
|
||
}
|
||
this.response.send(status, msg, data)
|
||
}
|
||
|
||
//针对框架定制的debug信息输出
|
||
xdebug(err) {
|
||
let msg = err
|
||
if (this.ctx.get('debug')) {
|
||
msg = err.stack || err
|
||
}
|
||
|
||
this.response.append('X-debug', msg + '')
|
||
}
|
||
}
|
||
|
||
module.exports = Controller
|
JavaScript
100%