Sha256: 8dd0d228a2c0dc1ee7f60f8d5ccffb02a6099990fc897426bb77ee7416dc2487

Contents?: true

Size: 1.85 KB

Versions: 1

Compression:

Stored size: 1.85 KB

Contents

class Browser
  module IE
    TRIDENT_VERSION_REGEX = %r[Trident/([0-9.]+)]
    MODERN_IE = %r[Trident/.*?; rv:(.*?)]
    MSIE = %r{MSIE ([\d.]+)|Trident/.*?; rv:([\d.]+)}
    EDGE = %r{(Edge/[\d.]+|Trident/8)}

    # https://msdn.microsoft.com/en-us/library/ms537503(v=vs.85).aspx#TriToken
    TRIDENT_MAPPING = {
      "4.0" => "8",
      "5.0" => "9",
      "6.0" => "10",
      "7.0" => "11",
      "8.0" => "12"
    }

    def ie_version
      TRIDENT_MAPPING[trident_version] || msie_version
    end

    def ie_full_version
      "#{ie_version}.0"
    end

    def msie_full_version
      ua.match(MSIE) && ($1 || $2)
    end

    def msie_version
      msie_full_version.split(".").first
    end

    # Return the trident version.
    def trident_version
      ua.match(TRIDENT_VERSION_REGEX) && $1
    end

    # Detect if browser is Internet Explorer.
    def ie?
      msie? || modern_ie?
    end

    # Detect if browser is Internet Explorer 6.
    def ie6?
      ie? && version == "6"
    end

    # Detect if browser is Internet Explorer 7.
    def ie7?
      ie? && version == "7"
    end

    # Detect if browser is Internet Explorer 8.
    def ie8?
      ie? && version == "8"
    end

    # Detect if browser is Internet Explorer 9.
    def ie9?
      ie? && version == "9"
    end

    # Detect if browser is Internet Explorer 10.
    def ie10?
      ie? && version == "10"
    end

    # Detect if browser is Internet Explorer 11.
    def ie11?
      ie? && version == "11"
    end

    # Detect if browser is Microsoft Edge.
    def edge?
      !!(ua =~ EDGE)
    end

    # Detect if IE is running in compatibility mode.
    def compatibility_view?
      ie? && trident_version && msie_version.to_i < (trident_version.to_i + 4)
    end

    private

    def msie?
      !!(ua =~ /MSIE/ && ua !~ /Opera/)
    end

    def modern_ie?
      !!(ua =~ MODERN_IE)
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
browser-1.0.0 lib/browser/methods/ie.rb