2019-09-30 19:20:44 +05:30
|
|
|
// Copyright 2019 The Gitea Authors. All rights reserved.
|
2022-11-27 23:50:29 +05:30
|
|
|
// SPDX-License-Identifier: MIT
|
2019-09-30 19:20:44 +05:30
|
|
|
|
|
|
|
package issue
|
|
|
|
|
|
|
|
import (
|
2022-03-01 05:50:15 +05:30
|
|
|
"fmt"
|
|
|
|
|
2022-08-25 08:01:57 +05:30
|
|
|
activities_model "code.gitea.io/gitea/models/activities"
|
2021-09-19 17:19:59 +05:30
|
|
|
"code.gitea.io/gitea/models/db"
|
2022-06-13 15:07:59 +05:30
|
|
|
issues_model "code.gitea.io/gitea/models/issues"
|
2022-05-11 15:39:36 +05:30
|
|
|
access_model "code.gitea.io/gitea/models/perm/access"
|
2022-06-13 15:07:59 +05:30
|
|
|
project_model "code.gitea.io/gitea/models/project"
|
2021-12-10 06:57:50 +05:30
|
|
|
repo_model "code.gitea.io/gitea/models/repo"
|
2022-10-17 04:59:26 +05:30
|
|
|
system_model "code.gitea.io/gitea/models/system"
|
2021-11-24 15:19:20 +05:30
|
|
|
user_model "code.gitea.io/gitea/models/user"
|
2020-05-15 04:25:43 +05:30
|
|
|
"code.gitea.io/gitea/modules/git"
|
2019-10-25 20:16:37 +05:30
|
|
|
"code.gitea.io/gitea/modules/notification"
|
2022-06-13 15:07:59 +05:30
|
|
|
"code.gitea.io/gitea/modules/storage"
|
2019-09-30 19:20:44 +05:30
|
|
|
)
|
|
|
|
|
|
|
|
// NewIssue creates new issue with labels for repository.
|
2022-06-13 15:07:59 +05:30
|
|
|
func NewIssue(repo *repo_model.Repository, issue *issues_model.Issue, labelIDs []int64, uuids []string, assigneeIDs []int64) error {
|
|
|
|
if err := issues_model.NewIssue(repo, issue, labelIDs, uuids); err != nil {
|
2019-09-30 19:20:44 +05:30
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2019-10-28 22:15:43 +05:30
|
|
|
for _, assigneeID := range assigneeIDs {
|
|
|
|
if err := AddAssigneeIfNotAssigned(issue, issue.Poster, assigneeID); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-06-13 15:07:59 +05:30
|
|
|
mentions, err := issues_model.FindAndUpdateIssueMentions(db.DefaultContext, issue, issue.Poster, issue.Content)
|
2021-01-02 22:34:02 +05:30
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2022-11-19 13:42:33 +05:30
|
|
|
notification.NotifyNewIssue(db.DefaultContext, issue, mentions)
|
2021-01-17 19:45:57 +05:30
|
|
|
if len(issue.Labels) > 0 {
|
2022-11-19 13:42:33 +05:30
|
|
|
notification.NotifyIssueChangeLabels(db.DefaultContext, issue.Poster, issue, issue.Labels, nil)
|
2021-01-17 19:45:57 +05:30
|
|
|
}
|
|
|
|
if issue.Milestone != nil {
|
2022-11-19 13:42:33 +05:30
|
|
|
notification.NotifyIssueChangeMilestone(db.DefaultContext, issue.Poster, issue, 0)
|
2021-01-17 19:45:57 +05:30
|
|
|
}
|
2019-09-30 19:20:44 +05:30
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
2019-10-11 12:14:43 +05:30
|
|
|
|
|
|
|
// ChangeTitle changes the title of this issue, as the given user.
|
2022-06-13 15:07:59 +05:30
|
|
|
func ChangeTitle(issue *issues_model.Issue, doer *user_model.User, title string) (err error) {
|
2019-10-11 12:14:43 +05:30
|
|
|
oldTitle := issue.Title
|
|
|
|
issue.Title = title
|
|
|
|
|
2022-06-13 15:07:59 +05:30
|
|
|
if err = issues_model.ChangeIssueTitle(issue, doer, oldTitle); err != nil {
|
2019-10-11 12:14:43 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2022-11-19 13:42:33 +05:30
|
|
|
notification.NotifyIssueChangeTitle(db.DefaultContext, doer, issue, oldTitle)
|
2019-10-11 12:14:43 +05:30
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
2019-10-25 20:16:37 +05:30
|
|
|
|
2020-09-08 21:59:51 +05:30
|
|
|
// ChangeIssueRef changes the branch of this issue, as the given user.
|
2022-06-13 15:07:59 +05:30
|
|
|
func ChangeIssueRef(issue *issues_model.Issue, doer *user_model.User, ref string) error {
|
2020-09-08 21:59:51 +05:30
|
|
|
oldRef := issue.Ref
|
|
|
|
issue.Ref = ref
|
|
|
|
|
2022-06-13 15:07:59 +05:30
|
|
|
if err := issues_model.ChangeIssueRef(issue, doer, oldRef); err != nil {
|
2020-09-08 21:59:51 +05:30
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2022-11-19 13:42:33 +05:30
|
|
|
notification.NotifyIssueChangeRef(db.DefaultContext, doer, issue, oldRef)
|
2020-09-08 21:59:51 +05:30
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2019-10-25 20:16:37 +05:30
|
|
|
// 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.
|
2022-06-13 15:07:59 +05:30
|
|
|
func UpdateAssignees(issue *issues_model.Issue, oneAssignee string, multipleAssignees []string, doer *user_model.User) (err error) {
|
2021-11-24 15:19:20 +05:30
|
|
|
var allNewAssignees []*user_model.User
|
2019-10-25 20:16:37 +05:30
|
|
|
|
|
|
|
// 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 {
|
2022-05-20 19:38:52 +05:30
|
|
|
assignee, err := user_model.GetUserByName(db.DefaultContext, assigneeName)
|
2019-10-25 20:16:37 +05:30
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
allNewAssignees = append(allNewAssignees, assignee)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Delete all old assignees not passed
|
2019-10-28 07:41:50 +05:30
|
|
|
if err = DeleteNotPassedAssignee(issue, doer, allNewAssignees); err != nil {
|
2019-10-25 20:16:37 +05:30
|
|
|
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
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-06-20 15:32:49 +05:30
|
|
|
return err
|
2019-10-25 20:16:37 +05:30
|
|
|
}
|
|
|
|
|
2022-03-01 05:50:15 +05:30
|
|
|
// DeleteIssue deletes an issue
|
2022-06-13 15:07:59 +05:30
|
|
|
func DeleteIssue(doer *user_model.User, gitRepo *git.Repository, issue *issues_model.Issue) error {
|
2022-03-01 05:50:15 +05:30
|
|
|
// load issue before deleting it
|
2022-11-19 13:42:33 +05:30
|
|
|
if err := issue.LoadAttributes(gitRepo.Ctx); err != nil {
|
2022-03-01 05:50:15 +05:30
|
|
|
return err
|
|
|
|
}
|
2022-11-19 13:42:33 +05:30
|
|
|
if err := issue.LoadPullRequest(gitRepo.Ctx); err != nil {
|
2022-03-01 05:50:15 +05:30
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// delete entries in database
|
2022-06-13 15:07:59 +05:30
|
|
|
if err := deleteIssue(issue); err != nil {
|
2022-03-01 05:50:15 +05:30
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// delete pull request related git data
|
|
|
|
if issue.IsPull {
|
2022-06-19 15:35:15 +05:30
|
|
|
if err := gitRepo.RemoveReference(fmt.Sprintf("%s%d/head", git.PullPrefix, issue.PullRequest.Index)); err != nil {
|
2022-03-01 05:50:15 +05:30
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-11-19 13:42:33 +05:30
|
|
|
notification.NotifyDeleteIssue(gitRepo.Ctx, doer, issue)
|
2022-03-01 05:50:15 +05:30
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2019-10-25 20:16:37 +05:30
|
|
|
// AddAssigneeIfNotAssigned adds an assignee only if he isn't already assigned to the issue.
|
|
|
|
// Also checks for access of assigned user
|
2022-06-13 15:07:59 +05:30
|
|
|
func AddAssigneeIfNotAssigned(issue *issues_model.Issue, doer *user_model.User, assigneeID int64) (err error) {
|
2022-11-19 13:42:33 +05:30
|
|
|
assignee, err := user_model.GetUserByIDCtx(db.DefaultContext, assigneeID)
|
2019-10-25 20:16:37 +05:30
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check if the user is already assigned
|
2022-06-13 15:07:59 +05:30
|
|
|
isAssigned, err := issues_model.IsUserAssignedToIssue(db.DefaultContext, issue, assignee)
|
2019-10-25 20:16:37 +05:30
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if isAssigned {
|
|
|
|
// nothing to to
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2022-05-11 15:39:36 +05:30
|
|
|
valid, err := access_model.CanBeAssigned(db.DefaultContext, assignee, issue.Repo, issue.IsPull)
|
2019-10-25 20:16:37 +05:30
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if !valid {
|
2022-06-13 15:07:59 +05:30
|
|
|
return repo_model.ErrUserDoesNotHaveAccessToRepo{UserID: assigneeID, RepoName: issue.Repo.Name}
|
2019-10-25 20:16:37 +05:30
|
|
|
}
|
|
|
|
|
2019-10-28 07:41:50 +05:30
|
|
|
_, _, err = ToggleAssignee(issue, doer, assigneeID)
|
2019-10-25 20:16:37 +05:30
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
2020-05-15 04:25:43 +05:30
|
|
|
|
|
|
|
// GetRefEndNamesAndURLs retrieves the ref end names (e.g. refs/heads/branch-name -> branch-name)
|
|
|
|
// and their respective URLs.
|
2022-06-13 15:07:59 +05:30
|
|
|
func GetRefEndNamesAndURLs(issues []*issues_model.Issue, repoLink string) (map[int64]string, map[int64]string) {
|
2022-01-20 23:16:10 +05:30
|
|
|
issueRefEndNames := make(map[int64]string, len(issues))
|
|
|
|
issueRefURLs := make(map[int64]string, len(issues))
|
2020-05-15 04:25:43 +05:30
|
|
|
for _, issue := range issues {
|
|
|
|
if issue.Ref != "" {
|
|
|
|
issueRefEndNames[issue.ID] = git.RefEndName(issue.Ref)
|
2022-11-22 18:28:49 +05:30
|
|
|
issueRefURLs[issue.ID] = git.RefURL(repoLink, issue.Ref)
|
2020-05-15 04:25:43 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
return issueRefEndNames, issueRefURLs
|
|
|
|
}
|
2022-06-13 15:07:59 +05:30
|
|
|
|
|
|
|
// deleteIssue deletes the issue
|
|
|
|
func deleteIssue(issue *issues_model.Issue) error {
|
2022-11-13 01:48:50 +05:30
|
|
|
ctx, committer, err := db.TxContext(db.DefaultContext)
|
2022-06-13 15:07:59 +05:30
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
defer committer.Close()
|
|
|
|
|
|
|
|
e := db.GetEngine(ctx)
|
|
|
|
if _, err := e.ID(issue.ID).NoAutoCondition().Delete(issue); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := repo_model.UpdateRepoIssueNumbers(ctx, issue.RepoID, issue.IsPull, issue.IsClosed); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2022-10-22 20:38:10 +05:30
|
|
|
if err := issues_model.UpdateMilestoneCounters(ctx, issue.MilestoneID); err != nil {
|
|
|
|
return fmt.Errorf("error updating counters for milestone id %d: %w",
|
|
|
|
issue.MilestoneID, err)
|
|
|
|
}
|
|
|
|
|
2022-08-25 08:01:57 +05:30
|
|
|
if err := activities_model.DeleteIssueActions(ctx, issue.RepoID, issue.ID); err != nil {
|
2022-06-13 15:07:59 +05:30
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// find attachments related to this issue and remove them
|
|
|
|
if err := issue.LoadAttributes(ctx); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
for i := range issue.Attachments {
|
2022-10-17 04:59:26 +05:30
|
|
|
system_model.RemoveStorageWithNotice(ctx, storage.Attachments, "Delete issue attachment", issue.Attachments[i].RelativePath())
|
2022-06-13 15:07:59 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
// delete all database data still assigned to this issue
|
|
|
|
if err := issues_model.DeleteInIssue(ctx, issue.ID,
|
|
|
|
&issues_model.ContentHistory{},
|
|
|
|
&issues_model.Comment{},
|
|
|
|
&issues_model.IssueLabel{},
|
|
|
|
&issues_model.IssueDependency{},
|
|
|
|
&issues_model.IssueAssignees{},
|
|
|
|
&issues_model.IssueUser{},
|
2022-08-25 08:01:57 +05:30
|
|
|
&activities_model.Notification{},
|
2022-06-13 15:07:59 +05:30
|
|
|
&issues_model.Reaction{},
|
|
|
|
&issues_model.IssueWatch{},
|
|
|
|
&issues_model.Stopwatch{},
|
|
|
|
&issues_model.TrackedTime{},
|
|
|
|
&project_model.ProjectIssue{},
|
|
|
|
&repo_model.Attachment{},
|
|
|
|
&issues_model.PullRequest{},
|
|
|
|
); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// References to this issue in other issues
|
|
|
|
if _, err := db.DeleteByBean(ctx, &issues_model.Comment{
|
|
|
|
RefIssueID: issue.ID,
|
|
|
|
}); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Delete dependencies for issues in other repositories
|
|
|
|
if _, err := db.DeleteByBean(ctx, &issues_model.IssueDependency{
|
|
|
|
DependencyID: issue.ID,
|
|
|
|
}); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// delete from dependent issues
|
|
|
|
if _, err := db.DeleteByBean(ctx, &issues_model.Comment{
|
|
|
|
DependentIssueID: issue.ID,
|
|
|
|
}); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
return committer.Commit()
|
|
|
|
}
|