auth.go 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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,6)"`
  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. IsDefault bool
  33. SMTPAuth string
  34. SMTPHost string
  35. SMTPPort int
  36. AllowedDomains string
  37. SecurityProtocol int `binding:"Range(0,2)"`
  38. TLS bool
  39. SkipVerify bool
  40. PAMServiceName string
  41. GitHubAPIEndpoint string `form:"github_api_endpoint" binding:"Url"`
  42. }
  43. func (f *Authentication) Validate(ctx *macaron.Context, errs binding.Errors) binding.Errors {
  44. return validate(errs, ctx.Data, f, ctx.Locale)
  45. }