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.

34 lines
1.2 KiB

  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. "github.com/Unknwon/macaron"
  7. "github.com/macaron-contrib/binding"
  8. )
  9. type AuthenticationForm struct {
  10. Id int64 `form:"id"`
  11. Type int `form:"type"`
  12. AuthName string `form:"name" binding:"Required;MaxSize(50)"`
  13. Domain string `form:"domain"`
  14. Host string `form:"host"`
  15. Port int `form:"port"`
  16. UseSSL bool `form:"usessl"`
  17. BaseDN string `form:"base_dn"`
  18. Attributes string `form:"attributes"`
  19. Filter string `form:"filter"`
  20. MsAdSA string `form:"ms_ad_sa"`
  21. IsActived bool `form:"is_actived"`
  22. SmtpAuth string `form:"smtpauth"`
  23. SmtpHost string `form:"smtphost"`
  24. SmtpPort int `form:"smtpport"`
  25. Tls bool `form:"tls"`
  26. AllowAutoRegister bool `form:"allowautoregister"`
  27. }
  28. func (f *AuthenticationForm) Validate(ctx *macaron.Context, errs binding.Errors) binding.Errors {
  29. return validate(errs, ctx.Data, f, ctx.Locale)
  30. }