ILIAS  Release_4_1_x_branch Revision 61804
 All Data Structures Namespaces Files Functions Variables Groups 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("Auth/Auth.php");
26 include_once("./webservice/soap/lib/nusoap.php");
27 
34 class ilSOAPAuth extends Auth
35 {
36  var $valid = array();
37 
46  public static function testConnection($a_ext_uid, $a_soap_pw, $a_new_user)
47  {
48  global $ilSetting;
49 
50  $settings = $ilSetting->getAll();
51 
52  $server_hostname = $settings["soap_auth_server"];
53  $server_port = (int) $settings["soap_auth_port"];
54  $server_uri = $settings["soap_auth_uri"];
55  $namespace = $settings["soap_auth_namespace"];
56  $use_dotnet = $settings["soap_auth_use_dotnet"];
57  if ($settings["soap_auth_use_https"])
58  {
59  $uri = "https://";
60  }
61  else
62  {
63  $uri = "http://";
64  }
65 
66  $uri.= $server_hostname;
67 
68  if ($server_port > 0)
69  {
70  $uri.= ":".$server_port;
71  }
72 
73  if ($server_uri != "")
74  {
75  $uri.= "/".$server_uri;
76  }
77 
78  $soap_client = new nusoap_client($uri);
79  if ($err = $soap_client->getError())
80  {
81  return "SOAP Authentication Initialisation Error: ".$err;
82  }
83 
84  $soapAction = "";
85  $nspref = "";
86  if ($use_dotnet)
87  {
88  $soapAction = $namespace."/isValidSession";
89  $nspref = "ns1:";
90  }
91 
92  $valid = $soap_client->call('isValidSession',
93  array($nspref.'ext_uid' => $a_ext_uid,
94  $nspref.'soap_pw' => $a_soap_pw,
95  $nspref.'new_user' => $a_new_user),
96  $namespace,
97  $soapAction);
98 
99  return
100  "<br>== Request ==".
101  '<br><pre>' . htmlspecialchars(str_replace("\" ", "\"\n ", str_replace(">", ">\n", $soap_client->request)), ENT_QUOTES) . '</pre><br>'.
102  "<br>== Response ==".
103  "<br>Valid: -".$valid["valid"]."-".
104  '<br><pre>' . htmlspecialchars(str_replace("\" ", "\"\n ", str_replace(">", ">\n", $soap_client->response)), ENT_QUOTES) . '</pre>';
105  }
106 
107 
108 } // END class.ilSOAPAuth
109 ?>