2017-12-03 23:14:26 +00:00
|
|
|
// Copyright 2017 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 models
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"fmt"
|
|
|
|
|
2017-12-05 20:57:01 +00:00
|
|
|
"code.gitea.io/gitea/modules/setting"
|
2019-08-15 14:46:21 +00:00
|
|
|
"code.gitea.io/gitea/modules/timeutil"
|
2017-12-05 20:57:01 +00:00
|
|
|
|
2019-06-23 15:22:43 +00:00
|
|
|
"xorm.io/builder"
|
2019-10-17 09:26:49 +00:00
|
|
|
"xorm.io/xorm"
|
2017-12-03 23:14:26 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// Reaction represents a reactions on issues and comments.
|
|
|
|
type Reaction struct {
|
2020-11-10 22:37:11 +00:00
|
|
|
ID int64 `xorm:"pk autoincr"`
|
|
|
|
Type string `xorm:"INDEX UNIQUE(s) NOT NULL"`
|
|
|
|
IssueID int64 `xorm:"INDEX UNIQUE(s) NOT NULL"`
|
|
|
|
CommentID int64 `xorm:"INDEX UNIQUE(s)"`
|
|
|
|
UserID int64 `xorm:"INDEX UNIQUE(s) NOT NULL"`
|
|
|
|
OriginalAuthorID int64 `xorm:"INDEX UNIQUE(s) NOT NULL DEFAULT(0)"`
|
|
|
|
OriginalAuthor string `xorm:"INDEX UNIQUE(s)"`
|
2020-01-15 11:14:07 +00:00
|
|
|
User *User `xorm:"-"`
|
|
|
|
CreatedUnix timeutil.TimeStamp `xorm:"INDEX created"`
|
2017-12-03 23:14:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// FindReactionsOptions describes the conditions to Find reactions
|
|
|
|
type FindReactionsOptions struct {
|
2020-01-24 19:00:29 +00:00
|
|
|
ListOptions
|
2017-12-03 23:14:26 +00:00
|
|
|
IssueID int64
|
|
|
|
CommentID int64
|
2019-12-31 08:21:21 +00:00
|
|
|
UserID int64
|
|
|
|
Reaction string
|
2017-12-03 23:14:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (opts *FindReactionsOptions) toConds() builder.Cond {
|
2021-03-14 18:52:12 +00:00
|
|
|
// If Issue ID is set add to Query
|
|
|
|
cond := builder.NewCond()
|
2017-12-03 23:14:26 +00:00
|
|
|
if opts.IssueID > 0 {
|
|
|
|
cond = cond.And(builder.Eq{"reaction.issue_id": opts.IssueID})
|
|
|
|
}
|
2021-03-14 18:52:12 +00:00
|
|
|
// If CommentID is > 0 add to Query
|
|
|
|
// If it is 0 Query ignore CommentID to select
|
|
|
|
// If it is -1 it explicit search of Issue Reactions where CommentID = 0
|
2017-12-03 23:14:26 +00:00
|
|
|
if opts.CommentID > 0 {
|
|
|
|
cond = cond.And(builder.Eq{"reaction.comment_id": opts.CommentID})
|
2019-12-07 22:04:19 +00:00
|
|
|
} else if opts.CommentID == -1 {
|
|
|
|
cond = cond.And(builder.Eq{"reaction.comment_id": 0})
|
2017-12-03 23:14:26 +00:00
|
|
|
}
|
2019-12-31 08:21:21 +00:00
|
|
|
if opts.UserID > 0 {
|
2020-01-15 11:14:07 +00:00
|
|
|
cond = cond.And(builder.Eq{
|
|
|
|
"reaction.user_id": opts.UserID,
|
|
|
|
"reaction.original_author_id": 0,
|
|
|
|
})
|
2019-12-31 08:21:21 +00:00
|
|
|
}
|
|
|
|
if opts.Reaction != "" {
|
|
|
|
cond = cond.And(builder.Eq{"reaction.type": opts.Reaction})
|
|
|
|
}
|
2019-12-07 22:04:19 +00:00
|
|
|
|
2017-12-03 23:14:26 +00:00
|
|
|
return cond
|
|
|
|
}
|
|
|
|
|
2019-12-07 22:04:19 +00:00
|
|
|
// FindCommentReactions returns a ReactionList of all reactions from an comment
|
|
|
|
func FindCommentReactions(comment *Comment) (ReactionList, error) {
|
|
|
|
return findReactions(x, FindReactionsOptions{
|
|
|
|
IssueID: comment.IssueID,
|
2021-03-14 18:52:12 +00:00
|
|
|
CommentID: comment.ID,
|
|
|
|
})
|
2019-12-07 22:04:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// FindIssueReactions returns a ReactionList of all reactions from an issue
|
2020-01-24 19:00:29 +00:00
|
|
|
func FindIssueReactions(issue *Issue, listOptions ListOptions) (ReactionList, error) {
|
2019-12-07 22:04:19 +00:00
|
|
|
return findReactions(x, FindReactionsOptions{
|
2020-01-24 19:00:29 +00:00
|
|
|
ListOptions: listOptions,
|
|
|
|
IssueID: issue.ID,
|
|
|
|
CommentID: -1,
|
2019-12-07 22:04:19 +00:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2017-12-03 23:14:26 +00:00
|
|
|
func findReactions(e Engine, opts FindReactionsOptions) ([]*Reaction, error) {
|
2020-01-24 19:00:29 +00:00
|
|
|
e = e.
|
|
|
|
Where(opts.toConds()).
|
2019-12-18 13:07:36 +00:00
|
|
|
In("reaction.`type`", setting.UI.Reactions).
|
2020-01-24 19:00:29 +00:00
|
|
|
Asc("reaction.issue_id", "reaction.comment_id", "reaction.created_unix", "reaction.id")
|
|
|
|
if opts.Page != 0 {
|
|
|
|
e = opts.setEnginePagination(e)
|
|
|
|
|
|
|
|
reactions := make([]*Reaction, 0, opts.PageSize)
|
|
|
|
return reactions, e.Find(&reactions)
|
|
|
|
}
|
|
|
|
|
|
|
|
reactions := make([]*Reaction, 0, 10)
|
|
|
|
return reactions, e.Find(&reactions)
|
2017-12-03 23:14:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func createReaction(e *xorm.Session, opts *ReactionOptions) (*Reaction, error) {
|
|
|
|
reaction := &Reaction{
|
|
|
|
Type: opts.Type,
|
|
|
|
UserID: opts.Doer.ID,
|
|
|
|
IssueID: opts.Issue.ID,
|
|
|
|
}
|
2019-12-31 08:21:21 +00:00
|
|
|
findOpts := FindReactionsOptions{
|
|
|
|
IssueID: opts.Issue.ID,
|
|
|
|
CommentID: -1, // reaction to issue only
|
|
|
|
Reaction: opts.Type,
|
|
|
|
UserID: opts.Doer.ID,
|
|
|
|
}
|
2017-12-03 23:14:26 +00:00
|
|
|
if opts.Comment != nil {
|
|
|
|
reaction.CommentID = opts.Comment.ID
|
2019-12-31 08:21:21 +00:00
|
|
|
findOpts.CommentID = opts.Comment.ID
|
|
|
|
}
|
|
|
|
|
|
|
|
existingR, err := findReactions(e, findOpts)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
if len(existingR) > 0 {
|
|
|
|
return existingR[0], ErrReactionAlreadyExist{Reaction: opts.Type}
|
2017-12-03 23:14:26 +00:00
|
|
|
}
|
2019-12-31 08:21:21 +00:00
|
|
|
|
2017-12-03 23:14:26 +00:00
|
|
|
if _, err := e.Insert(reaction); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return reaction, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// ReactionOptions defines options for creating or deleting reactions
|
|
|
|
type ReactionOptions struct {
|
|
|
|
Type string
|
|
|
|
Doer *User
|
|
|
|
Issue *Issue
|
|
|
|
Comment *Comment
|
|
|
|
}
|
|
|
|
|
|
|
|
// CreateReaction creates reaction for issue or comment.
|
2019-12-31 08:21:21 +00:00
|
|
|
func CreateReaction(opts *ReactionOptions) (*Reaction, error) {
|
2019-12-07 22:04:19 +00:00
|
|
|
if !setting.UI.ReactionsMap[opts.Type] {
|
|
|
|
return nil, ErrForbiddenIssueReaction{opts.Type}
|
|
|
|
}
|
|
|
|
|
2017-12-03 23:14:26 +00:00
|
|
|
sess := x.NewSession()
|
|
|
|
defer sess.Close()
|
2019-12-31 08:21:21 +00:00
|
|
|
if err := sess.Begin(); err != nil {
|
2017-12-03 23:14:26 +00:00
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2019-12-31 08:21:21 +00:00
|
|
|
reaction, err := createReaction(sess, opts)
|
2017-12-03 23:14:26 +00:00
|
|
|
if err != nil {
|
2019-12-31 08:21:21 +00:00
|
|
|
return reaction, err
|
2017-12-03 23:14:26 +00:00
|
|
|
}
|
|
|
|
|
2019-12-31 08:21:21 +00:00
|
|
|
if err := sess.Commit(); err != nil {
|
2017-12-03 23:14:26 +00:00
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return reaction, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// CreateIssueReaction creates a reaction on issue.
|
|
|
|
func CreateIssueReaction(doer *User, issue *Issue, content string) (*Reaction, error) {
|
|
|
|
return CreateReaction(&ReactionOptions{
|
|
|
|
Type: content,
|
|
|
|
Doer: doer,
|
|
|
|
Issue: issue,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
// CreateCommentReaction creates a reaction on comment.
|
|
|
|
func CreateCommentReaction(doer *User, issue *Issue, comment *Comment, content string) (*Reaction, error) {
|
|
|
|
return CreateReaction(&ReactionOptions{
|
|
|
|
Type: content,
|
|
|
|
Doer: doer,
|
|
|
|
Issue: issue,
|
|
|
|
Comment: comment,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2021-01-22 02:56:19 +00:00
|
|
|
func deleteReaction(e Engine, opts *ReactionOptions) error {
|
2017-12-03 23:14:26 +00:00
|
|
|
reaction := &Reaction{
|
2021-01-22 02:56:19 +00:00
|
|
|
Type: opts.Type,
|
|
|
|
}
|
|
|
|
if opts.Doer != nil {
|
|
|
|
reaction.UserID = opts.Doer.ID
|
|
|
|
}
|
|
|
|
if opts.Issue != nil {
|
|
|
|
reaction.IssueID = opts.Issue.ID
|
2017-12-03 23:14:26 +00:00
|
|
|
}
|
|
|
|
if opts.Comment != nil {
|
|
|
|
reaction.CommentID = opts.Comment.ID
|
|
|
|
}
|
2020-01-15 11:14:07 +00:00
|
|
|
_, err := e.Where("original_author_id = 0").Delete(reaction)
|
2017-12-03 23:14:26 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeleteReaction deletes reaction for issue or comment.
|
|
|
|
func DeleteReaction(opts *ReactionOptions) error {
|
|
|
|
sess := x.NewSession()
|
|
|
|
defer sess.Close()
|
|
|
|
if err := sess.Begin(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := deleteReaction(sess, opts); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
return sess.Commit()
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeleteIssueReaction deletes a reaction on issue.
|
|
|
|
func DeleteIssueReaction(doer *User, issue *Issue, content string) error {
|
|
|
|
return DeleteReaction(&ReactionOptions{
|
|
|
|
Type: content,
|
|
|
|
Doer: doer,
|
|
|
|
Issue: issue,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeleteCommentReaction deletes a reaction on comment.
|
|
|
|
func DeleteCommentReaction(doer *User, issue *Issue, comment *Comment, content string) error {
|
|
|
|
return DeleteReaction(&ReactionOptions{
|
|
|
|
Type: content,
|
|
|
|
Doer: doer,
|
|
|
|
Issue: issue,
|
|
|
|
Comment: comment,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2019-12-07 22:04:19 +00:00
|
|
|
// LoadUser load user of reaction
|
|
|
|
func (r *Reaction) LoadUser() (*User, error) {
|
|
|
|
if r.User != nil {
|
|
|
|
return r.User, nil
|
|
|
|
}
|
|
|
|
user, err := getUserByID(x, r.UserID)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
r.User = user
|
|
|
|
return user, nil
|
|
|
|
}
|
|
|
|
|
2017-12-03 23:14:26 +00:00
|
|
|
// ReactionList represents list of reactions
|
|
|
|
type ReactionList []*Reaction
|
|
|
|
|
|
|
|
// HasUser check if user has reacted
|
|
|
|
func (list ReactionList) HasUser(userID int64) bool {
|
|
|
|
if userID == 0 {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
for _, reaction := range list {
|
2020-01-15 11:14:07 +00:00
|
|
|
if reaction.OriginalAuthor == "" && reaction.UserID == userID {
|
2017-12-03 23:14:26 +00:00
|
|
|
return true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
// GroupByType returns reactions grouped by type
|
|
|
|
func (list ReactionList) GroupByType() map[string]ReactionList {
|
2021-03-14 18:52:12 +00:00
|
|
|
reactions := make(map[string]ReactionList)
|
2017-12-03 23:14:26 +00:00
|
|
|
for _, reaction := range list {
|
|
|
|
reactions[reaction.Type] = append(reactions[reaction.Type], reaction)
|
|
|
|
}
|
|
|
|
return reactions
|
|
|
|
}
|
|
|
|
|
|
|
|
func (list ReactionList) getUserIDs() []int64 {
|
|
|
|
userIDs := make(map[int64]struct{}, len(list))
|
|
|
|
for _, reaction := range list {
|
2020-01-15 11:14:07 +00:00
|
|
|
if reaction.OriginalAuthor != "" {
|
|
|
|
continue
|
|
|
|
}
|
2017-12-03 23:14:26 +00:00
|
|
|
if _, ok := userIDs[reaction.UserID]; !ok {
|
|
|
|
userIDs[reaction.UserID] = struct{}{}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return keysInt64(userIDs)
|
|
|
|
}
|
|
|
|
|
2020-01-15 11:14:07 +00:00
|
|
|
func (list ReactionList) loadUsers(e Engine, repo *Repository) ([]*User, error) {
|
2017-12-03 23:14:26 +00:00
|
|
|
if len(list) == 0 {
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
userIDs := list.getUserIDs()
|
|
|
|
userMaps := make(map[int64]*User, len(userIDs))
|
|
|
|
err := e.
|
|
|
|
In("id", userIDs).
|
|
|
|
Find(&userMaps)
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("find user: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, reaction := range list {
|
2020-01-15 11:14:07 +00:00
|
|
|
if reaction.OriginalAuthor != "" {
|
|
|
|
reaction.User = NewReplaceUser(fmt.Sprintf("%s(%s)", reaction.OriginalAuthor, repo.OriginalServiceType.Name()))
|
|
|
|
} else if user, ok := userMaps[reaction.UserID]; ok {
|
2017-12-03 23:14:26 +00:00
|
|
|
reaction.User = user
|
|
|
|
} else {
|
|
|
|
reaction.User = NewGhostUser()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return valuesUser(userMaps), nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// LoadUsers loads reactions' all users
|
2020-01-15 11:14:07 +00:00
|
|
|
func (list ReactionList) LoadUsers(repo *Repository) ([]*User, error) {
|
|
|
|
return list.loadUsers(x, repo)
|
2017-12-03 23:14:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// GetFirstUsers returns first reacted user display names separated by comma
|
|
|
|
func (list ReactionList) GetFirstUsers() string {
|
|
|
|
var buffer bytes.Buffer
|
2021-03-14 18:52:12 +00:00
|
|
|
rem := setting.UI.ReactionMaxUserNum
|
2017-12-03 23:14:26 +00:00
|
|
|
for _, reaction := range list {
|
|
|
|
if buffer.Len() > 0 {
|
|
|
|
buffer.WriteString(", ")
|
|
|
|
}
|
|
|
|
buffer.WriteString(reaction.User.DisplayName())
|
|
|
|
if rem--; rem == 0 {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return buffer.String()
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetMoreUserCount returns count of not shown users in reaction tooltip
|
|
|
|
func (list ReactionList) GetMoreUserCount() int {
|
|
|
|
if len(list) <= setting.UI.ReactionMaxUserNum {
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
return len(list) - setting.UI.ReactionMaxUserNum
|
|
|
|
}
|