2016-11-15 16:56:29 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-03-19 19:20:07 +01:00
|
|
|
class NotificationMailer < ApplicationMailer
|
2023-07-10 03:06:22 +02:00
|
|
|
helper :accounts,
|
|
|
|
:statuses,
|
|
|
|
:routing
|
2016-03-19 19:20:07 +01:00
|
|
|
|
2023-07-10 03:06:22 +02:00
|
|
|
before_action :process_params
|
2024-10-03 22:25:40 +02:00
|
|
|
with_options only: %i(mention favourite reaction reblog) do
|
2024-09-19 15:38:32 +02:00
|
|
|
before_action :set_status
|
|
|
|
after_action :thread_by_conversation!
|
|
|
|
end
|
2023-11-10 22:16:29 +01:00
|
|
|
before_action :set_account, only: [:follow, :favourite, :reaction, :reblog, :follow_request]
|
2023-08-01 19:34:40 +02:00
|
|
|
after_action :set_list_headers!
|
2018-01-16 20:20:15 +01:00
|
|
|
|
2024-09-25 10:07:48 +02:00
|
|
|
before_deliver :verify_functional_user
|
|
|
|
|
2023-07-10 03:06:22 +02:00
|
|
|
default to: -> { email_address_with_name(@user.email, @me.username) }
|
2016-11-16 17:51:02 +01:00
|
|
|
|
2024-01-15 19:18:59 +01:00
|
|
|
layout 'mailer'
|
|
|
|
|
2023-07-10 03:06:22 +02:00
|
|
|
def mention
|
2024-09-25 10:07:48 +02:00
|
|
|
return if @status.blank?
|
2017-11-07 19:06:44 +01:00
|
|
|
|
2017-05-05 20:56:00 +02:00
|
|
|
locale_for_account(@me) do
|
2023-07-10 03:06:22 +02:00
|
|
|
mail subject: default_i18n_subject(name: @status.account.acct)
|
2016-11-16 17:51:02 +01:00
|
|
|
end
|
2016-03-19 19:20:07 +01:00
|
|
|
end
|
|
|
|
|
2023-07-10 03:06:22 +02:00
|
|
|
def follow
|
2017-05-05 20:56:00 +02:00
|
|
|
locale_for_account(@me) do
|
2023-07-10 03:06:22 +02:00
|
|
|
mail subject: default_i18n_subject(name: @account.acct)
|
2016-11-16 17:51:02 +01:00
|
|
|
end
|
2016-03-19 19:20:07 +01:00
|
|
|
end
|
|
|
|
|
2023-07-10 03:06:22 +02:00
|
|
|
def favourite
|
2024-09-25 10:07:48 +02:00
|
|
|
return if @status.blank?
|
2017-11-07 19:06:44 +01:00
|
|
|
|
2017-05-05 20:56:00 +02:00
|
|
|
locale_for_account(@me) do
|
2023-07-10 03:06:22 +02:00
|
|
|
mail subject: default_i18n_subject(name: @account.acct)
|
2016-11-16 17:51:02 +01:00
|
|
|
end
|
2016-03-19 19:20:07 +01:00
|
|
|
end
|
|
|
|
|
2023-11-10 22:16:29 +01:00
|
|
|
def reaction
|
2024-10-03 22:25:40 +02:00
|
|
|
return if @status.blank?
|
2023-11-10 22:16:29 +01:00
|
|
|
|
|
|
|
locale_for_account(@me) do
|
|
|
|
mail subject: default_i18n_subject(name: @account.acct)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2023-07-10 03:06:22 +02:00
|
|
|
def reblog
|
2024-09-25 10:07:48 +02:00
|
|
|
return if @status.blank?
|
2017-11-07 19:06:44 +01:00
|
|
|
|
2017-05-05 20:56:00 +02:00
|
|
|
locale_for_account(@me) do
|
2023-07-10 03:06:22 +02:00
|
|
|
mail subject: default_i18n_subject(name: @account.acct)
|
2016-11-16 17:51:02 +01:00
|
|
|
end
|
2016-03-19 19:20:07 +01:00
|
|
|
end
|
2016-12-26 21:52:03 +01:00
|
|
|
|
2023-07-10 03:06:22 +02:00
|
|
|
def follow_request
|
2017-05-05 20:56:00 +02:00
|
|
|
locale_for_account(@me) do
|
2023-07-10 03:06:22 +02:00
|
|
|
mail subject: default_i18n_subject(name: @account.acct)
|
2016-12-26 21:52:03 +01:00
|
|
|
end
|
|
|
|
end
|
2017-03-03 23:45:48 +01:00
|
|
|
|
2017-09-24 11:19:42 +02:00
|
|
|
private
|
|
|
|
|
2023-07-10 03:06:22 +02:00
|
|
|
def process_params
|
|
|
|
@notification = params[:notification]
|
|
|
|
@me = params[:recipient]
|
|
|
|
@user = @me.user
|
|
|
|
@type = action_name
|
2023-08-01 19:34:40 +02:00
|
|
|
@unsubscribe_url = unsubscribe_url(token: @user.to_sgid(for: 'unsubscribe').to_s, type: @type)
|
2023-07-10 03:06:22 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
def set_status
|
|
|
|
@status = @notification.target_status
|
|
|
|
end
|
|
|
|
|
|
|
|
def set_account
|
|
|
|
@account = @notification.from_account
|
|
|
|
end
|
|
|
|
|
2024-09-25 10:07:48 +02:00
|
|
|
def verify_functional_user
|
|
|
|
throw(:abort) unless @user.functional?
|
|
|
|
end
|
|
|
|
|
2023-08-01 19:34:40 +02:00
|
|
|
def set_list_headers!
|
2024-09-19 15:38:32 +02:00
|
|
|
headers(
|
|
|
|
'List-ID' => "<#{@type}.#{@me.username}.#{Rails.configuration.x.local_domain}>",
|
|
|
|
'List-Unsubscribe-Post' => 'List-Unsubscribe=One-Click',
|
|
|
|
'List-Unsubscribe' => "<#{@unsubscribe_url}>"
|
|
|
|
)
|
2023-08-01 19:34:40 +02:00
|
|
|
end
|
|
|
|
|
2024-09-19 15:38:32 +02:00
|
|
|
def thread_by_conversation!
|
2024-10-04 16:15:14 +02:00
|
|
|
return if @status&.conversation.nil?
|
2020-09-15 14:37:58 +02:00
|
|
|
|
2024-09-19 15:38:32 +02:00
|
|
|
conversation_message_id = "<conversation-#{@status.conversation.id}.#{@status.conversation.created_at.to_date}@#{Rails.configuration.x.local_domain}>"
|
2020-09-15 14:37:58 +02:00
|
|
|
|
2024-09-19 15:38:32 +02:00
|
|
|
headers(
|
|
|
|
'In-Reply-To' => conversation_message_id,
|
|
|
|
'References' => conversation_message_id
|
|
|
|
)
|
2017-09-24 11:19:42 +02:00
|
|
|
end
|
2016-03-19 19:20:07 +01:00
|
|
|
end
|