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