forked from jayzalowitz/MarketBot
-
Notifications
You must be signed in to change notification settings - Fork 3
/
WindowsPhone.php
291 lines (250 loc) · 9.08 KB
/
WindowsPhone.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
<?php
/**
* MarketBot
*
* @author Jon Ursenbach <[email protected]>
* @link http://github.com/pastfuture/MarketBot
* @license Modified BSD
* @version 0.1
*
* Copyright (c) 2012, PastFuture, Inc.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* * Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* * Neither the name of PastFuture, Inc., gdgt, nor the names of its
* contributors may be used to endorse or promote products derived from this
* software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*
*/
namespace PastFuture\MarketBot;
use PastFuture\MarketBot\App;
/**
* Windows Phone
*
* @package MarketBot
* @author Jon Ursenbach <[email protected]>
* @since 0.1
*/
class WindowsPhone extends MarketBot
{
/**
* Default language
*
* @var string
*/
protected $language = 'en-us';
/**
* Pull start
*
* @var integer
*/
private $pull_start = 0;
/**
* Details URL
*
* @var string
*/
protected $details_url = 'http://www.windowsphone.com/%s/store/app/%s';
/**
* Search URL
*
* @var string
*/
protected $search_url = 'http://www.windowsphone.com/%s/store/search';
/**
* Scrape the dedicated details page for a specific application and return an
* array containing its data.
*
* @param string $market_id
*
* @return array|false Array if the item and data were found, false otherwise.
*/
public function get($market_id)
{
$app = false;
try {
$url = $this->getDetailsUrl($market_id);
$this->initScraper($url);
$page = \pq('#application');
$name = $page->find('h1[itemprop="name"]')->html();
if (empty($name)) {
return false;
}
$app = new App\WindowsPhoneApp(
array(
'market_id' => $market_id,
'url' => $url,
'name' => $name,
'developer' => $page->find('#publisher a')->html(),
'description' => $page->find('pre[itemprop="description"]')->html(),
'votes' => $page->find('#rating meta[itemprop="ratingCount"]')->attr('content'),
'last_updated' => $page->find('#releaseDate span')->html(),
'current_version' => $page->find('#version span')->html(),
'category' => $page->find('[itemprop="applicationCategory"]')->html(),
'size' => $page->find('#packageSize span')->html(),
'price' => $page->find('span[itemprop="price"]')->html(),
'content_rating' => $page->find('#softwareRatingLink a')->html()
)
);
$rating = $page->find('#rating div.ratingLarge')->attr('class');
$rating = trim(str_replace('ratingLarge', '', $rating));
$app->setRating($rating);
$related_apps = $page->find('#appRelatedApps td.medium');
if ($related_apps->length()) {
foreach ($related_apps as $related_app) {
$related_app = \pq($related_app);
$related_market_id = $related_app->find('a.title')->attr('data-ov');
$related_market_id = App\WindowsPhoneApp::constructMarketId($related_market_id);
$app->addRelated($related_market_id);
}
}
$image = $page->find('img.xlarge')->attr('src');
$app->setImageThumbnail($image);
$app->setImageIcon($image);
$screenshots = $page->find('#screenshots li img');
if ($screenshots->length()) {
foreach ($screenshots as $screenshot) {
$screenshot = \pq($screenshot);
$app->addScreenshot($screenshot->attr('src'));
}
}
$software_requirements = $page->find('#softwareRequirements')->children('span');
if ($software_requirements->length()) {
foreach ($software_requirements as $software) {
$software = \pq($software);
$app->addSoftwareRequirement($software->attr('itemprop'), $software->html());
}
}
$hardware_requirements = $page->find('#hardwareRequirements ul li');
if ($hardware_requirements->length()) {
foreach ($hardware_requirements as $hardware) {
$hardware = \pq($hardware);
$app->addHardwareRequirement($hardware->html());
}
}
$supported_languages = $page->find('#languageList span');
if ($supported_languages->length()) {
foreach ($supported_languages as $language) {
$language = \pq($language);
$app->addSupportedLanguage($language->html());
}
}
} catch (Exception $e) {
return false;
}
return $app;
}
/**
* With a search term, execute a search on Google Play.
*
* @param string $term
*
* @return array|false If results are found, an array is returned, otherwise false.
*/
public function search($term)
{
$url = $this->getSearchUrl() . '?';
$url .= http_build_query(
array(
'q' => $term,
'startIndex' => $this->getPullStart()
)
);
try {
$apps = array();
$this->initScraper($url);
$items = \pq('td.medium:not(.empty)');
if (!$items->length()) {
return false;
}
foreach ($items as $item) {
$item = \pq($item);
$title = $item->find('a.title');
$market_id = $title->attr('data-ov');
$market_id = App\WindowsPhoneApp::constructMarketId($market_id);
$app = new App\WindowsPhoneApp(
array(
'market_id' => $market_id,
'url' => $title->attr('href'),
'name' => $title->html(),
'description' => null,
'developer' => null,
'category' => null,
'price' => $item->find('.cost')->html(),
'votes' => $item->find('.ratingCount')->html()
)
);
$rating = $item->find('.ratingSmall')->attr('class');
$rating = trim(str_replace('ratingSmall', '', $rating));
$app->setRating($rating);
$image = $item->find('a.appImage img')->attr('src');
$app->setImageThumbnail($image);
$app->setImageIcon($image);
$apps[$market_id] = $app;
}
return (!empty($apps)) ? $apps : false;
} catch (Exception $e) {
return false;
}
}
/**
* Sets the number index we wish to start pulling search results from. Starts
* at 0 and increments.
*
* @param integer $number
*
* @return void
*/
public function setPullStart($start)
{
$this->pull_start = (int)$start;
}
/**
* Gets the number index we wish to start pulling search results from.
*
* @return integer
*/
public function getPullStart()
{
return $this->pull_start;
}
/**
* Get the dedicated details market URL for a specific market ID.
*
* @param string $market_id
*
* @return string
*/
private function getDetailsUrl($market_id)
{
return sprintf($this->details_url, $this->getLanguage(), $market_id);
}
/**
* Get the search URL.
*
* @return string
*/
private function getSearchUrl()
{
return sprintf($this->search_url, $this->getLanguage());
}
}