2017-04-11 21:41:14 +00:00
|
|
|
'use strict'
|
|
|
|
|
|
|
|
const Router = require('express').Router
|
|
|
|
const passport = require('passport')
|
|
|
|
const GitlabStrategy = require('passport-gitlab2').Strategy
|
|
|
|
const config = require('../../../config')
|
|
|
|
const response = require('../../../response')
|
|
|
|
const {setReturnToFromReferer, passportGeneralCallback} = require('../utils')
|
|
|
|
|
|
|
|
let gitlabAuth = module.exports = Router()
|
|
|
|
|
|
|
|
passport.use(new GitlabStrategy({
|
|
|
|
baseURL: config.gitlab.baseURL,
|
|
|
|
clientID: config.gitlab.clientID,
|
|
|
|
clientSecret: config.gitlab.clientSecret,
|
|
|
|
scope: config.gitlab.scope,
|
2018-03-07 14:17:35 +00:00
|
|
|
callbackURL: config.serverURL + '/auth/gitlab/callback'
|
2017-04-11 21:41:14 +00:00
|
|
|
}, passportGeneralCallback))
|
|
|
|
|
|
|
|
gitlabAuth.get('/auth/gitlab', function (req, res, next) {
|
|
|
|
setReturnToFromReferer(req)
|
|
|
|
passport.authenticate('gitlab')(req, res, next)
|
|
|
|
})
|
|
|
|
|
|
|
|
// gitlab auth callback
|
|
|
|
gitlabAuth.get('/auth/gitlab/callback',
|
|
|
|
passport.authenticate('gitlab', {
|
2018-03-07 14:17:35 +00:00
|
|
|
successReturnToOrRedirect: config.serverURL + '/',
|
|
|
|
failureRedirect: config.serverURL + '/'
|
2017-04-11 21:41:14 +00:00
|
|
|
})
|
|
|
|
)
|
|
|
|
|
|
|
|
if (!config.gitlab.scope || config.gitlab.scope === 'api') {
|
|
|
|
// gitlab callback actions
|
|
|
|
gitlabAuth.get('/auth/gitlab/callback/:noteId/:action', response.gitlabActions)
|
|
|
|
}
|