You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
main
${ noResults }
54 lines
1.2 KiB
JavaScript
54 lines
1.2 KiB
JavaScript
async function register ({
|
|||
registerExternalAuth,
|
|||
peertubeHelpers
|
|||
}) {
|
|||
{
|
|||
const result = registerExternalAuth({
|
|||
authName: 'external-auth-7',
|
|||
authDisplayName: () => 'External Auth 7',
|
|||
onAuthRequest: (req, res) => {
|
|||
result.userAuthenticated({
|
|||
req,
|
|||
res,
|
|||
username: 'cid',
|
|||
email: 'cid@example.com',
|
|||
displayName: 'Cid Marquez'
|
|||
})
|
|||
},
|
|||
onLogout: (user, req) => {
|
|||
return 'https://example.com/redirectUrl'
|
|||
}
|
|||
})
|
|||
}
|
|||
|
|||
{
|
|||
const result = registerExternalAuth({
|
|||
authName: 'external-auth-8',
|
|||
authDisplayName: () => 'External Auth 8',
|
|||
onAuthRequest: (req, res) => {
|
|||
result.userAuthenticated({
|
|||
req,
|
|||
res,
|
|||
username: 'cid',
|
|||
email: 'cid@example.com',
|
|||
displayName: 'Cid Marquez'
|
|||
})
|
|||
},
|
|||
onLogout: (user, req) => {
|
|||
return 'https://example.com/redirectUrl?access_token=' + req.headers['authorization'].split(' ')[1]
|
|||
}
|
|||
})
|
|||
}
|
|||
}
|
|||
|
|||
async function unregister () {
|
|||
|
|||
}
|
|||
|
|||
module.exports = {
|
|||
register,
|
|||
unregister
|
|||
}
|
|||
|
|||
// ###########################################################################
|