Skip to content
Snippets Groups Projects
Commit 445e8084 authored by Andreas Gohr's avatar Andreas Gohr
Browse files

Support login in XMLRCP and added API version info

A simple version number was added to the XMLRPC API to make it
easy for clients to check if the remote endpoint supports certain
features.

The login function will take credentials and set cookies on
successful login. This is useful when HTTP Basic auth is not
available.

darcs-hash:20090303193608-7ad00-45b1cd7a5165656796df25ed5c4ebc6e8ef7f95a.gz
parent 926d4c4e
No related branches found
No related tags found
No related merge requests found
......@@ -4,6 +4,10 @@ if(!defined('DOKU_INC')) define('DOKU_INC',dirname(__FILE__).'/../../');
// fix when '<?xml' isn't on the very first line
if(isset($HTTP_RAW_POST_DATA)) $HTTP_RAW_POST_DATA = trim($HTTP_RAW_POST_DATA);
/**
* Increased whenever the API is changed
*/
define('DOKU_XMLRPC_API_VERSION',1);
require_once(DOKU_INC.'inc/init.php');
require_once(DOKU_INC.'inc/common.php');
......@@ -32,6 +36,13 @@ class dokuwiki_xmlrpc_server extends IXR_IntrospectionServer {
$this->IXR_IntrospectionServer();
/* DokuWiki's own methods */
$this->addCallback(
'dokuwiki.getXMLRPCAPIVersion',
'this:getAPIVersion',
array('integer'),
'Returns the XMLRPC API version.'
);
$this->addCallback(
'dokuwiki.getVersion',
'getVersion',
......@@ -39,6 +50,13 @@ class dokuwiki_xmlrpc_server extends IXR_IntrospectionServer {
'Returns the running DokuWiki version.'
);
$this->addCallback(
'dokuwiki.login',
'this:login',
array('integer','string','string'),
'Tries to login with the given credentials and sets auth cookies.'
);
$this->addCallback(
'dokuwiki.getPagelist',
'this:readNamespace',
......@@ -825,6 +843,21 @@ dbglog($data);
);
}
function getAPIVersion(){
return DOKU_XMLRPC_API_VERSION;
}
function login($user,$pass){
global $conf;
global $auth;
if(!$conf['useacl']) return 0;
if(!$auth) return 0;
if($auth->canDo('external')){
return $auth->trustExternal($user,$pass,false);
}else{
return auth_login($user,$pass,false,true);
}
}
}
$server = new dokuwiki_xmlrpc_server();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment