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.

notifier.go 2.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. // Copyright 2018 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 base
  5. import (
  6. "code.gitea.io/gitea/models"
  7. "code.gitea.io/gitea/modules/git"
  8. )
  9. // Notifier defines an interface to notify receiver
  10. type Notifier interface {
  11. Run()
  12. NotifyCreateRepository(doer *models.User, u *models.User, repo *models.Repository)
  13. NotifyMigrateRepository(doer *models.User, u *models.User, repo *models.Repository)
  14. NotifyDeleteRepository(doer *models.User, repo *models.Repository)
  15. NotifyForkRepository(doer *models.User, oldRepo, repo *models.Repository)
  16. NotifyNewIssue(*models.Issue)
  17. NotifyIssueChangeStatus(*models.User, *models.Issue, bool)
  18. NotifyIssueChangeMilestone(doer *models.User, issue *models.Issue, oldMilestoneID int64)
  19. NotifyIssueChangeAssignee(doer *models.User, issue *models.Issue, assignee *models.User, removed bool, comment *models.Comment)
  20. NotifyIssueChangeContent(doer *models.User, issue *models.Issue, oldContent string)
  21. NotifyIssueClearLabels(doer *models.User, issue *models.Issue)
  22. NotifyIssueChangeTitle(doer *models.User, issue *models.Issue, oldTitle string)
  23. NotifyIssueChangeLabels(doer *models.User, issue *models.Issue,
  24. addedLabels []*models.Label, removedLabels []*models.Label)
  25. NotifyNewPullRequest(*models.PullRequest)
  26. NotifyMergePullRequest(*models.PullRequest, *models.User, *git.Repository)
  27. NotifyPullRequestSynchronized(doer *models.User, pr *models.PullRequest)
  28. NotifyPullRequestReview(*models.PullRequest, *models.Review, *models.Comment)
  29. NotifyCreateIssueComment(*models.User, *models.Repository,
  30. *models.Issue, *models.Comment)
  31. NotifyUpdateComment(*models.User, *models.Comment, string)
  32. NotifyDeleteComment(*models.User, *models.Comment)
  33. NotifyNewRelease(rel *models.Release)
  34. NotifyUpdateRelease(doer *models.User, rel *models.Release)
  35. NotifyDeleteRelease(doer *models.User, rel *models.Release)
  36. NotifyPushCommits(pusher *models.User, repo *models.Repository, refName, oldCommitID, newCommitID string, commits *models.PushCommits)
  37. NotifyCreateRef(doer *models.User, repo *models.Repository, refType, refFullName string)
  38. NotifyDeleteRef(doer *models.User, repo *models.Repository, refType, refFullName string)
  39. }