2016-11-15 10:56:29 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-03-19 14:20:07 -04:00
|
|
|
class NotificationMailer < ApplicationMailer
|
|
|
|
helper StreamEntriesHelper
|
|
|
|
|
2016-11-19 18:33:02 -05:00
|
|
|
def mention(recipient, notification)
|
|
|
|
@me = recipient
|
|
|
|
@status = notification.target_status
|
2016-11-16 11:51:02 -05:00
|
|
|
|
|
|
|
I18n.with_locale(@me.user.locale || I18n.default_locale) do
|
|
|
|
mail to: @me.user.email, subject: I18n.t('notification_mailer.mention.subject', name: @status.account.acct)
|
|
|
|
end
|
2016-03-19 14:20:07 -04:00
|
|
|
end
|
|
|
|
|
2016-11-19 18:33:02 -05:00
|
|
|
def follow(recipient, notification)
|
|
|
|
@me = recipient
|
|
|
|
@account = notification.from_account
|
2016-11-16 11:51:02 -05:00
|
|
|
|
|
|
|
I18n.with_locale(@me.user.locale || I18n.default_locale) do
|
|
|
|
mail to: @me.user.email, subject: I18n.t('notification_mailer.follow.subject', name: @account.acct)
|
|
|
|
end
|
2016-03-19 14:20:07 -04:00
|
|
|
end
|
|
|
|
|
2016-11-19 18:33:02 -05:00
|
|
|
def favourite(recipient, notification)
|
|
|
|
@me = recipient
|
|
|
|
@account = notification.from_account
|
|
|
|
@status = notification.target_status
|
2016-11-16 11:51:02 -05:00
|
|
|
|
|
|
|
I18n.with_locale(@me.user.locale || I18n.default_locale) do
|
|
|
|
mail to: @me.user.email, subject: I18n.t('notification_mailer.favourite.subject', name: @account.acct)
|
|
|
|
end
|
2016-03-19 14:20:07 -04:00
|
|
|
end
|
|
|
|
|
2016-11-19 18:33:02 -05:00
|
|
|
def reblog(recipient, notification)
|
|
|
|
@me = recipient
|
|
|
|
@account = notification.from_account
|
|
|
|
@status = notification.target_status
|
2016-11-16 11:51:02 -05:00
|
|
|
|
|
|
|
I18n.with_locale(@me.user.locale || I18n.default_locale) do
|
|
|
|
mail to: @me.user.email, subject: I18n.t('notification_mailer.reblog.subject', name: @account.acct)
|
|
|
|
end
|
2016-03-19 14:20:07 -04:00
|
|
|
end
|
2016-12-26 15:52:03 -05:00
|
|
|
|
|
|
|
def follow_request(recipient, notification)
|
|
|
|
@me = recipient
|
|
|
|
@account = notification.from_account
|
|
|
|
|
|
|
|
I18n.with_locale(@me.user.locale || I18n.default_locale) do
|
|
|
|
mail to: @me.user.email, subject: I18n.t('notification_mailer.follow_request.subject', name: @account.acct)
|
|
|
|
end
|
|
|
|
end
|
2017-03-03 17:45:48 -05: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?
|
|
|
|
|
|
|
|
I18n.with_locale(@me.user.locale || I18n.default_locale) do
|
2017-04-16 13:37:01 -04:00
|
|
|
mail to: @me.user.email,
|
2017-05-01 10:31:02 -04:00
|
|
|
subject: I18n.t(
|
|
|
|
:subject,
|
|
|
|
scope: [:notification_mailer, :digest],
|
|
|
|
count: @notifications.size
|
|
|
|
)
|
2017-03-03 17:45:48 -05:00
|
|
|
end
|
|
|
|
end
|
2016-03-19 14:20:07 -04:00
|
|
|
end
|