2016-09-24 03:00:46 +00:00
|
|
|
# frozen_string_literal: true
|
2017-11-25 19:23:47 +00:00
|
|
|
|
2016-04-24 15:50:35 +00:00
|
|
|
class ApplicationMailer < ActionMailer::Base
|
2016-07-26 00:14:23 +00:00
|
|
|
default from: 'team@metamaps.cc'
|
2016-04-24 15:50:35 +00:00
|
|
|
layout 'mailer'
|
2016-11-01 03:18:27 +00:00
|
|
|
|
2016-12-08 19:39:41 +00:00
|
|
|
class << self
|
|
|
|
def mail_for_notification(notification)
|
2017-02-09 21:53:19 +00:00
|
|
|
case notification.notification_code
|
2017-11-25 19:23:47 +00:00
|
|
|
when MAP_ACCESS_REQUEST
|
|
|
|
request = notification.notified_object
|
|
|
|
MapMailer.access_request(request)
|
|
|
|
when MAP_ACCESS_APPROVED
|
|
|
|
request = notification.notified_object
|
|
|
|
MapMailer.access_approved(request)
|
|
|
|
when MAP_INVITE_TO_EDIT
|
|
|
|
user_map = notification.notified_object
|
|
|
|
MapMailer.invite_to_edit(user_map)
|
|
|
|
when TOPIC_ADDED_TO_MAP
|
|
|
|
event = notification.notified_object
|
|
|
|
TopicMailer.added_to_map(event, notification.recipients[0])
|
|
|
|
when TOPIC_CONNECTED_1
|
|
|
|
synapse = notification.notified_object
|
|
|
|
TopicMailer.connected(synapse, synapse.topic1, notification.recipients[0])
|
|
|
|
when TOPIC_CONNECTED_2
|
|
|
|
synapse = notification.notified_object
|
|
|
|
TopicMailer.connected(synapse, synapse.topic2, notification.recipients[0])
|
2016-12-08 19:39:41 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2016-04-24 15:50:35 +00:00
|
|
|
end
|