2016-11-15 16:56:29 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-03-19 19:20:07 +01:00
|
|
|
class NotificationMailer < ApplicationMailer
|
2019-07-07 16:16:51 +02:00
|
|
|
helper :statuses
|
2016-03-19 19:20:07 +01:00
|
|
|
|
2018-01-16 20:20:15 +01:00
|
|
|
add_template_helper RoutingHelper
|
|
|
|
|
2016-11-20 00:33:02 +01:00
|
|
|
def mention(recipient, notification)
|
|
|
|
@me = recipient
|
|
|
|
@status = notification.target_status
|
2016-11-16 17:51:02 +01:00
|
|
|
|
2018-02-04 12:31:46 +01:00
|
|
|
return if @me.user.disabled? || @status.nil?
|
2017-11-07 19:06:44 +01:00
|
|
|
|
2017-05-05 20:56:00 +02:00
|
|
|
locale_for_account(@me) do
|
2017-09-24 11:19:42 +02:00
|
|
|
thread_by_conversation(@status.conversation)
|
2016-11-16 17:51:02 +01:00
|
|
|
mail to: @me.user.email, subject: I18n.t('notification_mailer.mention.subject', name: @status.account.acct)
|
|
|
|
end
|
2016-03-19 19:20:07 +01:00
|
|
|
end
|
|
|
|
|
2016-11-20 00:33:02 +01:00
|
|
|
def follow(recipient, notification)
|
|
|
|
@me = recipient
|
|
|
|
@account = notification.from_account
|
2016-11-16 17:51:02 +01:00
|
|
|
|
2017-11-07 19:06:44 +01:00
|
|
|
return if @me.user.disabled?
|
|
|
|
|
2017-05-05 20:56:00 +02:00
|
|
|
locale_for_account(@me) do
|
2016-11-16 17:51:02 +01:00
|
|
|
mail to: @me.user.email, subject: I18n.t('notification_mailer.follow.subject', name: @account.acct)
|
|
|
|
end
|
2016-03-19 19:20:07 +01:00
|
|
|
end
|
|
|
|
|
2016-11-20 00:33:02 +01:00
|
|
|
def favourite(recipient, notification)
|
|
|
|
@me = recipient
|
|
|
|
@account = notification.from_account
|
|
|
|
@status = notification.target_status
|
2016-11-16 17:51:02 +01:00
|
|
|
|
2018-02-04 12:31:46 +01:00
|
|
|
return if @me.user.disabled? || @status.nil?
|
2017-11-07 19:06:44 +01:00
|
|
|
|
2017-05-05 20:56:00 +02:00
|
|
|
locale_for_account(@me) do
|
2017-09-24 11:19:42 +02:00
|
|
|
thread_by_conversation(@status.conversation)
|
2016-11-16 17:51:02 +01:00
|
|
|
mail to: @me.user.email, subject: I18n.t('notification_mailer.favourite.subject', name: @account.acct)
|
|
|
|
end
|
2016-03-19 19:20:07 +01:00
|
|
|
end
|
|
|
|
|
2016-11-20 00:33:02 +01:00
|
|
|
def reblog(recipient, notification)
|
|
|
|
@me = recipient
|
|
|
|
@account = notification.from_account
|
|
|
|
@status = notification.target_status
|
2016-11-16 17:51:02 +01:00
|
|
|
|
2018-02-04 12:31:46 +01:00
|
|
|
return if @me.user.disabled? || @status.nil?
|
2017-11-07 19:06:44 +01:00
|
|
|
|
2017-05-05 20:56:00 +02:00
|
|
|
locale_for_account(@me) do
|
2017-09-24 11:19:42 +02:00
|
|
|
thread_by_conversation(@status.conversation)
|
2016-11-16 17:51:02 +01:00
|
|
|
mail to: @me.user.email, subject: I18n.t('notification_mailer.reblog.subject', name: @account.acct)
|
|
|
|
end
|
2016-03-19 19:20:07 +01:00
|
|
|
end
|
2016-12-26 21:52:03 +01:00
|
|
|
|
|
|
|
def follow_request(recipient, notification)
|
|
|
|
@me = recipient
|
|
|
|
@account = notification.from_account
|
|
|
|
|
2017-11-07 19:06:44 +01:00
|
|
|
return if @me.user.disabled?
|
|
|
|
|
2017-05-05 20:56:00 +02:00
|
|
|
locale_for_account(@me) do
|
2016-12-26 21:52:03 +01:00
|
|
|
mail to: @me.user.email, subject: I18n.t('notification_mailer.follow_request.subject', name: @account.acct)
|
|
|
|
end
|
|
|
|
end
|
2017-03-03 23:45:48 +01:00
|
|
|
|
2017-12-06 11:41:57 +01:00
|
|
|
def digest(recipient, **opts)
|
2019-01-02 10:47:32 +01:00
|
|
|
return if recipient.user.disabled?
|
|
|
|
|
|
|
|
@me = recipient
|
|
|
|
@since = opts[:since] || [@me.user.last_emailed_at, (@me.user.current_sign_in_at + 1.day)].compact.max
|
|
|
|
@notifications_count = Notification.where(account: @me, activity_type: 'Mention').where('created_at > ?', @since).count
|
2017-03-03 23:45:48 +01:00
|
|
|
|
2019-01-02 10:47:32 +01:00
|
|
|
return if @notifications_count.zero?
|
|
|
|
|
|
|
|
@notifications = Notification.where(account: @me, activity_type: 'Mention').where('created_at > ?', @since).limit(40)
|
|
|
|
@follows_since = Notification.where(account: @me, activity_type: 'Follow').where('created_at > ?', @since).count
|
2017-03-03 23:45:48 +01:00
|
|
|
|
2017-05-05 20:56:00 +02:00
|
|
|
locale_for_account(@me) do
|
2017-04-16 19:37:01 +02:00
|
|
|
mail to: @me.user.email,
|
2019-01-02 10:47:32 +01:00
|
|
|
subject: I18n.t(:subject, scope: [:notification_mailer, :digest], count: @notifications_count)
|
2017-03-03 23:45:48 +01:00
|
|
|
end
|
|
|
|
end
|
2017-09-24 11:19:42 +02: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 19:20:07 +01:00
|
|
|
end
|