| 
									
										
										
										
											2009-01-13 23:48:05 -05:00
										 |  |  | <?php | 
					
						
							|  |  |  | /** | 
					
						
							| 
									
										
										
										
											2009-08-25 18:12:20 -04:00
										 |  |  |  * StatusNet, the distributed open-source microblogging tool | 
					
						
							| 
									
										
										
										
											2009-01-13 23:48:05 -05:00
										 |  |  |  * | 
					
						
							|  |  |  |  * Widget for showing a list of feeds | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * 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  Widget | 
					
						
							| 
									
										
										
										
											2009-08-25 18:12:20 -04:00
										 |  |  |  * @package   StatusNet | 
					
						
							| 
									
										
										
										
											2009-08-25 18:19:04 -04:00
										 |  |  |  * @author    Evan Prodromou <evan@status.net> | 
					
						
							|  |  |  |  * @author    Sarven Capadisli <csarven@status.net> | 
					
						
							| 
									
										
										
										
											2009-08-25 18:12:20 -04:00
										 |  |  |  * @copyright 2008 StatusNet, Inc. | 
					
						
							| 
									
										
										
										
											2009-01-13 23:48:05 -05:00
										 |  |  |  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 | 
					
						
							| 
									
										
										
										
											2009-08-25 18:16:46 -04:00
										 |  |  |  * @link      http://status.net/ | 
					
						
							| 
									
										
										
										
											2009-01-13 23:48:05 -05:00
										 |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-26 10:41:36 -04:00
										 |  |  | if (!defined('STATUSNET') && !defined('LACONICA')) { | 
					
						
							| 
									
										
										
										
											2009-01-13 23:48:05 -05:00
										 |  |  |     exit(1); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /** | 
					
						
							|  |  |  |  * Widget for showing a list of feeds | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Typically used for Action::showExportList() | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * @category Widget | 
					
						
							| 
									
										
										
										
											2009-08-25 18:12:20 -04:00
										 |  |  |  * @package  StatusNet | 
					
						
							| 
									
										
										
										
											2009-08-25 18:19:04 -04:00
										 |  |  |  * @author   Evan Prodromou <evan@status.net> | 
					
						
							|  |  |  |  * @author   Sarven Capadisli <csarven@status.net> | 
					
						
							| 
									
										
										
										
											2009-01-13 23:48:05 -05:00
										 |  |  |  * @license  http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 | 
					
						
							| 
									
										
										
										
											2009-08-25 18:16:46 -04:00
										 |  |  |  * @link     http://status.net/ | 
					
						
							| 
									
										
										
										
											2009-01-13 23:48:05 -05:00
										 |  |  |  * | 
					
						
							|  |  |  |  * @see      Action::showExportList() | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-15 20:22:14 +00:00
										 |  |  | class FeedList extends Widget | 
					
						
							| 
									
										
										
										
											2009-01-13 23:48:05 -05:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2009-01-15 20:22:14 +00:00
										 |  |  |     var $action = null; | 
					
						
							| 
									
										
										
										
											2009-02-11 11:37:50 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-15 20:22:14 +00:00
										 |  |  |     function __construct($action=null) | 
					
						
							| 
									
										
										
										
											2009-01-13 23:48:05 -05:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2009-01-15 20:22:14 +00:00
										 |  |  | 	parent::__construct($action); | 
					
						
							|  |  |  | 	$this->action = $action; | 
					
						
							| 
									
										
										
										
											2009-01-13 23:48:05 -05:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     function show($feeds) | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2009-01-15 21:58:07 +00:00
										 |  |  |         $this->out->elementStart('div', array('id' => 'export_data', | 
					
						
							|  |  |  |                                               'class' => 'section')); | 
					
						
							|  |  |  |         $this->out->element('h2', null, _('Export data')); | 
					
						
							| 
									
										
										
										
											2009-01-13 23:48:05 -05:00
										 |  |  |         $this->out->elementStart('ul', array('class' => 'xoxo')); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-11 11:37:50 -05:00
										 |  |  |         foreach ($feeds as $feed) { | 
					
						
							|  |  |  |             $this->feedItem($feed); | 
					
						
							| 
									
										
										
										
											2009-01-13 23:48:05 -05:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $this->out->elementEnd('ul'); | 
					
						
							|  |  |  |         $this->out->elementEnd('div'); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     function feedItem($feed) | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2009-02-11 11:37:50 -05:00
										 |  |  |         $classname = null; | 
					
						
							| 
									
										
										
										
											2009-01-13 23:48:05 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-11 11:37:50 -05:00
										 |  |  |         switch ($feed->type) { | 
					
						
							|  |  |  |          case Feed::RSS1: | 
					
						
							|  |  |  |          case Feed::RSS2: | 
					
						
							|  |  |  |             $classname = 'rss'; | 
					
						
							| 
									
										
										
										
											2009-01-13 23:48:05 -05:00
										 |  |  |             break; | 
					
						
							| 
									
										
										
										
											2009-02-11 11:37:50 -05:00
										 |  |  |          case Feed::ATOM: | 
					
						
							|  |  |  |             $classname = 'atom'; | 
					
						
							| 
									
										
										
										
											2009-01-13 23:48:05 -05:00
										 |  |  |             break; | 
					
						
							| 
									
										
										
										
											2009-02-11 11:37:50 -05:00
										 |  |  |          case Feed::FOAF: | 
					
						
							|  |  |  |             $classname = 'foaf'; | 
					
						
							| 
									
										
										
										
											2009-01-13 23:48:05 -05:00
										 |  |  |             break; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2009-02-11 11:37:50 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-13 23:48:05 -05:00
										 |  |  |         $this->out->elementStart('li'); | 
					
						
							| 
									
										
										
										
											2009-02-11 11:37:50 -05:00
										 |  |  |         $this->out->element('a', array('href' => $feed->url, | 
					
						
							|  |  |  |                                        'class' => $classname, | 
					
						
							|  |  |  |                                        'type' => $feed->mimeType(), | 
					
						
							|  |  |  |                                        'title' => $feed->title), | 
					
						
							|  |  |  |                             $feed->typeName()); | 
					
						
							| 
									
										
										
										
											2009-01-13 23:48:05 -05:00
										 |  |  |         $this->out->elementEnd('li'); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } |