auth.go 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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 form
  5. import (
  6. "github.com/go-macaron/binding"
  7. "gopkg.in/macaron.v1"
  8. )
  9. type Authentication struct {
  10. ID int64
  11. Type int `binding:"Range(2,5)"`
  12. Name string `binding:"Required;MaxSize(30)"`
  13. Host string
  14. Port int
  15. BindDN string
  16. BindPassword string
  17. UserBase string
  18. UserDN string
  19. AttributeUsername string
  20. AttributeName string
  21. AttributeSurname string
  22. AttributeMail string
  23. AttributesInBind bool
  24. Filter string
  25. AdminFilter string
  26. GroupEnabled bool
  27. GroupDN string
  28. GroupFilter string
  29. GroupMemberUID string
  30. UserUID string
  31. IsActive bool
  32. SMTPAuth string
  33. SMTPHost string
  34. SMTPPort int
  35. AllowedDomains string
  36. SecurityProtocol int `binding:"Range(0,2)"`
  37. TLS bool
  38. SkipVerify bool
  39. PAMServiceName string
  40. }
  41. func (f *Authentication) Validate(ctx *macaron.Context, errs binding.Errors) binding.Errors {
  42. return validate(errs, ctx.Data, f, ctx.Locale)
  43. }