]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/Bookmark/bookmarkform.php
don't use thumbnail if it's not there
[quix0rs-gnu-social.git] / plugins / Bookmark / bookmarkform.php
1 <?php
2 /**
3  * StatusNet - the distributed open-source microblogging tool
4  * Copyright (C) 2010, StatusNet, Inc.
5  *
6  * Form for adding a new bookmark
7  *
8  * PHP version 5
9  *
10  * This program is free software: you can redistribute it and/or modify
11  * it under the terms of the GNU Affero General Public License as published by
12  * the Free Software Foundation, either version 3 of the License, or
13  * (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU Affero General Public License for more details.
19  *
20  * You should have received a copy of the GNU Affero General Public License
21  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
22  *
23  * @category  Bookmark
24  * @package   StatusNet
25  * @author    Evan Prodromou <evan@status.net>
26  * @copyright 2010 StatusNet, Inc.
27  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
28  * @link      http://status.net/
29  */
30
31 if (!defined('STATUSNET')) {
32     // This check helps protect against security problems;
33     // your code file can't be executed directly from the web.
34     exit(1);
35 }
36
37 /**
38  * Form to add a new bookmark
39  *
40  * @category  Bookmark
41  * @package   StatusNet
42  * @author    Evan Prodromou <evan@status.net>
43  * @copyright 2010 StatusNet, Inc.
44  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
45  * @link      http://status.net/
46  */
47 class BookmarkForm extends Form
48 {
49     private $_title       = null;
50     private $_url         = null;
51     private $_tags        = null;
52     private $_description = null;
53     private $_thumbnail   = null;
54
55     /**
56      * Construct a bookmark form
57      *
58      * @param HTMLOutputter $out         output channel
59      * @param string        $title       Title of the bookmark
60      * @param string        $url         URL of the bookmark
61      * @param string        $tags        Tags to show
62      * @param string        $description Description of the bookmark
63      *
64      * @return void
65      */
66     function __construct($out=null, $title=null, $url=null, $tags=null,
67                          $description=null, $thumbnail=null)
68     {
69         parent::__construct($out);
70
71         $this->_title       = $title;
72         $this->_url         = $url;
73         $this->_tags        = $tags;
74         $this->_description = $description;
75         $this->_thumbnail   = $thumbnail;
76     }
77
78     /**
79      * ID of the form
80      *
81      * @return int ID of the form
82      */
83     function id()
84     {
85         return 'form_new_bookmark';
86     }
87
88     /**
89      * class of the form
90      *
91      * @return string class of the form
92      */
93     function formClass()
94     {
95         return 'form_settings ajax-notice';
96     }
97
98     /**
99      * Action of the form
100      *
101      * @return string URL of the action
102      */
103     function action()
104     {
105         return common_local_url('newbookmark');
106     }
107
108     /**
109      * Data elements of the form
110      *
111      * @return void
112      */
113     function formData()
114     {
115         $this->out->elementStart('fieldset', array('id' => 'new_bookmark_data'));
116         $this->out->elementStart('ul', 'form_data');
117
118         $this->li();
119         $this->out->input('bookmark-url',
120                           // TRANS: Field label on form for adding a new bookmark.
121                           _m('LABEL','URL'),
122                           $this->_url,
123                           null,
124                           'url');
125         $this->unli();
126
127         if (!empty($this->_thumbnail)) {
128
129             list($width, $height) = $this->scaleImage($this->_thumbnail->width,
130                                                       $this->_thumbnail->height);
131
132             $this->out->element('img',
133                                 array('src' => $this->_thumbnail->url,
134                                       'class' => 'bookmarkform-thumbnail',
135                                       'width' => $width,
136                                       'height' => $height));
137         }
138
139         $this->li();
140         $this->out->input('bookmark-title',
141                           // TRANS: Field label on form for adding a new bookmark.
142                           _m('LABEL','Title'),
143                           $this->_title,
144                           null,
145                           'title');
146         $this->unli();
147
148         $this->li();
149         $this->out->textarea('bookmark-description',
150                              // TRANS: Field label on form for adding a new bookmark.
151                              _m('LABEL','Notes'),
152                              $this->_description,
153                              null,
154                              'description');
155         $this->unli();
156
157         $this->li();
158         $this->out->input('bookmark-tags',
159                           // TRANS: Field label on form for adding a new bookmark.
160                           _m('LABEL','Tags'),
161                           $this->_tags,
162                           // TRANS: Field title on form for adding a new bookmark.
163                           _m('Comma- or space-separated list of tags.'),
164                           'tags');
165         $this->unli();
166
167         $this->out->elementEnd('ul');
168
169         $toWidget = new ToSelector($this->out,
170                                    common_current_user(),
171                                    null);
172         $toWidget->show();
173
174         $this->out->elementEnd('fieldset');
175     }
176
177     /**
178      * Action elements
179      *
180      * @return void
181      */
182
183     function formActions()
184     {
185         // TRANS: Button text for action to save a new bookmark.
186         $this->out->submit('bookmark-submit', _m('BUTTON', 'Save'), 'submit', 'submit');
187     }
188
189     function scaleImage($width, $height)
190     {
191         $maxwidth = common_config('attachments', 'thumb_width');
192         $maxheight = common_config('attachments', 'thumb_height');
193
194         if ($width > $height && $width > $maxwidth) {
195             $height = (int) ((((float)$maxwidth)/(float)($width))*(float)$height);
196             $width = $maxwidth;
197         } else if ($height > $maxheight) {
198             $width = (int) ((((float)$maxheight)/(float)($height))*(float)$width);
199             $height = $maxheight;
200         }
201
202         return array($width, $height);
203     }
204 }