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