2019-09-06 04:20:09 +02: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 comments
|
|
|
|
|
|
|
|
import (
|
2021-09-19 13:49:59 +02:00
|
|
|
"code.gitea.io/gitea/models/db"
|
2022-06-13 11:37:59 +02:00
|
|
|
issues_model "code.gitea.io/gitea/models/issues"
|
2021-12-10 02:27:50 +01:00
|
|
|
repo_model "code.gitea.io/gitea/models/repo"
|
2021-11-24 10:49:20 +01:00
|
|
|
user_model "code.gitea.io/gitea/models/user"
|
2019-10-30 11:02:46 +01:00
|
|
|
"code.gitea.io/gitea/modules/notification"
|
2021-10-11 00:40:03 +02:00
|
|
|
"code.gitea.io/gitea/modules/timeutil"
|
2019-09-06 04:20:09 +02:00
|
|
|
)
|
|
|
|
|
2019-09-24 19:39:50 +02:00
|
|
|
// CreateIssueComment creates a plain issue comment.
|
2022-06-13 11:37:59 +02:00
|
|
|
func CreateIssueComment(doer *user_model.User, repo *repo_model.Repository, issue *issues_model.Issue, content string, attachments []string) (*issues_model.Comment, error) {
|
|
|
|
comment, err := issues_model.CreateComment(&issues_model.CreateCommentOptions{
|
|
|
|
Type: issues_model.CommentTypeComment,
|
2019-09-24 19:39:50 +02:00
|
|
|
Doer: doer,
|
|
|
|
Repo: repo,
|
|
|
|
Issue: issue,
|
|
|
|
Content: content,
|
|
|
|
Attachments: attachments,
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2021-10-11 00:40:03 +02:00
|
|
|
|
2022-06-13 11:37:59 +02:00
|
|
|
mentions, err := issues_model.FindAndUpdateIssueMentions(db.DefaultContext, issue, doer, comment.Content)
|
2021-01-02 18:04:02 +01:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2021-10-11 00:40:03 +02:00
|
|
|
|
2021-01-02 18:04:02 +01:00
|
|
|
notification.NotifyCreateIssueComment(doer, repo, issue, comment, mentions)
|
2019-10-30 11:02:46 +01:00
|
|
|
|
2019-09-24 19:39:50 +02:00
|
|
|
return comment, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// UpdateComment updates information of comment.
|
2022-06-13 11:37:59 +02:00
|
|
|
func UpdateComment(c *issues_model.Comment, doer *user_model.User, oldContent string) error {
|
2022-01-20 18:46:10 +01:00
|
|
|
needsContentHistory := c.Content != oldContent &&
|
2022-06-13 11:37:59 +02:00
|
|
|
(c.Type == issues_model.CommentTypeComment || c.Type == issues_model.CommentTypeReview || c.Type == issues_model.CommentTypeCode)
|
2021-11-22 13:20:16 +01:00
|
|
|
if needsContentHistory {
|
2022-06-13 11:37:59 +02:00
|
|
|
hasContentHistory, err := issues_model.HasIssueContentHistory(db.DefaultContext, c.IssueID, c.ID)
|
2021-11-22 13:20:16 +01:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if !hasContentHistory {
|
2022-06-13 11:37:59 +02:00
|
|
|
if err = issues_model.SaveIssueContentHistory(db.DefaultContext, c.PosterID, c.IssueID, c.ID,
|
2021-11-22 13:20:16 +01:00
|
|
|
c.CreatedUnix, oldContent, true); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-06-13 11:37:59 +02:00
|
|
|
if err := issues_model.UpdateComment(c, doer); err != nil {
|
2019-09-24 19:39:50 +02:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2021-11-22 13:20:16 +01:00
|
|
|
if needsContentHistory {
|
2022-06-13 11:37:59 +02:00
|
|
|
err := issues_model.SaveIssueContentHistory(db.DefaultContext, doer.ID, c.IssueID, c.ID, timeutil.TimeStampNow(), c.Content, false)
|
2021-10-11 00:40:03 +02:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-10-30 11:02:46 +01:00
|
|
|
notification.NotifyUpdateComment(doer, c, oldContent)
|
2019-09-24 19:39:50 +02:00
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeleteComment deletes the comment
|
2022-06-13 11:37:59 +02:00
|
|
|
func DeleteComment(doer *user_model.User, comment *issues_model.Comment) error {
|
|
|
|
ctx, committer, err := db.TxContext()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
defer committer.Close()
|
|
|
|
|
|
|
|
if err := issues_model.DeleteComment(ctx, comment); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if err := committer.Commit(); err != nil {
|
2019-09-24 19:39:50 +02:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2019-10-30 11:02:46 +01:00
|
|
|
notification.NotifyDeleteComment(doer, comment)
|
2019-09-24 19:39:50 +02:00
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|