* Thread toot notification mails by conversation * Make codeclimate happy and avoid potential mis-threading
		
			
				
	
	
		
			83 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			83 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			Ruby
		
	
	
	
	
	
# frozen_string_literal: true
 | 
						|
 | 
						|
class NotificationMailer < ApplicationMailer
 | 
						|
  helper StreamEntriesHelper
 | 
						|
 | 
						|
  def mention(recipient, notification)
 | 
						|
    @me     = recipient
 | 
						|
    @status = notification.target_status
 | 
						|
 | 
						|
    locale_for_account(@me) do
 | 
						|
      thread_by_conversation(@status.conversation)
 | 
						|
      mail to: @me.user.email, subject: I18n.t('notification_mailer.mention.subject', name: @status.account.acct)
 | 
						|
    end
 | 
						|
  end
 | 
						|
 | 
						|
  def follow(recipient, notification)
 | 
						|
    @me      = recipient
 | 
						|
    @account = notification.from_account
 | 
						|
 | 
						|
    locale_for_account(@me) do
 | 
						|
      mail to: @me.user.email, subject: I18n.t('notification_mailer.follow.subject', name: @account.acct)
 | 
						|
    end
 | 
						|
  end
 | 
						|
 | 
						|
  def favourite(recipient, notification)
 | 
						|
    @me      = recipient
 | 
						|
    @account = notification.from_account
 | 
						|
    @status  = notification.target_status
 | 
						|
 | 
						|
    locale_for_account(@me) do
 | 
						|
      thread_by_conversation(@status.conversation)
 | 
						|
      mail to: @me.user.email, subject: I18n.t('notification_mailer.favourite.subject', name: @account.acct)
 | 
						|
    end
 | 
						|
  end
 | 
						|
 | 
						|
  def reblog(recipient, notification)
 | 
						|
    @me      = recipient
 | 
						|
    @account = notification.from_account
 | 
						|
    @status  = notification.target_status
 | 
						|
 | 
						|
    locale_for_account(@me) do
 | 
						|
      thread_by_conversation(@status.conversation)
 | 
						|
      mail to: @me.user.email, subject: I18n.t('notification_mailer.reblog.subject', name: @account.acct)
 | 
						|
    end
 | 
						|
  end
 | 
						|
 | 
						|
  def follow_request(recipient, notification)
 | 
						|
    @me      = recipient
 | 
						|
    @account = notification.from_account
 | 
						|
 | 
						|
    locale_for_account(@me) do
 | 
						|
      mail to: @me.user.email, subject: I18n.t('notification_mailer.follow_request.subject', name: @account.acct)
 | 
						|
    end
 | 
						|
  end
 | 
						|
 | 
						|
  def digest(recipient, opts = {})
 | 
						|
    @me            = recipient
 | 
						|
    @since         = opts[:since] || @me.user.last_emailed_at || @me.user.current_sign_in_at
 | 
						|
    @notifications = Notification.where(account: @me, activity_type: 'Mention').where('created_at > ?', @since)
 | 
						|
    @follows_since = Notification.where(account: @me, activity_type: 'Follow').where('created_at > ?', @since).count
 | 
						|
 | 
						|
    return if @notifications.empty?
 | 
						|
 | 
						|
    locale_for_account(@me) do
 | 
						|
      mail to: @me.user.email,
 | 
						|
           subject: I18n.t(
 | 
						|
             :subject,
 | 
						|
             scope: [:notification_mailer, :digest],
 | 
						|
             count: @notifications.size
 | 
						|
           )
 | 
						|
    end
 | 
						|
  end
 | 
						|
 | 
						|
  private
 | 
						|
 | 
						|
  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
 |