mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-11-27 20:08:56 -05:00
5a1a25dda4
added oauth2 to ProviderEnum Signed-off-by: Philip Molares <philip.molares@udo.edu> Signed-off-by: David Mehren <dmehren1@gmail.com>
64 lines
1.8 KiB
TypeScript
64 lines
1.8 KiB
TypeScript
import { InternalOAuthError, Strategy as OAuth2Strategy } from 'passport-oauth2'
|
|
import { config } from '../../../config'
|
|
import { Profile, ProviderEnum } from '../../../models/user'
|
|
|
|
function extractProfileAttribute (data, path: string): any {
|
|
// can handle stuff like `attrs[0].name`
|
|
const pathArray = path.split('.')
|
|
for (const segment of pathArray) {
|
|
const regex = /([\d\w]+)\[(.*)\]/
|
|
const m = regex.exec(segment)
|
|
data = m ? data[m[1]][m[2]] : data[segment]
|
|
}
|
|
return data
|
|
}
|
|
|
|
function parseProfile (data): Partial<Profile> {
|
|
const username = extractProfileAttribute(data, config.oauth2.userProfileUsernameAttr)
|
|
const displayName = extractProfileAttribute(data, config.oauth2.userProfileDisplayNameAttr)
|
|
const email = extractProfileAttribute(data, config.oauth2.userProfileEmailAttr)
|
|
|
|
return {
|
|
id: username,
|
|
username: username,
|
|
displayName: displayName,
|
|
emails: [email]
|
|
}
|
|
}
|
|
|
|
class OAuth2CustomStrategy extends OAuth2Strategy {
|
|
private readonly _userProfileURL: string;
|
|
|
|
constructor (options, verify) {
|
|
options.customHeaders = options.customHeaders || {}
|
|
super(options, verify)
|
|
this.name = 'oauth2'
|
|
this._userProfileURL = options.userProfileURL
|
|
this._oauth2.useAuthorizationHeaderforGET(true)
|
|
}
|
|
|
|
userProfile (accessToken, done): void {
|
|
this._oauth2.get(this._userProfileURL, accessToken, function (err, body, _) {
|
|
let json
|
|
|
|
if (err) {
|
|
return done(new InternalOAuthError('Failed to fetch user profile', err))
|
|
}
|
|
|
|
try {
|
|
if (body !== undefined) {
|
|
json = JSON.parse(body.toString())
|
|
}
|
|
} catch (ex) {
|
|
return done(new Error('Failed to parse user profile'))
|
|
}
|
|
|
|
const profile = parseProfile(json)
|
|
profile.provider = ProviderEnum.oauth2
|
|
|
|
done(null, profile)
|
|
})
|
|
}
|
|
}
|
|
|
|
export { OAuth2CustomStrategy }
|