browser 3.0.3 → 5.3.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (111) hide show
  1. checksums.yaml +4 -4
  2. data/.github/ISSUE_TEMPLATE.md +1 -1
  3. data/.github/workflows/tests.yml +57 -0
  4. data/.prettierignore +1 -0
  5. data/.rubocop.yml +12 -0
  6. data/CHANGELOG.md +101 -19
  7. data/FUNDING.yml +3 -0
  8. data/README.md +104 -67
  9. data/bots.yml +299 -294
  10. data/browser.gemspec +5 -2
  11. data/gemfiles/{rails6.gemfile → rails6_0.gemfile} +0 -0
  12. data/gemfiles/{rails5.gemfile → rails6_1.gemfile} +1 -1
  13. data/lib/browser/accept_language.rb +4 -4
  14. data/lib/browser/alipay.rb +1 -1
  15. data/lib/browser/base.rb +80 -21
  16. data/lib/browser/blackberry.rb +1 -1
  17. data/lib/browser/bot/keyword_matcher.rb +1 -1
  18. data/lib/browser/browser.rb +26 -26
  19. data/lib/browser/chrome.rb +13 -3
  20. data/lib/browser/device/android.rb +1 -1
  21. data/lib/browser/device/blackberry_playbook.rb +1 -1
  22. data/lib/browser/device/ipad.rb +1 -1
  23. data/lib/browser/device/iphone.rb +1 -1
  24. data/lib/browser/device/ipod_touch.rb +1 -1
  25. data/lib/browser/device/kindle.rb +1 -1
  26. data/lib/browser/device/kindle_fire.rb +1 -1
  27. data/lib/browser/device/playstation3.rb +1 -1
  28. data/lib/browser/device/playstation4.rb +1 -1
  29. data/lib/browser/device/psp.rb +1 -1
  30. data/lib/browser/device/psvita.rb +1 -1
  31. data/lib/browser/device/samsung.rb +33 -0
  32. data/lib/browser/device/surface.rb +1 -1
  33. data/lib/browser/device/switch.rb +1 -1
  34. data/lib/browser/device/tv.rb +1 -1
  35. data/lib/browser/device/unknown.rb +1 -1
  36. data/lib/browser/device/wii.rb +1 -1
  37. data/lib/browser/device/wiiu.rb +1 -1
  38. data/lib/browser/device/xbox_360.rb +1 -1
  39. data/lib/browser/device/xbox_one.rb +1 -1
  40. data/lib/browser/device.rb +12 -5
  41. data/lib/browser/duck_duck_go.rb +22 -0
  42. data/lib/browser/edge.rb +3 -3
  43. data/lib/browser/electron.rb +1 -1
  44. data/lib/browser/facebook.rb +1 -1
  45. data/lib/browser/firefox.rb +1 -1
  46. data/lib/browser/google_search_app.rb +21 -0
  47. data/lib/browser/huawei_browser.rb +21 -0
  48. data/lib/browser/instagram.rb +1 -1
  49. data/lib/browser/internet_explorer.rb +2 -2
  50. data/lib/browser/maxthon.rb +21 -0
  51. data/lib/browser/meta/base.rb +0 -1
  52. data/lib/browser/meta.rb +0 -1
  53. data/lib/browser/micro_messenger.rb +1 -1
  54. data/lib/browser/miui_browser.rb +21 -0
  55. data/lib/browser/nokia.rb +1 -1
  56. data/lib/browser/opera.rb +1 -1
  57. data/lib/browser/otter.rb +1 -1
  58. data/lib/browser/phantom_js.rb +1 -1
  59. data/lib/browser/platform/adobe_air.rb +1 -1
  60. data/lib/browser/platform/android.rb +1 -1
  61. data/lib/browser/platform/base.rb +3 -2
  62. data/lib/browser/platform/blackberry.rb +1 -1
  63. data/lib/browser/platform/chrome_os.rb +1 -1
  64. data/lib/browser/platform/firefox_os.rb +1 -1
  65. data/lib/browser/platform/ios.rb +2 -2
  66. data/lib/browser/platform/kai_os.rb +23 -0
  67. data/lib/browser/platform/linux.rb +1 -1
  68. data/lib/browser/platform/mac.rb +5 -3
  69. data/lib/browser/platform/{other.rb → unknown.rb} +3 -3
  70. data/lib/browser/platform/windows.rb +2 -2
  71. data/lib/browser/platform/windows_mobile.rb +1 -1
  72. data/lib/browser/platform/windows_phone.rb +1 -1
  73. data/lib/browser/platform.rb +22 -16
  74. data/lib/browser/qq.rb +1 -1
  75. data/lib/browser/safari.rb +16 -1
  76. data/lib/browser/samsung_browser.rb +21 -0
  77. data/lib/browser/snapchat.rb +1 -1
  78. data/lib/browser/sougou_browser.rb +24 -0
  79. data/lib/browser/sputnik.rb +1 -1
  80. data/lib/browser/uc_browser.rb +1 -1
  81. data/lib/browser/{generic.rb → unknown.rb} +3 -3
  82. data/lib/browser/version.rb +1 -1
  83. data/lib/browser/weibo.rb +1 -1
  84. data/lib/browser/yandex.rb +1 -1
  85. data/samsung.yml +138 -0
  86. data/test/browser_test.rb +37 -6
  87. data/test/ua.yml +23 -1
  88. data/test/ua_bots.yml +8 -3
  89. data/test/unit/adobe_air_test.rb +1 -1
  90. data/test/unit/alipay_test.rb +6 -0
  91. data/test/unit/bots_test.rb +1 -1
  92. data/test/unit/console_test.rb +2 -2
  93. data/test/unit/device_test.rb +30 -3
  94. data/test/unit/duck_duck_go_test.rb +37 -0
  95. data/test/unit/edge_test.rb +34 -2
  96. data/test/unit/google_search_app_test.rb +54 -0
  97. data/test/unit/huawei_browser_test.rb +25 -0
  98. data/test/unit/kai_os_test.rb +31 -0
  99. data/test/unit/maxthon_test.rb +25 -0
  100. data/test/unit/meta_test.rb +10 -1
  101. data/test/unit/micro_messenger_test.rb +21 -6
  102. data/test/unit/miui_browser_test.rb +25 -0
  103. data/test/unit/opera_test.rb +1 -0
  104. data/test/unit/platform_test.rb +13 -8
  105. data/test/unit/qq_test.rb +12 -0
  106. data/test/unit/safari_test.rb +12 -7
  107. data/test/unit/samsung_browser_test.rb +23 -0
  108. data/test/unit/sougou_browser_test.rb +41 -0
  109. metadata +47 -19
  110. data/.travis.yml +0 -23
  111. data/lib/browser/meta/modern.rb +0 -11
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 35cb9e029740dd22fac2f08ea933fb541b914ddc3d437f49e2402f68be7aecb3
4
- data.tar.gz: 534a21b9b6892178c02976d19fe8ef81e9746783ac87469239efb9e8033bfaeb
3
+ metadata.gz: 837e072e8544da56ee51cf187b35850444d17c931c535115cf50c679d2227a7c
4
+ data.tar.gz: b789e49dbd45164c42ff5a25c5bd5a5d0c54a32ac945bcbf97ee41682ca23693
5
5
  SHA512:
6
- metadata.gz: fe9062f778c871766bddce4738c63ad005e0fc6310c46b0505f78da1c304e5d2f0359d8c2685727203876f8b83bf7ee06fc7dfa6b2f5fb6da719cf60bd5f80a7
7
- data.tar.gz: ecce9f6468c7e5cfb11e47aeeaa68c44d8be5ad6b4e6e34cc9f64721dbaf0adae1514cb8b57097ec679481da7286713468fa4ac88de397190179bbf13ef42331
6
+ metadata.gz: 4adb59b646efa17033f385ad0b935f067c9b67a8718a1362f0c5ef49a3c28decd064ec788739c4d38f9969a2189ffc7090ae5d62d3979c249e3237f6b547bfe1
7
+ data.tar.gz: c0712d54d08e48522b26ce1c162a238711f20bced68b578e300657ec25ff313d9637a2a881dd2797cd8295b90d100a60789364b17cb9b008e4e3da092e071d0a
@@ -27,4 +27,4 @@
27
27
 
28
28
  ## Report
29
29
 
30
- [Visit <http://user-agent.herokuapp.com> and paste the URL here]
30
+ [Visit <https://user-agent.herokuapp.com> and paste the URL here]
@@ -0,0 +1,57 @@
1
+ name: Tests
2
+
3
+ on:
4
+ pull_request:
5
+ branches:
6
+ - main
7
+ push:
8
+ branches:
9
+ - main
10
+
11
+ schedule:
12
+ - cron: "0 10 * * *"
13
+
14
+ jobs:
15
+ build:
16
+ name: Tests with Ruby ${{ matrix.ruby }} and ${{ matrix.gemfile }}
17
+ runs-on: "ubuntu-latest"
18
+ strategy:
19
+ fail-fast: false
20
+ matrix:
21
+ ruby: ["3.0.x", "2.7.x", "2.6.x", "2.5.x"]
22
+ gemfile:
23
+ - Gemfile
24
+ - gemfiles/rails6_1.gemfile
25
+ - gemfiles/rails6_0.gemfile
26
+
27
+ steps:
28
+ - uses: actions/checkout@v1
29
+
30
+ - uses: actions/cache@v2
31
+ with:
32
+ path: vendor/bundle
33
+ key: >
34
+ ${{ runner.os }}-${{ matrix.ruby }}-gems-${{ hashFiles(matrix.gemfile) }}
35
+ restore-keys: >
36
+ ${{ runner.os }}-${{ matrix.ruby }}-gems-${{ hashFiles(matrix.gemfile) }}
37
+
38
+ - name: Set up Ruby
39
+ uses: actions/setup-ruby@v1
40
+ with:
41
+ ruby-version: ${{ matrix.ruby }}
42
+
43
+ - name: Install gem dependencies
44
+ env:
45
+ RAILS_ENV: test
46
+ BUNDLE_GEMFILE: ${{ matrix.gemfile }}
47
+ run: |
48
+ gem install bundler
49
+ bundle config path vendor/bundle
50
+ bundle update --jobs 4 --retry 3
51
+
52
+ - name: Run Tests
53
+ env:
54
+ RAILS_ENV: test
55
+ BUNDLE_GEMFILE: ${{ matrix.gemfile }}
56
+ run: |
57
+ bundle exec rake
data/.prettierignore ADDED
@@ -0,0 +1 @@
1
+ *.yml
data/.rubocop.yml CHANGED
@@ -27,3 +27,15 @@ Style/Alias:
27
27
 
28
28
  Lint/RedundantCopDisableDirective:
29
29
  Enabled: false
30
+
31
+ Metrics/AbcSize:
32
+ Enabled: false
33
+
34
+ Metrics/CyclomaticComplexity:
35
+ Enabled: false
36
+
37
+ Metrics/PerceivedComplexity:
38
+ Enabled: false
39
+
40
+ Naming/VariableNumber:
41
+ Enabled: false
data/CHANGELOG.md CHANGED
@@ -1,12 +1,78 @@
1
1
  # Changelog
2
2
 
3
- ## Unreleased
4
-
5
- - Nothing yet.
3
+ ## 5.3.1
4
+
5
+ - Remove Stripe webhooks from bot list.
6
+
7
+ ## 5.3.0
8
+
9
+ - Bump up minimum required ruby version to 2.5.0. We're now relying on
10
+ `String#match?`, which was introduced by ruby-2.4, but given that ruby's
11
+ stable version is >= 2.5, seems reasonable.
12
+
13
+ ## 5.2.0
14
+
15
+ - Add KaiOS detection.
16
+ - Replace `String#=~` with `String#match?` and other optimizations.
17
+
18
+ ## 5.1.0
19
+
20
+ - Add Samsung device detection.
21
+ - Delay parsing `Accept-Language` until `Browser::Base#accept_language` is
22
+ called for the first time.
23
+ - Bump up default size limit for `Accept-Language` and `User-Agent` to 2048
24
+ bytes.
25
+
26
+ ## 5.0.0
27
+
28
+ - Rename `Browser::Platform#other?` to `Browser::Platform#unknown?`.
29
+ - Unknown platforms now return `:unknown_platform` as the id.
30
+ - Unknown devices now return `:unknown_device` as the id.
31
+ - Unknown browsers now return `:unknown_browser` as the id.
32
+ - All the changes above affect how `browser.meta` is composed.
33
+ - Add method `Browser::Base#unknown?`.
34
+ - Fix issue with `Browser::Base#safari?` matching full version.
35
+ - Add Maxthon detection.
36
+ - Add Google Search App detection.
37
+ - Add Huawei Browser detection.
38
+ - Fix Duck Duck Go browser that was being recognized as a bot.
39
+ - Add Miui Browser detection.
40
+ - Add `Browser::Base#qq?`.
41
+ - Fix QQ detection.
42
+ - Fix Alipay detection.
43
+ - Add Sougou Browser detection.
44
+ - User agent has a size limit of 512 bytes. This can be customized through
45
+ `Browser.user_agent_size_limit`.
46
+ - Accept-Language has a size limit of 256 bytes. This can be customized through
47
+ `Browser.accept_language_size_limit`.
48
+
49
+ ## 4.2.0
50
+
51
+ - Fix Chrome Lighthouse detection.
52
+ - Add Skype to bot list.
53
+
54
+ ## 4.1.0
55
+
56
+ - Add Samsung browser.
57
+ - Add Google Image Proxy to the bot list.
58
+ - Add The Knowledge AI bot to the bot list.
59
+ - Add Go HttpClient to the bot list.
60
+ - Fix Microsoft Edge detection on Android and iOS.
61
+ - Fix MicroMessenger detection on Android
62
+
63
+ ## 4.0.0
64
+
65
+ - Add Chrome Lighthouse to bot list.
66
+ - Add SeobilityBot to the bot list.
67
+ - Detect Mac-based platforms differently, depending on the version; "Mac OS X"
68
+ will be returned for versions prior to 10.12, and "macOS" for newer versions.
69
+ - Remove `Browser.modern_rules` and `Browser::Base#modern?`.
70
+ - Add DuckDuckGo browser.
6
71
 
7
72
  # 3.0.3
8
73
 
9
- - Deprecate `Browser.modern_rules` and `Browser::Base#modern?`. Theses methods will be removed on the next major released, or by June 1st 2020.
74
+ - Deprecate `Browser.modern_rules` and `Browser::Base#modern?`. Theses methods
75
+ will be removed on the next major released, or by June 1st 2020.
10
76
 
11
77
  ## 3.0.2
12
78
 
@@ -21,23 +87,32 @@
21
87
  - Add ArchiveTeam's ArchiveBot to the bot list.
22
88
  - Fix QQ Browser detection.
23
89
  - Update modern rules.
24
- - You can now define new bot matchers by adding a callable object to `Browser::Bot.matchers`.
90
+ - You can now define new bot matchers by adding a callable object to
91
+ `Browser::Bot.matchers`.
25
92
  - Fix `browser.yandex?` and `browser.sputnik?`.
26
- - [BREAKING CHANGE] Removed methods to enable the bot's empty user agent detection (`Browser::Bot.detect_empty_ua!` and `Browser::Bot.detect_empty_ua?`).
27
- - [BREAKING CHANGE] Bot detection is now more aggressive by default. It matches empty user agents, anything that matches `crawl|fetch|search|monitoring|spider|bot`, and anything listed under https://github.com/fnando/browser/blob/master/bots.yml.
93
+ - [BREAKING CHANGE] Removed methods to enable the bot's empty user agent
94
+ detection (`Browser::Bot.detect_empty_ua!` and
95
+ `Browser::Bot.detect_empty_ua?`).
96
+ - [BREAKING CHANGE] Bot detection is now more aggressive by default. It matches
97
+ empty user agents, anything that matches
98
+ `crawl|fetch|search|monitoring|spider|bot`, and anything listed under
99
+ https://github.com/fnando/browser/blob/master/bots.yml.
28
100
  - Add Jaunt to the bot list.
29
101
 
30
102
  ## 2.7.1
31
103
 
32
- - Handle Snapchat user agents that have a space or an empty string instead of a slash before the version.
104
+ - Handle Snapchat user agents that have a space or an empty string instead of a
105
+ slash before the version.
33
106
  - Fix iOS 10+ version detection.
34
- - Add fallback versions for instagram and snapchat to avoid NoMethodErrors on unexpected user agents.
107
+ - Add fallback versions for instagram and snapchat to avoid NoMethodErrors on
108
+ unexpected user agents.
35
109
 
36
110
  ## 2.7.0
37
111
 
38
112
  - Add more Slack bots.
39
113
  - Handle instagram user agents that have a slash instead of a space.
40
- - Add `Browser::Bot.why?(ua)` to help debugging why a user agent is considered bot.
114
+ - Add `Browser::Bot.why?(ua)` to help debugging why a user agent is considered
115
+ bot.
41
116
  - Promote Snapchat to a browser (it was detected as a bot previously).
42
117
  - Detect Edge based on Chrome correctly.
43
118
  - Improve Yandex detection.
@@ -53,7 +128,8 @@
53
128
 
54
129
  - Add GarlikCrawler, ImplisenseBot and WikiDo bots.
55
130
  - Add Mastodon URL expander bot.
56
- - Add eZ Publish Link Validator, GermCrawler, Pu_iN Crawler, ZoomBot, and ZoominfoBot bots.
131
+ - Add eZ Publish Link Validator, GermCrawler, Pu_iN Crawler, ZoomBot, and
132
+ ZoominfoBot bots.
57
133
  - Add Datanyze bot.
58
134
  - Add support for Instagram in-app browser.
59
135
  - Add Updown.io monitor bot.
@@ -75,13 +151,13 @@
75
151
  - Add Jooble bot.
76
152
  - Add Fyre bot.
77
153
  - Drop Rails 4 official support.
78
- - Fix accept-language sorting (If HTTP-header has value `en,fr`—without qualities—the first language should be `en` instead of `fr`).
154
+ - Fix accept-language sorting (If HTTP-header has value `en,fr`—without
155
+ qualities—the first language should be `en` instead of `fr`).
79
156
  - Ignore malformed strings when comparing versions.
80
157
  - Fix Facebook detection on newer apps.
81
158
  - Change precedence for bot detection when common libs are used.
82
159
  - Add Yandex's search browser to the exception list.
83
160
 
84
-
85
161
  ## v2.5.3
86
162
 
87
163
  - Add Google Site Verification to the bot list.
@@ -122,8 +198,10 @@
122
198
  - Add Google Drive API, Proximic Spider, NewRelic pinger and SocialRank bots.
123
199
  - Add Pinboard in-app browser to the bot exception list.
124
200
  - All browser detection methods can now compare versions.
125
- - All platform detection methods can now compare versions (except `#linux?` and `#firefox_os?`).
126
- - Add `browser/aliases`, so you can have methods on the base object (e.g. `browser.mobile?`). See README for instructions.
201
+ - All platform detection methods can now compare versions (except `#linux?` and
202
+ `#firefox_os?`).
203
+ - Add `browser/aliases`, so you can have methods on the base object (e.g.
204
+ `browser.mobile?`). See README for instructions.
127
205
  - Remove official support for Rails 3 and Ruby 2.1.
128
206
 
129
207
  ## v2.3.0
@@ -154,7 +232,8 @@
154
232
 
155
233
  ## v2.0.3
156
234
 
157
- - Fix issue with version detection when no actual version is provided (i.e. the user agent doesn't have any version information).
235
+ - Fix issue with version detection when no actual version is provided (i.e. the
236
+ user agent doesn't have any version information).
158
237
 
159
238
  ## v2.0.2
160
239
 
@@ -167,9 +246,12 @@
167
246
 
168
247
  ## v2.0.0
169
248
 
170
- - `Browser#platform` now returns instance of `Browser::Platform`, instead of a `String`. It contains information about the platform (software).
171
- - `Browser#device` was added. It returns information about the device (hardware).
172
- - `Browser#accept_language` now returns a list of `Browser::AcceptLanguage` objects.
249
+ - `Browser#platform` now returns instance of `Browser::Platform`, instead of a
250
+ `String`. It contains information about the platform (software).
251
+ - `Browser#device` was added. It returns information about the device
252
+ (hardware).
253
+ - `Browser#accept_language` now returns a list of `Browser::AcceptLanguage`
254
+ objects.
173
255
  - `Browser#bot` now returns a `Browser::Bot` instance.
174
256
  - Safari running as web app mode is not recognized as Safari anymore.
175
257
  - ruby-2.3+ will always activate frozen strings.
data/FUNDING.yml ADDED
@@ -0,0 +1,3 @@
1
+ # These are supported funding model platforms
2
+
3
+ github: [fnando]
data/README.md CHANGED
@@ -1,8 +1,7 @@
1
1
  # Browser
2
2
 
3
- [![Travis-CI](https://travis-ci.org/fnando/browser.svg)](https://travis-ci.org/fnando/browser)
3
+ [![Tests](https://github.com/fnando/browser/workflows/Tests/badge.svg)](https://github.com/fnando/browser)
4
4
  [![Code Climate](https://codeclimate.com/github/fnando/browser/badges/gpa.svg)](https://codeclimate.com/github/fnando/browser)
5
- [![Test Coverage](https://codeclimate.com/github/fnando/browser/badges/coverage.svg)](https://codeclimate.com/github/fnando/browser/coverage)
6
5
  [![Gem](https://img.shields.io/gem/v/browser.svg)](https://rubygems.org/gems/browser)
7
6
  [![Gem](https://img.shields.io/gem/dt/browser.svg)](https://rubygems.org/gems/browser)
8
7
 
@@ -25,6 +24,7 @@ browser = Browser.new("Some User Agent", accept_language: "en-us")
25
24
  browser.bot?
26
25
  browser.chrome?
27
26
  browser.core_media?
27
+ browser.duck_duck_go?
28
28
  browser.edge? # Newest MS browser
29
29
  browser.electron? # Electron Framework
30
30
  browser.firefox?
@@ -33,6 +33,7 @@ browser.ie?
33
33
  browser.ie?(6) # detect specific IE version
34
34
  browser.ie?([">8", "<10"]) # detect specific IE (IE9).
35
35
  browser.known? # has the browser been successfully detected?
36
+ browser.unknown? # the browser wasn't detected.
36
37
  browser.meta # an array with several attributes
37
38
  browser.name # readable browser name
38
39
  browser.nokia?
@@ -42,6 +43,7 @@ browser.phantom_js?
42
43
  browser.quicktime?
43
44
  browser.safari?
44
45
  browser.safari_webapp_mode?
46
+ browser.samsung_browser?
45
47
  browser.to_s # the meta info joined by space
46
48
  browser.uc_browser?
47
49
  browser.version # major version number
@@ -49,9 +51,11 @@ browser.webkit?
49
51
  browser.webkit_full_version
50
52
  browser.yandex?
51
53
  browser.wechat?
54
+ browser.qq?
52
55
  browser.weibo?
53
56
  browser.yandex?
54
57
  browser.sputnik?
58
+ browser.sougou_browser?
55
59
 
56
60
  # Get bot info
57
61
  browser.bot.name
@@ -64,6 +68,7 @@ Browser::Bot.why?(ua)
64
68
  browser.device
65
69
  browser.device.id
66
70
  browser.device.name
71
+ browser.device.unknown?
67
72
  browser.device.blackberry_playbook?
68
73
  browser.device.console?
69
74
  browser.device.ipad?
@@ -84,6 +89,7 @@ browser.device.tv?
84
89
  browser.device.vita?
85
90
  browser.device.wii?
86
91
  browser.device.wiiu?
92
+ browser.device.samsung?
87
93
  browser.device.switch?
88
94
  browser.device.xbox?
89
95
  browser.device.xbox_360?
@@ -109,7 +115,7 @@ browser.platform.ios_app? # detect webview in an iOS app
109
115
  browser.platform.ios_webview? # alias for ios_app?
110
116
  browser.platform.linux?
111
117
  browser.platform.mac?
112
- browser.platform.other?
118
+ browser.platform.unknown?
113
119
  browser.platform.windows10?
114
120
  browser.platform.windows7?
115
121
  browser.platform.windows8?
@@ -124,11 +130,14 @@ browser.platform.windows_wow64?
124
130
  browser.platform.windows_x64?
125
131
  browser.platform.windows_x64_inclusive?
126
132
  browser.platform.windows_xp?
133
+ browser.platform.kai_os?
127
134
  ```
128
135
 
129
136
  ### Aliases
130
137
 
131
- To add aliases like `mobile?` and `tablet?` to the base object (e.g `browser.mobile?`), require the `browser/aliases` file and extend the Browser::Base object like the following:
138
+ To add aliases like `mobile?` and `tablet?` to the base object (e.g
139
+ `browser.mobile?`), require the `browser/aliases` file and extend the
140
+ Browser::Base object like the following:
132
141
 
133
142
  ```ruby
134
143
  require "browser/aliases"
@@ -140,25 +149,30 @@ browser.mobile? #=> false
140
149
 
141
150
  ### What's being detected?
142
151
 
143
- - For a list of platform detections, check [lib/browser/platform.rb](https://github.com/fnando/browser/blob/master/lib/browser/platform.rb)
144
- - For a list of device detections, check [lib/browser/device.rb](https://github.com/fnando/browser/blob/master/lib/browser/device.rb)
145
- - For a list of bot detections, check [bots.yml](https://github.com/fnando/browser/blob/master/bots.yml)
152
+ - For a list of platform detections, check
153
+ [lib/browser/platform.rb](https://github.com/fnando/browser/blob/master/lib/browser/platform.rb)
154
+ - For a list of device detections, check
155
+ [lib/browser/device.rb](https://github.com/fnando/browser/blob/master/lib/browser/device.rb)
156
+ - For a list of bot detections, check
157
+ [bots.yml](https://github.com/fnando/browser/blob/master/bots.yml)
146
158
 
147
159
  ### Detecting modern browsers
148
160
 
149
- To detect whether a browser can be considered as modern or not, create a method that abstracts your versioning constraints. The following example will consider any of the following browsers as a modern:
161
+ To detect whether a browser can be considered as modern or not, create a method
162
+ that abstracts your versioning constraints. The following example will consider
163
+ any of the following browsers as a modern:
150
164
 
151
165
  ```ruby
152
166
  # Expects an Browser instance,
153
167
  # like in `Browser.new(user_agent, accept_language: language)`.
154
168
  def modern_browser?(browser)
155
169
  [
156
- browser.chrome? && browser.version.to_i >= 65,
157
- browser.safari? && browser.version.to_i >= 10,
158
- browser.firefox? && browser.version.to_i >= 52,
159
- browser.ie? && browser.version.to_i >= 11 && !browser.compatibility_view?,
160
- browser.edge? && browser.version.to_i >= 15,
161
- browser.opera? && browser.version.to_i >= 50,
170
+ browser.chrome?(">= 65"),
171
+ browser.safari?(">= 10"),
172
+ browser.firefox?(">= 52"),
173
+ browser.ie?(">= 11") && !browser.compatibility_view?,
174
+ browser.edge?(">= 15"),
175
+ browser.opera?(">= 50"),
162
176
  browser.facebook?
163
177
  && browser.safari_webapp_mode?
164
178
  && browser.webkit_full_version.to_i >= 602
@@ -174,7 +188,8 @@ Just add it to the Gemfile.
174
188
  gem "browser"
175
189
  ```
176
190
 
177
- This adds a helper method called `browser`, that inspects your current user agent.
191
+ This adds a helper method called `browser`, that inspects your current user
192
+ agent.
178
193
 
179
194
  ```erb
180
195
  <% if browser.ie?(6) %>
@@ -182,7 +197,8 @@ This adds a helper method called `browser`, that inspects your current user agen
182
197
  <% end %>
183
198
  ```
184
199
 
185
- If you want to use Browser on your Rails app but don't want to taint your controller, use the following line on your Gemfile:
200
+ If you want to use Browser on your Rails app but don't want to taint your
201
+ controller, use the following line on your Gemfile:
186
202
 
187
203
  ```ruby
188
204
  gem "browser", require: "browser/browser"
@@ -190,7 +206,8 @@ gem "browser", require: "browser/browser"
190
206
 
191
207
  ### Accept Language
192
208
 
193
- Parses the accept-language header from an HTTP request and produces an array of language objects sorted by quality.
209
+ Parses the accept-language header from an HTTP request and produces an array of
210
+ language objects sorted by quality.
194
211
 
195
212
  ```ruby
196
213
  browser = Browser.new("Some User Agent", accept_language: "en-us")
@@ -216,16 +233,22 @@ language.name
216
233
  #=> "English/United States"
217
234
  ```
218
235
 
219
- Result is always sorted in quality order from highest to lowest. As per the HTTP spec:
236
+ Result is always sorted in quality order from highest to lowest. As per the HTTP
237
+ spec:
220
238
 
221
239
  - omitting the quality value implies 1.0.
222
240
  - quality value equal to zero means that is not accepted by the client.
223
241
 
224
242
  ### Internet Explorer
225
243
 
226
- Internet Explorer has a compatibility view mode that allows newer versions (IE8+) to run as an older version. Browser will always return the navigator version, ignoring the compatibility view version, when defined. If you need to get the engine's version, you have to use `Browser#msie_version` and `Browser#msie_full_version`.
244
+ Internet Explorer has a compatibility view mode that allows newer versions
245
+ (IE8+) to run as an older version. Browser will always return the navigator
246
+ version, ignoring the compatibility view version, when defined. If you need to
247
+ get the engine's version, you have to use `Browser#msie_version` and
248
+ `Browser#msie_full_version`.
227
249
 
228
- So, let's say an user activates compatibility view in a IE11 browser. This is what you'll get:
250
+ So, let's say an user activates compatibility view in a IE11 browser. This is
251
+ what you'll get:
229
252
 
230
253
  ```ruby
231
254
  browser.version
@@ -244,11 +267,14 @@ browser.compatibility_view?
244
267
  #=> true
245
268
  ```
246
269
 
247
- This behavior changed in `v1.0.0`; previously there wasn't a way of getting the real browser version.
270
+ This behavior changed in `v1.0.0`; previously there wasn't a way of getting the
271
+ real browser version.
248
272
 
249
273
  ### Safari
250
274
 
251
- iOS webviews and web apps aren't detected as Safari anymore, so be aware of that if that's your case. You can use a combination of platform and webkit detection to do whatever you want.
275
+ iOS webviews and web apps aren't detected as Safari anymore, so be aware of that
276
+ if that's your case. You can use a combination of platform and webkit detection
277
+ to do whatever you want.
252
278
 
253
279
  ```ruby
254
280
  # iPad's Safari running as web app mode.
@@ -266,19 +292,25 @@ browser.platform.ios?
266
292
 
267
293
  ### Bots
268
294
 
269
- The bot detection is quite aggressive. Anything that matches at least one of the following requirements will be considered a bot.
295
+ The bot detection is quite aggressive. Anything that matches at least one of the
296
+ following requirements will be considered a bot.
270
297
 
271
298
  - Empty user agent string
272
299
  - User agent that matches `/crawl|fetch|search|monitoring|spider|bot/`
273
- - Any known bot listed under [bots.yml](https://github.com/fnando/browser/blob/master/bots.yml)
300
+ - Any known bot listed under
301
+ [bots.yml](https://github.com/fnando/browser/blob/master/bots.yml)
274
302
 
275
- To add custom matchers, you can add a callable object to `Browser::Bot.matchers`. The following example matches everything that has a `externalhit` substring on it. The bot name will always be `General Bot`.
303
+ To add custom matchers, you can add a callable object to
304
+ `Browser::Bot.matchers`. The following example matches everything that has a
305
+ `externalhit` substring on it. The bot name will always be `General Bot`.
276
306
 
277
307
  ```ruby
278
- Browser::Bot.matchers << ->(ua, _browser) { ua =~ /externalhit/i }
308
+ Browser::Bot.matchers << ->(ua, _browser) { ua.match?(/externalhit/i) }
279
309
  ```
280
310
 
281
- To clear all matchers, including the ones that are bundled, use `Browser::Bot.matchers.clear`. You can re-add built-in matchers by doing the following:
311
+ To clear all matchers, including the ones that are bundled, use
312
+ `Browser::Bot.matchers.clear`. You can re-add built-in matchers by doing the
313
+ following:
282
314
 
283
315
  ```ruby
284
316
  Browser::Bot.matchers += Browser::Bot.default_matchers
@@ -301,7 +333,8 @@ use Browser::Middleware do
301
333
  end
302
334
  ```
303
335
 
304
- If you're using Rails, you can use the route helper methods. Just add something like the following to a initializer file (`config/initializers/browser.rb`).
336
+ If you're using Rails, you can use the route helper methods. Just add something
337
+ like the following to a initializer file (`config/initializers/browser.rb`).
305
338
 
306
339
  ```ruby
307
340
  Rails.configuration.middleware.use Browser::Middleware do
@@ -309,7 +342,8 @@ Rails.configuration.middleware.use Browser::Middleware do
309
342
  end
310
343
  ```
311
344
 
312
- If you need access to the `Rack::Request` object (e.g. to exclude a path), you can do so with `request`.
345
+ If you need access to the `Rack::Request` object (e.g. to exclude a path), you
346
+ can do so with `request`.
313
347
 
314
348
  ```ruby
315
349
  Rails.configuration.middleware.use Browser::Middleware do
@@ -317,20 +351,19 @@ Rails.configuration.middleware.use Browser::Middleware do
317
351
  end
318
352
  ```
319
353
 
320
- ### Migrating to v2
354
+ ### Restrictions
321
355
 
322
- #### Troubleshooting
356
+ - User agent has a size limit of 2048 bytes. This can be customized through
357
+ `Browser.user_agent_size_limit=(size)`.
358
+ - Accept-Language has a size limit of 2048 bytes. This can be customized through
359
+ `Browser.accept_language_size_limit=(size)`.
323
360
 
324
- ##### `TypeError: no implicit conversion of Hash into String`
361
+ If size is not respected, then `Browser::Error` is raised.
325
362
 
326
- The class constructor now has a different signature. Change the instantiation from `Browser.new(options)` to `Browser.new(ua, options)`, where:
327
-
328
- - `ua`: must be a string representing the user agent.
329
- - `options`: must be a hash (for now it only accepts the `accept_language` option).
330
-
331
- ##### `NoMethodError: undefined method 'user_agent'`
332
-
333
- `.ua` can now be used to retrieve the full User Agent string.
363
+ ```ruby
364
+ Browser.user_agent_size_limit = 4096
365
+ Browser.accept_language_size_limit = 4096
366
+ ```
334
367
 
335
368
  ## Development
336
369
 
@@ -348,25 +381,28 @@ Once you've made your great commits (include tests, please):
348
381
  4. Create a pull request
349
382
  5. That's it!
350
383
 
351
- Please respect the indentation rules and code style.
352
- And use 2 spaces, not tabs. And don't touch the version thing.
384
+ Please respect the indentation rules and code style. And use 2 spaces, not tabs.
385
+ And don't touch the version thing.
353
386
 
354
387
  ## Configuring environment
355
388
 
356
- To configure your environment, you must have Ruby and bundler installed. Then run `bundle install` to install all dependencies.
389
+ To configure your environment, you must have Ruby and bundler installed. Then
390
+ run `bundle install` to install all dependencies.
357
391
 
358
392
  To run tests, execute `./bin/rake`.
359
393
 
360
394
  ### Adding new features
361
395
 
362
- Before using your time to code a new feature, open a ticket asking if it makes sense and if it's on this project's scope.
396
+ Before using your time to code a new feature, open a ticket asking if it makes
397
+ sense and if it's on this project's scope.
363
398
 
364
399
  Don't forget to add a new entry to `CHANGELOG.md`.
365
400
 
366
401
  #### Adding a new bot
367
402
 
368
403
  1. Add the user agent to `test/ua_bots.yml`.
369
- 2. Add the readable name to `bots.yml`. The key must be something that matches the user agent, in lowercased text.
404
+ 2. Add the readable name to `bots.yml`. The key must be something that matches
405
+ the user agent, in lowercased text.
370
406
  3. Run tests.
371
407
 
372
408
  Don't forget to add a new entry to `CHANGELOG.md`.
@@ -375,42 +411,43 @@ Don't forget to add a new entry to `CHANGELOG.md`.
375
411
 
376
412
  1. Add the user agent to `test/ua_search_engines.yml`.
377
413
  2. Add the same user agent to `test/ua_bots.yml`.
378
- 3. Add the readable name to `search_engines.yml`. The key must be something that matches the user agent, in lowercased text.
414
+ 3. Add the readable name to `search_engines.yml`. The key must be something that
415
+ matches the user agent, in lowercased text.
379
416
  4. Run tests.
380
417
 
381
418
  Don't forget to add a new entry to `CHANGELOG.md`.
382
419
 
383
420
  #### Wrong browser/platform/device detection
384
421
 
385
- If you know how to fix it, follow the "Writing code" above. Open an issue otherwise; make sure you fill in the issue template with all the required information.
422
+ If you know how to fix it, follow the "Writing code" above. Open an issue
423
+ otherwise; make sure you fill in the issue template with all the required
424
+ information.
386
425
 
387
426
  ## Maintainer
388
427
 
389
- * Nando Vieira - http://nandovieira.com
428
+ - Nando Vieira - http://nandovieira.com
390
429
 
391
430
  ## Contributors
392
431
 
393
- * https://github.com/fnando/browser/contributors
432
+ - https://github.com/fnando/browser/contributors
394
433
 
395
434
  ## License
396
435
 
397
436
  (The MIT License)
398
437
 
399
- Permission is hereby granted, free of charge, to any person obtaining
400
- a copy of this software and associated documentation files (the
401
- 'Software'), to deal in the Software without restriction, including
402
- without limitation the rights to use, copy, modify, merge, publish,
403
- distribute, sublicense, and/or sell copies of the Software, and to
404
- permit persons to whom the Software is furnished to do so, subject to
405
- the following conditions:
406
-
407
- The above copyright notice and this permission notice shall be
408
- included in all copies or substantial portions of the Software.
409
-
410
- THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
411
- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
412
- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
413
- IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
414
- CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
415
- TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
416
- SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
438
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
439
+ this software and associated documentation files (the 'Software'), to deal in
440
+ the Software without restriction, including without limitation the rights to
441
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
442
+ the Software, and to permit persons to whom the Software is furnished to do so,
443
+ subject to the following conditions:
444
+
445
+ The above copyright notice and this permission notice shall be included in all
446
+ copies or substantial portions of the Software.
447
+
448
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
449
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
450
+ FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
451
+ COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
452
+ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
453
+ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.