summaryrefslogtreecommitdiff
path: root/plugins/Irc/extlib/phergie/Phergie/Plugin/TheFuckingWeather.php
blob: 8559426b6189160280bbbb44dd683ab9ee1155a6 (plain)
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
<?php
/**
 * Phergie
 *
 * PHP version 5
 *
 * LICENSE
 *
 * This source file is subject to the new BSD license that is bundled
 * with this package in the file LICENSE.
 * It is also available through the world-wide-web at this URL:
 * http://phergie.org/license
 *
 * @category  Phergie
 * @package   Phergie_Plugin_TheFuckingWeather
 * @author    Phergie Development Team <team@phergie.org>
 * @copyright 2008-2010 Phergie Development Team (http://phergie.org)
 * @license   http://phergie.org/license New BSD License
 * @link      http://pear.phergie.org/package/Phergie_Plugin_TheFuckingWeather
 */

/**
 * Detects and responds to requests for current weather conditions in a
 * particular location using data from a web service.
 *
 * @category Phergie
 * @package  Phergie_Plugin_TheFuckingWeather
 * @author   Phergie Development Team <team@phergie.org>
 * @license  http://phergie.org/license New BSD License
 * @link     http://pear.phergie.org/package/Phergie_Plugin_TheFuckingWeather
 * @link     http://thefuckingweather.com
 * @uses     Phergie_Plugin_Command pear.phergie.org
 * @uses     Phergie_Plugin_Http pear.phergie.org
 */

class Phergie_Plugin_TheFuckingWeather extends Phergie_Plugin_Abstract
{
    /**
     * HTTP plugin
     *
     * @var Phergie_Plugin_Http
     */
    protected $http = null;

    /**
     * Base API URL
     *
     * @var string
     */
    protected $url = 'http://www.thefuckingweather.com/?zipcode=';

    /**
     * Checks for dependencies.
     *
     * @return void
     */
    public function onLoad()
    {
        $pluginHandler = $this->getPluginHandler();
        $pluginHandler->getPlugin('Command');
        $this->http = $pluginHandler->getPlugin('Http');
    }

    /**
     * Returns the weather from the specified location.
     *
     * @param string $location Location term
     *
     * @return void
     * @todo Implement use of URL shortening here
     */
    public function onCommandThefuckingweather($location)
    {
        $source = $this->getEvent()->getSource();
        $target = $this->getEvent()->getNick();
        $out = $this->getWeather($location);
        if (!$out) {
            $this->doNotice($source, $out);
        } else {
            $this->doPrivmsg($source, $target . ': ' . $out);
        }
    }

    /**
    * Alias for TheFuckingWeather command.
    *
    * @param string $location Location term
    *
    * @return void
    */
    public function onCommandTfw($location)
    {
        $this->onCommandThefuckingweather($location);
    }

    /**
     * Get the necessary content and returns the search result.
     *
     * @param string $location Location term
     *
     * @return string|bool Search result or FALSE if none is found
     * @todo Try to optimize pregs
     */
    protected function getWeather($location)
    {
        $url = $this->url . urlencode($location);
        $response = $this->http->get($url);
        $content = $response->getContent();

        preg_match_all(
            '#<div><span class="small">(.*?)<\/span><\/div>#im',
            $content, $matches
        );
        $location = $matches[1][0];

        if (!empty($location)) {
            preg_match_all(
                '#<div class="large" >(.*?)<br \/>#im',
                $content, $matches
            );
            $temp_numb = (int) $matches[1][0];
            $temp_numb .= ' F / ' . round(($temp_numb - 32) / 1.8, 0) . ' C?!';

            preg_match_all(
                '#<br \/>(.*?)<\/div><div  id="remark"><br \/>#im',
                $content, $matches
            );
            $temp_desc = $matches[1][0];

            preg_match_all(
                '#<div  id="remark"><br \/>\n<span>(.*?)<\/span><\/div>#im',
                $content, $matches
            );
            $remark = $matches[1][0];

            $result = "{$location}: {$temp_numb} {$temp_desc} ({$remark})";
            $result = preg_replace('/</', ' <', $result);
            $result = strip_tags($result);
            return html_entity_decode($result);
        } else {
            return 'No fucking clue where that is.';
        }
    }
}