2016-11-15 15:56:29 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-03-19 18:20:07 +00:00
|
|
|
class NotificationMailer < ApplicationMailer
|
2018-01-16 02:29:11 +00:00
|
|
|
layout 'plain_mailer'
|
|
|
|
|
|
|
|
helper :stream_entries
|
2016-03-19 18:20:07 +00:00
|
|
|
|
2016-11-19 23:33:02 +00:00
|
|
|
def mention(recipient, notification)
|
|
|
|
@me = recipient
|
|
|
|
@status = notification.target_status
|
2016-11-16 16:51:02 +00:00
|
|
|
|
2017-11-07 18:06:44 +00:00
|
|
|
return if @me.user.disabled?
|
|
|
|
|
2017-05-05 19:56:00 +01:00
|
|
|
locale_for_account(@me) do
|
2017-09-24 10:19:42 +01:00
|
|
|
thread_by_conversation(@status.conversation)
|
2016-11-16 16:51:02 +00:00
|
|
|
mail to: @me.user.email, subject: I18n.t('notification_mailer.mention.subject', name: @status.account.acct)
|
|
|
|
end
|
2016-03-19 18:20:07 +00:00
|
|
|
end
|
|
|
|
|
2016-11-19 23:33:02 +00:00
|
|
|
def follow(recipient, notification)
|
|
|
|
@me = recipient
|
|
|
|
@account = notification.from_account
|
2016-11-16 16:51:02 +00:00
|
|
|
|
2017-11-07 18:06:44 +00:00
|
|
|
return if @me.user.disabled?
|
|
|
|
|
2017-05-05 19:56:00 +01:00
|
|
|
locale_for_account(@me) do
|
2016-11-16 16:51:02 +00:00
|
|
|
mail to: @me.user.email, subject: I18n.t('notification_mailer.follow.subject', name: @account.acct)
|
|
|
|
end
|
2016-03-19 18:20:07 +00:00
|
|
|
end
|
|
|
|
|
2016-11-19 23:33:02 +00:00
|
|
|
def favourite(recipient, notification)
|
|
|
|
@me = recipient
|
|
|
|
@account = notification.from_account
|
|
|
|
@status = notification.target_status
|
2016-11-16 16:51:02 +00:00
|
|
|
|
2017-11-07 18:06:44 +00:00
|
|
|
return if @me.user.disabled?
|
|
|
|
|
2017-05-05 19:56:00 +01:00
|
|
|
locale_for_account(@me) do
|
2017-09-24 10:19:42 +01:00
|
|
|
thread_by_conversation(@status.conversation)
|
2016-11-16 16:51:02 +00:00
|
|
|
mail to: @me.user.email, subject: I18n.t('notification_mailer.favourite.subject', name: @account.acct)
|
|
|
|
end
|
2016-03-19 18:20:07 +00:00
|
|
|
end
|
|
|
|
|
2016-11-19 23:33:02 +00:00
|
|
|
def reblog(recipient, notification)
|
|
|
|
@me = recipient
|
|
|
|
@account = notification.from_account
|
|
|
|
@status = notification.target_status
|
2016-11-16 16:51:02 +00:00
|
|
|
|
2017-11-07 18:06:44 +00:00
|
|
|
return if @me.user.disabled?
|
|
|
|
|
2017-05-05 19:56:00 +01:00
|
|
|
locale_for_account(@me) do
|
2017-09-24 10:19:42 +01:00
|
|
|
thread_by_conversation(@status.conversation)
|
2016-11-16 16:51:02 +00:00
|
|
|
mail to: @me.user.email, subject: I18n.t('notification_mailer.reblog.subject', name: @account.acct)
|
|
|
|
end
|
2016-03-19 18:20:07 +00:00
|
|
|
end
|
2016-12-26 20:52:03 +00:00
|
|
|
|
|
|
|
def follow_request(recipient, notification)
|
|
|
|
@me = recipient
|
|
|
|
@account = notification.from_account
|
|
|
|
|
2017-11-07 18:06:44 +00:00
|
|
|
return if @me.user.disabled?
|
|
|
|
|
2017-05-05 19:56:00 +01:00
|
|
|
locale_for_account(@me) do
|
2016-12-26 20:52:03 +00:00
|
|
|
mail to: @me.user.email, subject: I18n.t('notification_mailer.follow_request.subject', name: @account.acct)
|
|
|
|
end
|
|
|
|
end
|
2017-03-03 22:45:48 +00:00
|
|
|
|
2017-12-06 10:41:57 +00:00
|
|
|
def digest(recipient, **opts)
|
2017-03-03 22:45:48 +00: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 18:06:44 +00:00
|
|
|
return if @me.user.disabled? || @notifications.empty?
|
2017-03-03 22:45:48 +00:00
|
|
|
|
2017-05-05 19:56:00 +01:00
|
|
|
locale_for_account(@me) do
|
2017-04-16 18:37:01 +01:00
|
|
|
mail to: @me.user.email,
|
2017-11-07 18:06:44 +00:00
|
|
|
subject: I18n.t(:subject, scope: [:notification_mailer, :digest], count: @notifications.size)
|
2017-03-03 22:45:48 +00:00
|
|
|
end
|
|
|
|
end
|
2017-09-24 10:19:42 +01: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 18:20:07 +00:00
|
|
|
end
|