2019-09-06 02:20:09 +00:00
|
|
|
// Copyright 2019 The Gitea Authors. All rights reserved.
|
2022-11-27 18:20:29 +00:00
|
|
|
// SPDX-License-Identifier: MIT
|
2019-09-06 02:20:09 +00:00
|
|
|
|
2022-12-10 02:46:31 +00:00
|
|
|
package issue
|
2019-09-06 02:20:09 +00:00
|
|
|
|
|
|
|
import (
|
2022-11-19 08:12:33 +00:00
|
|
|
"context"
|
2022-12-10 02:46:31 +00:00
|
|
|
"fmt"
|
2022-11-19 08:12:33 +00:00
|
|
|
|
2021-09-19 11:49:59 +00:00
|
|
|
"code.gitea.io/gitea/models/db"
|
2022-06-13 09:37:59 +00:00
|
|
|
issues_model "code.gitea.io/gitea/models/issues"
|
2024-03-04 08:16:03 +00:00
|
|
|
access_model "code.gitea.io/gitea/models/perm/access"
|
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"
|
2021-10-10 22:40:03 +00:00
|
|
|
"code.gitea.io/gitea/modules/timeutil"
|
2023-09-05 18:37:47 +00:00
|
|
|
notify_service "code.gitea.io/gitea/services/notify"
|
2019-09-06 02:20:09 +00:00
|
|
|
)
|
|
|
|
|
2022-12-10 02:46:31 +00:00
|
|
|
// CreateRefComment creates a commit reference comment to issue.
|
2023-07-22 14:14:27 +00:00
|
|
|
func CreateRefComment(ctx context.Context, doer *user_model.User, repo *repo_model.Repository, issue *issues_model.Issue, content, commitSHA string) error {
|
2022-12-10 02:46:31 +00:00
|
|
|
if len(commitSHA) == 0 {
|
|
|
|
return fmt.Errorf("cannot create reference with empty commit SHA")
|
|
|
|
}
|
|
|
|
|
2024-03-04 08:16:03 +00:00
|
|
|
if user_model.IsUserBlockedBy(ctx, doer, issue.PosterID, repo.OwnerID) {
|
|
|
|
if isAdmin, _ := access_model.IsUserRepoAdmin(ctx, repo, doer); !isAdmin {
|
|
|
|
return user_model.ErrBlockedUser
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-12-10 02:46:31 +00:00
|
|
|
// Check if same reference from same commit has already existed.
|
2023-07-22 14:14:27 +00:00
|
|
|
has, err := db.GetEngine(ctx).Get(&issues_model.Comment{
|
2022-12-10 02:46:31 +00:00
|
|
|
Type: issues_model.CommentTypeCommitRef,
|
|
|
|
IssueID: issue.ID,
|
|
|
|
CommitSHA: commitSHA,
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("check reference comment: %w", err)
|
|
|
|
} else if has {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2023-08-04 13:34:34 +00:00
|
|
|
_, err = issues_model.CreateComment(ctx, &issues_model.CreateCommentOptions{
|
2022-12-10 02:46:31 +00:00
|
|
|
Type: issues_model.CommentTypeCommitRef,
|
|
|
|
Doer: doer,
|
|
|
|
Repo: repo,
|
|
|
|
Issue: issue,
|
|
|
|
CommitSHA: commitSHA,
|
|
|
|
Content: content,
|
|
|
|
})
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2019-09-24 17:39:50 +00:00
|
|
|
// CreateIssueComment creates a plain issue comment.
|
2022-11-19 08:12:33 +00:00
|
|
|
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) {
|
2024-03-04 08:16:03 +00:00
|
|
|
if user_model.IsUserBlockedBy(ctx, doer, issue.PosterID, repo.OwnerID) {
|
|
|
|
if isAdmin, _ := access_model.IsUserRepoAdmin(ctx, repo, doer); !isAdmin {
|
|
|
|
return nil, user_model.ErrBlockedUser
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-08-04 13:34:34 +00:00
|
|
|
comment, err := issues_model.CreateComment(ctx, &issues_model.CreateCommentOptions{
|
2022-06-13 09:37:59 +00:00
|
|
|
Type: issues_model.CommentTypeComment,
|
2019-09-24 17:39:50 +00:00
|
|
|
Doer: doer,
|
|
|
|
Repo: repo,
|
|
|
|
Issue: issue,
|
|
|
|
Content: content,
|
|
|
|
Attachments: attachments,
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2021-10-10 22:40:03 +00:00
|
|
|
|
2022-11-19 08:12:33 +00:00
|
|
|
mentions, err := issues_model.FindAndUpdateIssueMentions(ctx, issue, doer, comment.Content)
|
2021-01-02 17:04:02 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2021-10-10 22:40:03 +00:00
|
|
|
|
2023-09-05 18:37:47 +00:00
|
|
|
notify_service.CreateIssueComment(ctx, doer, repo, issue, comment, mentions)
|
2019-10-30 10:02:46 +00:00
|
|
|
|
2019-09-24 17:39:50 +00:00
|
|
|
return comment, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// UpdateComment updates information of comment.
|
2024-05-27 15:34:18 +00:00
|
|
|
func UpdateComment(ctx context.Context, c *issues_model.Comment, contentVersion int, doer *user_model.User, oldContent string) error {
|
2024-03-04 08:16:03 +00:00
|
|
|
if err := c.LoadIssue(ctx); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if err := c.Issue.LoadRepo(ctx); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
if user_model.IsUserBlockedBy(ctx, doer, c.Issue.PosterID, c.Issue.Repo.OwnerID) {
|
|
|
|
if isAdmin, _ := access_model.IsUserRepoAdmin(ctx, c.Issue.Repo, doer); !isAdmin {
|
|
|
|
return user_model.ErrBlockedUser
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-04-20 06:39:44 +00:00
|
|
|
needsContentHistory := c.Content != oldContent && c.Type.HasContentSupport()
|
2021-11-22 12:20:16 +00:00
|
|
|
if needsContentHistory {
|
2022-11-19 08:12:33 +00:00
|
|
|
hasContentHistory, err := issues_model.HasIssueContentHistory(ctx, c.IssueID, c.ID)
|
2021-11-22 12:20:16 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if !hasContentHistory {
|
2022-11-19 08:12:33 +00:00
|
|
|
if err = issues_model.SaveIssueContentHistory(ctx, c.PosterID, c.IssueID, c.ID,
|
2021-11-22 12:20:16 +00:00
|
|
|
c.CreatedUnix, oldContent, true); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-05-27 15:34:18 +00:00
|
|
|
if err := issues_model.UpdateComment(ctx, c, contentVersion, doer); err != nil {
|
2019-09-24 17:39:50 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2021-11-22 12:20:16 +00:00
|
|
|
if needsContentHistory {
|
2022-11-19 08:12:33 +00:00
|
|
|
err := issues_model.SaveIssueContentHistory(ctx, doer.ID, c.IssueID, c.ID, timeutil.TimeStampNow(), c.Content, false)
|
2021-10-10 22:40:03 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-09-05 18:37:47 +00:00
|
|
|
notify_service.UpdateComment(ctx, doer, c, oldContent)
|
2019-09-24 17:39:50 +00:00
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeleteComment deletes the comment
|
2022-11-19 08:12:33 +00:00
|
|
|
func DeleteComment(ctx context.Context, doer *user_model.User, comment *issues_model.Comment) error {
|
2023-01-08 01:34:58 +00:00
|
|
|
err := db.WithTx(ctx, func(ctx context.Context) error {
|
2022-11-19 08:12:33 +00:00
|
|
|
return issues_model.DeleteComment(ctx, comment)
|
|
|
|
})
|
2022-06-13 09:37:59 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2019-09-24 17:39:50 +00:00
|
|
|
|
2023-09-05 18:37:47 +00:00
|
|
|
notify_service.DeleteComment(ctx, doer, comment)
|
2019-09-24 17:39:50 +00:00
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|