smarty/index.js

102 lines
2.0 KiB
JavaScript
Raw Normal View History

2018-05-25 15:35:26 +08:00
/**
* nodeJS 模板引擎(依赖doJS框架)
* @authors yutent (yutent@doui.cc)
* @date 2015-12-28 13:57:12
*
*/
'use strict'
require('es.shim')
2020-04-07 00:49:07 +08:00
2018-05-25 15:35:26 +08:00
const Tool = require('./lib/tool')
2020-04-06 23:56:03 +08:00
const path = require('path')
2020-04-06 23:33:47 +08:00
function hash(str) {
return Buffer.from(str).toString('hex')
}
2018-05-25 15:35:26 +08:00
class Smarty {
constructor(opt) {
2020-04-06 23:33:47 +08:00
this.opt = { cache: true, ext: '.tpl' }
2018-05-25 15:35:26 +08:00
if (opt) {
Object.assign(this.opt, opt)
}
2020-04-06 23:33:47 +08:00
this.__REG__ = new RegExp(this.opt.ext + '$')
2020-04-07 00:49:07 +08:00
this.tool = new Tool(this.opt)
2020-04-06 23:33:47 +08:00
this.__DATA__ = Object.create(null) // 预定义的变量储存
2020-04-07 01:01:41 +08:00
this.__CACHE__ = Object.create(null) // 渲染缓存
2018-05-25 15:35:26 +08:00
}
config(key, val) {
2020-04-06 23:56:03 +08:00
key += ''
2020-04-07 00:49:07 +08:00
if (!key || val === undefined) {
2020-04-06 23:56:03 +08:00
return
}
this.opt[key] = val
2020-04-07 00:49:07 +08:00
this.tool.opt[key] = val
2018-05-25 15:35:26 +08:00
}
/**
* 定义变量
* @param {Str} key 变量名
* @param {any} val
*/
assign(key, val) {
key += ''
if (!key) {
return this
}
2020-04-06 23:33:47 +08:00
this.__DATA__[key] = val
2018-05-25 15:35:26 +08:00
return this
}
/**
* [render 模板渲染]
* @param {String} tpl 模板路径
2020-04-06 23:33:47 +08:00
* @param {Boolean} noParse 不解析直接读取
2018-05-25 15:35:26 +08:00
* @return {Promise} 返回一个Promise对象
*/
2020-04-06 23:56:03 +08:00
render(tpl = '', noParse = false) {
2020-04-06 23:33:47 +08:00
var key = null
2020-04-07 01:01:41 +08:00
var cache
2020-04-07 00:49:07 +08:00
if (!this.opt.path) {
2018-05-25 15:35:26 +08:00
throw new Error('Smarty engine must define path option')
}
if (!tpl) {
return Promise.reject('argument[tpl] can not be empty')
}
2020-04-06 23:33:47 +08:00
if (!this.__REG__.test(tpl)) {
tpl += this.opt.ext
2018-05-25 15:35:26 +08:00
}
2020-04-06 23:56:03 +08:00
tpl = path.resolve(this.opt.path, tpl)
2018-05-25 15:35:26 +08:00
2020-04-06 23:56:03 +08:00
key = hash(tpl)
2018-05-25 15:35:26 +08:00
2020-04-07 00:49:07 +08:00
if (this.__CACHE__[key]) {
2020-04-06 23:33:47 +08:00
return Promise.resolve(this.__CACHE__[key])
2018-05-25 15:35:26 +08:00
}
2020-04-07 01:01:41 +08:00
cache = this.tool.__readFile__(tpl, noParse)
2020-04-07 00:49:07 +08:00
2020-04-06 23:33:47 +08:00
if (noParse) {
2020-04-07 01:01:41 +08:00
this.__CACHE__[key] = cache
return Promise.resolve(cache)
2020-04-06 23:33:47 +08:00
}
2018-05-25 15:35:26 +08:00
try {
2020-04-07 01:01:41 +08:00
cache = this.tool.parse(cache, this.__DATA__)
if (this.opt.cache) {
this.__CACHE__[key] = cache
}
return Promise.resolve(cache)
2018-05-25 15:35:26 +08:00
} catch (err) {
return Promise.reject(err)
}
}
}
module.exports = Smarty