Skip to content
Snippets Groups Projects
Commit 546df19d authored by TheConnMan's avatar TheConnMan
Browse files

Add email notification preference

parent 39598956
No related branches found
No related tags found
No related merge requests found
......@@ -50,7 +50,7 @@ RocketChat.sendMessage = (user, message, room, options) ->
###
RocketChat.models.Subscriptions.incUnreadOfDirectForRoomIdExcludingUserId message.rid, message.u._id, 1
userOfMention = RocketChat.models.Users.findOne({_id: message.rid.replace(message.u._id, '')}, {fields: {username: 1, statusConnection: 1, status: 1, emails: 1}})
userOfMention = RocketChat.models.Users.findOne({_id: message.rid.replace(message.u._id, '')}, {fields: {username: 1, statusConnection: 1, status: 1, emails: 1, settings: 1}})
if userOfMention?
RocketChat.Notifications.notifyUser userOfMention._id, 'notification',
title: "@#{user.username}"
......@@ -79,7 +79,7 @@ RocketChat.sendMessage = (user, message, room, options) ->
query:
userId: userOfMention._id
if userOfMention.status is 'offline'
if userOfMention.status is 'offline' and userOfMention.settings?.preferences?.emailNotificationMode is true
Email.send
to: userOfMention.emails[0].address
from: RocketChat.settings.get('From_Email')
......@@ -95,7 +95,7 @@ RocketChat.sendMessage = (user, message, room, options) ->
toAll = mentionIds.indexOf('all') > -1
if mentionIds.length > 0
usersOfMention = RocketChat.models.Users.find({_id: {$in: mentionIds}}, {fields: {_id: 1, username: 1, status: 1, emails: 1}}).fetch()
usersOfMention = RocketChat.models.Users.find({_id: {$in: mentionIds}}, {fields: {_id: 1, username: 1, status: 1, emails: 1, settings: 1}}).fetch()
if room.t is 'c' and !toAll
for usersOfMentionItem in usersOfMention
......@@ -119,21 +119,21 @@ RocketChat.sendMessage = (user, message, room, options) ->
userIdsToPushNotify = userIdsToNotify
offlineMentionsRoom = _.filter usersOfMention, (user) ->
user.status is 'offline'
user.status is 'offline' and user.settings?.preferences?.emailNotificationMode is true
# If the message is @all, notify all room users except for the sender.
if toAll and room.usernames?.length > 0
usersOfRoom = RocketChat.models.Users.find({
username: {$in: room.usernames},
_id: {$ne: user._id}},
{fields: {_id: 1, username: 1, status: 1, emails: 1}})
{fields: {_id: 1, username: 1, status: 1, emails: 1, settings: 1}})
.fetch()
onlineUsersOfRoom = _.filter usersOfRoom, (user) ->
user.status in ['online', 'away', 'busy']
userIdsToNotify = _.union userIdsToNotify, _.pluck(onlineUsersOfRoom, '_id')
userIdsToPushNotify = _.union userIdsToPushNotify, _.pluck(usersOfRoom, '_id')
offlineMentionsRoom = _.filter usersOfRoom, (user) ->
user.status is 'offline'
user.status is 'offline' and user.settings?.preferences?.emailNotificationMode is true
if userIdsToNotify.length > 0
for usersOfMentionId in userIdsToNotify
......
......@@ -42,6 +42,7 @@ Template.accountPreferences.onCreated ->
data.compactView = $('input[name=compactView]:checked').val()
data.unreadRoomsMode = $('input[name=unreadRoomsMode]:checked').val()
data.autoImageLoad = $('input[name=autoImageLoad]:checked').val()
data.emailNotificationMode = $('input[name=emailNotificationMode]:checked').val()
Meteor.call 'saveUserPreferences', data, (error, results) ->
if results
......
......@@ -68,6 +68,13 @@
<label><input type="radio" name="unreadRoomsMode" value="0" checked="{{checked 'unreadRoomsMode' false true}}" /> {{_ "False"}}</label>
</div>
</div>
<div class="input-line double-col" id="emailNotificationMode">
<label>{{_ "Email_Notification_Mode"}}</label>
<div>
<label><input type="radio" name="emailNotificationMode" value="1" checked="{{checked 'emailNotificationMode' true true}}" /> {{_ "True"}}</label>
<label><input type="radio" name="emailNotificationMode" value="0" checked="{{checked 'emailNotificationMode' false}}" /> {{_ "False"}}</label>
</div>
</div>
</div>
</div>
<div class="section">
......
......@@ -27,6 +27,9 @@ Meteor.methods
if settings.autoImageLoad?
preferences.autoImageLoad = if settings.autoImageLoad is "1" then true else false
if settings.emailNotificationMode?
preferences.emailNotificationMode = if settings.emailNotificationMode is "1" then true else false
RocketChat.models.Users.setPreferences Meteor.userId(), preferences
return true
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment