]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/SubMirror/actions/mirrorsettings.php
Merged
[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('GNUSOCIAL')) { exit(1); }
29
30 class MirrorSettingsAction extends SettingsAction
31 {
32     /**
33      * Title of the page
34      *
35      * @return string Page title
36      */
37     function title()
38     {
39         // TRANS: Page title.
40         return _m('Feed mirror settings');
41     }
42
43     /**
44      * Instructions for use
45      *
46      * @return string Instructions for use
47      */
48
49     function getInstructions()
50     {
51         // TRANS: Page instructions.
52         return _m('You can mirror updates from many RSS and Atom feeds ' .
53                   'into your GNU social timeline!');
54     }
55
56     /**
57      * Show the form for OpenID management
58      *
59      * We have one form with a few different submit buttons to do different things.
60      *
61      * @return void
62      */
63     function showContent()
64     {
65         $provider = $this->trimmed('provider');
66         if (!empty($provider) || GNUsocial::isAjax()) {
67             $this->showAddFeedForm($provider);
68         } else {
69             $this->elementStart('div', array('id' => 'add-mirror'));
70             $this->showAddWizard();
71             $this->elementEnd('div');
72
73             $mirror = new SubMirror();
74             $mirror->subscriber = $this->scoped->getID();
75             if ($mirror->find()) {
76                 while ($mirror->fetch()) {
77                     $this->showFeedForm($mirror);
78                 }
79             }
80         }
81     }
82
83     function showAddWizard()
84     {
85         $form = new AddMirrorWizard($this);
86         $form->show();
87     }
88
89     function showFeedForm(SubMirror $mirror)
90     {
91 <<<<<<< .merge_file_ha7DQl
92         $profile = Profile::getByID($mirror->subscribed);
93         $form = new EditMirrorForm($this, $profile);
94         $form->show();
95 =======
96         $profile = Profile::getKV('id', $mirror->subscribed);
97
98         if ($profile instanceof Profile) {
99             $form = new EditMirrorForm($this, $profile);
100             $form->show();
101         }
102 >>>>>>> .merge_file_SAOPKl
103     }
104
105     function showAddFeedForm()
106     {
107         switch ($this->arg('provider')) {
108         case 'statusnet':
109             break;
110         case 'wordpress':
111             break;
112         case 'linkedin':
113             break;
114         case 'feed':
115         default:
116             $form = new AddMirrorForm($this);
117         }
118         $form->show();
119     }
120
121     /**
122 <<<<<<< .merge_file_ha7DQl
123 =======
124      *
125      * @param array $args
126      *
127      * @todo move the ajax display handling to common code
128      */
129     function handle(array $args=array())
130     {
131         if ($this->boolean('ajax')) {
132             $this->startHTML('text/xml;charset=utf-8');
133             $this->elementStart('head');
134             // TRANS: Title for page with form to add a mirror feed provider on.
135             $this->element('title', null, _m('Provider add'));
136             $this->elementEnd('head');
137             $this->elementStart('body');
138
139             $this->showAddFeedForm();
140
141             $this->elementEnd('body');
142             $this->endHTML();
143         } else {
144             return parent::handle($args);
145         }
146     }
147     /**
148      * Handle a POST request
149      *
150      * Muxes to different sub-functions based on which button was pushed
151      *
152      * @return void
153      */
154     function handlePost()
155     {
156     }
157
158     /**
159 >>>>>>> .merge_file_SAOPKl
160      * Show the local navigation menu
161      *
162      * This is the same for all settings, so we show it here.
163      *
164      * @return void
165      */
166     function showLocalNav()
167     {
168         $menu = new SettingsNav($this);
169         $menu->show();
170     }
171
172     function showScripts()
173     {
174         parent::showScripts();
175         $this->script('plugins/SubMirror/js/mirrorsettings.js');
176     }
177
178     function showStylesheets()
179     {
180         parent::showStylesheets();
181         $this->cssLink('plugins/SubMirror/css/mirrorsettings.css');
182     }
183 }