Sha256: cbc403358228f1870f01fded68d5e41d87ea71712c4255398304cf56cccfae44

Contents?: true

Size: 1.54 KB

Versions: 88

Compression:

Stored size: 1.54 KB

Contents

# frozen_string_literal: true

module ActiveSupport
  module Messages
    module Rotator # :nodoc:
      def initialize(*secrets, on_rotation: nil, **options)
        super(*secrets, **options)

        @options   = options
        @rotations = []
        @on_rotation = on_rotation
      end

      def rotate(*secrets, **options)
        @rotations << build_rotation(*secrets, @options.merge(options))
      end

      module Encryptor
        include Rotator

        def decrypt_and_verify(*args, on_rotation: @on_rotation, **options)
          super
        rescue MessageEncryptor::InvalidMessage, MessageVerifier::InvalidSignature
          run_rotations(on_rotation) { |encryptor| encryptor.decrypt_and_verify(*args, **options) } || raise
        end

        private
          def build_rotation(secret = @secret, sign_secret = @sign_secret, options)
            self.class.new(secret, sign_secret, **options)
          end
      end

      module Verifier
        include Rotator

        def verified(*args, on_rotation: @on_rotation, **options)
          super || run_rotations(on_rotation) { |verifier| verifier.verified(*args, **options) }
        end

        private
          def build_rotation(secret = @secret, options)
            self.class.new(secret, **options)
          end
      end

      private
        def run_rotations(on_rotation)
          @rotations.find do |rotation|
            if message = yield(rotation) rescue next
              on_rotation&.call
              return message
            end
          end
        end
    end
  end
end

Version data entries

88 entries across 83 versions & 13 rubygems

Version Path
activesupport-7.0.8.6 lib/active_support/messages/rotator.rb
activesupport-6.1.7.10 lib/active_support/messages/rotator.rb
activesupport-6.1.7.9 lib/active_support/messages/rotator.rb
activesupport-7.0.8.5 lib/active_support/messages/rotator.rb
blacklight-spotlight-3.6.0.beta8 vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.8.4/lib/active_support/messages/rotator.rb
cm-admin-1.5.22 vendor/bundle/ruby/3.3.0/gems/activesupport-7.0.5.1/lib/active_support/messages/rotator.rb
cm-admin-1.5.21 vendor/bundle/ruby/3.3.0/gems/activesupport-7.0.5.1/lib/active_support/messages/rotator.rb
cm-admin-1.5.20 vendor/bundle/ruby/3.3.0/gems/activesupport-7.0.5.1/lib/active_support/messages/rotator.rb
activesupport-7.0.8.4 lib/active_support/messages/rotator.rb
activesupport-6.1.7.8 lib/active_support/messages/rotator.rb
activesupport-7.0.8.1 lib/active_support/messages/rotator.rb
activesupport-6.1.7.7 lib/active_support/messages/rotator.rb
scrapbook-0.3.2 vendor/ruby/2.7.0/gems/activesupport-7.0.3.1/lib/active_support/messages/rotator.rb
scrapbook-0.3.2 vendor/ruby/2.7.0/gems/activesupport-6.1.6.1/lib/active_support/messages/rotator.rb
scrapbook-0.3.2 vendor/ruby/2.7.0/gems/activesupport-7.0.2.3/lib/active_support/messages/rotator.rb
activesupport-7.0.8 lib/active_support/messages/rotator.rb
activesupport-7.0.7.2 lib/active_support/messages/rotator.rb
activesupport-6.1.7.6 lib/active_support/messages/rotator.rb
activesupport-7.0.7.1 lib/active_support/messages/rotator.rb
activesupport-6.1.7.5 lib/active_support/messages/rotator.rb