| 
									
										
										
										
											2009-01-13 23:54:55 -05:00
										 |  |  | <?php | 
					
						
							| 
									
										
										
										
											2019-11-03 15:53:11 +00:00
										 |  |  | // This file is part of GNU social - https://www.gnu.org/software/social
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | // GNU social 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.
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | // GNU social 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 GNU social.  If not, see <http://www.gnu.org/licenses/>.
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-13 23:54:55 -05:00
										 |  |  | /** | 
					
						
							|  |  |  |  * Base class for UI widgets | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * @category  Widget | 
					
						
							| 
									
										
										
										
											2019-11-03 15:53:11 +00:00
										 |  |  |  * @package   GNUsocial | 
					
						
							| 
									
										
										
										
											2009-08-25 18:19:04 -04:00
										 |  |  |  * @author    Evan Prodromou <evan@status.net> | 
					
						
							|  |  |  |  * @author    Sarven Capadisli <csarven@status.net> | 
					
						
							| 
									
										
										
										
											2019-11-03 15:53:11 +00:00
										 |  |  |  * @copyright 2009-2019 Free Software Foundation, Inc http://www.fsf.org | 
					
						
							|  |  |  |  * @license   https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or later | 
					
						
							| 
									
										
										
										
											2009-01-13 23:54:55 -05:00
										 |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-11-03 15:53:11 +00:00
										 |  |  | defined('GNUSOCIAL') || die(); | 
					
						
							| 
									
										
										
										
											2009-01-13 23:54:55 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  | /** | 
					
						
							|  |  |  |  * Base class for UI widgets | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2009-01-13 23:56:10 -05:00
										 |  |  |  * A widget is a cluster of HTML elements that provide some functionality | 
					
						
							|  |  |  |  * that's used on different parts of the site. Examples would be profile | 
					
						
							|  |  |  |  * lists, notice lists, navigation menus (tabsets) and common forms. | 
					
						
							| 
									
										
										
										
											2009-01-13 23:54:55 -05:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2019-11-03 15:53:11 +00:00
										 |  |  |  * @category  Widget | 
					
						
							|  |  |  |  * @package   GNUsocial | 
					
						
							|  |  |  |  * @author    Evan Prodromou <evan@status.net> | 
					
						
							|  |  |  |  * @author    Sarven Capadisli <csarven@status.net> | 
					
						
							|  |  |  |  * @license   https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or later | 
					
						
							| 
									
										
										
										
											2009-01-13 23:54:55 -05:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2019-11-03 15:53:11 +00:00
										 |  |  |  * @see       HTMLOutputter | 
					
						
							| 
									
										
										
										
											2009-01-13 23:54:55 -05:00
										 |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class Widget | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2014-06-21 23:22:41 +02:00
										 |  |  |     protected $avatarSize = AVATAR_STREAM_SIZE; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-13 23:54:55 -05:00
										 |  |  |     /** | 
					
						
							| 
									
										
										
										
											2014-07-03 14:02:01 +02:00
										 |  |  |      * Action (HTMLOutputter) to use for output | 
					
						
							| 
									
										
										
										
											2009-01-13 23:54:55 -05:00
										 |  |  |      */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-11-03 15:53:11 +00:00
										 |  |  |     public $out = null; | 
					
						
							| 
									
										
										
										
											2009-01-13 23:54:55 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Prepare the widget for use | 
					
						
							|  |  |  |      * | 
					
						
							| 
									
										
										
										
											2014-07-03 14:02:01 +02:00
										 |  |  |      * @param Action $out output helper, defaults to null | 
					
						
							| 
									
										
										
										
											2019-08-09 15:22:55 +01:00
										 |  |  |      * @param array $widgetOpts | 
					
						
							| 
									
										
										
										
											2009-01-13 23:54:55 -05:00
										 |  |  |      */ | 
					
						
							| 
									
										
										
										
											2019-11-03 15:53:11 +00:00
										 |  |  |     public function __construct(?Action $out = null, array $widgetOpts = []) | 
					
						
							| 
									
										
										
										
											2009-01-13 23:54:55 -05:00
										 |  |  |     { | 
					
						
							|  |  |  |         $this->out = $out; | 
					
						
							| 
									
										
										
										
											2016-01-20 16:10:10 +01:00
										 |  |  |         if (!array_key_exists('scoped', $widgetOpts)) { | 
					
						
							|  |  |  |             $this->widgetOpts['scoped'] = Profile::current(); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         $this->scoped = $this->widgetOpts['scoped']; | 
					
						
							| 
									
										
										
										
											2009-01-13 23:54:55 -05:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Show the widget | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * Emit the HTML for the widget, using the configured outputter. | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @return void | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-11-03 15:53:11 +00:00
										 |  |  |     public function show() | 
					
						
							| 
									
										
										
										
											2009-01-13 23:54:55 -05:00
										 |  |  |     { | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2011-03-21 11:09:16 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-07 16:06:33 -06:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * Get HTMLOutputter | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * Return the HTMLOutputter for the widget. | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @return HTMLOutputter the output helper | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-11-03 15:53:11 +00:00
										 |  |  |     public function getOut() | 
					
						
							| 
									
										
										
										
											2012-03-07 16:06:33 -06:00
										 |  |  |     { | 
					
						
							|  |  |  |         return $this->out; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-03-21 11:09:16 -04:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * Delegate output methods to the outputter attribute. | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @param string $name      Name of the method | 
					
						
							|  |  |  |      * @param array  $arguments Arguments called | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @return mixed Return value of the method. | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2019-11-03 15:53:11 +00:00
										 |  |  |     public function __call($name, $arguments) | 
					
						
							| 
									
										
										
										
											2011-03-21 11:09:16 -04:00
										 |  |  |     { | 
					
						
							|  |  |  |         return call_user_func_array(array($this->out, $name), $arguments); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2014-06-21 23:22:41 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Default avatar size for this widget. | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     public function avatarSize() | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         return $this->avatarSize; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     protected function showAvatar(Profile $profile, $size=null) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $avatar_url = $profile->avatarUrl($size ?: $this->avatarSize()); | 
					
						
							|  |  |  |         $this->out->element('img', array('src' => $avatar_url, | 
					
						
							|  |  |  |                                          'class' => 'avatar u-photo', | 
					
						
							|  |  |  |                                          'width' => $this->avatarSize(), | 
					
						
							|  |  |  |                                          'height' => $this->avatarSize(), | 
					
						
							|  |  |  |                                          'alt' => $profile->getBestName())); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2009-01-13 23:54:55 -05:00
										 |  |  | } |