]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - lib/plugin/SqlResult.php
getName should not translate
[SourceForge/phpwiki.git] / lib / plugin / SqlResult.php
1 <?php
2
3 /*
4  * Copyright 2004 $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 along
19  * with PhpWiki; if not, write to the Free Software Foundation, Inc.,
20  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21  */
22
23 /**
24  * This plugin displays results of arbitrary SQL select statements
25  * in table form.
26  * The database definition, the DSN, must be defined in the local file
27  * config/SqlResult.ini
28  *   A simple textfile with alias = dsn lines.
29  *
30  * Optional template file to format the result and handle some logic.
31  * Template vars: %%where%%, %%sortby%%, %%limit%%
32  * TODO: paging
33  *
34  * Usage:
35  *   <<SqlResult alias=mysql
36  *            SELECT 'mysql password for string "xx":',
37  *                   PASSWORD('xx')
38  *   >>
39  *   <<SqlResult alias=videos template=videos
40  *            SELECT rating,title,date
41  *                   FROM video
42  *                   ORDER BY rating DESC
43  *                   LIMIT 5
44  *   >>
45  *   <<SqlResult alias=imdb template=imdbmovies where||="Davies, Jeremy%"
46  *   SELECT m.title, m.date, n.name, c.role
47  *     FROM movies as m, names as n, jobs as j, characters as c
48  *     WHERE n.name LIKE "%%where%%"
49  *     AND m.title_id = c.title_id
50  *     AND n.name_id = c.name_id
51  *     AND c.job_id = j.job_id
52  *     AND j.description = 'Actor'
53  *     ORDER BY m.date DESC
54  *   >>
55  *
56  * @author: ReiniUrban
57  */
58
59 require_once 'lib/PageList.php';
60
61 class WikiPlugin_SqlResult
62     extends WikiPlugin
63 {
64     public $_args;
65
66     function getDescription()
67     {
68         return _("Display arbitrary SQL result tables.");
69     }
70
71     function getDefaultArguments()
72     {
73         return array(
74             'alias' => false, // DSN database specification
75             'ordered' => false, // if to display as <ol> list: single col only without template
76             'template' => false, // use a custom <theme>/template.tmpl
77             'where' => false, // custom filter for the query
78             'sortby' => false, // for paging, default none
79             'limit' => "0,50", // for paging, default: only the first 50
80         );
81     }
82
83     function getDsn($alias)
84     {
85         $ini = parse_ini_file(FindFile("config/SqlResult.ini"));
86         return $ini[$alias];
87     }
88
89     /** Get the SQL statement from the rest of the lines
90      */
91     function handle_plugin_args_cruft($argstr, $args)
92     {
93         $this->_sql = str_replace("\n", " ", $argstr);
94         return;
95     }
96
97     function run($dbi, $argstr, &$request, $basepage)
98     {
99         global $DBParams;
100         //$request->setArg('nocache','1');
101         extract($this->getArgs($argstr, $request));
102         if (!$alias)
103             return $this->error(_("No DSN alias for SqlResult.ini specified"));
104         $sql = $this->_sql;
105
106         // apply custom filters
107         if ($where and strstr($sql, "%%where%%"))
108             $sql = str_replace("%%where%%", $where, $sql);
109         // TODO: use a SQL construction library?
110         if ($limit) {
111             $pagelist = new PageList();
112             $limit = $pagelist->limit($limit);
113             if (strstr($sql, "%%limit%%"))
114                 $sql = str_replace("%%limit%%", $limit, $sql);
115             else {
116                 if (strstr($sql, "LIMIT"))
117                     $sql = preg_replace("/LIMIT\s+[\d,]+\s+/m", "LIMIT " . $limit . " ", $sql);
118             }
119         }
120         if (strstr($sql, "%%sortby%%")) {
121             if (!$sortby)
122                 $sql = preg_replace("/ORDER BY .*%%sortby%%\s/m", "", $sql);
123             else
124                 $sql = str_replace("%%sortby%%", $sortby, $sql);
125         } elseif (PageList::sortby($sortby, 'db')) { // add sorting: support paging sortby links
126             if (preg_match("/\sORDER\s/", $sql))
127                 $sql = preg_replace("/ORDER BY\s\S+\s/m", "ORDER BY " . PageList::sortby($sortby, 'db'), $sql);
128             else
129                 $sql .= " ORDER BY " . PageList::sortby($sortby, 'db');
130         }
131
132         $inidsn = $this->getDsn($alias);
133         if (!$inidsn)
134             return $this->error(sprintf(_("No DSN for alias %s in SqlResult.ini found"),
135                 $alias));
136         // adodb or pear? adodb as default, since we distribute per default it.
137         // for pear there may be overrides.
138         // TODO: native PDO support (for now we use ADODB)
139         if ($DBParams['dbtype'] == 'SQL') {
140             $dbh = DB::connect($inidsn);
141             $all = $dbh->getAll($sql);
142             if (DB::isError($all)) {
143                 return $this->error($all->getMessage() . ' ' . $all->userinfo);
144             }
145         } else { // unless PearDB use the included ADODB, regardless if dba, file or PDO, ...
146             if ($DBParams['dbtype'] != 'ADODB') {
147                 require_once 'lib/WikiDB/backend/ADODB.php';
148             }
149             $parsed = parseDSN($inidsn);
150             $dbh = &ADONewConnection($parsed['phptype']);
151             $conn = $dbh->Connect($parsed['hostspec'], $parsed['username'],
152                 $parsed['password'], $parsed['database']);
153             if (!$conn)
154                 return $this->error($dbh->errorMsg());
155             $GLOBALS['ADODB_FETCH_MODE'] = ADODB_FETCH_ASSOC;
156             $dbh->SetFetchMode(ADODB_FETCH_ASSOC);
157
158             $all = $dbh->getAll($sql);
159
160             $GLOBALS['ADODB_FETCH_MODE'] = ADODB_FETCH_NUM;
161             $dbh->SetFetchMode(ADODB_FETCH_NUM);
162             if (!$all)
163                 return $this->error($dbh->errorMsg());
164         }
165         $args = array();
166         if ($limit) { // fill paging vars (see PageList)
167             $args = $pagelist->pagingTokens(count($all), count($all[0]), $limit);
168             if (!$args) $args = array();
169         }
170
171         if ($template) {
172             $args = array_merge(
173                 array('SqlResult' => $all, // the resulting array of rows
174                     'ordered' => $ordered, // whether to display as <ul>/<dt> or <ol>
175                     'where' => $where,
176                     'sortby' => $sortby,
177                     'limit' => $limit),
178                 $args); // paging params override given params
179             return Template($template, $args);
180         } else {
181             if ($ordered) {
182                 $html = HTML::ol(array('class' => 'sqlresult'));
183                 if ($all)
184                     foreach ($all as $row) {
185                         $html->pushContent(HTML::li(array('class' => $i++ % 2 ? 'evenrow' : 'oddrow'), $row[0]));
186                     }
187             } else {
188                 $html = HTML::table(array('class' => 'sqlresult'));
189                 $i = 0;
190                 if ($all)
191                     foreach ($all as $row) {
192                         $tr = HTML::tr(array('class' => $i++ % 2 ? 'evenrow' : 'oddrow'));
193                         if ($row)
194                             foreach ($row as $col) {
195                                 $tr->pushContent(HTML::td($col));
196                             }
197                         $html->pushContent($tr);
198                     }
199             }
200         }
201         // do paging via pagelink template
202         if (!empty($args['NUMPAGES'])) {
203             $paging = Template("pagelink", $args);
204             $html = $table->pushContent(HTML::thead($paging),
205                 HTML::tbody($html),
206                 HTML::tfoot($paging));
207         }
208         if (0 and DEBUG) { // test deferred error/warning/notice collapsing
209             trigger_error("test notice", E_USER_NOTICE);
210             trigger_error("test warning", E_USER_WARNING);
211         }
212
213         return $html;
214     }
215
216 }
217
218 // Local Variables:
219 // mode: php
220 // tab-width: 8
221 // c-basic-offset: 4
222 // c-hanging-comment-ender-p: nil
223 // indent-tabs-mode: nil
224 // End: