base

package
v1.8.3 Latest Latest
Warning

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

Go to latest
Published: Jun 17, 2019 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)

	NotifyNewIssue(*models.Issue)
	NotifyIssueChangeStatus(*models.User, *models.Issue, bool)
	NotifyIssueChangeMilestone(doer *models.User, issue *models.Issue)
	NotifyIssueChangeAssignee(doer *models.User, issue *models.Issue, removed bool)
	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)
	NotifyIssueChangeLabels(doer *models.User, issue *models.Issue,
		addedLabels []*models.Label, removedLabels []*models.Label)

	NotifyNewPullRequest(*models.PullRequest)
	NotifyMergePullRequest(*models.PullRequest, *models.User, *git.Repository)
	NotifyPullRequestReview(*models.PullRequest, *models.Review, *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)
}

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) 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) 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, removed bool)

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)

NotifyIssueChangeMilestone places a place holder function

func (*NullNotifier) NotifyIssueChangeStatus added in v1.8.0

func (*NullNotifier) NotifyIssueChangeStatus(doer *models.User, issue *models.Issue, 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, baseRepo *git.Repository)

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