2019-09-30 13:50:44 +00:00
|
|
|
// Copyright 2019 The Gitea Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package issue
|
|
|
|
|
|
|
|
import (
|
|
|
|
"code.gitea.io/gitea/models"
|
2021-09-19 11:49:59 +00:00
|
|
|
"code.gitea.io/gitea/models/db"
|
2021-12-10 01:27:50 +00:00
|
|
|
repo_model "code.gitea.io/gitea/models/repo"
|
2021-11-24 09:49:20 +00:00
|
|
|
user_model "code.gitea.io/gitea/models/user"
|
2020-05-14 22:55:43 +00:00
|
|
|
"code.gitea.io/gitea/modules/git"
|
2019-10-25 14:46:37 +00:00
|
|
|
"code.gitea.io/gitea/modules/notification"
|
2020-05-14 22:55:43 +00:00
|
|
|
"code.gitea.io/gitea/modules/util"
|
2019-09-30 13:50:44 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// NewIssue creates new issue with labels for repository.
|
2021-12-10 01:27:50 +00:00
|
|
|
func NewIssue(repo *repo_model.Repository, issue *models.Issue, labelIDs []int64, uuids []string, assigneeIDs []int64) error {
|
2019-10-25 14:46:37 +00:00
|
|
|
if err := models.NewIssue(repo, issue, labelIDs, uuids); err != nil {
|
2019-09-30 13:50:44 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2019-10-28 16:45:43 +00:00
|
|
|
for _, assigneeID := range assigneeIDs {
|
|
|
|
if err := AddAssigneeIfNotAssigned(issue, issue.Poster, assigneeID); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-09-23 15:45:36 +00:00
|
|
|
mentions, err := issue.FindAndUpdateIssueMentions(db.DefaultContext, issue.Poster, issue.Content)
|
2021-01-02 17:04:02 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
notification.NotifyNewIssue(issue, mentions)
|
2021-01-17 14:15:57 +00:00
|
|
|
if len(issue.Labels) > 0 {
|
|
|
|
notification.NotifyIssueChangeLabels(issue.Poster, issue, issue.Labels, nil)
|
|
|
|
}
|
|
|
|
if issue.Milestone != nil {
|
|
|
|
notification.NotifyIssueChangeMilestone(issue.Poster, issue, 0)
|
|
|
|
}
|
2019-09-30 13:50:44 +00:00
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
2019-10-11 06:44:43 +00:00
|
|
|
|
|
|
|
// ChangeTitle changes the title of this issue, as the given user.
|
2021-11-24 09:49:20 +00:00
|
|
|
func ChangeTitle(issue *models.Issue, doer *user_model.User, title string) (err error) {
|
2019-10-11 06:44:43 +00:00
|
|
|
oldTitle := issue.Title
|
|
|
|
issue.Title = title
|
|
|
|
|
|
|
|
if err = issue.ChangeTitle(doer, oldTitle); err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2019-10-28 02:11:50 +00:00
|
|
|
notification.NotifyIssueChangeTitle(doer, issue, oldTitle)
|
2019-10-11 06:44:43 +00:00
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
2019-10-25 14:46:37 +00:00
|
|
|
|
2020-09-08 16:29:51 +00:00
|
|
|
// ChangeIssueRef changes the branch of this issue, as the given user.
|
2021-11-24 09:49:20 +00:00
|
|
|
func ChangeIssueRef(issue *models.Issue, doer *user_model.User, ref string) error {
|
2020-09-08 16:29:51 +00:00
|
|
|
oldRef := issue.Ref
|
|
|
|
issue.Ref = ref
|
|
|
|
|
|
|
|
if err := issue.ChangeRef(doer, oldRef); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
notification.NotifyIssueChangeRef(doer, issue, oldRef)
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2019-10-25 14:46:37 +00:00
|
|
|
// 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.
|
2021-11-24 09:49:20 +00:00
|
|
|
func UpdateAssignees(issue *models.Issue, oneAssignee string, multipleAssignees []string, doer *user_model.User) (err error) {
|
|
|
|
var allNewAssignees []*user_model.User
|
2019-10-25 14:46:37 +00:00
|
|
|
|
|
|
|
// Keep the old assignee thingy for compatibility reasons
|
|
|
|
if oneAssignee != "" {
|
|
|
|
// Prevent double adding assignees
|
|
|
|
var isDouble bool
|
|
|
|
for _, assignee := range multipleAssignees {
|
|
|
|
if assignee == oneAssignee {
|
|
|
|
isDouble = true
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if !isDouble {
|
|
|
|
multipleAssignees = append(multipleAssignees, oneAssignee)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Loop through all assignees to add them
|
|
|
|
for _, assigneeName := range multipleAssignees {
|
2021-11-24 09:49:20 +00:00
|
|
|
assignee, err := user_model.GetUserByName(assigneeName)
|
2019-10-25 14:46:37 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
allNewAssignees = append(allNewAssignees, assignee)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Delete all old assignees not passed
|
2019-10-28 02:11:50 +00:00
|
|
|
if err = DeleteNotPassedAssignee(issue, doer, allNewAssignees); err != nil {
|
2019-10-25 14:46:37 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Add all new assignees
|
|
|
|
// Update the assignee. The function will check if the user exists, is already
|
|
|
|
// assigned (which he shouldn't as we deleted all assignees before) and
|
|
|
|
// has access to the repo.
|
|
|
|
for _, assignee := range allNewAssignees {
|
|
|
|
// Extra method to prevent double adding (which would result in removing)
|
|
|
|
err = AddAssigneeIfNotAssigned(issue, doer, assignee.ID)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// AddAssigneeIfNotAssigned adds an assignee only if he isn't already assigned to the issue.
|
|
|
|
// Also checks for access of assigned user
|
2021-11-24 09:49:20 +00:00
|
|
|
func AddAssigneeIfNotAssigned(issue *models.Issue, doer *user_model.User, assigneeID int64) (err error) {
|
|
|
|
assignee, err := user_model.GetUserByID(assigneeID)
|
2019-10-25 14:46:37 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check if the user is already assigned
|
|
|
|
isAssigned, err := models.IsUserAssignedToIssue(issue, assignee)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if isAssigned {
|
|
|
|
// nothing to to
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
valid, err := models.CanBeAssigned(assignee, issue.Repo, issue.IsPull)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if !valid {
|
|
|
|
return models.ErrUserDoesNotHaveAccessToRepo{UserID: assigneeID, RepoName: issue.Repo.Name}
|
|
|
|
}
|
|
|
|
|
2019-10-28 02:11:50 +00:00
|
|
|
_, _, err = ToggleAssignee(issue, doer, assigneeID)
|
2019-10-25 14:46:37 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
2020-05-14 22:55:43 +00:00
|
|
|
|
|
|
|
// GetRefEndNamesAndURLs retrieves the ref end names (e.g. refs/heads/branch-name -> branch-name)
|
|
|
|
// and their respective URLs.
|
|
|
|
func GetRefEndNamesAndURLs(issues []*models.Issue, repoLink string) (map[int64]string, map[int64]string) {
|
|
|
|
var issueRefEndNames = make(map[int64]string, len(issues))
|
|
|
|
var issueRefURLs = make(map[int64]string, len(issues))
|
|
|
|
for _, issue := range issues {
|
|
|
|
if issue.Ref != "" {
|
|
|
|
issueRefEndNames[issue.ID] = git.RefEndName(issue.Ref)
|
|
|
|
issueRefURLs[issue.ID] = git.RefURL(repoLink, util.PathEscapeSegments(issue.Ref))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return issueRefEndNames, issueRefURLs
|
|
|
|
}
|