mirror of https://github.com/requarks/wiki
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
1.1 KiB
42 lines
1.1 KiB
const Promise = require('bluebird')
|
|
const crypto = require('crypto')
|
|
const passportJWT = require('passport-jwt')
|
|
|
|
module.exports = {
|
|
sanitizeCommitUser (user) {
|
|
// 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')
|
|
})
|
|
},
|
|
|
|
extractJWT: passportJWT.ExtractJwt.fromExtractors([
|
|
passportJWT.ExtractJwt.fromAuthHeaderAsBearerToken(),
|
|
(req) => {
|
|
let token = null
|
|
if (req && req.cookies) {
|
|
token = req.cookies['jwt']
|
|
}
|
|
// Force uploads to use Auth headers
|
|
if (req.path === '/u') {
|
|
return null
|
|
}
|
|
return token
|
|
}
|
|
])
|
|
}
|