aboutsummaryrefslogtreecommitdiffstats
path: root/web.go
diff options
context:
space:
mode:
authorUnknown <joe2010xtmf@163.com>2014-04-07 13:00:59 -0400
committerUnknown <joe2010xtmf@163.com>2014-04-07 13:00:59 -0400
commit7776f407b6cf7e4897377b73ef6235ecfd9f2a53 (patch)
tree65934102b81714dd81de6d8a265a675c67e08cf8 /web.go
parent9ea9818d3255e5b08293205e278240dece36687d (diff)
downloadgitea-7776f407b6cf7e4897377b73ef6235ecfd9f2a53.tar.gz
gitea-7776f407b6cf7e4897377b73ef6235ecfd9f2a53.zip
Fix issue with log in with GitHub but need more error handle after
Diffstat (limited to 'web.go')
-rw-r--r--web.go24
1 files changed, 10 insertions, 14 deletions
diff --git a/web.go b/web.go
index 8d53b9e1bc..b8fa9eb7ae 100644
--- a/web.go
+++ b/web.go
@@ -59,20 +59,16 @@ func runWeb(*cli.Context) {
m.Use(middleware.Renderer(middleware.RenderOptions{Funcs: []template.FuncMap{base.TemplateFuncs}}))
m.Use(middleware.InitContext())
- scope := "https://api.github.com/user"
- // m.Use(sessions.Sessions("my_session", sessions.NewCookieStore([]byte("secret123"))))
- // m.Use(oauth2.Github(&oauth2.Options{
- // ClientId: "09383403ff2dc16daaa1",
- // ClientSecret: "5f6e7101d30b77952aab22b75eadae17551ea6b5",
- // RedirectURL: base.AppUrl + oauth2.PathCallback,
- // Scopes: []string{scope},
- // }))
- m.Use(oauth2.Github(&oauth2.Options{
- ClientId: "ba323b44192e65c7c320",
- ClientSecret: "6818ffed53bea5815bf1a6412d1933f25fa10619",
- RedirectURL: base.AppUrl + oauth2.PathCallback[1:],
- Scopes: []string{scope},
- }))
+ if base.OauthService != nil {
+ if base.OauthService.GitHub.Enabled {
+ m.Use(oauth2.Github(&oauth2.Options{
+ ClientId: base.OauthService.GitHub.ClientId,
+ ClientSecret: base.OauthService.GitHub.ClientSecret,
+ RedirectURL: base.AppUrl + oauth2.PathCallback[1:],
+ Scopes: []string{base.OauthService.GitHub.Scopes},
+ }))
+ }
+ }
reqSignIn := middleware.Toggle(&middleware.ToggleOptions{SignInRequire: true})
ignSignIn := middleware.Toggle(&middleware.ToggleOptions{SignInRequire: base.Service.RequireSignInView})