Sha256: ed7051a91f895b55a0f1bd04b7263450979a4614a764d9bcd4bcccfcc3b313f2

Contents?: true

Size: 1.77 KB

Versions: 2

Compression:

Stored size: 1.77 KB

Contents

# frozen_string_literal: true

module AnyCable
  class CompatibilityError < StandardError; end

  module Compatibility # :nodoc:
    ActionCable::Channel::Base.prepend(Module.new do
      def stream_from(broadcasting, callback = nil, coder: nil)
        if coder.present? && coder != ActiveSupport::JSON
          raise AnyCable::CompatibilityError, "Custom coders are not supported by AnyCable"
        end

        if callback.present? || block_given?
          raise AnyCable::CompatibilityError,
                "Custom stream callbacks are not supported by AnyCable"
        end

        super
      end

      # Do not prepend `subscribe_to_channel` 'cause we make it no-op
      # when AnyCable is running (see anycable/rails/actioncable/channel.rb)
      %w[run_callbacks perform_action].each do |mid|
        module_eval <<~CODE, __FILE__, __LINE__ + 1
          def #{mid}(*)
            __anycable_check_ivars__ { super }
          end
        CODE
      end

      def __anycable_check_ivars__
        was_ivars = instance_variables
        res = yield
        diff = instance_variables - was_ivars

        unless diff.empty?
          raise AnyCable::CompatibilityError,
                "Channel instance variables are not supported by AnyCable, " \
                "but were set: #{diff.join(', ')}"
        end

        res
      end
    end)

    ActionCable::Channel::Base.singleton_class.prepend(Module.new do
      def periodically(*)
        raise AnyCable::CompatibilityError, "Periodical timers are not supported by AnyCable"
      end
    end)

    ActionCable::RemoteConnections::RemoteConnection.prepend(Module.new do
      def disconnect
        raise AnyCable::CompatibilityError,
              "Disconnecting remote clients is not supported by AnyCable yet"
      end
    end)
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
anycable-rails-0.6.5 lib/anycable/rails/compatibility.rb
anycable-rails-0.6.4 lib/anycable/rails/compatibility.rb