ILIAS  release_7 Revision v7.30-3-g800a261c036
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilSOAPAuth.php
Go to the documentation of this file.
1 <?php
2 /*
3  +-----------------------------------------------------------------------------+
4  | ILIAS open source |
5  +-----------------------------------------------------------------------------+
6  | Copyright (c) 1998-2006 ILIAS open source, University of Cologne |
7  | |
8  | This program is free software; you can redistribute it and/or |
9  | modify it under the terms of the GNU General Public License |
10  | as published by the Free Software Foundation; either version 2 |
11  | of the License, or (at your option) any later version. |
12  | |
13  | This program 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 this program; if not, write to the Free Software |
20  | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
21  +-----------------------------------------------------------------------------+
22 */
23 
24 
25 include_once("./webservice/soap/lib/nusoap.php");
26 
34 {
35  public $valid = array();
36 
45  public static function testConnection($a_ext_uid, $a_soap_pw, $a_new_user)
46  {
47  global $ilSetting;
48 
49  $settings = $ilSetting->getAll();
50 
51  $server_hostname = $settings["soap_auth_server"];
52  $server_port = (int) $settings["soap_auth_port"];
53  $server_uri = $settings["soap_auth_uri"];
54  $namespace = $settings["soap_auth_namespace"];
55  $use_dotnet = $settings["soap_auth_use_dotnet"];
56  if ($settings["soap_auth_use_https"]) {
57  $uri = "https://";
58  } else {
59  $uri = "http://";
60  }
61 
62  $uri.= $server_hostname;
63 
64  if ($server_port > 0) {
65  $uri.= ":" . $server_port;
66  }
67 
68  if ($server_uri != "") {
69  $uri.= "/" . $server_uri;
70  }
71 
72  $soap_client = new nusoap_client($uri);
73  if ($err = $soap_client->getError()) {
74  return "SOAP Authentication Initialisation Error: " . $err;
75  }
76 
77  $soapAction = "";
78  $nspref = "";
79  if ($use_dotnet) {
80  $soapAction = $namespace . "/isValidSession";
81  $nspref = "ns1:";
82  }
83 
84  $valid = $soap_client->call(
85  'isValidSession',
86  array($nspref . 'ext_uid' => $a_ext_uid,
87  $nspref . 'soap_pw' => $a_soap_pw,
88  $nspref . 'new_user' => $a_new_user),
89  $namespace,
90  $soapAction
91  );
92 
93  return
94  "<br>== Request ==" .
95  '<br><pre>' . htmlspecialchars(str_replace("\" ", "\"\n ", str_replace(">", ">\n", $soap_client->request)), ENT_QUOTES) . '</pre><br>' .
96  "<br>== Response ==" .
97  "<br>Valid: -" . $valid["valid"] . "-" .
98  '<br><pre>' . htmlspecialchars(str_replace("\" ", "\"\n ", str_replace(">", ">\n", $soap_client->response)), ENT_QUOTES) . '</pre>';
99  }
100 } // END class.ilSOAPAuth
if($err=$client->getError()) $namespace
Class SOAPAuth.
static testConnection($a_ext_uid, $a_soap_pw, $a_new_user)
Constructor public.
[nu]soapclient higher level class for easy usage.
Definition: nusoap.php:7076
global $ilSetting
Definition: privfeed.php:17