Sha256: 120b1d499bab441cc4715a519e6a188fcaf2331338726ff21b5b50192547c612

Contents?: true

Size: 1.11 KB

Versions: 31

Compression:

Stored size: 1.11 KB

Contents

require 'ipaddr'

module ActiveRecord
  module ConnectionAdapters
    module PostgreSQL
      module OID # :nodoc:
        class Cidr < Type::Value # :nodoc:
          def type
            :cidr
          end

          def type_cast_for_schema(value)
            subnet_mask = value.instance_variable_get(:@mask_addr)

            # If the subnet mask is equal to /32, don't output it
            if subnet_mask == (2**32 - 1)
              "\"#{value}\""
            else
              "\"#{value}/#{subnet_mask.to_s(2).count('1')}\""
            end
          end

          def serialize(value)
            if IPAddr === value
              "#{value}/#{value.instance_variable_get(:@mask_addr).to_s(2).count('1')}"
            else
              value
            end
          end

          def cast_value(value)
            if value.nil?
              nil
            elsif String === value
              begin
                IPAddr.new(value)
              rescue ArgumentError
                nil
              end
            else
              value
            end
          end
        end
      end
    end
  end
end

Version data entries

31 entries across 31 versions & 4 rubygems

Version Path
autocompl-0.0.1 test/dummy/vendor/bundle/ruby/2.3.0/gems/activerecord-5.0.1/lib/active_record/connection_adapters/postgresql/oid/cidr.rb
abaci-0.3.0 vendor/bundle/gems/activerecord-5.0.0/lib/active_record/connection_adapters/postgresql/oid/cidr.rb
activerecord-5.0.1 lib/active_record/connection_adapters/postgresql/oid/cidr.rb
activerecord-5.0.1.rc2 lib/active_record/connection_adapters/postgresql/oid/cidr.rb
activerecord-5.0.1.rc1 lib/active_record/connection_adapters/postgresql/oid/cidr.rb
activerecord-5.0.0.1 lib/active_record/connection_adapters/postgresql/oid/cidr.rb
activerecord-5.0.0 lib/active_record/connection_adapters/postgresql/oid/cidr.rb
activerecord-5.0.0.rc2 lib/active_record/connection_adapters/postgresql/oid/cidr.rb
activerecord-5.0.0.racecar1 lib/active_record/connection_adapters/postgresql/oid/cidr.rb
activerecord-5.0.0.rc1 lib/active_record/connection_adapters/postgresql/oid/cidr.rb
activerecord-5.0.0.beta4 lib/active_record/connection_adapters/postgresql/oid/cidr.rb