Documentation ¶
Index ¶
- func AddAssigneeIfNotAssigned(ctx context.Context, issue *issues_model.Issue, doer *user_model.User, ...) (err error)
- func AddLabel(issue *issues_model.Issue, doer *user_model.User, label *issues_model.Label) error
- func AddLabels(issue *issues_model.Issue, doer *user_model.User, labels []*issues_model.Label) error
- func ChangeContent(issue *issues_model.Issue, doer *user_model.User, content string) (err error)
- func ChangeIssueRef(ctx context.Context, issue *issues_model.Issue, doer *user_model.User, ...) error
- func ChangeMilestoneAssign(issue *issues_model.Issue, doer *user_model.User, oldMilestoneID int64) (err error)
- func ChangeStatus(issue *issues_model.Issue, doer *user_model.User, commitID string, closed bool) error
- func ChangeTitle(ctx context.Context, issue *issues_model.Issue, doer *user_model.User, ...) (err error)
- func ClearLabels(issue *issues_model.Issue, doer *user_model.User) (err error)
- func CreateComment(ctx context.Context, opts *issues_model.CreateCommentOptions) (comment *issues_model.Comment, err error)
- func CreateIssueComment(ctx context.Context, doer *user_model.User, repo *repo_model.Repository, ...) (*issues_model.Comment, error)
- func CreateRefComment(doer *user_model.User, repo *repo_model.Repository, issue *issues_model.Issue, ...) error
- func DeleteComment(ctx context.Context, doer *user_model.User, comment *issues_model.Comment) error
- func DeleteIssue(ctx context.Context, doer *user_model.User, gitRepo *git.Repository, ...) error
- func DeleteNotPassedAssignee(ctx context.Context, issue *issues_model.Issue, doer *user_model.User, ...) (err error)
- func GetDefaultTemplateConfig() api.IssueConfig
- func GetRefEndNamesAndURLs(issues []*issues_model.Issue, repoLink string) (map[int64]string, map[int64]string)
- func GetTemplateConfig(gitRepo *git.Repository, path string, commit *git.Commit) (api.IssueConfig, error)
- func GetTemplateConfigFromDefaultBranch(repo *repo.Repository, gitRepo *git.Repository) (api.IssueConfig, error)
- func GetTemplatesFromDefaultBranch(repo *repo.Repository, gitRepo *git.Repository) ([]*api.IssueTemplate, map[string]error)
- func HasTemplatesOrContactLinks(repo *repo.Repository, gitRepo *git.Repository) bool
- func IsTemplateConfig(path string) bool
- func IsValidReviewRequest(ctx context.Context, reviewer, doer *user_model.User, isAdd bool, ...) error
- func IsValidTeamReviewRequest(ctx context.Context, reviewer *organization.Team, doer *user_model.User, ...) error
- func NewIssue(ctx context.Context, repo *repo_model.Repository, issue *issues_model.Issue, ...) error
- func RemoveLabel(issue *issues_model.Issue, doer *user_model.User, label *issues_model.Label) error
- func ReplaceLabels(issue *issues_model.Issue, doer *user_model.User, labels []*issues_model.Label) error
- func ReviewRequest(ctx context.Context, issue *issues_model.Issue, ...) (comment *issues_model.Comment, err error)
- func TeamReviewRequest(ctx context.Context, issue *issues_model.Issue, doer *user_model.User, ...) (comment *issues_model.Comment, err error)
- func ToggleAssignee(ctx context.Context, issue *issues_model.Issue, doer *user_model.User, ...) (removed bool, comment *issues_model.Comment, err error)
- func UpdateAssignees(ctx context.Context, issue *issues_model.Issue, oneAssignee string, ...) (err error)
- func UpdateComment(ctx context.Context, c *issues_model.Comment, doer *user_model.User, ...) error
- func UpdateIssuesCommit(doer *user_model.User, repo *repo_model.Repository, ...) error
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func AddAssigneeIfNotAssigned ¶ added in v1.11.0
func AddAssigneeIfNotAssigned(ctx context.Context, issue *issues_model.Issue, doer *user_model.User, assigneeID int64) (err error)
AddAssigneeIfNotAssigned adds an assignee only if he isn't already assigned to the issue. Also checks for access of assigned user
func AddLabel ¶ added in v1.11.0
func AddLabel(issue *issues_model.Issue, doer *user_model.User, label *issues_model.Label) error
AddLabel adds a new label to the issue.
func AddLabels ¶ added in v1.11.0
func AddLabels(issue *issues_model.Issue, doer *user_model.User, labels []*issues_model.Label) error
AddLabels adds a list of new labels to the issue.
func ChangeContent ¶ added in v1.11.0
func ChangeContent(issue *issues_model.Issue, doer *user_model.User, content string) (err error)
ChangeContent changes issue content, as the given user.
func ChangeIssueRef ¶ added in v1.13.0
func ChangeIssueRef(ctx context.Context, issue *issues_model.Issue, doer *user_model.User, ref string) error
ChangeIssueRef changes the branch of this issue, as the given user.
func ChangeMilestoneAssign ¶ added in v1.11.0
func ChangeMilestoneAssign(issue *issues_model.Issue, doer *user_model.User, oldMilestoneID int64) (err error)
ChangeMilestoneAssign changes assignment of milestone for issue.
func ChangeStatus ¶ added in v1.11.0
func ChangeStatus(issue *issues_model.Issue, doer *user_model.User, commitID string, closed bool) error
ChangeStatus changes issue status to open or closed.
func ChangeTitle ¶
func ChangeTitle(ctx context.Context, issue *issues_model.Issue, doer *user_model.User, title string) (err error)
ChangeTitle changes the title of this issue, as the given user.
func ClearLabels ¶ added in v1.11.0
func ClearLabels(issue *issues_model.Issue, doer *user_model.User) (err error)
ClearLabels clears all of an issue's labels
func CreateComment ¶ added in v1.17.4
func CreateComment(ctx context.Context, opts *issues_model.CreateCommentOptions) (comment *issues_model.Comment, err error)
CreateComment creates comment of issue or commit.
func CreateIssueComment ¶ added in v1.17.4
func CreateIssueComment(ctx context.Context, doer *user_model.User, repo *repo_model.Repository, issue *issues_model.Issue, content string, attachments []string) (*issues_model.Comment, error)
CreateIssueComment creates a plain issue comment.
func CreateRefComment ¶ added in v1.17.4
func CreateRefComment(doer *user_model.User, repo *repo_model.Repository, issue *issues_model.Issue, content, commitSHA string) error
CreateRefComment creates a commit reference comment to issue.
func DeleteComment ¶ added in v1.17.4
func DeleteComment(ctx context.Context, doer *user_model.User, comment *issues_model.Comment) error
DeleteComment deletes the comment
func DeleteIssue ¶ added in v1.17.0
func DeleteIssue(ctx context.Context, doer *user_model.User, gitRepo *git.Repository, issue *issues_model.Issue) error
DeleteIssue deletes an issue
func DeleteNotPassedAssignee ¶ added in v1.11.0
func DeleteNotPassedAssignee(ctx context.Context, issue *issues_model.Issue, doer *user_model.User, assignees []*user_model.User) (err error)
DeleteNotPassedAssignee deletes all assignees who aren't passed via the "assignees" array
func GetDefaultTemplateConfig ¶ added in v1.20.0
func GetDefaultTemplateConfig() api.IssueConfig
func GetRefEndNamesAndURLs ¶ added in v1.12.0
func GetRefEndNamesAndURLs(issues []*issues_model.Issue, repoLink string) (map[int64]string, map[int64]string)
GetRefEndNamesAndURLs retrieves the ref end names (e.g. refs/heads/branch-name -> branch-name) and their respective URLs.
func GetTemplateConfig ¶ added in v1.20.0
func GetTemplateConfig(gitRepo *git.Repository, path string, commit *git.Commit) (api.IssueConfig, error)
GetTemplateConfig loads the given issue config file. It never returns a nil config.
func GetTemplateConfigFromDefaultBranch ¶ added in v1.20.0
func GetTemplateConfigFromDefaultBranch(repo *repo.Repository, gitRepo *git.Repository) (api.IssueConfig, error)
GetTemplateConfigFromDefaultBranch returns the issue config for this repo. It never returns a nil config.
func GetTemplatesFromDefaultBranch ¶ added in v1.20.0
func GetTemplatesFromDefaultBranch(repo *repo.Repository, gitRepo *git.Repository) ([]*api.IssueTemplate, map[string]error)
GetTemplatesFromDefaultBranch checks for issue templates in the repo's default branch, returns valid templates and the errors of invalid template files.
func HasTemplatesOrContactLinks ¶ added in v1.20.0
func HasTemplatesOrContactLinks(repo *repo.Repository, gitRepo *git.Repository) bool
func IsTemplateConfig ¶ added in v1.20.0
IsTemplateConfig returns if the given path is a issue config file.
func IsValidReviewRequest ¶ added in v1.14.0
func IsValidReviewRequest(ctx context.Context, reviewer, doer *user_model.User, isAdd bool, issue *issues_model.Issue, permDoer *access_model.Permission) error
IsValidReviewRequest Check permission for ReviewRequest
func IsValidTeamReviewRequest ¶ added in v1.14.0
func IsValidTeamReviewRequest(ctx context.Context, reviewer *organization.Team, doer *user_model.User, isAdd bool, issue *issues_model.Issue) error
IsValidTeamReviewRequest Check permission for ReviewRequest Team
func NewIssue ¶
func NewIssue(ctx context.Context, repo *repo_model.Repository, issue *issues_model.Issue, labelIDs []int64, uuids []string, assigneeIDs []int64) error
NewIssue creates new issue with labels for repository.
func RemoveLabel ¶ added in v1.11.0
func RemoveLabel(issue *issues_model.Issue, doer *user_model.User, label *issues_model.Label) error
RemoveLabel removes a label from issue by given ID.
func ReplaceLabels ¶ added in v1.11.2
func ReplaceLabels(issue *issues_model.Issue, doer *user_model.User, labels []*issues_model.Label) error
ReplaceLabels removes all current labels and add new labels to the issue.
func ReviewRequest ¶ added in v1.12.0
func ReviewRequest(ctx context.Context, issue *issues_model.Issue, doer, reviewer *user_model.User, isAdd bool) (comment *issues_model.Comment, err error)
ReviewRequest add or remove a review request from a user for this PR, and make comment for it.
func TeamReviewRequest ¶ added in v1.13.0
func TeamReviewRequest(ctx context.Context, issue *issues_model.Issue, doer *user_model.User, reviewer *organization.Team, isAdd bool) (comment *issues_model.Comment, err error)
TeamReviewRequest add or remove a review request from a team for this PR, and make comment for it.
func ToggleAssignee ¶ added in v1.11.0
func ToggleAssignee(ctx context.Context, issue *issues_model.Issue, doer *user_model.User, assigneeID int64) (removed bool, comment *issues_model.Comment, err error)
ToggleAssignee changes a user between assigned and not assigned for this issue, and make issue comment for it.
func UpdateAssignees ¶ added in v1.11.0
func UpdateAssignees(ctx context.Context, issue *issues_model.Issue, oneAssignee string, multipleAssignees []string, doer *user_model.User) (err error)
UpdateAssignees is a helper function to add or delete one or multiple issue assignee(s) Deleting is done the GitHub way (quote from their api documentation): https://developer.github.com/v3/issues/#edit-an-issue "assignees" (array): Logins for Users to assign to this issue. Pass one or more user logins to replace the set of assignees on this Issue. Send an empty array ([]) to clear all assignees from the Issue.
func UpdateComment ¶ added in v1.17.4
func UpdateComment(ctx context.Context, c *issues_model.Comment, doer *user_model.User, oldContent string) error
UpdateComment updates information of comment.
func UpdateIssuesCommit ¶ added in v1.15.7
func UpdateIssuesCommit(doer *user_model.User, repo *repo_model.Repository, commits []*repository.PushCommit, branchName string) error
UpdateIssuesCommit checks if issues are manipulated by commit message.
Types ¶
This section is empty.