| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137 |
- // Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
- // See LICENSE.txt for license information.
- package app
- import (
- "net/http"
- "github.com/mattermost/mattermost-server/v5/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 {
- var user *model.User
- 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)
- }
- }
- reaction, err = a.Srv.Store.Reaction().Save(reaction)
- if err != nil {
- return nil, 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_ADDED, reaction, post, true)
- })
- return reaction, nil
- }
- func (a *App) GetReactionsForPost(postId string) ([]*model.Reaction, *model.AppError) {
- return a.Srv.Store.Reaction().GetForPost(postId, true)
- }
- func (a *App) GetBulkReactionsForPosts(postIds []string) (map[string][]*model.Reaction, *model.AppError) {
- reactions := make(map[string][]*model.Reaction)
- allReactions, err := a.Srv.Store.Reaction().BulkGetForPosts(postIds)
- if err != nil {
- return nil, err
- }
- for _, reaction := range allReactions {
- reactionsForPost := reactions[reaction.PostId]
- reactionsForPost = append(reactionsForPost, reaction)
- reactions[reaction.PostId] = reactionsForPost
- }
- reactions = populateEmptyReactions(postIds, reactions)
- return reactions, nil
- }
- func populateEmptyReactions(postIds []string, reactions map[string][]*model.Reaction) map[string][]*model.Reaction {
- for _, postId := range postIds {
- if _, present := reactions[postId]; !present {
- reactions[postId] = []*model.Reaction{}
- }
- }
- return reactions
- }
- 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 _, err := a.Srv.Store.Reaction().Delete(reaction); err != nil {
- return 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)
- }
|