2016-11-16 02:56:29 +11:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-03-20 05:20:07 +11:00
|
|
|
class NotificationMailer < ApplicationMailer
|
2019-10-25 07:50:09 +11:00
|
|
|
helper :accounts
|
2019-07-08 00:16:51 +10:00
|
|
|
helper :statuses
|
2016-03-20 05:20:07 +11:00
|
|
|
|
2021-03-17 20:09:55 +11:00
|
|
|
helper RoutingHelper
|
2018-01-17 06:20:15 +11:00
|
|
|
|
2016-11-20 10:33:02 +11:00
|
|
|
def mention(recipient, notification)
|
|
|
|
@me = recipient
|
2023-06-12 22:22:46 +10:00
|
|
|
@user = recipient.user
|
|
|
|
@type = 'mention'
|
2016-11-20 10:33:02 +11:00
|
|
|
@status = notification.target_status
|
2016-11-17 03:51:02 +11:00
|
|
|
|
2023-06-12 22:22:46 +10:00
|
|
|
return unless @user.functional? && @status.present?
|
2017-11-08 05:06:44 +11:00
|
|
|
|
2017-05-06 04:56:00 +10:00
|
|
|
locale_for_account(@me) do
|
2017-09-24 19:19:42 +10:00
|
|
|
thread_by_conversation(@status.conversation)
|
2023-06-12 22:22:46 +10:00
|
|
|
mail to: email_address_with_name(@user.email, @me.username), subject: I18n.t('notification_mailer.mention.subject', name: @status.account.acct)
|
2016-11-17 03:51:02 +11:00
|
|
|
end
|
2016-03-20 05:20:07 +11:00
|
|
|
end
|
|
|
|
|
2016-11-20 10:33:02 +11:00
|
|
|
def follow(recipient, notification)
|
|
|
|
@me = recipient
|
2023-06-12 22:22:46 +10:00
|
|
|
@user = recipient.user
|
|
|
|
@type = 'follow'
|
2016-11-20 10:33:02 +11:00
|
|
|
@account = notification.from_account
|
2016-11-17 03:51:02 +11:00
|
|
|
|
2023-06-12 22:22:46 +10:00
|
|
|
return unless @user.functional?
|
2017-11-08 05:06:44 +11:00
|
|
|
|
2017-05-06 04:56:00 +10:00
|
|
|
locale_for_account(@me) do
|
2023-06-12 22:22:46 +10:00
|
|
|
mail to: email_address_with_name(@user.email, @me.username), subject: I18n.t('notification_mailer.follow.subject', name: @account.acct)
|
2016-11-17 03:51:02 +11:00
|
|
|
end
|
2016-03-20 05:20:07 +11:00
|
|
|
end
|
|
|
|
|
2016-11-20 10:33:02 +11:00
|
|
|
def favourite(recipient, notification)
|
|
|
|
@me = recipient
|
2023-06-12 22:22:46 +10:00
|
|
|
@user = recipient.user
|
|
|
|
@type = 'favourite'
|
2016-11-20 10:33:02 +11:00
|
|
|
@account = notification.from_account
|
|
|
|
@status = notification.target_status
|
2016-11-17 03:51:02 +11:00
|
|
|
|
2023-06-12 22:22:46 +10:00
|
|
|
return unless @user.functional? && @status.present?
|
2017-11-08 05:06:44 +11:00
|
|
|
|
2017-05-06 04:56:00 +10:00
|
|
|
locale_for_account(@me) do
|
2017-09-24 19:19:42 +10:00
|
|
|
thread_by_conversation(@status.conversation)
|
2023-06-12 22:22:46 +10:00
|
|
|
mail to: email_address_with_name(@user.email, @me.username), subject: I18n.t('notification_mailer.favourite.subject', name: @account.acct)
|
2016-11-17 03:51:02 +11:00
|
|
|
end
|
2016-03-20 05:20:07 +11:00
|
|
|
end
|
|
|
|
|
2016-11-20 10:33:02 +11:00
|
|
|
def reblog(recipient, notification)
|
|
|
|
@me = recipient
|
2023-06-12 22:22:46 +10:00
|
|
|
@user = recipient.user
|
|
|
|
@type = 'reblog'
|
2016-11-20 10:33:02 +11:00
|
|
|
@account = notification.from_account
|
|
|
|
@status = notification.target_status
|
2016-11-17 03:51:02 +11:00
|
|
|
|
2023-06-12 22:22:46 +10:00
|
|
|
return unless @user.functional? && @status.present?
|
2017-11-08 05:06:44 +11:00
|
|
|
|
2017-05-06 04:56:00 +10:00
|
|
|
locale_for_account(@me) do
|
2017-09-24 19:19:42 +10:00
|
|
|
thread_by_conversation(@status.conversation)
|
2023-06-12 22:22:46 +10:00
|
|
|
mail to: email_address_with_name(@user.email, @me.username), subject: I18n.t('notification_mailer.reblog.subject', name: @account.acct)
|
2016-11-17 03:51:02 +11:00
|
|
|
end
|
2016-03-20 05:20:07 +11:00
|
|
|
end
|
2016-12-27 07:52:03 +11:00
|
|
|
|
|
|
|
def follow_request(recipient, notification)
|
|
|
|
@me = recipient
|
2023-06-12 22:22:46 +10:00
|
|
|
@user = recipient.user
|
|
|
|
@type = 'follow_request'
|
2016-12-27 07:52:03 +11:00
|
|
|
@account = notification.from_account
|
|
|
|
|
2023-06-12 22:22:46 +10:00
|
|
|
return unless @user.functional?
|
2017-11-08 05:06:44 +11:00
|
|
|
|
2017-05-06 04:56:00 +10:00
|
|
|
locale_for_account(@me) do
|
2023-06-12 22:22:46 +10:00
|
|
|
mail to: email_address_with_name(@user.email, @me.username), subject: I18n.t('notification_mailer.follow_request.subject', name: @account.acct)
|
2016-12-27 07:52:03 +11:00
|
|
|
end
|
|
|
|
end
|
2017-03-04 09:45:48 +11:00
|
|
|
|
2017-09-24 19:19:42 +10:00
|
|
|
private
|
|
|
|
|
|
|
|
def thread_by_conversation(conversation)
|
|
|
|
return if conversation.nil?
|
2020-09-15 22:37:58 +10:00
|
|
|
|
2017-09-24 19:19:42 +10:00
|
|
|
msg_id = "<conversation-#{conversation.id}.#{conversation.created_at.strftime('%Y-%m-%d')}@#{Rails.configuration.x.local_domain}>"
|
2020-09-15 22:37:58 +10:00
|
|
|
|
2017-09-24 19:19:42 +10:00
|
|
|
headers['In-Reply-To'] = msg_id
|
2020-09-15 22:37:58 +10:00
|
|
|
headers['References'] = msg_id
|
2017-09-24 19:19:42 +10:00
|
|
|
end
|
2016-03-20 05:20:07 +11:00
|
|
|
end
|