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