2001-08-08 01:04:05 +02:00
|
|
|
<?php
|
2001-08-14 00:05:50 +02:00
|
|
|
/**************************************************************************\
|
|
|
|
* phpGroupWare API - Accounts manager shared functions *
|
|
|
|
* This file written by dietrich@ganx4.com *
|
|
|
|
* shared functions and vars for use with soap client/server *
|
|
|
|
* -------------------------------------------------------------------------*
|
|
|
|
* This library is free software; you can redistribute it and/or modify it *
|
|
|
|
* under the terms of the GNU Lesser General Public License as published by *
|
|
|
|
* the Free Software Foundation; either version 2.1 of the License, *
|
|
|
|
* or any later version. *
|
|
|
|
* This library is distributed in the hope that it will be useful, but *
|
|
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of *
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. *
|
|
|
|
* See the GNU Lesser General Public License for more details. *
|
|
|
|
* You should have received a copy of the GNU Lesser General Public License *
|
|
|
|
* along with this library; if not, write to the Free Software Foundation, *
|
|
|
|
* Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA *
|
|
|
|
\**************************************************************************/
|
2001-08-08 01:04:05 +02:00
|
|
|
|
2001-08-14 00:05:50 +02:00
|
|
|
/* $Id$ */
|
|
|
|
|
|
|
|
$GLOBALS['soapTypes'] = array(
|
2001-08-08 01:04:05 +02:00
|
|
|
'i4' => 1,
|
|
|
|
'int' => 1,
|
|
|
|
'boolean' => 1,
|
|
|
|
'string' => 1,
|
|
|
|
'double' => 1,
|
|
|
|
'float' => 1,
|
|
|
|
'dateTime' => 1,
|
|
|
|
'timeInstant' => 1,
|
|
|
|
'dateTime' => 1,
|
|
|
|
'base64Binary' => 1,
|
|
|
|
'base64' => 1,
|
|
|
|
'array' => 2,
|
|
|
|
'Array' => 2,
|
|
|
|
'SOAPStruct' => 3,
|
|
|
|
'ur-type' => 2
|
|
|
|
);
|
|
|
|
|
2001-08-14 00:05:50 +02:00
|
|
|
while(list($key,$val) = each($GLOBALS['soapTypes']))
|
2001-08-08 01:04:05 +02:00
|
|
|
{
|
2001-08-14 00:05:50 +02:00
|
|
|
$GLOBALS['soapKeys'][] = $val;
|
2001-08-08 01:04:05 +02:00
|
|
|
}
|
|
|
|
|
2001-08-14 00:05:50 +02:00
|
|
|
$GLOBALS['typemap'] = array(
|
2001-08-08 01:04:05 +02:00
|
|
|
'http://soapinterop.org/xsd' => array('SOAPStruct'),
|
|
|
|
'http://schemas.xmlsoap.org/soap/encoding/' => array('base64'),
|
2001-08-14 00:05:50 +02:00
|
|
|
'http://www.w3.org/1999/XMLSchema' => $GLOBALS['soapKeys']
|
2001-08-08 01:04:05 +02:00
|
|
|
);
|
|
|
|
|
2001-08-14 00:05:50 +02:00
|
|
|
$GLOBALS['namespaces'] = array(
|
2001-08-08 01:04:05 +02:00
|
|
|
'http://schemas.xmlsoap.org/soap/envelope/' => 'SOAP-ENV',
|
|
|
|
'http://www.w3.org/1999/XMLSchema-instance' => 'xsi',
|
|
|
|
'http://www.w3.org/1999/XMLSchema' => 'xsd',
|
|
|
|
'http://schemas.xmlsoap.org/soap/encoding/' => 'SOAP-ENC',
|
|
|
|
'http://soapinterop.org/xsd' => 'si'
|
|
|
|
);
|
|
|
|
|
2001-08-14 00:05:50 +02:00
|
|
|
/*
|
2001-08-08 01:04:05 +02:00
|
|
|
$xmlEntities = array(
|
|
|
|
'quot' => '"',
|
|
|
|
'amp' => '&',
|
|
|
|
'lt' => '<',
|
|
|
|
'gt' => '>',
|
|
|
|
'apos' => "'"
|
|
|
|
);
|
2001-08-14 00:05:50 +02:00
|
|
|
*/
|
2001-08-08 01:04:05 +02:00
|
|
|
|
2001-08-14 00:05:50 +02:00
|
|
|
$GLOBALS['soap_defencoding'] = 'UTF-8';
|
2001-08-18 22:31:47 +02:00
|
|
|
|
|
|
|
function system_auth($m1,$m2,$m3)
|
|
|
|
{
|
|
|
|
$serverdata['server_name'] = $m1;
|
|
|
|
$serverdata['username'] = $m2;
|
|
|
|
$serverdata['password'] = $m3;
|
|
|
|
|
|
|
|
list($sessionid,$kp3) = $GLOBALS['phpgw']->session->create_server($serverdata['username'].'@'.$serverdata['server_name'],$serverdata['password']);
|
|
|
|
|
|
|
|
if($sessionid && $kp3)
|
|
|
|
{
|
|
|
|
$rtrn = array(
|
|
|
|
CreateObject('phpgwapi.soapval','sessionid', 'string',$sessionid),
|
|
|
|
CreateObject('phpgwapi.soapval','kp3','string',$kp3)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$rtrn = array(CreateObject('phpgwapi.soapval','GOAWAY','string','XOXO'));
|
|
|
|
}
|
|
|
|
$r = CreateObject('phpgwapi.soapmsg','system_authResponse',$rtrn);
|
|
|
|
return $r;
|
|
|
|
}
|
2001-08-18 22:37:33 +02:00
|
|
|
|
|
|
|
function _soap_auth_verify($m1,$m2,$m3)
|
|
|
|
{
|
|
|
|
$server_name = $m1;
|
|
|
|
$sessionid = $m2;
|
|
|
|
$kp3 = $m3;
|
|
|
|
|
|
|
|
$verified = $GLOBALS['phpgw']->session->verify_server($sessionid,$kp3);
|
|
|
|
|
|
|
|
if($verified)
|
|
|
|
{
|
|
|
|
$rtrn = array(
|
|
|
|
CreateObject('phpgwapi.xmlrpcval','HELO','string',$sessionid)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$rtrn = array(CreateObject('phpgwapi.soapval','GOAWAY','string','XOXO'));
|
|
|
|
}
|
|
|
|
$r = CreateObject('phpgwapi.soapmsg','system_auth_verifyResponse',$rtrn);
|
|
|
|
return $r;
|
|
|
|
}
|
2001-08-08 01:04:05 +02:00
|
|
|
?>
|