podcast_agent_parser 0.1.5 → 0.1.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +1 -1
  3. data/vendor/opawg/user-agents.json +128 -24
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e6368eb3796825f7e7589b68dac27e35866a9c8ad791f92454b9672787ca04d4
4
- data.tar.gz: 33874bacf5c1d9a6d8ee43068337374b76e3f20eab784c1434f89f9af90f5620
3
+ metadata.gz: a8557fa6d96b90032b03b66ef85005998c92481433a4c1f05967effe15af75d8
4
+ data.tar.gz: 3cca25ecfa9a63c0062b608db6feddd416fbfada88e378b6b14a958fe8c54391
5
5
  SHA512:
6
- metadata.gz: 636c22408d5109c1fe5eea72acfc6a14dd3f996d400cf98a673d65d92c87805d77b89c4d95a85ca3ec2605e76e70769c4a1adf09e22d6cc01b98b9c28f170e49
7
- data.tar.gz: 49f76052bb920bdff712879039ae7ee5b7fcde33ad1da009d95ee08ae8ab59e034fe1f0c6a61966e81790d8b7ccc7efda2edca0f6edda5cb41abfa32ca46ae51
6
+ metadata.gz: 31cc2ff22a235e577c4f59c5a919e242380842eec7ae75732481ad167ab17e4e69338602f1faf225bb0d0698c1630902cb5b04ba3a6945ebc15dbe66e53c2beb
7
+ data.tar.gz: 8c52efe43aaaef2bc042a03036d9392b33041666390ff8374213294d032508bec40159b4545322017b7d3d2d4167ab0d4db10f48590d284c19f479b142da8e5c
data/README.md CHANGED
@@ -5,7 +5,7 @@ The Podcast Agent Parser is a user agent parser written in Ruby, using [regex pa
5
5
  Installation:
6
6
 
7
7
  ```
8
- gem 'podcast_agent_parser', '~> 0.1.5'
8
+ gem 'podcast_agent_parser', '~> 0.1.6'
9
9
  ```
10
10
 
11
11
  Then, look up your user agents like so:
@@ -50,6 +50,41 @@
50
50
  "svg": "amazon.svg",
51
51
  "bot": true
52
52
  },
53
+ {
54
+ "user_agents": [
55
+ "^AmazonMusic/\\..*iPhone"
56
+ ],
57
+ "examples": [
58
+ "AmazonMusic/9.15.2 iPhone7,2 CFNetwork/978.0.7 Darwin/18.7.0"
59
+ ],
60
+ "app": "Amazon Music Podcasts",
61
+ "description": "A music and podcasts streaming app",
62
+ "os": "ios",
63
+ "device": "phone",
64
+ "svg": "amazon.svg"
65
+ },
66
+ {
67
+ "user_agents": [
68
+ "^AmazonMusic$"
69
+ ],
70
+ "examples": [
71
+ "AmazonMusic"
72
+ ],
73
+ "app": "Amazon Music Podcasts",
74
+ "description": "A music and podcasts streaming app",
75
+ "os": "android",
76
+ "developer_notes": "This appears to be the Android UA, by testing",
77
+ "svg": "amazon.svg"
78
+ },
79
+ {
80
+ "user_agents": [
81
+ "^Amazon Music Podcast"
82
+ ],
83
+ "app": "Amazon Music Podcasts",
84
+ "description": "A music and podcasts streaming app",
85
+ "developer_notes": "Seeing these once per episode, from an Oregon-based IP. Could be a bot or caching service?",
86
+ "svg": "amazon.svg"
87
+ },
53
88
  {
54
89
  "user_agents": [
55
90
  "^AlexaMediaPlayer/5\\."
@@ -96,12 +131,13 @@
96
131
  "user_agents": [
97
132
  "^AppleCoreMedia/1\\..*iPod"
98
133
  ],
99
- "app": "Apple Podcasts",
100
134
  "device": "mp3_player",
101
135
  "examples": [
102
136
  "AppleCoreMedia/1.0.0.16G114 (iPod touch; U; CPU OS 12_4_2 like Mac OS X; en_us)"
103
137
  ],
104
- "os": "ios"
138
+ "os": "ios",
139
+ "description": "AppleCoreMedia library",
140
+ "developer_notes": "This is a library used by a number of apps when progressively downloading podcasts. It is not (just) Apple Podcasts, and should not be treated as an Apple Podcasts useragent"
105
141
  },
106
142
  {
107
143
  "user_agents": [
@@ -110,67 +146,67 @@
110
146
  "examples": [
111
147
  "AppleCoreMedia/1.0.0.19A583 (Macintosh; U; Intel Mac OS X 10_15; en_us)"
112
148
  ],
113
- "app": "Apple Podcasts",
114
149
  "device": "pc",
115
150
  "os": "macos",
116
- "description": "The Apple Podcasts app on MacOS Catalina and above",
117
- "developer_notes": "Used when progressively downloading podcasts"
151
+ "description": "AppleCoreMedia library",
152
+ "developer_notes": "This is a library used by a number of apps when progressively downloading podcasts. It is not (just) Apple Podcasts, and should not be treated as an Apple Podcasts useragent"
118
153
  },
119
154
  {
120
155
  "user_agents": [
121
156
  "^AppleCoreMedia/1\\..*iPhone"
122
157
  ],
123
- "app": "Apple Podcasts",
124
158
  "device": "phone",
125
159
  "examples": [
126
160
  "AppleCoreMedia/1.0.0.15G77 (iPhone; U; CPU OS 11_4_1 like Mac OS X; en_us)"
127
161
  ],
128
- "os": "ios"
162
+ "os": "ios",
163
+ "description": "AppleCoreMedia library",
164
+ "developer_notes": "This is a library used by a number of apps when progressively downloading podcasts. It is not (just) Apple Podcasts, and should not be treated as an Apple Podcasts useragent"
129
165
  },
130
166
  {
131
167
  "user_agents": [
132
168
  "^AppleCoreMedia/1\\..*iPad"
133
169
  ],
134
- "app": "Apple Podcasts",
135
170
  "device": "tablet",
136
171
  "examples": [
137
172
  "AppleCoreMedia/1.0.0.17A860 (iPad; U; CPU OS 13_1_2 like Mac OS X; en_us)"
138
173
  ],
139
- "os": "ios"
174
+ "os": "ios",
175
+ "description": "AppleCoreMedia library",
176
+ "developer_notes": "This is a library used by a number of apps when progressively downloading podcasts. It is not (just) Apple Podcasts, and should not be treated as an Apple Podcasts useragent"
140
177
  },
141
178
  {
142
179
  "user_agents": [
143
180
  "^AppleCoreMedia/1\\..*HomePod"
144
181
  ],
145
- "app": "Apple Podcasts",
146
182
  "device": "speaker",
147
183
  "examples": [
148
184
  "AppleCoreMedia/1.0.0.16G78 (HomePod; U; CPU OS 12_4 like Mac OS X; en_us)"
149
185
  ],
150
- "os": "homepod_os"
186
+ "os": "homepod_os",
187
+ "description": "AppleCoreMedia library",
188
+ "developer_notes": "This is a library used by a number of apps when progressively downloading podcasts. It is not (just) Apple Podcasts, and should not be treated as an Apple Podcasts useragent"
151
189
  },
152
190
  {
153
191
  "user_agents": [
154
192
  "^AppleCoreMedia/1\\..*Apple TV"
155
193
  ],
156
- "app": "Apple Podcasts",
157
194
  "device": "tv",
158
195
  "examples": [
159
196
  "AppleCoreMedia/1.0.0.17J586 (Apple TV; U; CPU OS 13_0 like Mac OS X; en_us)"
160
197
  ],
161
- "os": "tvos"
198
+ "os": "tvos",
199
+ "description": "AppleCoreMedia library",
200
+ "developer_notes": "This is a library used by a number of apps when progressively downloading podcasts. It is not (just) Apple Podcasts, and should not be treated as an Apple Podcasts useragent"
162
201
  },
163
202
  {
164
203
  "user_agents": [
165
- "^AppleCoreMedia/1\\..*Apple Watch",
166
- "watchOS/"
204
+ "^AppleCoreMedia/1\\..*Apple Watch"
167
205
  ],
168
- "app": "Apple Podcasts",
169
206
  "device": "watch",
170
- "examples": [
171
- "atc/1.0 watchOS/6.0.1 model/Watch4,1 hwp/t8006 build/17R605 (6; dt:190)"
172
- ],
173
- "os": "watchos"
207
+ "os": "watchos",
208
+ "description": "AppleCoreMedia library",
209
+ "developer_notes": "This is a library used by a number of apps when progressively downloading podcasts. It is not (just) Apple Podcasts, and should not be treated as an Apple Podcasts useragent"
174
210
  },
175
211
  {
176
212
  "user_agents": [
@@ -183,7 +219,6 @@
183
219
  "^Podcast’ler/.*\\(.*\\)",
184
220
  "^Podkaster/.*\\(.*\\)",
185
221
  "^Podcaster/.*\\(.*\\)",
186
- "^Podcast/.*\\(.*\\)",
187
222
  "^Podcastok/.*\\(.*\\)",
188
223
  "^Подкасти/.*\\(.*\\)",
189
224
  "^Подкасты/.*\\(.*\\)",
@@ -215,7 +250,6 @@
215
250
  "^Podcast’ler/.*\\d$",
216
251
  "^Podkaster/.*\\d$",
217
252
  "^Podcaster/.*\\d$",
218
- "^Podcast/.*\\d$",
219
253
  "^Podcastok/.*\\d$",
220
254
  "^Подкасти/.*\\d$",
221
255
  "^Подкасты/.*\\d$",
@@ -231,8 +265,7 @@
231
265
  "description": "The Apple Podcasts app on devices other than MacOS Catalina and above",
232
266
  "developer_notes": "Used when downloading podcasts (not progressive downloads), with support for the following languages: Arabic, Chinese, Finnish, French, English, Hebrew, Hindi, Hungarian, Korean, Polish, Romanian, Russian, Serbian, Slovenian, Swedish, Thai, Turkish",
233
267
  "examples": [
234
- "Podcasts/2.6",
235
- "Podcast/1150.47 CFNetwork/811.5.4 Darwin/16.6.0"
268
+ "Podcasts/2.6"
236
269
  ]
237
270
  },
238
271
  {
@@ -1301,6 +1334,34 @@
1301
1334
  "app": "PodLink",
1302
1335
  "info_url": "https://pod.link/faq/crawler"
1303
1336
  },
1337
+ {
1338
+ "user_agents": [
1339
+ "^PodMN/Android"
1340
+ ],
1341
+ "description": "Minnesota Podcasts Live Here",
1342
+ "examples": [
1343
+ "PodMN/Android 1.2.6 (Android 7.1.1; SM-J510FN Build/NMF26X)"
1344
+ ],
1345
+ "info_url": "https://play.google.com/store/apps/details?id=com.podmn.app",
1346
+ "app": "PodMN",
1347
+ "device": "phone",
1348
+ "os": "android",
1349
+ "svg": "podmn.svg"
1350
+ },
1351
+ {
1352
+ "user_agents": [
1353
+ "^PodMN/iOS"
1354
+ ],
1355
+ "description": "Minnesota Podcasts Live Here",
1356
+ "examples": [
1357
+ "PodMN/iOS 1.2.6 (iPhone XR/13.6.1)"
1358
+ ],
1359
+ "info_url": "https://apps.apple.com/us/app/podmn/id1464935818",
1360
+ "app": "PodMN",
1361
+ "device": "phone",
1362
+ "os": "ios",
1363
+ "svg": "podmn.svg"
1364
+ },
1304
1365
  {
1305
1366
  "user_agents": [
1306
1367
  "PodnewsBot"
@@ -1851,5 +1912,48 @@
1851
1912
  "^SoundOn/[\\d\\.]+\\s+\\(bot"
1852
1913
  ],
1853
1914
  "bot": true
1915
+ },
1916
+ {
1917
+ "user_agents": [
1918
+ "^Podverse/Android Mobile App/"
1919
+ ],
1920
+ "app": "Podverse Android Mobile App",
1921
+ "device": "phone",
1922
+ "os": "android",
1923
+ "info_url": "https://play.google.com/store/apps/details?id=com.podverse&hl=en_US",
1924
+ "description": "Open source podcast catcher for Android, with clip-sharing, playlists, device syncing and more.",
1925
+ "developer_notes": "The standard device user agent is concatenated to the end of the Podverse/Android Mobile App/ user agent."
1926
+ },
1927
+ {
1928
+ "user_agents": [
1929
+ "^Podverse/iOS Mobile App/"
1930
+ ],
1931
+ "app": "Podverse iOS Mobile App",
1932
+ "device": "phone",
1933
+ "os": "ios",
1934
+ "examples": [
1935
+ "Podverse/iOS Mobile App/Mozilla/5.0 (iPhone; CPU iPhone OS 13_6_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/1234"
1936
+ ],
1937
+ "description": "Open source podcast catcher for iOS, with clip-sharing, playlists, device syncing and more.",
1938
+ "info_url": "https://apps.apple.com/us/app/podverse/id1390888454",
1939
+ "developer_notes": "The standard device user agent is concatenated to the end of the Podverse/iOS Mobile App/ user agent."
1940
+ },
1941
+ {
1942
+ "user_agents": [
1943
+ "^Podverse/Feed Parser"
1944
+ ],
1945
+ "bot": true,
1946
+ "app": "Podverse Server-Side Feed Parser",
1947
+ "info_url": "https://podverse.fm",
1948
+ "description": "The Podverse feed parser.",
1949
+ "developer_notes": "This service parses publicly-accessible RSS feeds on a timer, then stores parsed data in the Podverse database."
1950
+ },
1951
+ {
1952
+ "user_agents": [
1953
+ "^Podcast/1."
1954
+ ],
1955
+ "app": "小宇宙",
1956
+ "info_url": "https://www.coolapk.com/apk/app.podcast.cosmos",
1957
+ "description": "Cosmos, a chinese podcast app"
1854
1958
  }
1855
1959
  ]
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: podcast_agent_parser
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.5
4
+ version: 0.1.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dan Benjamin
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-08-31 00:00:00.000000000 Z
11
+ date: 2020-09-28 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: User agent parser written in Ruby using regex patterns from the Open
14
14
  Podcast Analytics Working Group.