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