* Fix misuse of foreign_type * Fix use of removed "add_template_helper" * Use response.media_type instead of response.content_type in tests * Fix CSV export controller test on Rails 6 Rails 6 sets a "filename*" field in the Content-Disposition header to explicitly encode the filename as UTF-8. This changes checks the first part of the Content-Disposition header so it matches in both Rails 5 and Rails 6. * Fix emoji formatting with Rails 6 * Make emoji output more idiomatic and robust * Switch from redis-rails gem to built-in Rails redis cache storage
		
			
				
	
	
		
			98 lines
		
	
	
		
			3.0 KiB
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			98 lines
		
	
	
		
			3.0 KiB
		
	
	
	
		
			Ruby
		
	
	
	
	
	
# frozen_string_literal: true
 | 
						|
 | 
						|
class NotificationMailer < ApplicationMailer
 | 
						|
  helper :accounts
 | 
						|
  helper :statuses
 | 
						|
 | 
						|
  helper RoutingHelper
 | 
						|
 | 
						|
  def mention(recipient, notification)
 | 
						|
    @me     = recipient
 | 
						|
    @status = notification.target_status
 | 
						|
 | 
						|
    return unless @me.user.functional? && @status.present?
 | 
						|
 | 
						|
    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
 | 
						|
 | 
						|
    return unless @me.user.functional?
 | 
						|
 | 
						|
    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
 | 
						|
 | 
						|
    return unless @me.user.functional? && @status.present?
 | 
						|
 | 
						|
    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
 | 
						|
 | 
						|
    return unless @me.user.functional? && @status.present?
 | 
						|
 | 
						|
    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
 | 
						|
 | 
						|
    return unless @me.user.functional?
 | 
						|
 | 
						|
    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)
 | 
						|
    return unless recipient.user.functional?
 | 
						|
 | 
						|
    @me                  = recipient
 | 
						|
    @since               = opts[:since] || [@me.user.last_emailed_at, (@me.user.current_sign_in_at + 1.day)].compact.max
 | 
						|
    @notifications_count = Notification.where(account: @me, activity_type: 'Mention').where('created_at > ?', @since).count
 | 
						|
 | 
						|
    return if @notifications_count.zero?
 | 
						|
 | 
						|
    @notifications = Notification.where(account: @me, activity_type: 'Mention').where('created_at > ?', @since).limit(40)
 | 
						|
    @follows_since = Notification.where(account: @me, activity_type: 'Follow').where('created_at > ?', @since).count
 | 
						|
 | 
						|
    locale_for_account(@me) do
 | 
						|
      mail to: @me.user.email,
 | 
						|
           subject: I18n.t(:subject, scope: [:notification_mailer, :digest], count: @notifications_count)
 | 
						|
    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
 |