Sha256: a6c239452715535edfb00d3dcd78079fcc53f001269f1ca0a88b0bd19196f997

Contents?: true

Size: 1.89 KB

Versions: 7

Compression:

Stored size: 1.89 KB

Contents

require 'user_agent/comparable'
require 'user_agent/browsers'
require 'user_agent/operating_systems'
require 'user_agent/version'

class UserAgent
  # http://www.texsoft.it/index.php?m=sw.php.useragent
  MATCHER = %r{
    ^['"]*                         # Possible opening quote(s)
    ([^/\s]+)                      # Product
    /?([^\s,]*)                    # Version
    (\s\(([^\)]*)\)|,gzip\(gfe\))? # Comment
  }x.freeze

  DEFAULT_USER_AGENT = "Mozilla/4.0 (compatible)"

  def self.parse(string)
    if string.nil? || string.strip == ""
      string = DEFAULT_USER_AGENT
    end

    agents = Browsers::Base.new
    while m = string.to_s.match(MATCHER)
      agents << new(m[1], m[2], m[4])
      string = string[m[0].length..-1].strip
    end
    Browsers.extend(agents)
  end

  attr_reader :product, :version, :comment

  def initialize(product, version = nil, comment = nil)
    if product
      @product = product
    else
      raise ArgumentError, "expected a value for product"
    end

    if version && !version.empty?
      @version = Version.new(version)
    else
      @version = Version.new
    end

    if comment.respond_to?(:split)
      @comment = comment.split("; ")
    else
      @comment = comment
    end
  end

  include Comparable

  # Any comparison between two user agents with different products will
  # always return false.
  def <=>(other)
    if @product == other.product
      @version <=> other.version
    else
      false
    end
  end

  def eql?(other)
    @product == other.product &&
      @version == other.version &&
      @comment == other.comment
  end

  def to_s
    to_str
  end

  def to_str
    if @product && !@version.nil? && @comment
      "#{@product}/#{@version} (#{@comment.join("; ")})"
    elsif @product && !@version.nil?
      "#{@product}/#{@version}"
    elsif @product && @comment
      "#{@product} (#{@comment.join("; ")})"
    else
      @product
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
useragent-0.16.6 lib/user_agent.rb
useragent-0.16.5 lib/user_agent.rb
useragent-0.16.4 lib/user_agent.rb
useragent-0.16.3 lib/user_agent.rb
useragent-0.16.2 lib/user_agent.rb
useragent-0.16.1 lib/user_agent.rb
useragent-0.16.0 lib/user_agent.rb