]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/SubMirror/actions/addmirror.php
More Exceptions for FeedSub doSubscribe and related functions
[quix0rs-gnu-social.git] / plugins / SubMirror / actions / addmirror.php
1 <?php
2 /**
3  * StatusNet - the distributed open-source microblogging tool
4  * Copyright (C) 2010, StatusNet, Inc.
5  *
6  * This program is free software: you can redistribute it and/or modify
7  * it under the terms of the GNU Affero General Public License as published by
8  * the Free Software Foundation, either version 3 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU Affero General Public License for more details.
15  *
16  * You should have received a copy of the GNU Affero General Public License
17  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
18  *
19  * PHP version 5
20  *
21  * @category  Action
22  * @package   StatusNet
23  * @author    Brion Vibber <brion@status.net>
24  * @copyright 2010 StatusNet, Inc.
25  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPLv3
26  * @link      http://status.net/
27  */
28
29 if (!defined('GNUSOCIAL') && !defined('STATUSNET')) { exit(1); }
30
31 /**
32  * Takes parameters:
33  *
34  *    - feed: a profile ID
35  *    - token: session token to prevent CSRF attacks
36  *    - ajax: boolean; whether to return Ajax or full-browser results
37  *
38  * Only works if the current user is logged in.
39  *
40  * @category  Action
41  * @package   StatusNet
42  * @copyright 2010 StatusNet, Inc.
43  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPLv3
44  * @link      http://status.net/
45  */
46 class AddMirrorAction extends BaseMirrorAction
47 {
48     var $feedurl;
49
50     /**
51      * Check pre-requisites and instantiate attributes
52      *
53      * @param Array $args array of arguments (URL, GET, POST)
54      *
55      * @return boolean success flag
56      */
57     protected function prepare(array $args=array())
58     {
59         parent::prepare($args);
60         $feedurl = $this->getFeedUrl();
61         $this->feedurl = $this->validateFeedUrl($feedurl);
62         $this->profile = $this->profileForFeed($this->feedurl);
63         return true;
64     }
65
66     function getFeedUrl()
67     {
68         $provider = $this->trimmed('provider');
69         switch ($provider) {
70         case 'feed':
71             return $this->trimmed('feedurl');
72         default:
73             // TRANS: Exception thrown when a feed provider could not be recognised.
74             throw new Exception(_m('Internal form error: Unrecognized feed provider.'));
75         }
76     }
77
78     protected function saveMirror()
79     {
80         $this->oprofile->subscribe();
81         SubMirror::saveMirror($this->user, $this->profile);
82     }
83 }