user.go 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  1. // Copyright 2014 The Gogs Authors. All rights reserved.
  2. // Use of this source code is governed by a MIT-style
  3. // license that can be found in the LICENSE file.
  4. package auth
  5. import (
  6. "net/http"
  7. "reflect"
  8. "github.com/go-martini/martini"
  9. "github.com/gogits/session"
  10. "github.com/gogits/gogs/models"
  11. "github.com/gogits/gogs/modules/base"
  12. "github.com/gogits/gogs/modules/log"
  13. "github.com/gogits/gogs/modules/middleware/binding"
  14. )
  15. // SignedInId returns the id of signed in user.
  16. func SignedInId(session session.SessionStore) int64 {
  17. if !models.HasEngine {
  18. return 0
  19. }
  20. userId := session.Get("userId")
  21. if userId == nil {
  22. return 0
  23. }
  24. if s, ok := userId.(int64); ok {
  25. if _, err := models.GetUserById(s); err != nil {
  26. return 0
  27. }
  28. return s
  29. }
  30. return 0
  31. }
  32. // SignedInName returns the name of signed in user.
  33. func SignedInName(session session.SessionStore) string {
  34. userName := session.Get("userName")
  35. if userName == nil {
  36. return ""
  37. }
  38. if s, ok := userName.(string); ok {
  39. return s
  40. }
  41. return ""
  42. }
  43. // SignedInUser returns the user object of signed user.
  44. func SignedInUser(session session.SessionStore) *models.User {
  45. id := SignedInId(session)
  46. if id <= 0 {
  47. return nil
  48. }
  49. user, err := models.GetUserById(id)
  50. if err != nil {
  51. log.Error("user.SignedInUser: %v", err)
  52. return nil
  53. }
  54. return user
  55. }
  56. // IsSignedIn check if any user has signed in.
  57. func IsSignedIn(session session.SessionStore) bool {
  58. return SignedInId(session) > 0
  59. }
  60. type FeedsForm struct {
  61. UserId int64 `form:"userid" binding:"Required"`
  62. Page int64 `form:"p"`
  63. }
  64. type UpdateProfileForm struct {
  65. UserName string `form:"username" binding:"Required;AlphaDash;MaxSize(30)"`
  66. FullName string `form:"fullname" binding:"MaxSize(40)"`
  67. Email string `form:"email" binding:"Required;Email;MaxSize(50)"`
  68. Website string `form:"website" binding:"MaxSize(50)"`
  69. Location string `form:"location" binding:"MaxSize(50)"`
  70. Avatar string `form:"avatar" binding:"Required;Email;MaxSize(50)"`
  71. }
  72. func (f *UpdateProfileForm) Name(field string) string {
  73. names := map[string]string{
  74. "UserName": "Username",
  75. "Email": "E-mail address",
  76. "Website": "Website",
  77. "Location": "Location",
  78. "Avatar": "Gravatar Email",
  79. }
  80. return names[field]
  81. }
  82. func (f *UpdateProfileForm) Validate(errors *binding.BindingErrors, req *http.Request, context martini.Context) {
  83. if req.Method == "GET" || errors.Count() == 0 {
  84. return
  85. }
  86. data := context.Get(reflect.TypeOf(base.TmplData{})).Interface().(base.TmplData)
  87. data["HasError"] = true
  88. if len(errors.Overall) > 0 {
  89. for _, err := range errors.Overall {
  90. log.Error("UpdateProfileForm.Validate: %v", err)
  91. }
  92. return
  93. }
  94. validate(errors, data, f)
  95. }
  96. type UpdatePasswdForm struct {
  97. OldPasswd string `form:"oldpasswd" binding:"Required;MinSize(6);MaxSize(30)"`
  98. NewPasswd string `form:"newpasswd" binding:"Required;MinSize(6);MaxSize(30)"`
  99. RetypePasswd string `form:"retypepasswd"`
  100. }
  101. func (f *UpdatePasswdForm) Name(field string) string {
  102. names := map[string]string{
  103. "OldPasswd": "Old password",
  104. "NewPasswd": "New password",
  105. "RetypePasswd": "Re-type password",
  106. }
  107. return names[field]
  108. }
  109. func (f *UpdatePasswdForm) Validate(errors *binding.BindingErrors, req *http.Request, context martini.Context) {
  110. if req.Method == "GET" || errors.Count() == 0 {
  111. return
  112. }
  113. data := context.Get(reflect.TypeOf(base.TmplData{})).Interface().(base.TmplData)
  114. data["HasError"] = true
  115. if len(errors.Overall) > 0 {
  116. for _, err := range errors.Overall {
  117. log.Error("UpdatePasswdForm.Validate: %v", err)
  118. }
  119. return
  120. }
  121. validate(errors, data, f)
  122. }