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/createDirectMessage.coffee

86 lines
2.0 KiB

Meteor.methods
createDirectMessage: (username) ->
check username, String
if not Meteor.userId()
throw new Meteor.Error 'error-invalid-user', "Invalid user", { method: 'createDirectMessage' }
me = Meteor.user()
unless me.username
throw new Meteor.Error 'error-invalid-user', "Invalid user", { method: 'createDirectMessage' }
if me.username is username
throw new Meteor.Error 'error-invalid-user', "Invalid user", { method: 'createDirectMessage' }
if !RocketChat.authz.hasPermission Meteor.userId(), 'create-d'
throw new Meteor.Error 'error-not-allowed', 'Not allowed', { method: 'createDirectMessage' }
to = RocketChat.models.Users.findOneByUsername username
if not to
throw new Meteor.Error 'error-invalid-user', "Invalid user", { method: 'createDirectMessage' }
rid = [me._id, to._id].sort().join('')
now = new Date()
# Make sure we have a room
RocketChat.models.Rooms.upsert
_id: rid
,
$set:
usernames: [me.username, to.username]
$setOnInsert:
t: 'd'
msgs: 0
ts: now
# Make user I have a subcription to this room
upsertSubscription =
$set:
ts: now
ls: now
open: true
$setOnInsert:
name: to.username
t: 'd'
alert: false
unread: 0
u:
_id: me._id
username: me.username
if to.active is false
upsertSubscription.$set.archived = true
RocketChat.models.Subscriptions.upsert
rid: rid
$and: [{'u._id': me._id}] # work around to solve problems with upsert and dot
,
upsertSubscription
# Make user the target user has a subcription to this room
RocketChat.models.Subscriptions.upsert
rid: rid
$and: [{'u._id': to._id}] # work around to solve problems with upsert and dot
,
$setOnInsert:
name: me.username
t: 'd'
open: false
alert: false
unread: 0
u:
_id: to._id
username: to.username
return {
rid: rid
}
DDPRateLimiter.addRule
type: 'method'
name: 'createDirectMessage'
connectionId: -> return true
, 10, 60000