| 
									
										
										
										
											2010-08-05 13:37:47 -07:00
										 |  |  | <?php | 
					
						
							|  |  |  | /** | 
					
						
							|  |  |  |  * StatusNet, the distributed open-source microblogging tool | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * PHP version 5 | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * LICENCE: This program is free software: you can redistribute it and/or modify | 
					
						
							|  |  |  |  * it under the terms of the GNU Affero General Public License as published by | 
					
						
							|  |  |  |  * the Free Software Foundation, either version 3 of the License, or | 
					
						
							|  |  |  |  * (at your option) any later version. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * This program is distributed in the hope that it will be useful, | 
					
						
							|  |  |  |  * but WITHOUT ANY WARRANTY; without even the implied warranty of | 
					
						
							|  |  |  |  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | 
					
						
							|  |  |  |  * GNU Affero General Public License for more details. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * You should have received a copy of the GNU Affero General Public License | 
					
						
							|  |  |  |  * along with this program.  If not, see <http://www.gnu.org/licenses/>. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * @category  Plugins | 
					
						
							|  |  |  |  * @package   StatusNet | 
					
						
							|  |  |  |  * @author    Brion Vibber <brion@status.net> | 
					
						
							|  |  |  |  * @copyright 2010 StatusNet, Inc. | 
					
						
							|  |  |  |  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 | 
					
						
							|  |  |  |  * @link      http://status.net/ | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-07-17 17:09:36 +02:00
										 |  |  | if (!defined('GNUSOCIAL')) { exit(1); } | 
					
						
							| 
									
										
										
										
											2010-08-05 13:37:47 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-01-23 12:35:35 -05:00
										 |  |  | class MirrorSettingsAction extends SettingsAction | 
					
						
							| 
									
										
										
										
											2010-08-05 13:37:47 -07:00
										 |  |  | { | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Title of the page | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @return string Page title | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     function title() | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2011-06-06 00:38:38 +02:00
										 |  |  |         // TRANS: Page title.
 | 
					
						
							| 
									
										
										
										
											2010-08-05 13:37:47 -07:00
										 |  |  |         return _m('Feed mirror settings'); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Instructions for use | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @return string Instructions for use | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     function getInstructions() | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2011-06-06 00:38:38 +02:00
										 |  |  |         // TRANS: Page instructions.
 | 
					
						
							| 
									
										
										
										
											2010-08-06 10:56:18 -07:00
										 |  |  |         return _m('You can mirror updates from many RSS and Atom feeds ' . | 
					
						
							| 
									
										
										
										
											2014-03-02 22:53:48 +01:00
										 |  |  |                   'into your GNU social timeline!'); | 
					
						
							| 
									
										
										
										
											2010-08-05 13:37:47 -07:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Show the form for OpenID management | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * We have one form with a few different submit buttons to do different things. | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @return void | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     function showContent() | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2011-01-18 18:01:57 -08:00
										 |  |  |         $provider = $this->trimmed('provider'); | 
					
						
							| 
									
										
										
										
											2015-07-17 17:09:36 +02:00
										 |  |  |         if (!empty($provider) || GNUsocial::isAjax()) { | 
					
						
							| 
									
										
										
										
											2011-01-18 18:01:57 -08:00
										 |  |  |             $this->showAddFeedForm($provider); | 
					
						
							|  |  |  |         } else { | 
					
						
							|  |  |  |             $this->elementStart('div', array('id' => 'add-mirror')); | 
					
						
							|  |  |  |             $this->showAddWizard(); | 
					
						
							|  |  |  |             $this->elementEnd('div'); | 
					
						
							| 
									
										
										
										
											2010-08-06 10:56:18 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-01-18 18:01:57 -08:00
										 |  |  |             $mirror = new SubMirror(); | 
					
						
							| 
									
										
										
										
											2015-07-17 17:09:36 +02:00
										 |  |  |             $mirror->subscriber = $this->scoped->getID(); | 
					
						
							| 
									
										
										
										
											2011-01-18 18:01:57 -08:00
										 |  |  |             if ($mirror->find()) { | 
					
						
							|  |  |  |                 while ($mirror->fetch()) { | 
					
						
							|  |  |  |                     $this->showFeedForm($mirror); | 
					
						
							|  |  |  |                 } | 
					
						
							| 
									
										
										
										
											2010-08-05 13:37:47 -07:00
										 |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-01-18 18:01:57 -08:00
										 |  |  |     function showAddWizard() | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $form = new AddMirrorWizard($this); | 
					
						
							|  |  |  |         $form->show(); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-07-17 17:09:36 +02:00
										 |  |  |     function showFeedForm(SubMirror $mirror) | 
					
						
							| 
									
										
										
										
											2010-08-05 13:37:47 -07:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2015-07-17 17:09:36 +02:00
										 |  |  |         $profile = Profile::getByID($mirror->subscribed); | 
					
						
							|  |  |  |         $form = new EditMirrorForm($this, $profile); | 
					
						
							|  |  |  |         $form->show(); | 
					
						
							| 
									
										
										
										
											2010-08-05 13:37:47 -07:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     function showAddFeedForm() | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2011-03-15 17:15:25 -07:00
										 |  |  |         switch ($this->arg('provider')) { | 
					
						
							|  |  |  |         case 'statusnet': | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  |         case 'wordpress': | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  |         case 'linkedin': | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  |         case 'feed': | 
					
						
							|  |  |  |         default: | 
					
						
							|  |  |  |             $form = new AddMirrorForm($this); | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2010-08-05 13:37:47 -07:00
										 |  |  |         $form->show(); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-09-29 07:58:52 +00:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * Show the local navigation menu | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * This is the same for all settings, so we show it here. | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @return void | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2011-01-18 12:34:04 -08:00
										 |  |  |     function showLocalNav() | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2011-09-29 07:58:52 +00:00
										 |  |  |         $menu = new SettingsNav($this); | 
					
						
							|  |  |  |         $menu->show(); | 
					
						
							| 
									
										
										
										
											2011-01-18 12:34:04 -08:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2011-01-18 18:01:57 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     function showScripts() | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         parent::showScripts(); | 
					
						
							|  |  |  |         $this->script('plugins/SubMirror/js/mirrorsettings.js'); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     function showStylesheets() | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         parent::showStylesheets(); | 
					
						
							|  |  |  |         $this->cssLink('plugins/SubMirror/css/mirrorsettings.css'); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2010-08-05 13:37:47 -07:00
										 |  |  | } |