2016-11-15 07:56:29 -08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-03-19 11:20:07 -07:00
|
|
|
class NotificationMailer < ApplicationMailer
|
2018-01-15 18:29:11 -08:00
|
|
|
helper :stream_entries
|
2016-03-19 11:20:07 -07:00
|
|
|
|
2018-01-16 11:20:15 -08:00
|
|
|
add_template_helper RoutingHelper
|
|
|
|
|
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
|
|
|
|
2018-02-04 03:31:46 -08:00
|
|
|
return if @me.user.disabled? || @status.nil?
|
2017-11-07 10:06:44 -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-11-07 10:06:44 -08:00
|
|
|
return if @me.user.disabled?
|
|
|
|
|
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
|
|
|
|
2018-02-04 03:31:46 -08:00
|
|
|
return if @me.user.disabled? || @status.nil?
|
2017-11-07 10:06:44 -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
|
|
|
|
2018-02-04 03:31:46 -08:00
|
|
|
return if @me.user.disabled? || @status.nil?
|
2017-11-07 10:06:44 -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-11-07 10:06:44 -08:00
|
|
|
return if @me.user.disabled?
|
|
|
|
|
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
|
|
|
|
2017-12-06 02:41:57 -08:00
|
|
|
def digest(recipient, **opts)
|
2017-03-03 14:45:48 -08:00
|
|
|
@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
|
|
|
|
|
2017-11-07 10:06:44 -08:00
|
|
|
return if @me.user.disabled? || @notifications.empty?
|
2017-03-03 14:45:48 -08:00
|
|
|
|
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-11-07 10:06:44 -08: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
|