1 | <?php |
||
41 | class NTLMSoapClient extends SoapClient |
||
42 | { |
||
43 | /** |
||
44 | * Username for authentication on the exchnage server |
||
45 | * |
||
46 | * @var string |
||
47 | */ |
||
48 | protected $user; |
||
49 | |||
50 | /** |
||
51 | * Password for authentication on the exchnage server |
||
52 | * |
||
53 | * @var string |
||
54 | */ |
||
55 | protected $password; |
||
56 | |||
57 | /** |
||
58 | * Whether or not to validate ssl certificates |
||
59 | * |
||
60 | * @var boolean |
||
61 | */ |
||
62 | protected $validate = false; |
||
63 | |||
64 | private $httpPlayback; |
||
65 | |||
66 | protected $__last_request_headers; |
||
67 | |||
68 | protected $_responseCode; |
||
69 | |||
70 | /** |
||
71 | * An array of headers for us to store or use. Since not all requests use all headers (DeleteItem and SyncItems |
||
72 | * don't allow you to pass a Timezone for example), we need to be able to smartly decide what headers to include |
||
73 | * and exclude from a request. Until we have propper selection (an array of all known operations and what headers |
||
74 | * are allowed for example), this seems like a decent solution for storing the headers before we decide if they |
||
75 | * belong in the request or not) |
||
76 | * |
||
77 | * @var array |
||
78 | */ |
||
79 | protected $ewsHeaders = array( |
||
80 | 'version' => null, |
||
81 | 'impersonation' => null, |
||
82 | 'timezone' => null |
||
83 | ); |
||
84 | |||
85 | protected $auth; |
||
86 | |||
87 | protected $callsWithoutTimezone = array( |
||
88 | 'DeleteItem', |
||
89 | 'SyncFolderItems', |
||
90 | 'GetServerTimeZones', |
||
91 | 'ConvertId' |
||
92 | ); |
||
93 | |||
94 | /** |
||
95 | * @TODO: Make this smarter. It should know and search what headers to remove on what actions |
||
96 | * |
||
97 | * @param string $name |
||
98 | * @param string $args |
||
99 | * @return mixed |
||
100 | */ |
||
101 | 22 | public function __call($name, $args) |
|
129 | |||
130 | /** |
||
131 | * @param mixed $location |
||
132 | * @param string $user |
||
133 | * @param string $password |
||
134 | * @param $wsdl |
||
135 | * @param array $options |
||
136 | */ |
||
137 | 29 | public function __construct($location, $auth, $wsdl, $options = array()) |
|
187 | |||
188 | /** |
||
189 | * Performs a SOAP request |
||
190 | * |
||
191 | * @link http://php.net/manual/en/function.soap-soapclient-dorequest.php |
||
192 | * |
||
193 | * @param string $request the xml soap request |
||
194 | * @param string $location the url to request |
||
195 | * @param string $action the soap action. |
||
196 | * @param integer $version the soap version |
||
197 | * @param integer $one_way |
||
198 | * @return string the xml soap response. |
||
199 | */ |
||
200 | 22 | public function __doRequest($request, $location, $action, $version, $one_way = 0) |
|
224 | |||
225 | /** |
||
226 | * Returns last SOAP request headers |
||
227 | * |
||
228 | * @link http://php.net/manual/en/function.soap-soapclient-getlastrequestheaders.php |
||
229 | * |
||
230 | * @return string the last soap request headers |
||
231 | */ |
||
232 | public function __getLastRequestHeaders() |
||
236 | |||
237 | /** |
||
238 | * Set validation certificate |
||
239 | * |
||
240 | * @param bool $validate |
||
241 | * @return $this |
||
242 | */ |
||
243 | 1 | public function validateCertificate($validate = true) |
|
249 | |||
250 | /** |
||
251 | * Returns the response code from the last request |
||
252 | * |
||
253 | * @return integer |
||
254 | */ |
||
255 | 22 | public function getResponseCode() |
|
259 | } |
||
260 |
Methods can only be called on objects. This check looks for methods being called on variables that have been inferred to never be objects.