Browse Source

work on #1891

tags/v0.9.99
Unknwon 8 years ago
parent
commit
9330c943cd
4 changed files with 16 additions and 11 deletions
  1. 2
    2
      modules/bindata/bindata.go
  2. 12
    0
      modules/middleware/auth.go
  3. 0
    8
      modules/middleware/context.go
  4. 2
    1
      routers/user/auth.go

+ 2
- 2
modules/bindata/bindata.go
File diff suppressed because it is too large
View File


+ 12
- 0
modules/middleware/auth.go View File

@@ -109,6 +109,18 @@ func Toggle(options *ToggleOptions) macaron.Handler {
}
}

// Try auto-signin when not signed in.
if !ctx.IsSigned {
succeed, err := AutoSignIn(ctx)
if err != nil {
ctx.Handle(500, "AutoSignIn", err)
return
} else if succeed {
ctx.Redirect(ctx.Req.URL.Path)
return
}
}

if options.AdminRequire {
if !ctx.User.IsAdmin {
ctx.Error(403)

+ 0
- 8
modules/middleware/context.go View File

@@ -209,14 +209,6 @@ func Contexter() macaron.Handler {

ctx.Data["PageStartTime"] = time.Now()

// Check auto-signin.
if sess.Get("uid") == nil {
if _, err := AutoSignIn(ctx); err != nil {
ctx.Handle(500, "AutoSignIn", err)
return
}
}

// Get user from session if logined.
ctx.User, ctx.IsBasicAuth = auth.SignedInUser(ctx.Context, ctx.Session)


+ 2
- 1
routers/user/auth.go View File

@@ -40,8 +40,9 @@ func SignIn(ctx *middleware.Context) {
if redirectTo, _ := url.QueryUnescape(ctx.GetCookie("redirect_to")); len(redirectTo) > 0 {
ctx.SetCookie("redirect_to", "", -1, setting.AppSubUrl)
ctx.Redirect(redirectTo)
} else {
ctx.Redirect(setting.AppSubUrl + "/")
}
ctx.Redirect(setting.AppSubUrl + "/")
return
}


Loading…
Cancel
Save