forked from drush-ops/drush
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathXkcdCommands.php
55 lines (50 loc) · 2.37 KB
/
XkcdCommands.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
<?php
namespace Drush\Commands;
use Drush\Exec\ExecTrait;
/**
* Run these commands using the --include option - e.g. `drush --include=/path/to/drush/examples xkcd`
*/
class XkcdCommands extends DrushCommands
{
use ExecTrait;
/**
* Retrieve and display xkcd cartoons.
*
* @command xkcd:fetch
* @param $search Optional argument to retrieve the cartoons matching an index number, keyword search or "random". If omitted the latest cartoon will be retrieved.
* @option image-viewer Command to use to view images (e.g. xv, firefox). Defaults to "display" (from ImageMagick).
* @option google-custom-search-api-key Google Custom Search API Key, available from https://code.google.com/apis/console/. Default key limited to 100 queries/day globally.
* @usage drush xkcd
* Retrieve and display the latest cartoon.
* @usage drush xkcd sandwich
* Retrieve and display cartoons about sandwiches.
* @usage drush xkcd 123 --image-viewer=eog
* Retrieve and display cartoon #123 in eog.
* @usage drush xkcd random --image-viewer=firefox
* Retrieve and display a random cartoon in Firefox.
* @aliases xkcd
*/
public function fetch($search = null, $options = ['image-viewer' => 'open', 'google-custom-search-api-key' => 'AIzaSyDpE01VDNNT73s6CEeJRdSg5jukoG244ek'])
{
if (empty($search)) {
$this->startBrowser('http://xkcd.com');
} elseif (is_numeric($search)) {
$this->startBrowser('http://xkcd.com/' . $search);
} elseif ($search == 'random') {
$xkcd_response = @json_decode(file_get_contents('http://xkcd.com/info.0.json'));
if (!empty($xkcd_response->num)) {
$this->startBrowser('http://xkcd.com/' . rand(1, $xkcd_response->num));
}
} else {
// This uses an API key with a limited number of searches per.
$search_response = @json_decode(file_get_contents('https://www.googleapis.com/customsearch/v1?key=' . $options['google-custom-search-api-key'] . '&cx=012652707207066138651:zudjtuwe28q&q=' . $search));
if (!empty($search_response->items)) {
foreach ($search_response->items as $item) {
$this->startBrowser($item->link);
}
} else {
throw new \Exception(dt('The search failed or produced no results.'));
}
}
}
}