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.

issue.go 1.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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/binding"
  10. "github.com/gogits/gogs/modules/base"
  11. "github.com/gogits/gogs/modules/log"
  12. )
  13. type CreateIssueForm struct {
  14. IssueName string `form:"title" binding:"Required;MaxSize(50)"`
  15. MilestoneId int64 `form:"milestoneid"`
  16. AssigneeId int64 `form:"assigneeid"`
  17. Labels string `form:"labels"`
  18. Content string `form:"content"`
  19. }
  20. func (f *CreateIssueForm) Name(field string) string {
  21. names := map[string]string{
  22. "IssueName": "Issue name",
  23. }
  24. return names[field]
  25. }
  26. func (f *CreateIssueForm) Validate(errors *binding.Errors, req *http.Request, context martini.Context) {
  27. if req.Method == "GET" || errors.Count() == 0 {
  28. return
  29. }
  30. data := context.Get(reflect.TypeOf(base.TmplData{})).Interface().(base.TmplData)
  31. data["HasError"] = true
  32. AssignForm(f, data)
  33. if len(errors.Overall) > 0 {
  34. for _, err := range errors.Overall {
  35. log.Error("CreateIssueForm.Validate: %v", err)
  36. }
  37. return
  38. }
  39. validate(errors, data, f)
  40. }