Documentation ¶
Index ¶
- type Notifier
- type NullNotifier
- func (*NullNotifier) NotifyCreateIssueComment(doer *models.User, repo *models.Repository, issue *models.Issue, ...)
- func (*NullNotifier) NotifyCreateRef(doer *models.User, repo *models.Repository, refType, refFullName string)
- func (*NullNotifier) NotifyCreateRepository(doer *models.User, u *models.User, repo *models.Repository)
- func (*NullNotifier) NotifyDeleteComment(doer *models.User, c *models.Comment)
- func (*NullNotifier) NotifyDeleteRef(doer *models.User, repo *models.Repository, refType, refFullName string)
- func (*NullNotifier) NotifyDeleteRelease(doer *models.User, rel *models.Release)
- func (*NullNotifier) NotifyDeleteRepository(doer *models.User, repo *models.Repository)
- func (*NullNotifier) NotifyForkRepository(doer *models.User, oldRepo, repo *models.Repository)
- func (*NullNotifier) NotifyIssueChangeAssignee(doer *models.User, issue *models.Issue, assignee *models.User, removed bool, ...)
- func (*NullNotifier) NotifyIssueChangeContent(doer *models.User, issue *models.Issue, oldContent string)
- func (*NullNotifier) NotifyIssueChangeLabels(doer *models.User, issue *models.Issue, addedLabels []*models.Label, ...)
- func (*NullNotifier) NotifyIssueChangeMilestone(doer *models.User, issue *models.Issue, oldMilestoneID int64)
- func (*NullNotifier) NotifyIssueChangeRef(doer *models.User, issue *models.Issue, oldTitle string)
- func (*NullNotifier) NotifyIssueChangeStatus(doer *models.User, issue *models.Issue, actionComment *models.Comment, ...)
- func (*NullNotifier) NotifyIssueChangeTitle(doer *models.User, issue *models.Issue, oldTitle string)
- func (*NullNotifier) NotifyIssueClearLabels(doer *models.User, issue *models.Issue)
- func (*NullNotifier) NotifyMergePullRequest(pr *models.PullRequest, doer *models.User)
- func (*NullNotifier) NotifyMigrateRepository(doer *models.User, u *models.User, repo *models.Repository)
- func (*NullNotifier) NotifyNewIssue(issue *models.Issue, mentions []*models.User)
- func (*NullNotifier) NotifyNewPullRequest(pr *models.PullRequest, mentions []*models.User)
- func (*NullNotifier) NotifyNewRelease(rel *models.Release)
- func (*NullNotifier) NotifyPullRequestChangeTargetBranch(doer *models.User, pr *models.PullRequest, oldBranch string)
- func (*NullNotifier) NotifyPullRequestCodeComment(pr *models.PullRequest, comment *models.Comment, mentions []*models.User)
- func (*NullNotifier) NotifyPullRequestPushCommits(doer *models.User, pr *models.PullRequest, comment *models.Comment)
- func (*NullNotifier) NotifyPullRequestReview(pr *models.PullRequest, r *models.Review, comment *models.Comment, ...)
- func (*NullNotifier) NotifyPullRequestSynchronized(doer *models.User, pr *models.PullRequest)
- func (*NullNotifier) NotifyPullReviewRequest(doer *models.User, issue *models.Issue, reviewer *models.User, isRequest bool, ...)
- func (*NullNotifier) NotifyPullRevieweDismiss(doer *models.User, review *models.Review, comment *models.Comment)
- func (*NullNotifier) NotifyPushCommits(pusher *models.User, repo *models.Repository, ...)
- func (*NullNotifier) NotifyRenameRepository(doer *models.User, repo *models.Repository, oldRepoName string)
- func (*NullNotifier) NotifyRepoPendingTransfer(doer, newOwner *models.User, repo *models.Repository)
- func (*NullNotifier) NotifySyncCreateRef(doer *models.User, repo *models.Repository, refType, refFullName string)
- func (*NullNotifier) NotifySyncDeleteRef(doer *models.User, repo *models.Repository, refType, refFullName string)
- func (*NullNotifier) NotifySyncPushCommits(pusher *models.User, repo *models.Repository, ...)
- func (*NullNotifier) NotifyTransferRepository(doer *models.User, repo *models.Repository, oldOwnerName string)
- func (*NullNotifier) NotifyUpdateComment(doer *models.User, c *models.Comment, oldContent string)
- func (*NullNotifier) NotifyUpdateRelease(doer *models.User, rel *models.Release)
- func (*NullNotifier) Run()
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Notifier ¶
type Notifier interface { Run() NotifyCreateRepository(doer *models.User, u *models.User, repo *models.Repository) NotifyMigrateRepository(doer *models.User, u *models.User, repo *models.Repository) NotifyDeleteRepository(doer *models.User, repo *models.Repository) NotifyForkRepository(doer *models.User, oldRepo, repo *models.Repository) NotifyRenameRepository(doer *models.User, repo *models.Repository, oldRepoName string) NotifyTransferRepository(doer *models.User, repo *models.Repository, oldOwnerName string) NotifyNewIssue(issue *models.Issue, mentions []*models.User) NotifyIssueChangeStatus(*models.User, *models.Issue, *models.Comment, bool) NotifyIssueChangeMilestone(doer *models.User, issue *models.Issue, oldMilestoneID int64) NotifyIssueChangeAssignee(doer *models.User, issue *models.Issue, assignee *models.User, removed bool, comment *models.Comment) NotifyPullReviewRequest(doer *models.User, issue *models.Issue, reviewer *models.User, isRequest bool, comment *models.Comment) NotifyIssueChangeContent(doer *models.User, issue *models.Issue, oldContent string) NotifyIssueClearLabels(doer *models.User, issue *models.Issue) NotifyIssueChangeTitle(doer *models.User, issue *models.Issue, oldTitle string) NotifyIssueChangeRef(doer *models.User, issue *models.Issue, oldRef string) NotifyIssueChangeLabels(doer *models.User, issue *models.Issue, addedLabels []*models.Label, removedLabels []*models.Label) NotifyNewPullRequest(pr *models.PullRequest, mentions []*models.User) NotifyMergePullRequest(*models.PullRequest, *models.User) NotifyPullRequestSynchronized(doer *models.User, pr *models.PullRequest) NotifyPullRequestReview(pr *models.PullRequest, review *models.Review, comment *models.Comment, mentions []*models.User) NotifyPullRequestCodeComment(pr *models.PullRequest, comment *models.Comment, mentions []*models.User) NotifyPullRequestChangeTargetBranch(doer *models.User, pr *models.PullRequest, oldBranch string) NotifyPullRequestPushCommits(doer *models.User, pr *models.PullRequest, comment *models.Comment) NotifyPullRevieweDismiss(doer *models.User, review *models.Review, comment *models.Comment) NotifyCreateIssueComment(doer *models.User, repo *models.Repository, issue *models.Issue, comment *models.Comment, mentions []*models.User) NotifyUpdateComment(*models.User, *models.Comment, string) NotifyDeleteComment(*models.User, *models.Comment) NotifyNewRelease(rel *models.Release) NotifyUpdateRelease(doer *models.User, rel *models.Release) NotifyDeleteRelease(doer *models.User, rel *models.Release) NotifyPushCommits(pusher *models.User, repo *models.Repository, opts *repository.PushUpdateOptions, commits *repository.PushCommits) NotifyCreateRef(doer *models.User, repo *models.Repository, refType, refFullName string) NotifyDeleteRef(doer *models.User, repo *models.Repository, refType, refFullName string) NotifySyncPushCommits(pusher *models.User, repo *models.Repository, opts *repository.PushUpdateOptions, commits *repository.PushCommits) NotifySyncCreateRef(doer *models.User, repo *models.Repository, refType, refFullName string) NotifySyncDeleteRef(doer *models.User, repo *models.Repository, refType, refFullName string) NotifyRepoPendingTransfer(doer, newOwner *models.User, repo *models.Repository) }
Notifier defines an interface to notify receiver
type NullNotifier ¶ added in v1.8.0
type NullNotifier struct { }
NullNotifier implements a blank notifier
func (*NullNotifier) NotifyCreateIssueComment ¶ added in v1.8.0
func (*NullNotifier) NotifyCreateIssueComment(doer *models.User, repo *models.Repository, issue *models.Issue, comment *models.Comment, mentions []*models.User)
NotifyCreateIssueComment places a place holder function
func (*NullNotifier) NotifyCreateRef ¶ added in v1.11.0
func (*NullNotifier) NotifyCreateRef(doer *models.User, repo *models.Repository, refType, refFullName string)
NotifyCreateRef notifies branch or tag creation to notifiers
func (*NullNotifier) NotifyCreateRepository ¶ added in v1.8.0
func (*NullNotifier) NotifyCreateRepository(doer *models.User, u *models.User, repo *models.Repository)
NotifyCreateRepository places a place holder function
func (*NullNotifier) NotifyDeleteComment ¶ added in v1.8.0
func (*NullNotifier) NotifyDeleteComment(doer *models.User, c *models.Comment)
NotifyDeleteComment places a place holder function
func (*NullNotifier) NotifyDeleteRef ¶ added in v1.11.0
func (*NullNotifier) NotifyDeleteRef(doer *models.User, repo *models.Repository, refType, refFullName string)
NotifyDeleteRef notifies branch or tag deleteion to notifiers
func (*NullNotifier) NotifyDeleteRelease ¶ added in v1.8.0
func (*NullNotifier) NotifyDeleteRelease(doer *models.User, rel *models.Release)
NotifyDeleteRelease places a place holder function
func (*NullNotifier) NotifyDeleteRepository ¶ added in v1.8.0
func (*NullNotifier) NotifyDeleteRepository(doer *models.User, repo *models.Repository)
NotifyDeleteRepository places a place holder function
func (*NullNotifier) NotifyForkRepository ¶ added in v1.8.0
func (*NullNotifier) NotifyForkRepository(doer *models.User, oldRepo, repo *models.Repository)
NotifyForkRepository places a place holder function
func (*NullNotifier) NotifyIssueChangeAssignee ¶ added in v1.8.0
func (*NullNotifier) NotifyIssueChangeAssignee(doer *models.User, issue *models.Issue, assignee *models.User, removed bool, comment *models.Comment)
NotifyIssueChangeAssignee places a place holder function
func (*NullNotifier) NotifyIssueChangeContent ¶ added in v1.8.0
func (*NullNotifier) NotifyIssueChangeContent(doer *models.User, issue *models.Issue, oldContent string)
NotifyIssueChangeContent places a place holder function
func (*NullNotifier) NotifyIssueChangeLabels ¶ added in v1.8.0
func (*NullNotifier) NotifyIssueChangeLabels(doer *models.User, issue *models.Issue, addedLabels []*models.Label, removedLabels []*models.Label)
NotifyIssueChangeLabels places a place holder function
func (*NullNotifier) NotifyIssueChangeMilestone ¶ added in v1.8.0
func (*NullNotifier) NotifyIssueChangeMilestone(doer *models.User, issue *models.Issue, oldMilestoneID int64)
NotifyIssueChangeMilestone places a place holder function
func (*NullNotifier) NotifyIssueChangeRef ¶ added in v1.13.0
NotifyIssueChangeRef places a place holder function
func (*NullNotifier) NotifyIssueChangeStatus ¶ added in v1.8.0
func (*NullNotifier) NotifyIssueChangeStatus(doer *models.User, issue *models.Issue, actionComment *models.Comment, isClosed bool)
NotifyIssueChangeStatus places a place holder function
func (*NullNotifier) NotifyIssueChangeTitle ¶ added in v1.8.0
func (*NullNotifier) NotifyIssueChangeTitle(doer *models.User, issue *models.Issue, oldTitle string)
NotifyIssueChangeTitle places a place holder function
func (*NullNotifier) NotifyIssueClearLabels ¶ added in v1.8.0
func (*NullNotifier) NotifyIssueClearLabels(doer *models.User, issue *models.Issue)
NotifyIssueClearLabels places a place holder function
func (*NullNotifier) NotifyMergePullRequest ¶ added in v1.8.0
func (*NullNotifier) NotifyMergePullRequest(pr *models.PullRequest, doer *models.User)
NotifyMergePullRequest places a place holder function
func (*NullNotifier) NotifyMigrateRepository ¶ added in v1.8.0
func (*NullNotifier) NotifyMigrateRepository(doer *models.User, u *models.User, repo *models.Repository)
NotifyMigrateRepository places a place holder function
func (*NullNotifier) NotifyNewIssue ¶ added in v1.8.0
func (*NullNotifier) NotifyNewIssue(issue *models.Issue, mentions []*models.User)
NotifyNewIssue places a place holder function
func (*NullNotifier) NotifyNewPullRequest ¶ added in v1.8.0
func (*NullNotifier) NotifyNewPullRequest(pr *models.PullRequest, mentions []*models.User)
NotifyNewPullRequest places a place holder function
func (*NullNotifier) NotifyNewRelease ¶ added in v1.8.0
func (*NullNotifier) NotifyNewRelease(rel *models.Release)
NotifyNewRelease places a place holder function
func (*NullNotifier) NotifyPullRequestChangeTargetBranch ¶ added in v1.11.0
func (*NullNotifier) NotifyPullRequestChangeTargetBranch(doer *models.User, pr *models.PullRequest, oldBranch string)
NotifyPullRequestChangeTargetBranch places a place holder function
func (*NullNotifier) NotifyPullRequestCodeComment ¶ added in v1.13.2
func (*NullNotifier) NotifyPullRequestCodeComment(pr *models.PullRequest, comment *models.Comment, mentions []*models.User)
NotifyPullRequestCodeComment places a place holder function
func (*NullNotifier) NotifyPullRequestPushCommits ¶ added in v1.13.0
func (*NullNotifier) NotifyPullRequestPushCommits(doer *models.User, pr *models.PullRequest, comment *models.Comment)
NotifyPullRequestPushCommits notifies when push commits to pull request's head branch
func (*NullNotifier) NotifyPullRequestReview ¶ added in v1.8.0
func (*NullNotifier) NotifyPullRequestReview(pr *models.PullRequest, r *models.Review, comment *models.Comment, mentions []*models.User)
NotifyPullRequestReview places a place holder function
func (*NullNotifier) NotifyPullRequestSynchronized ¶ added in v1.11.0
func (*NullNotifier) NotifyPullRequestSynchronized(doer *models.User, pr *models.PullRequest)
NotifyPullRequestSynchronized places a place holder function
func (*NullNotifier) NotifyPullReviewRequest ¶ added in v1.12.0
func (*NullNotifier) NotifyPullReviewRequest(doer *models.User, issue *models.Issue, reviewer *models.User, isRequest bool, comment *models.Comment)
NotifyPullReviewRequest places a place holder function
func (*NullNotifier) NotifyPullRevieweDismiss ¶ added in v1.14.0
func (*NullNotifier) NotifyPullRevieweDismiss(doer *models.User, review *models.Review, comment *models.Comment)
NotifyPullRevieweDismiss notifies when a review was dismissed by repo admin
func (*NullNotifier) NotifyPushCommits ¶ added in v1.11.0
func (*NullNotifier) NotifyPushCommits(pusher *models.User, repo *models.Repository, opts *repository.PushUpdateOptions, commits *repository.PushCommits)
NotifyPushCommits notifies commits pushed to notifiers
func (*NullNotifier) NotifyRenameRepository ¶ added in v1.11.0
func (*NullNotifier) NotifyRenameRepository(doer *models.User, repo *models.Repository, oldRepoName string)
NotifyRenameRepository places a place holder function
func (*NullNotifier) NotifyRepoPendingTransfer ¶ added in v1.14.0
func (*NullNotifier) NotifyRepoPendingTransfer(doer, newOwner *models.User, repo *models.Repository)
NotifyRepoPendingTransfer places a place holder function
func (*NullNotifier) NotifySyncCreateRef ¶ added in v1.11.0
func (*NullNotifier) NotifySyncCreateRef(doer *models.User, repo *models.Repository, refType, refFullName string)
NotifySyncCreateRef places a place holder function
func (*NullNotifier) NotifySyncDeleteRef ¶ added in v1.11.0
func (*NullNotifier) NotifySyncDeleteRef(doer *models.User, repo *models.Repository, refType, refFullName string)
NotifySyncDeleteRef places a place holder function
func (*NullNotifier) NotifySyncPushCommits ¶ added in v1.11.0
func (*NullNotifier) NotifySyncPushCommits(pusher *models.User, repo *models.Repository, opts *repository.PushUpdateOptions, commits *repository.PushCommits)
NotifySyncPushCommits places a place holder function
func (*NullNotifier) NotifyTransferRepository ¶ added in v1.11.0
func (*NullNotifier) NotifyTransferRepository(doer *models.User, repo *models.Repository, oldOwnerName string)
NotifyTransferRepository places a place holder function
func (*NullNotifier) NotifyUpdateComment ¶ added in v1.8.0
NotifyUpdateComment places a place holder function
func (*NullNotifier) NotifyUpdateRelease ¶ added in v1.8.0
func (*NullNotifier) NotifyUpdateRelease(doer *models.User, rel *models.Release)
NotifyUpdateRelease places a place holder function
func (*NullNotifier) Run ¶ added in v1.8.0
func (*NullNotifier) Run()
Run places a place holder function