123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- # frozen_string_literal: true
- class NotificationMailer < ApplicationMailer
- helper :accounts,
- :statuses,
- :routing
- before_action :process_params
- before_action :set_status, only: [:mention, :favourite, :reblog]
- before_action :set_account, only: [:follow, :favourite, :reblog, :follow_request]
- after_action :set_list_headers!
- default to: -> { email_address_with_name(@user.email, @me.username) }
- def mention
- return unless @user.functional? && @status.present?
- locale_for_account(@me) do
- thread_by_conversation(@status.conversation)
- mail subject: default_i18n_subject(name: @status.account.acct)
- end
- end
- def follow
- return unless @user.functional?
- locale_for_account(@me) do
- mail subject: default_i18n_subject(name: @account.acct)
- end
- end
- def favourite
- return unless @user.functional? && @status.present?
- locale_for_account(@me) do
- thread_by_conversation(@status.conversation)
- mail subject: default_i18n_subject(name: @account.acct)
- end
- end
- def reblog
- return unless @user.functional? && @status.present?
- locale_for_account(@me) do
- thread_by_conversation(@status.conversation)
- mail subject: default_i18n_subject(name: @account.acct)
- end
- end
- def follow_request
- return unless @user.functional?
- locale_for_account(@me) do
- mail subject: default_i18n_subject(name: @account.acct)
- end
- end
- private
- def process_params
- @notification = params[:notification]
- @me = params[:recipient]
- @user = @me.user
- @type = action_name
- @unsubscribe_url = unsubscribe_url(token: @user.to_sgid(for: 'unsubscribe').to_s, type: @type)
- end
- def set_status
- @status = @notification.target_status
- end
- def set_account
- @account = @notification.from_account
- end
- 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
- def thread_by_conversation(conversation)
- return if conversation.nil?
- msg_id = "<conversation-#{conversation.id}.#{conversation.created_at.strftime('%Y-%m-%d')}@#{Rails.configuration.x.local_domain}>"
- headers['In-Reply-To'] = msg_id
- headers['References'] = msg_id
- end
- end
|