Sha256: da4bd5f85e769fe6d5243e060a81bfb258ed36ae091b39aeff39010e65b0ab7b

Contents?: true

Size: 1.16 KB

Versions: 10

Compression:

Stored size: 1.16 KB

Contents

module Pay
  module Billable
    module SyncEmail
      # Sync email address changes from the model to the processor.
      # This way they're kept in sync and email notifications are
      # always sent to the correct email address after an update.
      #
      # Processor classes simply need to implement a method named:
      #
      # update_PROCESSOR_email!
      #
      # This method should take the email address on the billable
      # object and update the associated API record.

      extend ActiveSupport::Concern

      included do
        after_update :enqeue_sync_email_job,
                     if: :should_sync_email_with_processor?
      end

      def should_sync_email_with_processor?
        respond_to? :saved_change_to_email?
      end

      def sync_email_with_processor
        send("update_#{processor}_email!")
      end

      private

      def enqeue_sync_email_job
        # Only update if the processor id is the same
        # This prevents duplicate API hits if this is their first time
        if processor_id? && !processor_id_changed? && saved_change_to_email?
          EmailSyncJob.perform_later(id)
        end
      end
    end
  end
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
pay-1.0.2 lib/pay/billable/sync_email.rb
pay-1.0.1 lib/pay/billable/sync_email.rb
pay-1.0.0 lib/pay/billable/sync_email.rb
pay-1.0.0.rc3 lib/pay/billable/sync_email.rb
pay-1.0.0.rc2 lib/pay/billable/sync_email.rb
pay-1.0.0.rc1 lib/pay/billable/sync_email.rb
pay-1.0.0.beta5 lib/pay/billable/sync_email.rb
pay-1.0.0.beta4 lib/pay/billable/sync_email.rb
pay-1.0.0.beta3 lib/pay/billable/sync_email.rb
pay-1.0.0.beta2 lib/pay/billable/sync_email.rb