]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - lib/plugin/PhpHighlight.php
Always return something
[SourceForge/phpwiki.git] / lib / plugin / PhpHighlight.php
1 <?php
2
3 /**
4  * Copyright 1999, 2000, 2001, 2002 $ThePhpWikiProgrammingTeam
5  * Copyright 2009 Marc-Etienne Vargenau, Alcatel-Lucent
6  *
7  * This file is part of PhpWiki.
8  *
9  * PhpWiki is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * PhpWiki 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 General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License along
20  * with PhpWiki; if not, write to the Free Software Foundation, Inc.,
21  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
22  */
23
24 /**
25  * A plugin that runs the highlight_string() function in PHP on it's
26  * arguments to pretty-print PHP code.
27  *
28  * Usage:
29  * <<PhpHighlight default='#FF0000' comment='#0000CC'
30  * code that should be highlighted
31  * >>
32  *
33  * You do not have to add '<?php' and '?>' to the code - the plugin
34  * does this automatically if you do not set wrap to 0.
35  *
36  * If you do set wrap to 0, then you'll have to start and stop PHP
37  * mode in the source yourself, or you wont see any highlighting. But
38  * you cannot use '<?php' and '?>' in the source, because this
39  * interferes with PhpWiki, you'll have use '< ?php' and '? >'
40  * instead.
41  *
42  * Author: Martin Geisler <gimpster@gimpster.com>.
43  *
44  * Added ability to override colors defined in php.ini --Carsten Klapp
45  *
46  * Known Problems:
47  *   <<PhpHighlight
48  *   testing[somearray];
49  *   testing~[badworkaround~];
50  *   >>
51  * will swallow "[somearray]"
52  */
53
54 class WikiPlugin_PhpHighlight
55     extends WikiPlugin
56 {
57     // Four required functions in a WikiPlugin.
58
59     function getName()
60     {
61         return _("PhpHighlight");
62     }
63
64     function getDescription()
65     {
66         return _("PHP syntax highlighting");
67     }
68
69     // Establish default values for each of this plugin's arguments.
70     function getDefaultArguments()
71     {
72         // TODO: results of ini_get() should be static for multiple
73         // invocations of plugin on one WikiPage
74         return array('wrap' => true,
75             'string' => ini_get("highlight.string"), //'#00CC00',
76             'comment' => ini_get("highlight.comment"), //'#FF9900',
77             'keyword' => ini_get("highlight.keyword"), //'#006600',
78             'bg' => ini_get("highlight.bg"), //'#FFFFFF',
79             'default' => ini_get("highlight.default"), //'#0000CC',
80             'html' => ini_get("highlight.html") //'#000000'
81         );
82     }
83
84     function run($dbi, $argstr, &$request, $basepage)
85     {
86
87         extract($this->getArgs($argstr, $request));
88         $source =& $this->source;
89
90         $this->sanify_colors($string, $comment, $keyword, $bg, $default, $html);
91         $this->set_colors($string, $comment, $keyword, $bg, $default, $html);
92
93         if ($wrap) {
94             /* Wrap with "<?php\n" and "\n?>" required by highlight_string(): */
95             $source = "<?php\n" . $source . "\n?>";
96         } else {
97             $source = str_replace(array('< ?php', '? >'),
98                 array('<?php', '?>'), $source);
99         }
100
101         $str = highlight_string($source, true);
102
103         if ($wrap) {
104             /* Remove "<?php\n" and "\n?>" again: */
105             $str = str_replace(array('&lt;?php<br />', '?&gt;'), '', $str);
106         }
107
108         /* Remove empty span tags. */
109         foreach (array($string, $comment, $keyword, $bg, $default, $html) as $color) {
110             $search = "<span style=\"color: $color\"></span>";
111             $str = str_replace($search, '', $str);
112         }
113
114         /* restore default colors in case of multiple invocations of this plugin on one page */
115         $this->restore_colors();
116         return new RawXml($str);
117     }
118
119     function handle_plugin_args_cruft(&$argstr, &$args)
120     {
121         $this->source = $argstr;
122     }
123
124     /**
125      * Make sure color argument is valid
126      * See http://www.w3.org/TR/REC-html40/types.html#h-6.5
127      */
128     function sanify_colors($string, $comment, $keyword, $bg, $default, $html)
129     {
130         static $html4colors = array("black", "silver", "gray", "white",
131             "maroon", "red", "purple", "fuchsia",
132             "green", "lime", "olive", "yellow",
133             "navy", "blue", "teal", "aqua");
134         /* max(strlen("fuchsia"), strlen("#00FF00"), ... ) = 7 */
135         static $MAXLEN = 7;
136         foreach (array($string, $comment, $keyword, $bg, $default, $html) as $color) {
137             $length = strlen($color);
138             //trigger_error(sprintf(_("DEBUG: color '%s' is length %d."), $color, $length), E_USER_NOTICE);
139             if (($length == 7 || $length == 4) && substr($color, 0, 1) == "#"
140                 && "#" == preg_replace("/[a-fA-F0-9]/", "", $color)
141             ) {
142                 //trigger_error(sprintf(_("DEBUG: color '%s' appears to be hex."), $color), E_USER_NOTICE);
143                 // stop checking, ok to go
144             } elseif (($length < $MAXLEN + 1) && in_array($color, $html4colors)) {
145                 //trigger_error(sprintf(_("DEBUG color '%s' appears to be an HTML 4 color."), $color), E_USER_NOTICE);
146                 // stop checking, ok to go
147             } else {
148                 trigger_error(sprintf(_("Invalid color: %s"),
149                     $color), E_USER_NOTICE);
150                 // FIXME: also change color to something valid like "black" or ini_get("highlight.xxx")
151             }
152         }
153     }
154
155     function set_colors($string, $comment, $keyword, $bg, $default, $html)
156     {
157         // set highlight colors
158         $this->oldstring = ini_set('highlight.string', $string);
159         $this->oldcomment = ini_set('highlight.comment', $comment);
160         $this->oldkeyword = ini_set('highlight.keyword', $keyword);
161         $this->oldbg = ini_set('highlight.bg', $bg);
162         $this->olddefault = ini_set('highlight.default', $default);
163         $this->oldhtml = ini_set('highlight.html', $html);
164     }
165
166     function restore_colors()
167     {
168         // restore previous default highlight colors
169         ini_set('highlight.string', $this->oldstring);
170         ini_set('highlight.comment', $this->oldcomment);
171         ini_set('highlight.keyword', $this->oldkeyword);
172         ini_set('highlight.bg', $this->oldbg);
173         ini_set('highlight.default', $this->olddefault);
174         ini_set('highlight.html', $this->oldhtml);
175     }
176
177 }
178
179 // Local Variables:
180 // mode: php
181 // tab-width: 8
182 // c-basic-offset: 4
183 // c-hanging-comment-ender-p: nil
184 // indent-tabs-mode: nil
185 // End: