gitea/modules/auth/user.go

121 lines
3.1 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 18:11:28 +02:00
"github.com/go-martini/martini"
2014-03-30 18:11:28 +02:00
"github.com/gogits/session"
"github.com/gogits/gogs/models"
"github.com/gogits/gogs/modules/base"
2014-03-07 23:22:15 +01:00
"github.com/gogits/gogs/modules/log"
2014-05-05 08:42:52 +02:00
"github.com/gogits/gogs/modules/middleware/binding"
)
// SignedInId returns the id of signed in user.
2014-03-22 13:49:53 +01:00
func SignedInId(session session.SessionStore) int64 {
2014-03-30 16:47:08 +02:00
if !models.HasEngine {
return 0
}
userId := session.Get("userId")
if userId == nil {
return 0
}
if s, ok := userId.(int64); ok {
2014-03-11 16:54:43 +01:00
if _, err := models.GetUserById(s); err != nil {
return 0
}
return s
}
return 0
}
// SignedInName returns the name of signed in user.
2014-03-22 13:49:53 +01:00
func SignedInName(session session.SessionStore) string {
userName := session.Get("userName")
if userName == nil {
return ""
}
if s, ok := userName.(string); ok {
return s
}
return ""
}
// SignedInUser returns the user object of signed user.
2014-03-22 13:49:53 +01:00
func SignedInUser(session session.SessionStore) *models.User {
id := SignedInId(session)
if id <= 0 {
return nil
}
user, err := models.GetUserById(id)
if err != nil {
log.Error("user.SignedInUser: %v", err)
return nil
}
return user
}
// IsSignedIn check if any user has signed in.
2014-03-22 13:49:53 +01:00
func IsSignedIn(session session.SessionStore) bool {
return SignedInId(session) > 0
}
type FeedsForm struct {
UserId int64 `form:"userid" binding:"Required"`
2014-03-15 10:30:59 +01:00
Page int64 `form:"p"`
}
type UpdateProfileForm struct {
2014-04-03 22:33:27 +02:00
UserName string `form:"username" binding:"Required;AlphaDash;MaxSize(30)"`
2014-05-01 14:26:41 +02:00
FullName string `form:"fullname" binding:"MaxSize(40)"`
Email string `form:"email" binding:"Required;Email;MaxSize(50)"`
2014-05-05 22:21:43 +02:00
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-03 22:33:27 +02:00
"UserName": "Username",
2014-03-21 11:15:58 +01:00
"Email": "E-mail address",
"Website": "Website",
"Location": "Location",
"Avatar": "Gravatar Email",
}
return names[field]
}
2014-05-05 22:21:43 +02:00
func (f *UpdateProfileForm) Validate(errs *binding.BindingErrors, req *http.Request, ctx martini.Context) {
data := ctx.Get(reflect.TypeOf(base.TmplData{})).Interface().(base.TmplData)
validate(errs, data, f)
}
2014-03-13 09:06:35 +01:00
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-05 22:21:43 +02:00
func (f *UpdatePasswdForm) Validate(errs *binding.BindingErrors, req *http.Request, ctx martini.Context) {
data := ctx.Get(reflect.TypeOf(base.TmplData{})).Interface().(base.TmplData)
validate(errs, data, f)
2014-03-13 09:06:35 +01:00
}