]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - lib/plugin/_BackendInfo.php
stabilize on numeric keys (strange php problem)
[SourceForge/phpwiki.git] / lib / plugin / _BackendInfo.php
1 <?php // -*-php-*-
2 rcs_id('$Id: _BackendInfo.php,v 1.23 2005-01-21 14:13:23 rurban Exp $');
3 /**
4  Copyright 1999, 2000, 2001, 2002 $ThePhpWikiProgrammingTeam
5
6  This file is part of PhpWiki.
7
8  PhpWiki is free software; you can redistribute it and/or modify
9  it under the terms of the GNU General Public License as published by
10  the Free Software Foundation; either version 2 of the License, or
11  (at your option) any later version.
12
13  PhpWiki is distributed in the hope that it will be useful,
14  but WITHOUT ANY WARRANTY; without even the implied warranty of
15  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  GNU General Public License for more details.
17
18  You should have received a copy of the GNU General Public License
19  along with PhpWiki; if not, write to the Free Software
20  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
21  */
22
23 require_once('lib/Template.php');
24 /**
25  */
26 class WikiPlugin__BackendInfo
27 extends WikiPlugin
28 {
29     function getName () {
30         return _("DebugInfo");
31     }
32
33     function getDescription () {
34         return sprintf(_("Get debugging information for %s."), '[pagename]');
35     }
36
37     function getVersion() {
38         return preg_replace("/[Revision: $]/", '',
39                             "\$Revision: 1.23 $");
40     }
41
42     function getDefaultArguments() {
43         return array('page' => '[pagename]');
44     }
45
46     function run($dbi, $argstr, &$request, $basepage) {
47         $args = $this->getArgs($argstr, $request);
48         extract($args);
49         if (empty($page))
50             return '';
51
52         $backend = &$dbi->_backend;
53
54         $html = HTML(HTML::h3(fmt("Querying backend directly for '%s'",
55                                   $page)));
56
57
58         $table = HTML::table(array('border' => 1,
59                                    'cellpadding' => 2,
60                                    'cellspacing' => 0));
61         $pagedata = $backend->get_pagedata($page);
62         if (!$pagedata) {
63             // FIXME: invalid HTML
64             $html->pushContent(HTML::p(fmt("No pagedata for %s", $page)));
65         }
66         else {
67             $this->_fixupData($pagedata);
68             $table->pushContent($this->_showhash("get_pagedata('$page')", $pagedata));
69         }
70
71         for ($version = $backend->get_latest_version($page);
72              $version;
73              $version = $backend->get_previous_version($page, $version))
74             {
75                 $vdata = $backend->get_versiondata($page, $version, true);
76                 $this->_fixupData($vdata);
77                 $table->pushContent(HTML::tr(HTML::td(array('colspan' => 2))));
78                 $table->pushContent($this->_showhash("get_versiondata('$page',$version)",
79                                                      $vdata));
80             }
81
82         $html->pushContent($table);
83         return $html;
84     }
85
86     /**
87      * Really should have a _fixupPagedata and _fixupVersiondata, but this works.
88      */
89     function _fixupData(&$data) {
90         global $request;
91         $user = $request->getUser();
92
93         foreach ($data as $key => $val) {
94             if (is_integer($key)) {
95                 ;
96             } elseif ($key == 'passwd' and !$user->isAdmin()) {
97                 $data[$key] = $val ? _("<not displayed>") : _("<empty>");
98             } elseif ($key and $key == '_cached_html') {
99                 $val = TransformedText::unpack($val);
100                 ob_start();
101                 print_r($val);
102                 $data[$key] = HTML::pre(ob_get_contents());
103                 ob_end_clean();
104             }
105             elseif (is_string($val) && (substr($val, 0, 2) == 'a:')) {
106                 // how to indent this table?
107                 $val = unserialize($val);
108                 $this->_fixupData($val);
109                 $data[$key] = HTML::table(array('border' => 1,
110                                                 'cellpadding' => 2,
111                                                 'cellspacing' => 0),
112                                           $this->_showhash(false, $val));
113             }
114             elseif (is_array($val)) {
115                 // how to indent this table?
116                 $this->_fixupData($val);
117                 $data[$key] = HTML::table(array('border' => 1,
118                                                 'cellpadding' => 2,
119                                                 'cellspacing' => 0),
120                                           $this->_showhash(false, $val));
121             }
122             elseif ($key and $key == '%content') {
123                 if ($val === true)
124                     $val = '<true>';
125                 elseif (strlen($val) > 40)
126                     $val = substr($val,0,40) . " ...";
127                 $data[$key] = $val;
128             }
129         }
130         unset($data['%pagedata']); // problem in backend
131     }
132
133             
134     function _showhash ($heading, $hash, $pagename = '') {
135         $rows = array();
136         if ($heading)
137             $rows[] = HTML::tr(array('bgcolor' => '#ffcccc',
138                                      'style' => 'color:#000000'),
139                                HTML::td(array('colspan' => 2,
140                                               'style' => 'color:#000000'),
141                                         $heading));
142         ksort($hash);
143         foreach ($hash as $key => $val) {
144             $rows[] = HTML::tr(HTML::td(array('align' => 'right',
145                                               'bgcolor' => '#cccccc',
146                                               'style' => 'color:#000000'),
147                                         HTML(HTML::raw('&nbsp;'), $key,
148                                              HTML::raw('&nbsp;'))),
149                                HTML::td(array('bgcolor' => '#ffffff',
150                                               'style' => 'color:#000000'),
151                                         $val ? $val : HTML::raw('&nbsp;'))
152                                );
153         }
154         return $rows;
155     }
156 };
157
158 // $Log: not supported by cvs2svn $
159 // Revision 1.22  2004/02/17 12:11:36  rurban
160 // added missing 4th basepage arg at plugin->run() to almost all plugins. This caused no harm so far, because it was silently dropped on normal usage. However on plugin internal ->run invocations it failed. (InterWikiSearch, IncludeSiteMap, ...)
161 //
162 // Revision 1.21  2003/02/21 04:22:28  dairiki
163 // Make this work for array-valued data.  Make display of cached markup
164 // readable.  Some code cleanups.  (This still needs more work.)
165 //
166 // Revision 1.20  2003/01/18 21:19:24  carstenklapp
167 // Code cleanup:
168 // Reformatting; added copyleft, getVersion, getDescription
169 //
170
171 // (c-file-style: "gnu")
172 // Local Variables:
173 // mode: php
174 // tab-width: 8
175 // c-basic-offset: 4
176 // c-hanging-comment-ender-p: nil
177 // indent-tabs-mode: nil
178 // End:
179 ?>