Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Luc Bourdot
codimd
Commits
bac39211
Commit
bac39211
authored
Oct 08, 2019
by
rhtenhove
Committed by
Ruben ten Hove
Oct 30, 2019
Browse files
Add https_proxy support to gitlab oauth
Signed-off-by:
Ruben ten Hove
<
git@rhtenhove.nl
>
parent
c9df47da
Changes
1
Hide whitespace changes
Inline
Side-by-side
lib/web/auth/gitlab/index.js
View file @
bac39211
...
...
@@ -6,16 +6,24 @@ const GitlabStrategy = require('passport-gitlab2').Strategy
const
config
=
require
(
'
../../../config
'
)
const
response
=
require
(
'
../../../response
'
)
const
{
setReturnToFromReferer
,
passportGeneralCallback
}
=
require
(
'
../utils
'
)
const
HttpsProxyAgent
=
require
(
'
https-proxy-agent
'
);
const
gitlabAuth
=
module
.
exports
=
Router
()
passport
.
use
(
new
GitlabStrategy
({
let
gitlabAuthStrategy
=
new
GitlabStrategy
({
baseURL
:
config
.
gitlab
.
baseURL
,
clientID
:
config
.
gitlab
.
clientID
,
clientSecret
:
config
.
gitlab
.
clientSecret
,
scope
:
config
.
gitlab
.
scope
,
callbackURL
:
config
.
serverURL
+
'
/auth/gitlab/callback
'
},
passportGeneralCallback
))
},
passportGeneralCallback
)
if
(
process
.
env
[
'
https_proxy
'
])
{
let
httpsProxyAgent
=
new
HttpsProxyAgent
(
process
.
env
[
'
https_proxy
'
]);
gitlabAuthStrategy
.
_oauth2
.
setAgent
(
httpsProxyAgent
);
}
passport
.
use
(
gitlabAuthStrategy
)
gitlabAuth
.
get
(
'
/auth/gitlab
'
,
function
(
req
,
res
,
next
)
{
setReturnToFromReferer
(
req
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment