]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - lib/XmlRpcServer.php
More help with the new native xmlrpc lib. no warnings, no user cookie on xmlrpc.
[SourceForge/phpwiki.git] / lib / XmlRpcServer.php
1 <?php 
2 // $Id: XmlRpcServer.php,v 1.10 2004-12-10 02:36:43 rurban Exp $
3 /* Copyright (C) 2002, Lawrence Akka <lakka@users.sourceforge.net>
4  *
5  * LICENCE
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
20  * along with PhpWiki; if not, write to the Free Software
21  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
22  *
23  * LIBRARY USED - POSSIBLE PROBLEMS
24  * ================================
25  * 
26  * This file provides an XML-RPC interface for PhpWiki.  It uses the XML-RPC 
27  * library for PHP by Edd Dumbill - see http://xmlrpc.usefulinc.com/php.html 
28  * for details.
29  *
30  * PHP >= 4.1.0 includes experimental support for the xmlrpc-epi c library 
31  * written by Dan Libby (see http://uk2.php.net/manual/en/ref.xmlrpc.php).  
32  * This is not compiled into PHP by default.  If it *is* compiled into your installation
33  * (ie you have --with-xmlrpc) there may well be namespace conflicts with the xml-rpc
34  * library used by this code, and you will get errors.
35  * 
36  * INTERFACE SPECIFICTION
37  * ======================
38  *  
39  * The interface specification is that discussed at 
40  * http://www.ecyrd.com/JSPWiki/Wiki.jsp?page=WikiRPCInterface
41  * 
42  * See also http://www.usemod.com/cgi-bin/mb.pl?XmlRpc
43  * or http://www.devshed.com/c/a/PHP/Using-XMLRPC-with-PHP/
44  * 
45  * Note: All XMLRPC methods are automatically prefixed with "wiki."
46  *       eg. "wiki.getAllPages"
47 */
48
49 /*
50 ToDo:
51         Resolve namespace conflicts
52         Remove all warnings from xmlrpc.inc 
53         Return list of external links in listLinks
54         Support RSS2 cloud subscription
55         Test hwiki.jar xmlrpc interface (java visualization plugin)
56 Done:
57         Make use of the xmlrpc extension if found. http://xmlrpc-epi.sourceforge.net/
58 */
59
60 // Intercept GET requests from confused users.  Only POST is allowed here!
61 // There is some indication that $HTTP_SERVER_VARS is deprecated in php > 4.1.0
62 // in favour of $_Server, but as far as I know, it still works.
63 if ($GLOBALS['HTTP_SERVER_VARS']['REQUEST_METHOD'] != "POST")
64 {
65     die('This is the address of the XML-RPC interface.' .
66         '  You must use XML-RPC calls to access information here');
67 }
68
69 // All these global declarations make it so that this file
70 // (XmlRpcServer.php) can be included within a function body
71 // (not in global scope), and things will still work....
72
73 global $xmlrpcI4, $xmlrpcInt, $xmlrpcBoolean, $xmlrpcDouble, $xmlrpcString;
74 global $xmlrpcDateTime, $xmlrpcBase64, $xmlrpcArray, $xmlrpcStruct;
75 global $xmlrpcTypes;
76 global $xmlEntities;
77 global $xmlrpcerr, $xmlrpcstr;
78 global $xmlrpc_defencoding;
79 global $xmlrpcName, $xmlrpcVersion;
80 global $xmlrpcerruser, $xmlrpcerrxml;
81 global $xmlrpc_backslash;
82 global $_xh;
83
84 if (loadPhpExtension('xmlrpc')) { // fast c lib
85     define('XMLRPC_EXT_LOADED', true);
86
87     global $xmlrpc_util_path;
88     $xmlrpc_util_path = dirname(__FILE__)."/XMLRPC/";
89     include_once("lib/XMLRPC/xmlrpc_emu.inc"); 
90     global $_xmlrpcs_debug;
91     include_once("lib/XMLRPC/xmlrpcs_emu.inc");
92
93  } else { // slow php lib
94     define('XMLRPC_EXT_LOADED', true);
95
96     // Include the php XML-RPC library
97     include_once("lib/XMLRPC/xmlrpc.inc");
98
99     global $_xmlrpcs_dmap;
100     global $_xmlrpcs_debug;
101     include_once("lib/XMLRPC/xmlrpcs.inc");
102 }
103  
104
105 //  API version
106 define ("WIKI_XMLRPC_VERSION", 2);
107
108 /**
109  * Helper function:  Looks up a page revision (most recent by default) in the wiki database
110  * 
111  * @param xmlrpcmsg $params :  string pagename [int version]
112  * @return WikiDB _PageRevision object, or false if no such page
113  */
114
115 function _getPageRevision ($params)
116 {
117     global $request;
118     $ParamPageName = $params->getParam(0);
119     $ParamVersion = $params->getParam(1);
120     $pagename = short_string_decode($ParamPageName->scalarval());
121     $version =  ($ParamVersion) ? ($ParamVersion->scalarval()):(0);
122     // FIXME:  test for version <=0 ??
123     $dbh = $request->getDbh();
124     if ($dbh->isWikiPage($pagename)) {
125         $page = $dbh->getPage($pagename);
126         if (!$version) {
127             $revision = $page->getCurrentRevision();
128         } else {
129             $revision = $page->getRevision($version);
130         } 
131         return $revision;
132     } 
133     return false;
134
135
136 /*
137  * Helper functions for encoding/decoding strings.
138  *
139  * According to WikiRPC spec, all returned strings take one of either
140  * two forms.  Short strings (page names, and authors) are converted to
141  * UTF-8, then rawurlencode()d, and returned as XML-RPC <code>strings</code>.
142  * Long strings (page content) are converted to UTF-8 then returned as
143  * XML-RPC <code>base64</code> binary objects.
144  */
145
146 /**
147  * Urlencode ASCII control characters.
148  *
149  * (And control characters...)
150  *
151  * @param string $str
152  * @return string
153  * @see urlencode
154  */
155 function UrlencodeControlCharacters($str) {
156     return preg_replace('/([\x00-\x1F])/e', "urlencode('\\1')", $str);
157 }
158
159 /**
160  * Convert a short string (page name, author) to xmlrpcval.
161  */
162 function short_string ($str) {
163     return new xmlrpcval(UrlencodeControlCharacters(utf8_encode($str)), 'string');
164 }
165
166 /**
167  * Convert a large string (page content) to xmlrpcval.
168  */
169 function long_string ($str) {
170     return new xmlrpcval(utf8_encode($str), 'base64');
171 }
172
173 /**
174  * Decode a short string (e.g. page name)
175  */
176 function short_string_decode ($str) {
177     return utf8_decode(urldecode($str));
178 }
179
180 /**
181  * Get an xmlrpc "No such page" error message
182  */
183 function NoSuchPage () 
184 {
185     global $xmlrpcerruser;
186     return new xmlrpcresp(0, $xmlrpcerruser + 1, "No such page");
187 }
188
189
190 // ****************************************************************************
191 // Main API functions follow
192 // ****************************************************************************
193 global $wiki_dmap;
194
195 /**
196  * int getRPCVersionSupported(): Returns 1 for this version of the API 
197  */
198 $wiki_dmap['getRPCVersionSupported']
199 = array('signature'     => array(array($xmlrpcInt)),
200         'documentation' => 'Get the version of the wiki API',
201         'function'      => 'getRPCVersionSupported');
202
203 // The function must be a function in the global scope which services the XML-RPC
204 // method.
205 function getRPCVersionSupported($params)
206 {
207     return new xmlrpcresp(new xmlrpcval((integer)WIKI_XMLRPC_VERSION, "int"));
208 }
209
210 /**
211  * array getRecentChanges(Date timestamp) : Get list of changed pages since 
212  * timestamp, which should be in UTC. The result is an array, where each element
213  * is a struct: 
214  *     name (string) : Name of the page. The name is UTF-8 with URL encoding to make it ASCII. 
215  *     lastModified (date) : Date of last modification, in UTC. 
216  *     author (string) : Name of the author (if available). Again, name is UTF-8 with URL encoding. 
217  *         version (int) : Current version. 
218  * A page MAY be specified multiple times. A page MAY NOT be specified multiple 
219  * times with the same modification date.
220  */
221 $wiki_dmap['getRecentChanges']
222 = array('signature'     => array(array($xmlrpcArray, $xmlrpcDateTime)),
223         'documentation' => 'Get a list of changed pages since [timestamp]',
224         'function'      => 'getRecentChanges');
225
226 function getRecentChanges($params)
227 {
228     global $request;
229     // Get the first parameter as an ISO 8601 date.  Assume UTC
230     $encoded_date = $params->getParam(0);
231     $datetime = iso8601_decode($encoded_date->scalarval(), 1);
232     $dbh = $request->getDbh();
233     $pages = array();
234     $iterator = $dbh->mostRecent(array('since' => $datetime));
235     while ($page = $iterator->next()) {
236         // $page contains a WikiDB_PageRevision object
237         // no need to url encode $name, because it is already stored in that format ???
238         $name = short_string($page->getPageName());
239         $lastmodified = new xmlrpcval(iso8601_encode($page->get('mtime')), "dateTime.iso8601");
240         $author = short_string($page->get('author'));
241         $version = new xmlrpcval($page->getVersion(), 'int');
242
243         // Build an array of xmlrpc structs
244         $pages[] = new xmlrpcval(array('name'=>$name, 
245                                        'lastModified'=>$lastmodified,
246                                        'author'=>$author,
247                                        'version'=>$version),
248                                  'struct');
249     } 
250     return new xmlrpcresp(new xmlrpcval($pages, "array"));
251
252
253
254 /**
255  * base64 getPage( String pagename ): Get the raw Wiki text of page, latest version. 
256  * Page name must be UTF-8, with URL encoding. Returned value is a binary object,
257  * with UTF-8 encoded page data.
258  */
259 $wiki_dmap['getPage']
260 = array('signature'     => array(array($xmlrpcBase64, $xmlrpcString)),
261         'documentation' => 'Get the raw Wiki text of the current version of a page',
262         'function'      => 'getPage');
263
264 function getPage($params)
265 {
266     $revision = _getPageRevision($params);
267
268     if (! $revision)
269         return NoSuchPage();
270
271     return new xmlrpcresp(long_string($revision->getPackedContent()));
272 }
273  
274
275 /**
276  * base64 getPageVersion( String pagename, int version ): Get the raw Wiki text of page.
277  * Returns UTF-8, expects UTF-8 with URL encoding.
278  */
279 $wiki_dmap['getPageVersion']
280 = array('signature'     => array(array($xmlrpcBase64, $xmlrpcString, $xmlrpcInt)),
281         'documentation' => 'Get the raw Wiki text of a page version',
282         'function'      => 'getPageVersion');
283
284 function getPageVersion($params)
285 {
286     // error checking is done in getPage
287     return getPage($params);
288
289
290 /**
291  * base64 getPageHTML( String pagename ): Return page in rendered HTML. 
292  * Returns UTF-8, expects UTF-8 with URL encoding.
293  */
294
295 $wiki_dmap['getPageHTML']
296 = array('signature'     => array(array($xmlrpcBase64, $xmlrpcString)),
297         'documentation' => 'Get the current version of a page rendered in HTML',
298         'function'      => 'getPageHTML');
299
300 function getPageHTML($params)
301 {
302     $revision = _getPageRevision($params);
303     if (!$revision)
304         return NoSuchPage();
305     
306     $content = $revision->getTransformedContent();
307     $html = $content->asXML();
308     // HACK: Get rid of outer <div class="wikitext">
309     if (preg_match('/^\s*<div class="wikitext">/', $html, $m1)
310         && preg_match('@</div>\s*$@', $html, $m2)) {
311         $html = substr($html, strlen($m1[0]), -strlen($m2[0]));
312     }
313
314     return new xmlrpcresp(long_string($html));
315
316
317 /**
318  * base64 getPageHTMLVersion( String pagename, int version ): Return page in rendered HTML, UTF-8.
319  */
320 $wiki_dmap['getPageHTMLVersion']
321 = array('signature'     => array(array($xmlrpcBase64, $xmlrpcString, $xmlrpcInt)),
322         'documentation' => 'Get a version of a page rendered in HTML',
323         'function'      => 'getPageHTMLVersion');
324
325 function getPageHTMLVersion($params)
326 {
327     return getPageHTML($params);
328
329
330 /**
331  * getAllPages(): Returns a list of all pages. The result is an array of strings.
332  */
333 $wiki_dmap['getAllPages']
334 = array('signature'     => array(array($xmlrpcArray)),
335         'documentation' => 'Returns a list of all pages as an array of strings', 
336         'function'      => 'getAllPages');
337
338 function getAllPages($params)
339 {
340     global $request;
341     $dbh = $request->getDbh();
342     $iterator = $dbh->getAllPages();
343     $pages = array();
344     while ($page = $iterator->next()) {
345         $pages[] = short_string($page->getName());
346     } 
347     return new xmlrpcresp(new xmlrpcval($pages, "array"));
348
349
350 /**
351  * struct getPageInfo( string pagename ) : returns a struct with elements: 
352  *   name (string): the canonical page name 
353  *   lastModified (date): Last modification date 
354  *   version (int): current version 
355  *       author (string): author name 
356  */
357 $wiki_dmap['getPageInfo']
358 = array('signature'     => array(array($xmlrpcStruct, $xmlrpcString)),
359         'documentation' => 'Gets info about the current version of a page',
360         'function'      => 'getPageInfo');
361
362 function getPageInfo($params)
363 {
364     $revision = _getPageRevision($params);
365     if (!$revision)
366         return NoSuchPage();
367     
368     $name = short_string($revision->getPageName());
369     $version = new xmlrpcval ($revision->getVersion(), "int");
370     $lastmodified = new xmlrpcval(iso8601_encode($revision->get('mtime'), 0),
371                                   "dateTime.iso8601");
372     $author = short_string($revision->get('author'));
373         
374     return new xmlrpcresp(new xmlrpcval(array('name' => $name, 
375                                               'lastModified' => $lastmodified,
376                                               'version' => $version, 
377                                               'author' => $author), 
378                                         "struct"));
379
380
381 /**
382  * struct getPageInfoVersion( string pagename, int version ) : returns
383  * a struct just like plain getPageInfo(), but this time for a
384  * specific version.
385  */
386 $wiki_dmap['getPageInfoVersion']
387 = array('signature'     => array(array($xmlrpcStruct, $xmlrpcString, $xmlrpcInt)),
388         'documentation' => 'Gets info about a page version',
389         'function'      => 'getPageInfoVersion');
390
391 function getPageInfoVersion($params)
392 {
393     return getPageInfo($params);
394 }
395
396  
397 /*  array listLinks( string pagename ): Lists all links for a given page. The
398  *  returned array contains structs, with the following elements: 
399  *       name (string) : The page name or URL the link is to. 
400  *       type (int) : The link type. Zero (0) for internal Wiki link,
401  *         one (1) for external link (URL - image link, whatever).
402  */
403 $wiki_dmap['listLinks']
404 = array('signature'     => array(array($xmlrpcArray, $xmlrpcString)),
405         'documentation' => 'Lists all links for a given page',
406         'function'      => 'listLinks');
407
408 function listLinks($params)
409 {
410     global $request;
411     
412     $ParamPageName = $params->getParam(0);
413     $pagename = short_string_decode($ParamPageName->scalarval());
414     $dbh = $request->getDbh();
415     if (! $dbh->isWikiPage($pagename))
416         return NoSuchPage();
417
418     $page = $dbh->getPage($pagename);
419     /*
420     $linkiterator = $page->getLinks(false);
421     $linkstruct = array();
422     while ($currentpage = $linkiterator->next()) {
423         $currentname = $currentpage->getName();
424         $name = short_string($currentname);
425         // NB no clean way to extract a list of external links yet, so
426         // only internal links returned.  ie all type 'local'.
427         $type = new xmlrpcval('local');
428
429         // Compute URL to page
430         $args = array();
431         $currentrev = $currentpage->getCurrentRevision();
432         if ($currentrev->hasDefaultContents())
433             $args['action'] = 'edit';
434
435         // FIXME: Autodetected value of VIRTUAL_PATH wrong,
436         // this make absolute URLs contstructed by WikiURL wrong.
437         // Also, if USE_PATH_INFO is false, WikiURL is wrong
438         // due to its use of SCRIPT_NAME.
439         $use_abspath = USE_PATH_INFO && ! preg_match('/RPC2.php$/', VIRTUAL_PATH);
440         $href = new xmlrpcval(WikiURL($currentname, $args, $use_abspath));
441             
442         $linkstruct[] = new xmlrpcval(array('name'=> $name,
443                                             'type'=> $type,
444                                             'href' => $href),
445                                       "struct");
446     }
447     */
448     
449     $current = $page->getCurrentRevision();
450     $content = $current->getTransformedContent();
451     $links = $content->getLinkInfo();
452
453     foreach ($links as $link) {
454         // We used to give an href for unknown pages that
455         // included action=edit.  I think that's probably the
456         // wrong thing to do.
457         $linkstruct[] = new xmlrpcval(array('name'=> short_string($link->page),
458                                             'type'=> new xmlrpcval($link->type),
459                                             'href' => short_string($link->href)),
460                                       "struct");
461     }
462         
463     return new xmlrpcresp(new xmlrpcval ($linkstruct, "array"));
464
465
466 /**
467  * Publish-Subscribe
468  * Client subscribes to a RecentChanges-like channel, getting a short 
469  * callback notification on every change. Like PageChangeNotification, just shorter 
470  * and more complicated
471  * RSS2 support (not yet), since radio userland's rss-0.92. now called RSS2.
472  * BTW: Radio Userland deprecated this interface.
473  *
474  * boolean wiki.rssPleaseNotify ( notifyProcedure, port, path, protocol, urlList )
475  *   returns: true or false 
476  *
477  * Check of the channel behind the rssurl has a cloud element, 
478  * if the client has a direct IP connection (no NAT),
479  * register the client on the WikiDB notification handler
480  *
481  * http://backend.userland.com/publishSubscribeWalkthrough
482  * http://www.soapware.org/xmlStorageSystem#rssPleaseNotify
483  * http://www.thetwowayweb.com/soapmeetsrss#rsscloudInterface
484  */
485 $wiki_dmap['rssPleaseNotify']
486 = array('signature'     => array(array($xmlrpcStruct, $xmlrpcBoolean)),
487         'documentation' => 'RSS2 change notification subscriber channel',
488         'function'      => 'rssPleaseNotify');
489
490 function rssPleaseNotify($params)
491 {
492     // register the clients IP
493     return new xmlrpcresp(new xmlrpcval (0, "boolean"));
494 }
495
496 $wiki_dmap['mailPasswordToUser']
497 = array('signature'     => array(array($xmlrpcStruct, $xmlrpcString)),
498         'documentation' => 'RSS2 change notification subscriber channel',
499         'function'      => 'mailPasswordToUser');
500
501 function mailPasswordToUser($params)
502 {
503     return new xmlrpcresp(new xmlrpcval (0, "boolean"));
504 }
505  
506 /** 
507  * Construct the server instance, and set up the dispatch map, 
508  * which maps the XML-RPC methods on to the wiki functions.
509  * Provide the "wiki." prefix to each function
510  */
511 class XmlRpcServer extends xmlrpc_server
512 {
513     function XmlRpcServer ($request = false) {
514         global $wiki_dmap;
515         foreach ($wiki_dmap as $name => $val)
516             $dmap['wiki.' . $name] = $val;
517
518         $this->xmlrpc_server($dmap, 0 /* delay service*/);
519     }
520
521     function service () {
522         global $ErrorManager;
523
524         $ErrorManager->pushErrorHandler(new WikiMethodCb($this, '_errorHandler'));
525         xmlrpc_server::service();
526         $ErrorManager->popErrorHandler();
527     }
528     
529     function _errorHandler ($e) {
530         $msg = htmlspecialchars($e->asString());
531         // '--' not allowed within xml comment
532         $msg = str_replace('--', '&#45;&#45;', $msg);
533         if (function_exists('xmlrpc_debugmsg'))
534             xmlrpc_debugmsg($msg);
535         return true;
536     }
537 }
538
539
540 // (c-file-style: "gnu")
541 // Local Variables:
542 // mode: php
543 // tab-width: 8
544 // c-basic-offset: 4
545 // c-hanging-comment-ender-p: nil
546 // indent-tabs-mode: nil
547 // End:   
548 ?>