| 
									
										
										
										
											2010-12-18 02:27:14 -05:00
										 |  |  | <?php | 
					
						
							|  |  |  | /** | 
					
						
							|  |  |  |  * StatusNet - the distributed open-source microblogging tool | 
					
						
							|  |  |  |  * Copyright (C) 2010, StatusNet, Inc. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Form for adding a new bookmark | 
					
						
							| 
									
										
										
										
											2011-04-06 16:36:35 +02:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2010-12-18 02:27:14 -05:00
										 |  |  |  * PHP version 5 | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * 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  Bookmark | 
					
						
							|  |  |  |  * @package   StatusNet | 
					
						
							|  |  |  |  * @author    Evan Prodromou <evan@status.net> | 
					
						
							|  |  |  |  * @copyright 2010 StatusNet, Inc. | 
					
						
							|  |  |  |  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 | 
					
						
							|  |  |  |  * @link      http://status.net/ | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | if (!defined('STATUSNET')) { | 
					
						
							|  |  |  |     // This check helps protect against security problems;
 | 
					
						
							|  |  |  |     // your code file can't be executed directly from the web.
 | 
					
						
							|  |  |  |     exit(1); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /** | 
					
						
							|  |  |  |  * Form to add a new bookmark | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * @category  Bookmark | 
					
						
							|  |  |  |  * @package   StatusNet | 
					
						
							|  |  |  |  * @author    Evan Prodromou <evan@status.net> | 
					
						
							|  |  |  |  * @copyright 2010 StatusNet, Inc. | 
					
						
							|  |  |  |  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 | 
					
						
							|  |  |  |  * @link      http://status.net/ | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | class BookmarkForm extends Form | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2010-12-21 10:16:53 -05:00
										 |  |  |     private $_title       = null; | 
					
						
							|  |  |  |     private $_url         = null; | 
					
						
							|  |  |  |     private $_tags        = null; | 
					
						
							|  |  |  |     private $_description = null; | 
					
						
							| 
									
										
										
										
											2011-04-14 23:44:01 -04:00
										 |  |  |     private $_thumbnail   = null; | 
					
						
							| 
									
										
										
										
											2010-12-18 02:27:14 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-12-21 10:16:53 -05:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * Construct a bookmark form | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @param HTMLOutputter $out         output channel | 
					
						
							|  |  |  |      * @param string        $title       Title of the bookmark | 
					
						
							|  |  |  |      * @param string        $url         URL of the bookmark | 
					
						
							|  |  |  |      * @param string        $tags        Tags to show | 
					
						
							|  |  |  |      * @param string        $description Description of the bookmark | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @return void | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     function __construct($out=null, $title=null, $url=null, $tags=null, | 
					
						
							| 
									
										
										
										
											2011-04-14 23:44:01 -04:00
										 |  |  |                          $description=null, $thumbnail=null) | 
					
						
							| 
									
										
										
										
											2010-12-21 10:16:53 -05:00
										 |  |  |     { | 
					
						
							|  |  |  |         parent::__construct($out); | 
					
						
							| 
									
										
										
										
											2010-12-18 02:27:14 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-12-21 10:16:53 -05:00
										 |  |  |         $this->_title       = $title; | 
					
						
							|  |  |  |         $this->_url         = $url; | 
					
						
							|  |  |  |         $this->_tags        = $tags; | 
					
						
							|  |  |  |         $this->_description = $description; | 
					
						
							| 
									
										
										
										
											2011-04-14 23:44:01 -04:00
										 |  |  |         $this->_thumbnail   = $thumbnail; | 
					
						
							| 
									
										
										
										
											2010-12-21 10:16:53 -05:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2010-12-18 02:27:14 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * ID of the form | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @return int ID of the form | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     function id() | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         return 'form_new_bookmark'; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * class of the form | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @return string class of the form | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     function formClass() | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2011-03-08 15:10:30 -08:00
										 |  |  |         return 'form_settings ajax-notice'; | 
					
						
							| 
									
										
										
										
											2010-12-18 02:27:14 -05:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Action of the form | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @return string URL of the action | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     function action() | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         return common_local_url('newbookmark'); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Data elements of the form | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @return void | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     function formData() | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2010-12-21 10:16:53 -05:00
										 |  |  |         $this->out->elementStart('fieldset', array('id' => 'new_bookmark_data')); | 
					
						
							| 
									
										
										
										
											2010-12-18 02:27:14 -05:00
										 |  |  |         $this->out->elementStart('ul', 'form_data'); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-14 23:44:01 -04:00
										 |  |  |         $this->li(); | 
					
						
							| 
									
										
										
										
											2011-04-17 15:09:56 -07:00
										 |  |  |         $this->out->input('bookmark-url', | 
					
						
							| 
									
										
										
										
											2011-04-14 23:44:01 -04:00
										 |  |  |                           // TRANS: Field label on form for adding a new bookmark.
 | 
					
						
							|  |  |  |                           _m('LABEL','URL'), | 
					
						
							| 
									
										
										
										
											2011-04-17 15:09:56 -07:00
										 |  |  |                           $this->_url, | 
					
						
							| 
									
										
										
										
											2011-04-17 15:34:50 -07:00
										 |  |  |                           null, | 
					
						
							| 
									
										
										
										
											2011-04-17 15:09:56 -07:00
										 |  |  |                           'url'); | 
					
						
							| 
									
										
										
										
											2011-04-14 23:44:01 -04:00
										 |  |  |         $this->unli(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (!empty($this->_thumbnail)) { | 
					
						
							| 
									
										
										
										
											2011-04-21 14:53:17 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  |             list($width, $height) = $this->scaleImage($this->_thumbnail->width, | 
					
						
							|  |  |  |                                                       $this->_thumbnail->height); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-14 23:44:01 -04:00
										 |  |  |             $this->out->element('img', | 
					
						
							|  |  |  |                                 array('src' => $this->_thumbnail->url, | 
					
						
							| 
									
										
										
										
											2011-04-18 02:29:16 -04:00
										 |  |  |                                       'class' => 'bookmarkform-thumbnail', | 
					
						
							| 
									
										
										
										
											2011-04-14 23:57:30 -04:00
										 |  |  |                                       'width' => $width, | 
					
						
							|  |  |  |                                       'height' => $height)); | 
					
						
							| 
									
										
										
										
											2011-04-14 23:44:01 -04:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-12-18 02:27:14 -05:00
										 |  |  |         $this->li(); | 
					
						
							| 
									
										
										
										
											2011-04-17 15:09:56 -07:00
										 |  |  |         $this->out->input('bookmark-title', | 
					
						
							| 
									
										
										
										
											2011-04-06 16:36:35 +02:00
										 |  |  |                           // TRANS: Field label on form for adding a new bookmark.
 | 
					
						
							| 
									
										
										
										
											2011-03-30 22:30:23 +02:00
										 |  |  |                           _m('LABEL','Title'), | 
					
						
							| 
									
										
										
										
											2011-04-17 15:09:56 -07:00
										 |  |  |                           $this->_title, | 
					
						
							| 
									
										
										
										
											2011-04-17 15:34:50 -07:00
										 |  |  |                           null, | 
					
						
							| 
									
										
										
										
											2011-04-17 15:09:56 -07:00
										 |  |  |                           'title'); | 
					
						
							| 
									
										
										
										
											2010-12-18 02:27:14 -05:00
										 |  |  |         $this->unli(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $this->li(); | 
					
						
							| 
									
										
										
										
											2011-04-17 15:09:56 -07:00
										 |  |  |         $this->out->textarea('bookmark-description', | 
					
						
							| 
									
										
										
										
											2011-04-14 23:44:01 -04:00
										 |  |  |                              // TRANS: Field label on form for adding a new bookmark.
 | 
					
						
							|  |  |  |                              _m('LABEL','Notes'), | 
					
						
							| 
									
										
										
										
											2011-04-17 15:09:56 -07:00
										 |  |  |                              $this->_description, | 
					
						
							| 
									
										
										
										
											2011-04-17 15:34:50 -07:00
										 |  |  |                              null, | 
					
						
							| 
									
										
										
										
											2011-04-17 15:09:56 -07:00
										 |  |  |                              'description'); | 
					
						
							| 
									
										
										
										
											2010-12-18 02:27:14 -05:00
										 |  |  |         $this->unli(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $this->li(); | 
					
						
							| 
									
										
										
										
											2011-04-17 15:09:56 -07:00
										 |  |  |         $this->out->input('bookmark-tags', | 
					
						
							| 
									
										
										
										
											2011-04-06 16:36:35 +02:00
										 |  |  |                           // TRANS: Field label on form for adding a new bookmark.
 | 
					
						
							| 
									
										
										
										
											2011-03-30 22:30:23 +02:00
										 |  |  |                           _m('LABEL','Tags'), | 
					
						
							| 
									
										
										
										
											2011-04-06 16:36:35 +02:00
										 |  |  |                           $this->_tags, | 
					
						
							|  |  |  |                           // TRANS: Field title on form for adding a new bookmark.
 | 
					
						
							| 
									
										
										
										
											2011-04-17 15:09:56 -07:00
										 |  |  |                           _m('Comma- or space-separated list of tags.'), | 
					
						
							|  |  |  |                           'tags'); | 
					
						
							| 
									
										
										
										
											2010-12-18 02:27:14 -05:00
										 |  |  |         $this->unli(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $this->out->elementEnd('ul'); | 
					
						
							| 
									
										
										
										
											2011-04-05 11:18:25 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  |         $toWidget = new ToSelector($this->out, | 
					
						
							|  |  |  |                                    common_current_user(), | 
					
						
							|  |  |  |                                    null); | 
					
						
							|  |  |  |         $toWidget->show(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-12-18 02:27:14 -05:00
										 |  |  |         $this->out->elementEnd('fieldset'); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Action elements | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @return void | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     function formActions() | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2011-04-06 16:36:35 +02:00
										 |  |  |         // TRANS: Button text for action to save a new bookmark.
 | 
					
						
							| 
									
										
										
										
											2011-04-17 16:32:52 -07:00
										 |  |  |         $this->out->submit('bookmark-submit', _m('BUTTON', 'Save'), 'submit', 'submit'); | 
					
						
							| 
									
										
										
										
											2010-12-18 02:27:14 -05:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2011-04-14 23:57:30 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  |     function scaleImage($width, $height) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $maxwidth = common_config('attachments', 'thumb_width'); | 
					
						
							|  |  |  |         $maxheight = common_config('attachments', 'thumb_height'); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if ($width > $height && $width > $maxwidth) { | 
					
						
							|  |  |  |             $height = (int) ((((float)$maxwidth)/(float)($width))*(float)$height); | 
					
						
							|  |  |  |             $width = $maxwidth; | 
					
						
							|  |  |  |         } else if ($height > $maxheight) { | 
					
						
							|  |  |  |             $width = (int) ((((float)$maxheight)/(float)($height))*(float)$width); | 
					
						
							|  |  |  |             $height = $maxheight; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return array($width, $height); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2010-12-18 02:27:14 -05:00
										 |  |  | } |