Sha256: 968cda6af1c84716f18c59e65bc4a5b5316d34ae9cb18c197caaf8486ea5fec9

Contents?: true

Size: 1.67 KB

Versions: 1

Compression:

Stored size: 1.67 KB

Contents

#
# Copyright (c) 2006-2011 Hal Brodigan (postmodern.mod3 at gmail.com)
#
# This file is part of Ronin.
#
# Ronin is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# Ronin is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with Ronin.  If not, see <http://www.gnu.org/licenses/>.
#

require 'ronin/model/has_name'
require 'ronin/model'

require 'uri/query_params'

module Ronin
  #
  # Represents a query param that belongs to a {URL}.
  #
  class URLQueryParam

    include Model
    include Model::HasName

    # The primary-key of the URL query param
    property :id, Serial

    property :name, String, :length => 256,
                            :required => true,
                            :index => true

    # The value of the URL query param
    property :value, Text

    # The URL
    belongs_to :url, :model => 'URL'

    #
    # Converts the URL query param to a String.
    #
    # @return [String]
    #   The dumped URL query param.
    #
    # @since 1.0.0
    #
    def to_s
      URI::QueryParams.dump(self.name => self.value)
    end

    #
    # Inspects the URL query param.
    #
    # @return [String]
    #   The inspected URL query param.
    #
    # @since 1.0.0
    #
    def inspect
      "#<#{self.class}: #{self}>"
    end

  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
ronin-1.0.0 lib/ronin/url_query_param.rb