2017-06-06 12:40:51 +00:00
|
|
|
// const fs = require('fs')
|
|
|
|
// const path = require('path')
|
|
|
|
|
|
|
|
class MsgManager {
|
|
|
|
constructor () {
|
|
|
|
this.errs = {}
|
|
|
|
this.defLang = 'zh'
|
|
|
|
let err = require(`./language/zh`)
|
|
|
|
this.errs['zh'] = err
|
|
|
|
}
|
|
|
|
|
|
|
|
checkLang (lang = '') {
|
|
|
|
let lng = this.defLang
|
|
|
|
if (typeof lang === 'string' && lang.trim().length > 0) {
|
|
|
|
let l = lang.split(',')
|
|
|
|
if (l.length > 0) {
|
|
|
|
let tmp = l[0].substring(0, 2)
|
|
|
|
if (tmp.trim().length > 0) lng = tmp
|
|
|
|
}
|
2017-06-06 07:04:41 +00:00
|
|
|
}
|
|
|
|
|
2017-06-06 12:40:51 +00:00
|
|
|
if (!(lng in this.errs)) {
|
|
|
|
try {
|
|
|
|
let errs = require(`./language/${lng}`)
|
|
|
|
this.errs[lng] = errs
|
|
|
|
} catch (err) {
|
|
|
|
lng = this.defLang
|
|
|
|
}
|
2017-06-06 07:04:41 +00:00
|
|
|
}
|
2017-06-06 12:40:51 +00:00
|
|
|
return lng
|
|
|
|
}
|
2017-06-06 07:04:41 +00:00
|
|
|
|
2017-06-06 12:40:51 +00:00
|
|
|
getMsg (code, lang = '') {
|
|
|
|
let lng = this.checkLang(lang)
|
2017-06-06 07:04:41 +00:00
|
|
|
|
2017-06-06 12:40:51 +00:00
|
|
|
return this.errs[lng][code] || 'errorCode not found'
|
|
|
|
}
|
2017-06-06 07:04:41 +00:00
|
|
|
|
2017-06-06 12:40:51 +00:00
|
|
|
getMailTemplate (type, lang = '') {
|
|
|
|
let lng = this.checkLang(lang)
|
2017-06-06 07:04:41 +00:00
|
|
|
|
2017-06-06 12:40:51 +00:00
|
|
|
return this.errs[lng]['mail'][type] || {}
|
|
|
|
}
|
2017-06-06 07:04:41 +00:00
|
|
|
}
|
|
|
|
|
2017-06-06 12:40:51 +00:00
|
|
|
module.exports = new MsgManager()
|