]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - lib/htmloutputter.php
Merge branch '0.9.x' into schema
[quix0rs-gnu-social.git] / lib / htmloutputter.php
1 <?php
2 /**
3  * StatusNet, the distributed open-source microblogging tool
4  *
5  * Low-level generator for HTML
6  *
7  * PHP version 5
8  *
9  * LICENCE: This program is free software: you can redistribute it and/or modify
10  * it under the terms of the GNU Affero General Public License as published by
11  * the Free Software Foundation, either version 3 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU Affero General Public License for more details.
18  *
19  * You should have received a copy of the GNU Affero General Public License
20  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
21  *
22  * @category  Output
23  * @package   StatusNet
24  * @author    Evan Prodromou <evan@status.net>
25  * @author    Sarven Capadisli <csarven@status.net>
26  * @copyright 2008 StatusNet, Inc.
27  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
28  * @link      http://status.net/
29  */
30
31 if (!defined('STATUSNET') && !defined('LACONICA')) {
32     exit(1);
33 }
34
35 require_once INSTALLDIR.'/lib/xmloutputter.php';
36
37 define('PAGE_TYPE_PREFS',
38        'text/html,application/xhtml+xml,'.
39        'application/xml;q=0.3,text/xml;q=0.2');
40
41 /**
42  * Low-level generator for HTML
43  *
44  * Abstracts some of the code necessary for HTML generation. Especially
45  * has methods for generating HTML form elements. Note that these have
46  * been created kind of haphazardly, not with an eye to making a general
47  * HTML-creation class.
48  *
49  * @category Output
50  * @package  StatusNet
51  * @author   Evan Prodromou <evan@status.net>
52  * @author   Sarven Capadisli <csarven@status.net>
53  * @license  http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
54  * @link     http://status.net/
55  *
56  * @see      Action
57  * @see      XMLOutputter
58  */
59
60 class HTMLOutputter extends XMLOutputter
61 {
62     /**
63      * Constructor
64      *
65      * Just wraps the XMLOutputter constructor.
66      *
67      * @param string  $output URI to output to, default = stdout
68      * @param boolean $indent Whether to indent output, default true
69      */
70
71     function __construct($output='php://output', $indent=true)
72     {
73         parent::__construct($output, $indent);
74     }
75
76     /**
77      * Start an HTML document
78      *
79      * If $type isn't specified, will attempt to do content negotiation.
80      *
81      * Attempts to do content negotiation for language, also.
82      *
83      * @param string $type MIME type to use; default is to do negotation.
84      *
85      * @todo extract content negotiation code to an HTTP module or class.
86      *
87      * @return void
88      */
89
90     function startHTML($type=null)
91     {
92         if (!$type) {
93             $httpaccept = isset($_SERVER['HTTP_ACCEPT']) ?
94               $_SERVER['HTTP_ACCEPT'] : null;
95
96             // XXX: allow content negotiation for RDF, RSS, or XRDS
97
98             $cp = common_accept_to_prefs($httpaccept);
99             $sp = common_accept_to_prefs(PAGE_TYPE_PREFS);
100
101             $type = common_negotiate_type($cp, $sp);
102
103             if (!$type) {
104                 throw new ClientException(_('This page is not available in a '.
105                                             'media type you accept'), 406);
106             }
107         }
108
109         header('Content-Type: '.$type);
110
111         $this->extraHeaders();
112         if (preg_match("/.*\/.*xml/", $type)) {
113             // Required for XML documents
114             $this->xw->startDocument('1.0', 'UTF-8');
115         }
116         $this->xw->writeDTD('html',
117                             '-//W3C//DTD XHTML 1.0 Strict//EN',
118                             'http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd');
119
120         $language = $this->getLanguage();
121
122         $this->elementStart('html', array('xmlns' => 'http://www.w3.org/1999/xhtml',
123                                           'xml:lang' => $language,
124                                           'lang' => $language));
125     }
126
127     function getLanguage()
128     {
129         // FIXME: correct language for interface
130         return common_language();
131     }
132
133     /**
134     *  Ends an HTML document
135     *
136     *  @return void
137     */
138     function endHTML()
139     {
140         $this->elementEnd('html');
141         $this->endXML();
142     }
143
144     /**
145     *  To specify additional HTTP headers for the action
146     *
147     *  @return void
148     */
149     function extraHeaders()
150     {
151         // Needs to be overloaded
152     }
153
154     /**
155      * Output an HTML text input element
156      *
157      * Despite the name, it is specifically for outputting a
158      * text input element, not other <input> elements. It outputs
159      * a cluster of elements, including a <label> and an associated
160      * instructions span.
161      *
162      * @param string $id           element ID, must be unique on page
163      * @param string $label        text of label for the element
164      * @param string $value        value of the element, default null
165      * @param string $instructions instructions for valid input
166      *
167      * @todo add a $name parameter
168      * @todo add a $maxLength parameter
169      * @todo add a $size parameter
170      *
171      * @return void
172      */
173
174     function input($id, $label, $value=null, $instructions=null)
175     {
176         $this->element('label', array('for' => $id), $label);
177         $attrs = array('name' => $id,
178                        'type' => 'text',
179                        'id' => $id);
180         if ($value) {
181             $attrs['value'] = $value;
182         }
183         $this->element('input', $attrs);
184         if ($instructions) {
185             $this->element('p', 'form_guide', $instructions);
186         }
187     }
188
189     /**
190      * output an HTML checkbox and associated elements
191      *
192      * Note that the value is default 'true' (the string), which can
193      * be used by Action::boolean()
194      *
195      * @param string $id           element ID, must be unique on page
196      * @param string $label        text of label for the element
197      * @param string $checked      if the box is checked, default false
198      * @param string $instructions instructions for valid input
199      * @param string $value        value of the checkbox, default 'true'
200      * @param string $disabled     show the checkbox disabled, default false
201      *
202      * @return void
203      *
204      * @todo add a $name parameter
205      */
206
207     function checkbox($id, $label, $checked=false, $instructions=null,
208                       $value='true', $disabled=false)
209     {
210         $attrs = array('name' => $id,
211                        'type' => 'checkbox',
212                        'class' => 'checkbox',
213                        'id' => $id);
214         if ($value) {
215             $attrs['value'] = $value;
216         }
217         if ($checked) {
218             $attrs['checked'] = 'checked';
219         }
220         if ($disabled) {
221             $attrs['disabled'] = 'true';
222         }
223         $this->element('input', $attrs);
224         $this->text(' ');
225         $this->element('label', array('class' => 'checkbox',
226                                       'for' => $id),
227                        $label);
228         $this->text(' ');
229         if ($instructions) {
230             $this->element('p', 'form_guide', $instructions);
231         }
232     }
233
234     /**
235      * output an HTML combobox/select and associated elements
236      *
237      * $content is an array of key-value pairs for the dropdown, where
238      * the key is the option value attribute and the value is the option
239      * text. (Careful on the overuse of 'value' here.)
240      *
241      * @param string $id           element ID, must be unique on page
242      * @param string $label        text of label for the element
243      * @param array  $content      options array, value => text
244      * @param string $instructions instructions for valid input
245      * @param string $blank_select whether to have a blank entry, default false
246      * @param string $selected     selected value, default null
247      *
248      * @return void
249      *
250      * @todo add a $name parameter
251      */
252
253     function dropdown($id, $label, $content, $instructions=null,
254                       $blank_select=false, $selected=null)
255     {
256         $this->element('label', array('for' => $id), $label);
257         $this->elementStart('select', array('id' => $id, 'name' => $id));
258         if ($blank_select) {
259             $this->element('option', array('value' => ''));
260         }
261         foreach ($content as $value => $option) {
262             if ($value == $selected) {
263                 $this->element('option', array('value' => $value,
264                                                'selected' => 'selected'),
265                                $option);
266             } else {
267                 $this->element('option', array('value' => $value), $option);
268             }
269         }
270         $this->elementEnd('select');
271         if ($instructions) {
272             $this->element('p', 'form_guide', $instructions);
273         }
274     }
275
276     /**
277      * output an HTML hidden element
278      *
279      * $id is re-used as name
280      *
281      * @param string $id    element ID, must be unique on page
282      * @param string $value hidden element value, default null
283      * @param string $name  name, if different than ID
284      *
285      * @return void
286      */
287
288     function hidden($id, $value, $name=null)
289     {
290         $this->element('input', array('name' => ($name) ? $name : $id,
291                                       'type' => 'hidden',
292                                       'id' => $id,
293                                       'value' => $value));
294     }
295
296     /**
297      * output an HTML password input and associated elements
298      *
299      * @param string $id           element ID, must be unique on page
300      * @param string $label        text of label for the element
301      * @param string $instructions instructions for valid input
302      *
303      * @return void
304      *
305      * @todo add a $name parameter
306      */
307
308     function password($id, $label, $instructions=null)
309     {
310         $this->element('label', array('for' => $id), $label);
311         $attrs = array('name' => $id,
312                        'type' => 'password',
313                        'class' => 'password',
314                        'id' => $id);
315         $this->element('input', $attrs);
316         if ($instructions) {
317             $this->element('p', 'form_guide', $instructions);
318         }
319     }
320
321     /**
322      * output an HTML submit input and associated elements
323      *
324      * @param string $id    element ID, must be unique on page
325      * @param string $label text of the button
326      * @param string $cls   class of the button, default 'submit'
327      * @param string $name  name, if different than ID
328      *
329      * @return void
330      *
331      * @todo add a $name parameter
332      */
333
334     function submit($id, $label, $cls='submit', $name=null, $title=null)
335     {
336         $this->element('input', array('type' => 'submit',
337                                       'id' => $id,
338                                       'name' => ($name) ? $name : $id,
339                                       'class' => $cls,
340                                       'value' => $label,
341                                       'title' => $title));
342     }
343
344     /**
345      * output a script (almost always javascript) tag
346      *
347      * @param string $src          relative or absolute script path
348      * @param string $type         'type' attribute value of the tag
349      *
350      * @return void
351      */
352     function script($src, $type='text/javascript')
353     {
354         $url = parse_url($src);
355         if( empty($url->scheme) && empty($url->host) && empty($url->query) && empty($url->fragment))
356         {
357             $src = common_path($src) . '?version=' . STATUSNET_VERSION;
358         }
359         $this->element('script', array('type' => $type,
360                                                'src' => $src),
361                                ' ');
362     }
363
364     /**
365      * output a css link
366      *
367      * @param string $src     relative path within the theme directory, or an absolute path
368      * @param string $theme        'theme' that contains the stylesheet
369      * @param string media         'media' attribute of the tag
370      *
371      * @return void
372      */
373     function cssLink($src,$theme=null,$media=null)
374     {
375         $url = parse_url($src);
376         if( empty($url->scheme) && empty($url->host) && empty($url->query) && empty($url->fragment))
377         {
378             if(file_exists(theme_file($src,$theme))){
379                $src = theme_path($src, $theme) . '?version=' . STATUSNET_VERSION;
380             }else{
381                $src = common_path($src);
382             }
383         }
384         $this->element('link', array('rel' => 'stylesheet',
385                                 'type' => 'text/css',
386                                 'href' => $src,
387                                 'media' => $media));
388     }
389
390     /**
391      * output an HTML textarea and associated elements
392      *
393      * @param string $id           element ID, must be unique on page
394      * @param string $label        text of label for the element
395      * @param string $content      content of the textarea, default none
396      * @param string $instructions instructions for valid input
397      *
398      * @return void
399      *
400      * @todo add a $name parameter
401      * @todo add a $cols parameter
402      * @todo add a $rows parameter
403      */
404
405     function textarea($id, $label, $content=null, $instructions=null)
406     {
407         $this->element('label', array('for' => $id), $label);
408         $this->element('textarea', array('rows' => 3,
409                                          'cols' => 40,
410                                          'name' => $id,
411                                          'id' => $id),
412                        ($content) ? $content : '');
413         if ($instructions) {
414             $this->element('p', 'form_guide', $instructions);
415         }
416     }
417
418
419     /**
420     * Internal script to autofocus the given element on page onload.
421     *
422     * @param string $id element ID, must refer to an existing element
423     *
424     * @return void
425     *
426     */
427     function autofocus($id)
428     {
429         $this->elementStart('script', array('type' => 'text/javascript'));
430         $this->raw('
431         <!--
432         $(document).ready(function() {
433             var el = $("#' . $id . '");
434             if (el.length) {
435                 el.focus();
436             }
437         });
438         -->
439         ');
440         $this->elementEnd('script');
441     }
442 }