2016-11-15 07:56:29 -08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-03-19 11:20:07 -07:00
|
|
|
class NotificationMailer < ApplicationMailer
|
|
|
|
helper StreamEntriesHelper
|
|
|
|
|
2016-11-19 15:33:02 -08:00
|
|
|
def mention(recipient, notification)
|
|
|
|
@me = recipient
|
|
|
|
@status = notification.target_status
|
2016-11-16 08:51:02 -08:00
|
|
|
|
2017-05-05 11:56:00 -07:00
|
|
|
locale_for_account(@me) do
|
2017-09-24 02:19:42 -07:00
|
|
|
thread_by_conversation(@status.conversation)
|
2016-11-16 08:51:02 -08:00
|
|
|
mail to: @me.user.email, subject: I18n.t('notification_mailer.mention.subject', name: @status.account.acct)
|
|
|
|
end
|
2016-03-19 11:20:07 -07:00
|
|
|
end
|
|
|
|
|
2016-11-19 15:33:02 -08:00
|
|
|
def follow(recipient, notification)
|
|
|
|
@me = recipient
|
|
|
|
@account = notification.from_account
|
2016-11-16 08:51:02 -08:00
|
|
|
|
2017-05-05 11:56:00 -07:00
|
|
|
locale_for_account(@me) do
|
2016-11-16 08:51:02 -08:00
|
|
|
mail to: @me.user.email, subject: I18n.t('notification_mailer.follow.subject', name: @account.acct)
|
|
|
|
end
|
2016-03-19 11:20:07 -07:00
|
|
|
end
|
|
|
|
|
2016-11-19 15:33:02 -08:00
|
|
|
def favourite(recipient, notification)
|
|
|
|
@me = recipient
|
|
|
|
@account = notification.from_account
|
|
|
|
@status = notification.target_status
|
2016-11-16 08:51:02 -08:00
|
|
|
|
2017-05-05 11:56:00 -07:00
|
|
|
locale_for_account(@me) do
|
2017-09-24 02:19:42 -07:00
|
|
|
thread_by_conversation(@status.conversation)
|
2016-11-16 08:51:02 -08:00
|
|
|
mail to: @me.user.email, subject: I18n.t('notification_mailer.favourite.subject', name: @account.acct)
|
|
|
|
end
|
2016-03-19 11:20:07 -07:00
|
|
|
end
|
|
|
|
|
2016-11-19 15:33:02 -08:00
|
|
|
def reblog(recipient, notification)
|
|
|
|
@me = recipient
|
|
|
|
@account = notification.from_account
|
|
|
|
@status = notification.target_status
|
2016-11-16 08:51:02 -08:00
|
|
|
|
2017-05-05 11:56:00 -07:00
|
|
|
locale_for_account(@me) do
|
2017-09-24 02:19:42 -07:00
|
|
|
thread_by_conversation(@status.conversation)
|
2016-11-16 08:51:02 -08:00
|
|
|
mail to: @me.user.email, subject: I18n.t('notification_mailer.reblog.subject', name: @account.acct)
|
|
|
|
end
|
2016-03-19 11:20:07 -07:00
|
|
|
end
|
2016-12-26 12:52:03 -08:00
|
|
|
|
|
|
|
def follow_request(recipient, notification)
|
|
|
|
@me = recipient
|
|
|
|
@account = notification.from_account
|
|
|
|
|
2017-05-05 11:56:00 -07:00
|
|
|
locale_for_account(@me) do
|
2016-12-26 12:52:03 -08:00
|
|
|
mail to: @me.user.email, subject: I18n.t('notification_mailer.follow_request.subject', name: @account.acct)
|
|
|
|
end
|
|
|
|
end
|
2017-03-03 14:45:48 -08:00
|
|
|
|
|
|
|
def digest(recipient, opts = {})
|
|
|
|
@me = recipient
|
|
|
|
@since = opts[:since] || @me.user.last_emailed_at || @me.user.current_sign_in_at
|
|
|
|
@notifications = Notification.where(account: @me, activity_type: 'Mention').where('created_at > ?', @since)
|
|
|
|
@follows_since = Notification.where(account: @me, activity_type: 'Follow').where('created_at > ?', @since).count
|
|
|
|
|
|
|
|
return if @notifications.empty?
|
|
|
|
|
2017-05-05 11:56:00 -07:00
|
|
|
locale_for_account(@me) do
|
2017-04-16 10:37:01 -07:00
|
|
|
mail to: @me.user.email,
|
2017-05-01 07:31:02 -07:00
|
|
|
subject: I18n.t(
|
|
|
|
:subject,
|
|
|
|
scope: [:notification_mailer, :digest],
|
|
|
|
count: @notifications.size
|
|
|
|
)
|
2017-03-03 14:45:48 -08:00
|
|
|
end
|
|
|
|
end
|
2017-09-24 02:19:42 -07:00
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def thread_by_conversation(conversation)
|
|
|
|
return if conversation.nil?
|
|
|
|
msg_id = "<conversation-#{conversation.id}.#{conversation.created_at.strftime('%Y-%m-%d')}@#{Rails.configuration.x.local_domain}>"
|
|
|
|
headers['In-Reply-To'] = msg_id
|
|
|
|
headers['References'] = msg_id
|
|
|
|
end
|
2016-03-19 11:20:07 -07:00
|
|
|
end
|