2019-09-05 22:20:09 -04:00
|
|
|
// Copyright 2019 The Gitea Authors. All rights reserved.
|
2022-11-27 13:20:29 -05:00
|
|
|
// SPDX-License-Identifier: MIT
|
2019-09-05 22:20:09 -04:00
|
|
|
|
2022-12-09 21:46:31 -05:00
|
|
|
package issue
|
2019-09-05 22:20:09 -04:00
|
|
|
|
|
|
|
import (
|
2022-11-19 03:12:33 -05:00
|
|
|
"context"
|
2022-12-09 21:46:31 -05:00
|
|
|
"fmt"
|
2022-11-19 03:12:33 -05:00
|
|
|
|
2021-09-19 07:49:59 -04:00
|
|
|
"code.gitea.io/gitea/models/db"
|
2022-06-13 05:37:59 -04:00
|
|
|
issues_model "code.gitea.io/gitea/models/issues"
|
2021-12-09 20:27:50 -05:00
|
|
|
repo_model "code.gitea.io/gitea/models/repo"
|
2021-11-24 04:49:20 -05:00
|
|
|
user_model "code.gitea.io/gitea/models/user"
|
2019-10-30 06:02:46 -04:00
|
|
|
"code.gitea.io/gitea/modules/notification"
|
2021-10-10 18:40:03 -04:00
|
|
|
"code.gitea.io/gitea/modules/timeutil"
|
2019-09-05 22:20:09 -04:00
|
|
|
)
|
|
|
|
|
2022-12-09 21:46:31 -05:00
|
|
|
// CreateComment creates comment of issue or commit.
|
|
|
|
func CreateComment(opts *issues_model.CreateCommentOptions) (comment *issues_model.Comment, err error) {
|
|
|
|
ctx, committer, err := db.TxContext(db.DefaultContext)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
defer committer.Close()
|
|
|
|
|
|
|
|
comment, err = issues_model.CreateComment(ctx, opts)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
if err = committer.Commit(); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return comment, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// CreateRefComment creates a commit reference comment to issue.
|
|
|
|
func CreateRefComment(doer *user_model.User, repo *repo_model.Repository, issue *issues_model.Issue, content, commitSHA string) error {
|
|
|
|
if len(commitSHA) == 0 {
|
|
|
|
return fmt.Errorf("cannot create reference with empty commit SHA")
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check if same reference from same commit has already existed.
|
|
|
|
has, err := db.GetEngine(db.DefaultContext).Get(&issues_model.Comment{
|
|
|
|
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
|
|
|
|
}
|
|
|
|
|
|
|
|
_, err = CreateComment(&issues_model.CreateCommentOptions{
|
|
|
|
Type: issues_model.CommentTypeCommitRef,
|
|
|
|
Doer: doer,
|
|
|
|
Repo: repo,
|
|
|
|
Issue: issue,
|
|
|
|
CommitSHA: commitSHA,
|
|
|
|
Content: content,
|
|
|
|
})
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2019-09-24 13:39:50 -04:00
|
|
|
// CreateIssueComment creates a plain issue comment.
|
2022-11-19 03:12:33 -05: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) {
|
2022-12-09 21:46:31 -05:00
|
|
|
comment, err := CreateComment(&issues_model.CreateCommentOptions{
|
2022-06-13 05:37:59 -04:00
|
|
|
Type: issues_model.CommentTypeComment,
|
2019-09-24 13:39:50 -04:00
|
|
|
Doer: doer,
|
|
|
|
Repo: repo,
|
|
|
|
Issue: issue,
|
|
|
|
Content: content,
|
|
|
|
Attachments: attachments,
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2021-10-10 18:40:03 -04:00
|
|
|
|
2022-11-19 03:12:33 -05:00
|
|
|
mentions, err := issues_model.FindAndUpdateIssueMentions(ctx, issue, doer, comment.Content)
|
2021-01-02 12:04:02 -05:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2021-10-10 18:40:03 -04:00
|
|
|
|
2022-11-19 03:12:33 -05:00
|
|
|
notification.NotifyCreateIssueComment(ctx, doer, repo, issue, comment, mentions)
|
2019-10-30 06:02:46 -04:00
|
|
|
|
2019-09-24 13:39:50 -04:00
|
|
|
return comment, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// UpdateComment updates information of comment.
|
2022-11-19 03:12:33 -05:00
|
|
|
func UpdateComment(ctx context.Context, c *issues_model.Comment, doer *user_model.User, oldContent string) error {
|
2022-01-20 12:46:10 -05:00
|
|
|
needsContentHistory := c.Content != oldContent &&
|
2022-06-13 05:37:59 -04:00
|
|
|
(c.Type == issues_model.CommentTypeComment || c.Type == issues_model.CommentTypeReview || c.Type == issues_model.CommentTypeCode)
|
2021-11-22 07:20:16 -05:00
|
|
|
if needsContentHistory {
|
2022-11-19 03:12:33 -05:00
|
|
|
hasContentHistory, err := issues_model.HasIssueContentHistory(ctx, c.IssueID, c.ID)
|
2021-11-22 07:20:16 -05:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if !hasContentHistory {
|
2022-11-19 03:12:33 -05:00
|
|
|
if err = issues_model.SaveIssueContentHistory(ctx, c.PosterID, c.IssueID, c.ID,
|
2021-11-22 07:20:16 -05:00
|
|
|
c.CreatedUnix, oldContent, true); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-06-13 05:37:59 -04:00
|
|
|
if err := issues_model.UpdateComment(c, doer); err != nil {
|
2019-09-24 13:39:50 -04:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2021-11-22 07:20:16 -05:00
|
|
|
if needsContentHistory {
|
2022-11-19 03:12:33 -05:00
|
|
|
err := issues_model.SaveIssueContentHistory(ctx, doer.ID, c.IssueID, c.ID, timeutil.TimeStampNow(), c.Content, false)
|
2021-10-10 18:40:03 -04:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-11-19 03:12:33 -05:00
|
|
|
notification.NotifyUpdateComment(ctx, doer, c, oldContent)
|
2019-09-24 13:39:50 -04:00
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeleteComment deletes the comment
|
2022-11-19 03:12:33 -05:00
|
|
|
func DeleteComment(ctx context.Context, doer *user_model.User, comment *issues_model.Comment) error {
|
|
|
|
err := db.AutoTx(ctx, func(ctx context.Context) error {
|
|
|
|
return issues_model.DeleteComment(ctx, comment)
|
|
|
|
})
|
2022-06-13 05:37:59 -04:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2019-09-24 13:39:50 -04:00
|
|
|
|
2022-11-19 03:12:33 -05:00
|
|
|
notification.NotifyDeleteComment(ctx, doer, comment)
|
2019-09-24 13:39:50 -04:00
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|