You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

user_form.go 7.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234
  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. "mime/multipart"
  7. "github.com/go-macaron/binding"
  8. "gopkg.in/macaron.v1"
  9. )
  10. // InstallForm form for installation page
  11. type InstallForm struct {
  12. DbType string `binding:"Required"`
  13. DbHost string
  14. DbUser string
  15. DbPasswd string
  16. DbName string
  17. SSLMode string
  18. DbPath string
  19. AppName string `binding:"Required" locale:"install.app_name"`
  20. RepoRootPath string `binding:"Required"`
  21. LFSRootPath string
  22. RunUser string `binding:"Required"`
  23. Domain string `binding:"Required"`
  24. SSHPort int
  25. HTTPPort string `binding:"Required"`
  26. AppURL string `binding:"Required"`
  27. LogRootPath string `binding:"Required"`
  28. SMTPHost string
  29. SMTPFrom string
  30. SMTPUser string `binding:"OmitEmpty;MaxSize(254)" locale:"install.mailer_user"`
  31. SMTPPasswd string
  32. RegisterConfirm bool
  33. MailNotify bool
  34. OfflineMode bool
  35. DisableGravatar bool
  36. EnableFederatedAvatar bool
  37. EnableOpenIDSignIn bool
  38. EnableOpenIDSignUp bool
  39. DisableRegistration bool
  40. AllowOnlyExternalRegistration bool
  41. EnableCaptcha bool
  42. RequireSignInView bool
  43. DefaultKeepEmailPrivate bool
  44. DefaultAllowCreateOrganization bool
  45. DefaultEnableTimetracking bool
  46. NoReplyAddress string
  47. AdminName string `binding:"OmitEmpty;AlphaDashDot;MaxSize(30)" locale:"install.admin_name"`
  48. AdminPasswd string `binding:"OmitEmpty;MaxSize(255)" locale:"install.admin_password"`
  49. AdminConfirmPasswd string
  50. AdminEmail string `binding:"OmitEmpty;MinSize(3);MaxSize(254);Include(@)" locale:"install.admin_email"`
  51. }
  52. // Validate validates the fields
  53. func (f *InstallForm) Validate(ctx *macaron.Context, errs binding.Errors) binding.Errors {
  54. return validate(errs, ctx.Data, f, ctx.Locale)
  55. }
  56. // _____ ____ _________________ ___
  57. // / _ \ | | \__ ___/ | \
  58. // / /_\ \| | / | | / ~ \
  59. // / | \ | / | | \ Y /
  60. // \____|__ /______/ |____| \___|_ /
  61. // \/ \/
  62. // RegisterForm form for registering
  63. type RegisterForm struct {
  64. UserName string `binding:"Required;AlphaDashDot;MaxSize(35)"`
  65. Email string `binding:"Required;Email;MaxSize(254)"`
  66. Password string `binding:"Required;MaxSize(255)"`
  67. Retype string
  68. GRecaptchaResponse string `form:"g-recaptcha-response"`
  69. }
  70. // Validate valideates the fields
  71. func (f *RegisterForm) Validate(ctx *macaron.Context, errs binding.Errors) binding.Errors {
  72. return validate(errs, ctx.Data, f, ctx.Locale)
  73. }
  74. // SignInForm form for signing in with user/password
  75. type SignInForm struct {
  76. UserName string `binding:"Required;MaxSize(254)"`
  77. Password string `binding:"Required;MaxSize(255)"`
  78. Remember bool
  79. }
  80. // Validate valideates the fields
  81. func (f *SignInForm) Validate(ctx *macaron.Context, errs binding.Errors) binding.Errors {
  82. return validate(errs, ctx.Data, f, ctx.Locale)
  83. }
  84. // __________________________________________.___ _______ ________ _________
  85. // / _____/\_ _____/\__ ___/\__ ___/| |\ \ / _____/ / _____/
  86. // \_____ \ | __)_ | | | | | |/ | \/ \ ___ \_____ \
  87. // / \ | \ | | | | | / | \ \_\ \/ \
  88. // /_______ //_______ / |____| |____| |___\____|__ /\______ /_______ /
  89. // \/ \/ \/ \/ \/
  90. // UpdateProfileForm form for updating profile
  91. type UpdateProfileForm struct {
  92. Name string `binding:"AlphaDashDot;MaxSize(35)"`
  93. FullName string `binding:"MaxSize(100)"`
  94. Email string `binding:"Required;Email;MaxSize(254)"`
  95. KeepEmailPrivate bool
  96. Website string `binding:"ValidUrl;MaxSize(255)"`
  97. Location string `binding:"MaxSize(50)"`
  98. Language string `binding:"Size(5)"`
  99. }
  100. // Validate validates the fields
  101. func (f *UpdateProfileForm) Validate(ctx *macaron.Context, errs binding.Errors) binding.Errors {
  102. return validate(errs, ctx.Data, f, ctx.Locale)
  103. }
  104. // Avatar types
  105. const (
  106. AvatarLocal string = "local"
  107. AvatarByMail string = "bymail"
  108. )
  109. // AvatarForm form for changing avatar
  110. type AvatarForm struct {
  111. Source string
  112. Avatar *multipart.FileHeader
  113. Gravatar string `binding:"OmitEmpty;Email;MaxSize(254)"`
  114. Federavatar bool
  115. }
  116. // Validate validates the fields
  117. func (f *AvatarForm) Validate(ctx *macaron.Context, errs binding.Errors) binding.Errors {
  118. return validate(errs, ctx.Data, f, ctx.Locale)
  119. }
  120. // AddEmailForm form for adding new email
  121. type AddEmailForm struct {
  122. Email string `binding:"Required;Email;MaxSize(254)"`
  123. }
  124. // Validate validates the fields
  125. func (f *AddEmailForm) Validate(ctx *macaron.Context, errs binding.Errors) binding.Errors {
  126. return validate(errs, ctx.Data, f, ctx.Locale)
  127. }
  128. // ChangePasswordForm form for changing password
  129. type ChangePasswordForm struct {
  130. OldPassword string `form:"old_password" binding:"MaxSize(255)"`
  131. Password string `form:"password" binding:"Required;MaxSize(255)"`
  132. Retype string `form:"retype"`
  133. }
  134. // Validate validates the fields
  135. func (f *ChangePasswordForm) Validate(ctx *macaron.Context, errs binding.Errors) binding.Errors {
  136. return validate(errs, ctx.Data, f, ctx.Locale)
  137. }
  138. // AddOpenIDForm is for changing openid uri
  139. type AddOpenIDForm struct {
  140. Openid string `binding:"Required;MaxSize(256)"`
  141. }
  142. // Validate validates the fields
  143. func (f *AddOpenIDForm) Validate(ctx *macaron.Context, errs binding.Errors) binding.Errors {
  144. return validate(errs, ctx.Data, f, ctx.Locale)
  145. }
  146. // AddKeyForm form for adding SSH/GPG key
  147. type AddKeyForm struct {
  148. Type string `binding:"OmitEmpty"`
  149. Title string `binding:"Required;MaxSize(50)"`
  150. Content string `binding:"Required"`
  151. IsWritable bool
  152. }
  153. // Validate validates the fields
  154. func (f *AddKeyForm) Validate(ctx *macaron.Context, errs binding.Errors) binding.Errors {
  155. return validate(errs, ctx.Data, f, ctx.Locale)
  156. }
  157. // NewAccessTokenForm form for creating access token
  158. type NewAccessTokenForm struct {
  159. Name string `binding:"Required;MaxSize(255)"`
  160. }
  161. // Validate valideates the fields
  162. func (f *NewAccessTokenForm) Validate(ctx *macaron.Context, errs binding.Errors) binding.Errors {
  163. return validate(errs, ctx.Data, f, ctx.Locale)
  164. }
  165. // TwoFactorAuthForm for logging in with 2FA token.
  166. type TwoFactorAuthForm struct {
  167. Passcode string `binding:"Required"`
  168. }
  169. // Validate validates the fields
  170. func (f *TwoFactorAuthForm) Validate(ctx *macaron.Context, errs binding.Errors) binding.Errors {
  171. return validate(errs, ctx.Data, f, ctx.Locale)
  172. }
  173. // TwoFactorScratchAuthForm for logging in with 2FA scratch token.
  174. type TwoFactorScratchAuthForm struct {
  175. Token string `binding:"Required"`
  176. }
  177. // Validate valideates the fields
  178. func (f *TwoFactorScratchAuthForm) Validate(ctx *macaron.Context, errs binding.Errors) binding.Errors {
  179. return validate(errs, ctx.Data, f, ctx.Locale)
  180. }
  181. // U2FRegistrationForm for reserving an U2F name
  182. type U2FRegistrationForm struct {
  183. Name string `binding:"Required"`
  184. }
  185. // Validate valideates the fields
  186. func (f *U2FRegistrationForm) Validate(ctx *macaron.Context, errs binding.Errors) binding.Errors {
  187. return validate(errs, ctx.Data, f, ctx.Locale)
  188. }
  189. // U2FDeleteForm for deleting U2F keys
  190. type U2FDeleteForm struct {
  191. ID int64 `binding:"Required"`
  192. }
  193. // Validate valideates the fields
  194. func (f *U2FDeleteForm) Validate(ctx *macaron.Context, errs binding.Errors) binding.Errors {
  195. return validate(errs, ctx.Data, f, ctx.Locale)
  196. }