base

package
v1.13.1 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Dec 28, 2020 License: MIT Imports: 2 Imported by: 0

Documentation

Index

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(*models.Issue)
	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(*models.PullRequest)
	NotifyMergePullRequest(*models.PullRequest, *models.User)
	NotifyPullRequestSynchronized(doer *models.User, pr *models.PullRequest)
	NotifyPullRequestReview(*models.PullRequest, *models.Review, *models.Comment)
	NotifyPullRequestChangeTargetBranch(doer *models.User, pr *models.PullRequest, oldBranch string)
	NotifyPullRequestPushCommits(doer *models.User, pr *models.PullRequest, comment *models.Comment)

	NotifyCreateIssueComment(*models.User, *models.Repository,
		*models.Issue, *models.Comment)
	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, refName, oldCommitID, newCommitID string, 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, refName, oldCommitID, newCommitID string, commits *repository.PushCommits)
	NotifySyncCreateRef(doer *models.User, repo *models.Repository, refType, refFullName string)
	NotifySyncDeleteRef(doer *models.User, repo *models.Repository, refType, refFullName string)
}

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)

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

func (*NullNotifier) NotifyIssueChangeRef(doer *models.User, issue *models.Issue, oldTitle string)

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)

NotifyNewIssue places a place holder function

func (*NullNotifier) NotifyNewPullRequest added in v1.8.0

func (*NullNotifier) NotifyNewPullRequest(pr *models.PullRequest)

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) 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)

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) NotifyPushCommits added in v1.11.0

func (*NullNotifier) NotifyPushCommits(pusher *models.User, repo *models.Repository, refName, oldCommitID, newCommitID string, 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) 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, refName, oldCommitID, newCommitID string, 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

func (*NullNotifier) NotifyUpdateComment(doer *models.User, c *models.Comment, oldContent string)

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

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL