wikijs-fork/server/helpers/security.js

26 lines
674 B
JavaScript
Raw Normal View History

2018-01-10 01:41:53 +00:00
const Promise = require('bluebird')
const crypto = require('crypto')
2017-04-28 22:22:03 +00:00
module.exports = {
sanitizeCommitUser (user) {
2018-01-10 01:41:53 +00:00
// let wlist = new RegExp('[^a-zA-Z0-9-_.\',& ' + appdata.regex.cjk + appdata.regex.arabic + ']', 'g')
// return {
// name: _.chain(user.name).replace(wlist, '').trim().value(),
// email: appconfig.git.showUserEmail ? user.email : appconfig.git.serverEmail
// }
},
/**
* Generate a random token
*
* @param {any} length
* @returns
*/
async generateToken (length) {
return Promise.fromCallback(clb => {
crypto.randomBytes(length, clb)
}).then(buf => {
return buf.toString('hex')
})
2017-04-28 22:22:03 +00:00
}
}