bench-forgejo/modules/auth/user.go

127 lines
3.3 KiB
Go
Raw Normal View History

// Copyright 2014 The Gogs Authors. All rights reserved.
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.
package auth
import (
"net/http"
"reflect"
2014-03-30 21:41:28 +05:30
"github.com/go-martini/martini"
2014-03-30 21:41:28 +05:30
"github.com/gogits/session"
"github.com/gogits/gogs/models"
"github.com/gogits/gogs/modules/base"
2014-03-08 03:52:15 +05:30
"github.com/gogits/gogs/modules/log"
2014-05-05 12:12:52 +05:30
"github.com/gogits/gogs/modules/middleware/binding"
2014-06-21 10:21:41 +05:30
"github.com/gogits/gogs/modules/setting"
)
// SignedInId returns the id of signed in user.
2014-06-21 10:21:41 +05:30
func SignedInId(header http.Header, sess session.SessionStore) int64 {
2014-03-30 20:17:08 +05:30
if !models.HasEngine {
return 0
}
2014-06-21 10:23:46 +05:30
if setting.Service.EnableReverseProxyAuth {
2014-06-24 23:25:47 +05:30
webAuthUser := header.Get(setting.ReverseProxyAuthUser)
if len(webAuthUser) > 0 {
u, err := models.GetUserByName(webAuthUser)
if err != nil {
if err != models.ErrUserNotExist {
log.Error("auth.user.SignedInId(GetUserByName): %v", err)
}
return 0
}
return u.Id
2014-06-21 10:21:41 +05:30
}
}
2014-06-21 10:21:41 +05:30
2014-06-24 23:25:47 +05:30
uid := sess.Get("userId")
if uid == nil {
return 0
}
if id, ok := uid.(int64); ok {
2014-06-06 07:37:35 +05:30
if _, err := models.GetUserById(id); err != nil {
2014-06-21 10:21:41 +05:30
if err != models.ErrUserNotExist {
log.Error("auth.user.SignedInId(GetUserById): %v", err)
}
2014-03-11 21:24:43 +05:30
return 0
}
2014-06-06 07:37:35 +05:30
return id
}
return 0
}
// SignedInUser returns the user object of signed user.
2014-06-21 10:21:41 +05:30
func SignedInUser(header http.Header, sess session.SessionStore) *models.User {
uid := SignedInId(header, sess)
2014-06-06 07:37:35 +05:30
if uid <= 0 {
return nil
}
2014-06-06 07:37:35 +05:30
u, err := models.GetUserById(uid)
if err != nil {
log.Error("user.SignedInUser: %v", err)
return nil
}
2014-06-06 07:37:35 +05:30
return u
}
// IsSignedIn check if any user has signed in.
2014-06-21 10:21:41 +05:30
func IsSignedIn(header http.Header, sess session.SessionStore) bool {
return SignedInId(header, sess) > 0
}
type FeedsForm struct {
UserId int64 `form:"userid" binding:"Required"`
2014-03-15 15:00:59 +05:30
Page int64 `form:"p"`
}
type UpdateProfileForm struct {
2014-04-04 02:03:27 +05:30
UserName string `form:"username" binding:"Required;AlphaDash;MaxSize(30)"`
2014-05-01 17:56:41 +05:30
FullName string `form:"fullname" binding:"MaxSize(40)"`
Email string `form:"email" binding:"Required;Email;MaxSize(50)"`
2014-05-06 01:51:43 +05:30
Website string `form:"website" binding:"Url;MaxSize(50)"`
Location string `form:"location" binding:"MaxSize(50)"`
Avatar string `form:"avatar" binding:"Required;Email;MaxSize(50)"`
}
func (f *UpdateProfileForm) Name(field string) string {
names := map[string]string{
2014-04-04 02:03:27 +05:30
"UserName": "Username",
2014-03-21 15:45:58 +05:30
"Email": "E-mail address",
2014-06-27 13:07:01 +05:30
"Website": "Website address",
"Location": "Location",
"Avatar": "Gravatar Email",
}
return names[field]
}
2014-05-09 07:42:05 +05:30
func (f *UpdateProfileForm) Validate(errs *binding.Errors, req *http.Request, ctx martini.Context) {
2014-05-06 01:51:43 +05:30
data := ctx.Get(reflect.TypeOf(base.TmplData{})).Interface().(base.TmplData)
validate(errs, data, f)
}
2014-03-13 13:36:35 +05:30
type UpdatePasswdForm struct {
OldPasswd string `form:"oldpasswd" binding:"Required;MinSize(6);MaxSize(30)"`
NewPasswd string `form:"newpasswd" binding:"Required;MinSize(6);MaxSize(30)"`
RetypePasswd string `form:"retypepasswd"`
}
func (f *UpdatePasswdForm) Name(field string) string {
names := map[string]string{
"OldPasswd": "Old password",
"NewPasswd": "New password",
"RetypePasswd": "Re-type password",
}
return names[field]
}
2014-05-09 07:42:05 +05:30
func (f *UpdatePasswdForm) Validate(errs *binding.Errors, req *http.Request, ctx martini.Context) {
2014-05-06 01:51:43 +05:30
data := ctx.Get(reflect.TypeOf(base.TmplData{})).Interface().(base.TmplData)
validate(errs, data, f)
2014-03-13 13:36:35 +05:30
}