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.

milestone.go 1.6KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. // Copyright 2019 The Gitea 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 models
  5. import (
  6. "code.gitea.io/gitea/models"
  7. "code.gitea.io/gitea/modules/log"
  8. api "code.gitea.io/gitea/modules/structs"
  9. )
  10. // ChangeMilestoneAssign changes assignment of milestone for issue.
  11. func ChangeMilestoneAssign(issue *models.Issue, doer *models.User, oldMilestoneID int64) (err error) {
  12. if err = models.ChangeMilestoneAssign(issue, doer, oldMilestoneID); err != nil {
  13. return
  14. }
  15. var hookAction api.HookIssueAction
  16. if issue.MilestoneID > 0 {
  17. hookAction = api.HookIssueMilestoned
  18. } else {
  19. hookAction = api.HookIssueDemilestoned
  20. }
  21. if err = issue.LoadAttributes(); err != nil {
  22. return err
  23. }
  24. mode, _ := models.AccessLevel(doer, issue.Repo)
  25. if issue.IsPull {
  26. err = issue.PullRequest.LoadIssue()
  27. if err != nil {
  28. log.Error("LoadIssue: %v", err)
  29. return
  30. }
  31. err = models.PrepareWebhooks(issue.Repo, models.HookEventPullRequest, &api.PullRequestPayload{
  32. Action: hookAction,
  33. Index: issue.Index,
  34. PullRequest: issue.PullRequest.APIFormat(),
  35. Repository: issue.Repo.APIFormat(mode),
  36. Sender: doer.APIFormat(),
  37. })
  38. } else {
  39. err = models.PrepareWebhooks(issue.Repo, models.HookEventIssues, &api.IssuePayload{
  40. Action: hookAction,
  41. Index: issue.Index,
  42. Issue: issue.APIFormat(),
  43. Repository: issue.Repo.APIFormat(mode),
  44. Sender: doer.APIFormat(),
  45. })
  46. }
  47. if err != nil {
  48. log.Error("PrepareWebhooks [is_pull: %v]: %v", issue.IsPull, err)
  49. } else {
  50. go models.HookQueue.Add(issue.RepoID)
  51. }
  52. return nil
  53. }