The communications platform that puts data protection first.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
Rocket.Chat/server/methods/deleteMessage.coffee

47 lines
1.4 KiB

Meteor.methods
deleteMessage: (message) ->
if not Meteor.userId()
throw new Meteor.Error('invalid-user', "[methods] deleteMessage -> Invalid user")
if not RocketChat.settings.get 'Message_AllowDeleting'
throw new Meteor.Error 'message-deleting-not-allowed', "[methods] updateMessage -> Message deleting not allowed"
user = Meteor.users.findOne Meteor.userId()
unless user?.admin is true or message.u._id is Meteor.userId()
throw new Meteor.Error 'not-authorized', '[methods] deleteMessage -> Not authorized'
console.log '[methods] deleteMessage -> '.green, 'userId:', Meteor.userId(), 'arguments:', arguments
keepHistory = RocketChat.settings.get 'Message_KeepHistory'
showDeletedStatus = RocketChat.settings.get 'Message_ShowDeletedStatus'
deleteQuery =
_id: message._id
deleteQuery['u._id'] = Meteor.userId() if user?.admin isnt true
if keepHistory
if showDeletedStatus
history = ChatMessage.findOne message._id
history._hidden = true
history.parent = history._id
history.ets = new Date()
delete history._id
ChatMessage.insert history
else
ChatMessage.update deleteQuery,
$set:
_hidden: true
else
if not showDeletedStatus
ChatMessage.remove deleteQuery
if showDeletedStatus
ChatMessage.update deleteQuery,
$set:
msg: ''
t: 'rm'
ets: new Date()
else
RocketChat.Notifications.notifyRoom message.rid, 'deleteMessage', { _id: message._id }