]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/SubMirror/actions/mirrorsettings.php
SubMirror plugin initial checkin: allows setting up automatic mirroring of posts...
[quix0rs-gnu-social.git] / plugins / SubMirror / actions / mirrorsettings.php
1 <?php
2 /**
3  * StatusNet, the distributed open-source microblogging tool
4  *
5  * PHP version 5
6  *
7  * LICENCE: This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU Affero General Public License as published by
9  * the Free Software Foundation, either version 3 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU Affero General Public License for more details.
16  *
17  * You should have received a copy of the GNU Affero General Public License
18  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
19  *
20  * @category  Plugins
21  * @package   StatusNet
22  * @author    Brion Vibber <brion@status.net>
23  * @copyright 2010 StatusNet, Inc.
24  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
25  * @link      http://status.net/
26  */
27
28 if (!defined('STATUSNET') && !defined('LACONICA')) {
29     exit(1);
30 }
31
32 class MirrorSettingsAction extends AccountSettingsAction
33 {
34     /**
35      * Title of the page
36      *
37      * @return string Page title
38      */
39
40     function title()
41     {
42         return _m('Feed mirror settings');
43     }
44
45     /**
46      * Instructions for use
47      *
48      * @return string Instructions for use
49      */
50
51     function getInstructions()
52     {
53         return _m('You can mirror updates from your RSS and Atom feeds ' .
54                   'into your StatusNet timeline!');
55     }
56
57     /**
58      * Show the form for OpenID management
59      *
60      * We have one form with a few different submit buttons to do different things.
61      *
62      * @return void
63      */
64
65     function showContent()
66     {
67         $user = common_current_user();
68         
69         $mirror = new SubMirror();
70         $mirror->subscriber = $user->id;
71         if ($mirror->find()) {
72             while ($mirror->fetch()) {
73                 $this->showFeedForm($mirror);
74             }
75         }
76         $this->showAddFeedForm();
77     }
78
79     function showFeedForm($mirror)
80     {
81         $profile = Profile::staticGet('id', $mirror->subscribed);
82         if ($profile) {
83             $form = new EditMirrorForm($this, $profile);
84             $form->show();
85         }
86     }
87
88     function showAddFeedForm()
89     {
90         $form = new AddMirrorForm($this);
91         $form->show();
92     }
93
94     /**
95      * Handle a POST request
96      *
97      * Muxes to different sub-functions based on which button was pushed
98      *
99      * @return void
100      */
101
102     function handlePost()
103     {
104     }
105 }