]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/RSSCloud/LoggingAggregator.php
cbdefc36b804abce6754566ffb11cdd769ede23a
[quix0rs-gnu-social.git] / plugins / RSSCloud / LoggingAggregator.php
1 <?php
2
3 /**
4  * This test class pretends to be an RSS aggregator. It logs notifications
5  * from the cloud.
6  *
7  * PHP version 5
8  *
9  * @category Plugin
10  * @package  StatusNet
11  * @author   Zach Copley <zach@status.net>
12  * @license  http://www.fsf.org/licensing/licenses/agpl.html AGPLv3
13  * @link     http://status.net/
14  *
15  * StatusNet - the distributed open-source microblogging tool
16  * Copyright (C) 2009, StatusNet, Inc.
17  *
18  * This program is free software: you can redistribute it and/or modify
19  * it under the terms of the GNU Affero General Public License as published by
20  * the Free Software Foundation, either version 3 of the License, or
21  * (at your option) any later version.
22  *
23  * This program is distributed in the hope that it will be useful,
24  * but WITHOUT ANY WARRANTY; without even the implied warranty of
25  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
26  * GNU Affero General Public License for more details.
27  *
28  * You should have received a copy of the GNU Affero General Public License
29  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
30  */
31
32 if (!defined('STATUSNET')) {
33     exit(1);
34 }
35
36 class LoggingAggregatorAction extends Action
37 {
38
39     var $challenge = null;
40     var $url       = null;
41
42     /**
43      * Initialization.
44      *
45      * @param array $args Web and URL arguments
46      *
47      * @return boolean false if user doesn't exist
48      */
49     function prepare($args)
50     {
51         parent::prepare($args);
52
53         $this->url       = $this->arg('url');
54         $this->challenge = $this->arg('challenge');
55
56         common_debug("args = " . var_export($this->args, true));
57         common_debug('url = ' . $this->url . ' challenge = ' . $this->challenge);
58
59         return true;
60     }
61
62     function handle($args)
63     {
64         parent::handle($args);
65
66         if (empty($this->url)) {
67             $this->showError('Hey, you have to provide a url parameter.');
68             return;
69         }
70
71         if (!empty($this->challenge)) {
72
73             // must be a GET
74
75             if ($_SERVER['REQUEST_METHOD'] != 'GET') {
76                 $this->showError('This resource requires an HTTP GET.');
77                 return;
78             }
79
80             header('Content-Type: text/xml');
81             echo "<notifyResult success='true' msg='Thanks for the update.' challenge='" .
82               $this->challenge . "' />\n";
83
84         } else {
85
86             // must be a POST
87
88             if ($_SERVER['REQUEST_METHOD'] != 'POST') {
89                 $this->showError('This resource requires an HTTP POST.');
90                 return;
91             }
92
93             header('Content-Type: text/xml');
94             echo '<notifyResult success=\'true\' msg=\'Thanks for the update.\' />' . "\n";
95
96         }
97
98         $this->ip = $_SERVER['REMOTE_ADDR'];
99
100         common_log(LOG_INFO, 'RSSCloud Logging Aggregator - ' . $this->ip . ' claims the feed at ' .
101                    $this->url . ' has been updated.');
102     }
103
104     function showError($msg)
105     {
106         header('HTTP/1.1 400 Bad Request');
107         header('Content-Type: text/xml');
108         echo "<?xml version='1.0'?>\n";
109         echo "<notifyResult success='false' msg='$msg' />\n";
110     }
111
112 }