mirror of
https://github.com/mattermost/mattermost.git
synced 2025-02-25 18:55:24 -06:00
* Remove unused error return value from PreparePostForClient * Remove unused error return value from PreparePostListForClient * MM-11434 Parallelize PreparePostListForClient * MM-11434 Skip looking reactions and files on post whenever possible * Add note about the use of deprecated fields
123 lines
3.5 KiB
Go
123 lines
3.5 KiB
Go
// Copyright (c) 2017-present Mattermost, Inc. All Rights Reserved.
|
|
// See License.txt for license information.
|
|
|
|
package app
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/mattermost/mattermost-server/model"
|
|
)
|
|
|
|
func (a *App) SaveReactionForPost(reaction *model.Reaction) (*model.Reaction, *model.AppError) {
|
|
post, err := a.GetSinglePost(reaction.PostId)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
channel, err := a.GetChannel(post.ChannelId)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
if channel.DeleteAt > 0 {
|
|
return nil, model.NewAppError("deleteReactionForPost", "api.reaction.save.archived_channel.app_error", nil, "", http.StatusForbidden)
|
|
}
|
|
|
|
if a.License() != nil && *a.Config().TeamSettings.ExperimentalTownSquareIsReadOnly && channel.Name == model.DEFAULT_CHANNEL {
|
|
user, err := a.GetUser(reaction.UserId)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
if !a.RolesGrantPermission(user.GetRoles(), model.PERMISSION_MANAGE_SYSTEM.Id) {
|
|
return nil, model.NewAppError("saveReactionForPost", "api.reaction.town_square_read_only", nil, "", http.StatusForbidden)
|
|
}
|
|
}
|
|
|
|
result := <-a.Srv.Store.Reaction().Save(reaction)
|
|
if result.Err != nil {
|
|
return nil, result.Err
|
|
}
|
|
|
|
reaction = result.Data.(*model.Reaction)
|
|
|
|
// The post is always modified since the UpdateAt always changes
|
|
a.InvalidateCacheForChannelPosts(post.ChannelId)
|
|
|
|
a.Srv.Go(func() {
|
|
a.sendReactionEvent(model.WEBSOCKET_EVENT_REACTION_ADDED, reaction, post, true)
|
|
})
|
|
|
|
return reaction, nil
|
|
}
|
|
|
|
func (a *App) GetReactionsForPost(postId string) ([]*model.Reaction, *model.AppError) {
|
|
result := <-a.Srv.Store.Reaction().GetForPost(postId, true)
|
|
if result.Err != nil {
|
|
return nil, result.Err
|
|
}
|
|
return result.Data.([]*model.Reaction), nil
|
|
}
|
|
|
|
func (a *App) DeleteReactionForPost(reaction *model.Reaction) *model.AppError {
|
|
post, err := a.GetSinglePost(reaction.PostId)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
channel, err := a.GetChannel(post.ChannelId)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
if channel.DeleteAt > 0 {
|
|
return model.NewAppError("deleteReactionForPost", "api.reaction.delete.archived_channel.app_error", nil, "", http.StatusForbidden)
|
|
}
|
|
|
|
if a.License() != nil && *a.Config().TeamSettings.ExperimentalTownSquareIsReadOnly && channel.Name == model.DEFAULT_CHANNEL {
|
|
user, err := a.GetUser(reaction.UserId)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
if !a.RolesGrantPermission(user.GetRoles(), model.PERMISSION_MANAGE_SYSTEM.Id) {
|
|
return model.NewAppError("deleteReactionForPost", "api.reaction.town_square_read_only", nil, "", http.StatusForbidden)
|
|
}
|
|
}
|
|
|
|
hasReactions := true
|
|
if reactions, _ := a.GetReactionsForPost(post.Id); len(reactions) <= 1 {
|
|
hasReactions = false
|
|
}
|
|
|
|
if result := <-a.Srv.Store.Reaction().Delete(reaction); result.Err != nil {
|
|
return result.Err
|
|
}
|
|
|
|
// The post is always modified since the UpdateAt always changes
|
|
a.InvalidateCacheForChannelPosts(post.ChannelId)
|
|
|
|
a.Srv.Go(func() {
|
|
a.sendReactionEvent(model.WEBSOCKET_EVENT_REACTION_REMOVED, reaction, post, hasReactions)
|
|
})
|
|
|
|
return nil
|
|
}
|
|
|
|
func (a *App) sendReactionEvent(event string, reaction *model.Reaction, post *model.Post, hasReactions bool) {
|
|
// send out that a reaction has been added/removed
|
|
message := model.NewWebSocketEvent(event, "", post.ChannelId, "", nil)
|
|
message.Add("reaction", reaction.ToJson())
|
|
a.Publish(message)
|
|
|
|
post.HasReactions = hasReactions
|
|
post.UpdateAt = model.GetMillis()
|
|
|
|
clientPost := a.PreparePostForClient(post)
|
|
|
|
umessage := model.NewWebSocketEvent(model.WEBSOCKET_EVENT_POST_EDITED, "", post.ChannelId, "", nil)
|
|
umessage.Add("post", clientPost.ToJson())
|
|
a.Publish(umessage)
|
|
}
|