@@ -169,10 +169,6 @@ discard block |
||
169 | 169 | /** |
170 | 170 | * establish an HTTP connection |
171 | 171 | * |
172 | - * @param integer $timeout set connection timeout in seconds |
|
173 | - * @param integer $response_timeout set response timeout in seconds |
|
174 | - * @return boolean true if connected, false if not |
|
175 | - * @access private |
|
176 | 172 | */ |
177 | 173 | function connect($connection_timeout=0,$response_timeout=30){ |
178 | 174 | // For PHP 4.3 with OpenSSL, change https scheme to ssl, then treat like |
@@ -731,7 +727,7 @@ discard block |
||
731 | 727 | * |
732 | 728 | * @param string $data message data |
733 | 729 | * @param array $cookies cookies to send |
734 | - * @return boolean true if OK, false if problem |
|
730 | + * @return boolean|null true if OK, false if problem |
|
735 | 731 | * @access private |
736 | 732 | */ |
737 | 733 | function sendRequest($data, $cookies = NULL) { |
@@ -1166,7 +1162,7 @@ discard block |
||
1166 | 1162 | * sets the content-type for the SOAP message to be sent |
1167 | 1163 | * |
1168 | 1164 | * @param string $type the content type, MIME style |
1169 | - * @param mixed $charset character set used for encoding (or false) |
|
1165 | + * @param string $charset character set used for encoding (or false) |
|
1170 | 1166 | * @access public |
1171 | 1167 | */ |
1172 | 1168 | function setContentType($type, $charset = false) { |
@@ -1199,6 +1195,10 @@ discard block |
||
1199 | 1195 | /* |
1200 | 1196 | * TODO: allow a Set-Cookie string to be parsed into multiple cookies |
1201 | 1197 | */ |
1198 | + |
|
1199 | + /** |
|
1200 | + * @param string $cookie_str |
|
1201 | + */ |
|
1202 | 1202 | function parseCookie($cookie_str) { |
1203 | 1203 | $cookie_str = str_replace('; ', ';', $cookie_str) . ';'; |
1204 | 1204 | $data = preg_split('/;/', $cookie_str); |
@@ -14,171 +14,171 @@ discard block |
||
14 | 14 | */ |
15 | 15 | class soap_transport_http extends nusoap_base { |
16 | 16 | |
17 | - var $url = ''; |
|
18 | - var $uri = ''; |
|
19 | - var $digest_uri = ''; |
|
20 | - var $scheme = ''; |
|
21 | - var $host = ''; |
|
22 | - var $port = ''; |
|
23 | - var $path = ''; |
|
24 | - var $request_method = 'POST'; |
|
25 | - var $protocol_version = '1.0'; |
|
26 | - var $encoding = ''; |
|
27 | - var $outgoing_headers = array(); |
|
28 | - var $incoming_headers = array(); |
|
29 | - var $incoming_cookies = array(); |
|
30 | - var $outgoing_payload = ''; |
|
31 | - var $incoming_payload = ''; |
|
32 | - var $response_status_line; // HTTP response status line |
|
33 | - var $useSOAPAction = true; |
|
34 | - var $persistentConnection = false; |
|
35 | - var $ch = false; // cURL handle |
|
36 | - var $ch_options = array(); // cURL custom options |
|
37 | - var $use_curl = false; // force cURL use |
|
38 | - var $proxy = null; // proxy information (associative array) |
|
39 | - var $username = ''; |
|
40 | - var $password = ''; |
|
41 | - var $authtype = ''; |
|
42 | - var $digestRequest = array(); |
|
43 | - var $certRequest = array(); // keys must be cainfofile (optional), sslcertfile, sslkeyfile, passphrase, certpassword (optional), verifypeer (optional), verifyhost (optional) |
|
44 | - // cainfofile: certificate authority file, e.g. '$pathToPemFiles/rootca.pem' |
|
45 | - // sslcertfile: SSL certificate file, e.g. '$pathToPemFiles/mycert.pem' |
|
46 | - // sslkeyfile: SSL key file, e.g. '$pathToPemFiles/mykey.pem' |
|
47 | - // passphrase: SSL key password/passphrase |
|
48 | - // certpassword: SSL certificate password |
|
49 | - // verifypeer: default is 1 |
|
50 | - // verifyhost: default is 1 |
|
17 | + var $url = ''; |
|
18 | + var $uri = ''; |
|
19 | + var $digest_uri = ''; |
|
20 | + var $scheme = ''; |
|
21 | + var $host = ''; |
|
22 | + var $port = ''; |
|
23 | + var $path = ''; |
|
24 | + var $request_method = 'POST'; |
|
25 | + var $protocol_version = '1.0'; |
|
26 | + var $encoding = ''; |
|
27 | + var $outgoing_headers = array(); |
|
28 | + var $incoming_headers = array(); |
|
29 | + var $incoming_cookies = array(); |
|
30 | + var $outgoing_payload = ''; |
|
31 | + var $incoming_payload = ''; |
|
32 | + var $response_status_line; // HTTP response status line |
|
33 | + var $useSOAPAction = true; |
|
34 | + var $persistentConnection = false; |
|
35 | + var $ch = false; // cURL handle |
|
36 | + var $ch_options = array(); // cURL custom options |
|
37 | + var $use_curl = false; // force cURL use |
|
38 | + var $proxy = null; // proxy information (associative array) |
|
39 | + var $username = ''; |
|
40 | + var $password = ''; |
|
41 | + var $authtype = ''; |
|
42 | + var $digestRequest = array(); |
|
43 | + var $certRequest = array(); // keys must be cainfofile (optional), sslcertfile, sslkeyfile, passphrase, certpassword (optional), verifypeer (optional), verifyhost (optional) |
|
44 | + // cainfofile: certificate authority file, e.g. '$pathToPemFiles/rootca.pem' |
|
45 | + // sslcertfile: SSL certificate file, e.g. '$pathToPemFiles/mycert.pem' |
|
46 | + // sslkeyfile: SSL key file, e.g. '$pathToPemFiles/mykey.pem' |
|
47 | + // passphrase: SSL key password/passphrase |
|
48 | + // certpassword: SSL certificate password |
|
49 | + // verifypeer: default is 1 |
|
50 | + // verifyhost: default is 1 |
|
51 | 51 | |
52 | - /** |
|
53 | - * constructor |
|
54 | - * |
|
55 | - * @param string $url The URL to which to connect |
|
56 | - * @param array $curl_options User-specified cURL options |
|
57 | - * @param boolean $use_curl Whether to try to force cURL use |
|
58 | - * @access public |
|
59 | - */ |
|
60 | - function soap_transport_http($url, $curl_options = NULL, $use_curl = false){ |
|
61 | - parent::nusoap_base(); |
|
62 | - $this->debug("ctor url=$url use_curl=$use_curl curl_options:"); |
|
63 | - $this->appendDebug($this->varDump($curl_options)); |
|
64 | - $this->setURL($url); |
|
65 | - if (is_array($curl_options)) { |
|
66 | - $this->ch_options = $curl_options; |
|
67 | - } |
|
68 | - $this->use_curl = $use_curl; |
|
69 | - preg_match('/\$Revisio' . 'n: ([^ ]+)/', $this->revision, $rev); |
|
70 | - $this->setHeader('User-Agent', $this->title.'/'.$this->version.' ('.$rev[1].')'); |
|
71 | - } |
|
52 | + /** |
|
53 | + * constructor |
|
54 | + * |
|
55 | + * @param string $url The URL to which to connect |
|
56 | + * @param array $curl_options User-specified cURL options |
|
57 | + * @param boolean $use_curl Whether to try to force cURL use |
|
58 | + * @access public |
|
59 | + */ |
|
60 | + function soap_transport_http($url, $curl_options = NULL, $use_curl = false){ |
|
61 | + parent::nusoap_base(); |
|
62 | + $this->debug("ctor url=$url use_curl=$use_curl curl_options:"); |
|
63 | + $this->appendDebug($this->varDump($curl_options)); |
|
64 | + $this->setURL($url); |
|
65 | + if (is_array($curl_options)) { |
|
66 | + $this->ch_options = $curl_options; |
|
67 | + } |
|
68 | + $this->use_curl = $use_curl; |
|
69 | + preg_match('/\$Revisio' . 'n: ([^ ]+)/', $this->revision, $rev); |
|
70 | + $this->setHeader('User-Agent', $this->title.'/'.$this->version.' ('.$rev[1].')'); |
|
71 | + } |
|
72 | 72 | |
73 | - /** |
|
74 | - * sets a cURL option |
|
75 | - * |
|
76 | - * @param mixed $option The cURL option (always integer?) |
|
77 | - * @param mixed $value The cURL option value |
|
78 | - * @access private |
|
79 | - */ |
|
80 | - function setCurlOption($option, $value) { |
|
81 | - $this->debug("setCurlOption option=$option, value="); |
|
82 | - $this->appendDebug($this->varDump($value)); |
|
83 | - curl_setopt($this->ch, $option, $value); |
|
84 | - } |
|
73 | + /** |
|
74 | + * sets a cURL option |
|
75 | + * |
|
76 | + * @param mixed $option The cURL option (always integer?) |
|
77 | + * @param mixed $value The cURL option value |
|
78 | + * @access private |
|
79 | + */ |
|
80 | + function setCurlOption($option, $value) { |
|
81 | + $this->debug("setCurlOption option=$option, value="); |
|
82 | + $this->appendDebug($this->varDump($value)); |
|
83 | + curl_setopt($this->ch, $option, $value); |
|
84 | + } |
|
85 | 85 | |
86 | - /** |
|
87 | - * sets an HTTP header |
|
88 | - * |
|
89 | - * @param string $name The name of the header |
|
90 | - * @param string $value The value of the header |
|
91 | - * @access private |
|
92 | - */ |
|
93 | - function setHeader($name, $value) { |
|
94 | - $this->outgoing_headers[$name] = $value; |
|
95 | - $this->debug("set header $name: $value"); |
|
96 | - } |
|
86 | + /** |
|
87 | + * sets an HTTP header |
|
88 | + * |
|
89 | + * @param string $name The name of the header |
|
90 | + * @param string $value The value of the header |
|
91 | + * @access private |
|
92 | + */ |
|
93 | + function setHeader($name, $value) { |
|
94 | + $this->outgoing_headers[$name] = $value; |
|
95 | + $this->debug("set header $name: $value"); |
|
96 | + } |
|
97 | 97 | |
98 | - /** |
|
99 | - * unsets an HTTP header |
|
100 | - * |
|
101 | - * @param string $name The name of the header |
|
102 | - * @access private |
|
103 | - */ |
|
104 | - function unsetHeader($name) { |
|
105 | - if (isset($this->outgoing_headers[$name])) { |
|
106 | - $this->debug("unset header $name"); |
|
107 | - unset($this->outgoing_headers[$name]); |
|
108 | - } |
|
109 | - } |
|
98 | + /** |
|
99 | + * unsets an HTTP header |
|
100 | + * |
|
101 | + * @param string $name The name of the header |
|
102 | + * @access private |
|
103 | + */ |
|
104 | + function unsetHeader($name) { |
|
105 | + if (isset($this->outgoing_headers[$name])) { |
|
106 | + $this->debug("unset header $name"); |
|
107 | + unset($this->outgoing_headers[$name]); |
|
108 | + } |
|
109 | + } |
|
110 | 110 | |
111 | - /** |
|
112 | - * sets the URL to which to connect |
|
113 | - * |
|
114 | - * @param string $url The URL to which to connect |
|
115 | - * @access private |
|
116 | - */ |
|
117 | - function setURL($url) { |
|
118 | - $this->url = $url; |
|
111 | + /** |
|
112 | + * sets the URL to which to connect |
|
113 | + * |
|
114 | + * @param string $url The URL to which to connect |
|
115 | + * @access private |
|
116 | + */ |
|
117 | + function setURL($url) { |
|
118 | + $this->url = $url; |
|
119 | 119 | |
120 | - $u = parse_url($url); |
|
121 | - foreach($u as $k => $v){ |
|
122 | - $this->debug("parsed URL $k = $v"); |
|
123 | - $this->$k = $v; |
|
124 | - } |
|
120 | + $u = parse_url($url); |
|
121 | + foreach($u as $k => $v){ |
|
122 | + $this->debug("parsed URL $k = $v"); |
|
123 | + $this->$k = $v; |
|
124 | + } |
|
125 | 125 | |
126 | - // add any GET params to path |
|
127 | - if(isset($u['query']) && $u['query'] != ''){ |
|
126 | + // add any GET params to path |
|
127 | + if(isset($u['query']) && $u['query'] != ''){ |
|
128 | 128 | $this->path .= '?' . $u['query']; |
129 | - } |
|
129 | + } |
|
130 | 130 | |
131 | - // set default port |
|
132 | - if(!isset($u['port'])){ |
|
133 | - if($u['scheme'] == 'https'){ |
|
134 | - $this->port = 443; |
|
135 | - } else { |
|
136 | - $this->port = 80; |
|
137 | - } |
|
138 | - } |
|
131 | + // set default port |
|
132 | + if(!isset($u['port'])){ |
|
133 | + if($u['scheme'] == 'https'){ |
|
134 | + $this->port = 443; |
|
135 | + } else { |
|
136 | + $this->port = 80; |
|
137 | + } |
|
138 | + } |
|
139 | 139 | |
140 | - $this->uri = $this->path; |
|
141 | - $this->digest_uri = $this->uri; |
|
140 | + $this->uri = $this->path; |
|
141 | + $this->digest_uri = $this->uri; |
|
142 | 142 | |
143 | - // build headers |
|
144 | - if (!isset($u['port'])) { |
|
145 | - $this->setHeader('Host', $this->host); |
|
146 | - } else { |
|
147 | - $this->setHeader('Host', $this->host.':'.$this->port); |
|
148 | - } |
|
143 | + // build headers |
|
144 | + if (!isset($u['port'])) { |
|
145 | + $this->setHeader('Host', $this->host); |
|
146 | + } else { |
|
147 | + $this->setHeader('Host', $this->host.':'.$this->port); |
|
148 | + } |
|
149 | 149 | |
150 | - if (isset($u['user']) && $u['user'] != '') { |
|
151 | - $this->setCredentials(urldecode($u['user']), isset($u['pass']) ? urldecode($u['pass']) : ''); |
|
152 | - } |
|
153 | - } |
|
150 | + if (isset($u['user']) && $u['user'] != '') { |
|
151 | + $this->setCredentials(urldecode($u['user']), isset($u['pass']) ? urldecode($u['pass']) : ''); |
|
152 | + } |
|
153 | + } |
|
154 | 154 | |
155 | - /** |
|
156 | - * gets the I/O method to use |
|
157 | - * |
|
158 | - * @return string I/O method to use (socket|curl|unknown) |
|
159 | - * @access private |
|
160 | - */ |
|
161 | - function io_method() { |
|
162 | - if ($this->use_curl || ($this->scheme == 'https') || ($this->scheme == 'http' && $this->authtype == 'ntlm') || ($this->scheme == 'http' && is_array($this->proxy) && $this->proxy['authtype'] == 'ntlm')) |
|
163 | - return 'curl'; |
|
164 | - if (($this->scheme == 'http' || $this->scheme == 'ssl') && $this->authtype != 'ntlm' && (!is_array($this->proxy) || $this->proxy['authtype'] != 'ntlm')) |
|
165 | - return 'socket'; |
|
166 | - return 'unknown'; |
|
167 | - } |
|
155 | + /** |
|
156 | + * gets the I/O method to use |
|
157 | + * |
|
158 | + * @return string I/O method to use (socket|curl|unknown) |
|
159 | + * @access private |
|
160 | + */ |
|
161 | + function io_method() { |
|
162 | + if ($this->use_curl || ($this->scheme == 'https') || ($this->scheme == 'http' && $this->authtype == 'ntlm') || ($this->scheme == 'http' && is_array($this->proxy) && $this->proxy['authtype'] == 'ntlm')) |
|
163 | + return 'curl'; |
|
164 | + if (($this->scheme == 'http' || $this->scheme == 'ssl') && $this->authtype != 'ntlm' && (!is_array($this->proxy) || $this->proxy['authtype'] != 'ntlm')) |
|
165 | + return 'socket'; |
|
166 | + return 'unknown'; |
|
167 | + } |
|
168 | 168 | |
169 | - /** |
|
170 | - * establish an HTTP connection |
|
171 | - * |
|
172 | - * @param integer $timeout set connection timeout in seconds |
|
173 | - * @param integer $response_timeout set response timeout in seconds |
|
174 | - * @return boolean true if connected, false if not |
|
175 | - * @access private |
|
176 | - */ |
|
177 | - function connect($connection_timeout=0,$response_timeout=30){ |
|
178 | - // For PHP 4.3 with OpenSSL, change https scheme to ssl, then treat like |
|
179 | - // "regular" socket. |
|
180 | - // TODO: disabled for now because OpenSSL must be *compiled* in (not just |
|
181 | - // loaded), and until PHP5 stream_get_wrappers is not available. |
|
169 | + /** |
|
170 | + * establish an HTTP connection |
|
171 | + * |
|
172 | + * @param integer $timeout set connection timeout in seconds |
|
173 | + * @param integer $response_timeout set response timeout in seconds |
|
174 | + * @return boolean true if connected, false if not |
|
175 | + * @access private |
|
176 | + */ |
|
177 | + function connect($connection_timeout=0,$response_timeout=30){ |
|
178 | + // For PHP 4.3 with OpenSSL, change https scheme to ssl, then treat like |
|
179 | + // "regular" socket. |
|
180 | + // TODO: disabled for now because OpenSSL must be *compiled* in (not just |
|
181 | + // loaded), and until PHP5 stream_get_wrappers is not available. |
|
182 | 182 | // if ($this->scheme == 'https') { |
183 | 183 | // if (version_compare(phpversion(), '4.3.0') >= 0) { |
184 | 184 | // if (extension_loaded('openssl')) { |
@@ -187,1120 +187,1120 @@ discard block |
||
187 | 187 | // } |
188 | 188 | // } |
189 | 189 | // } |
190 | - $this->debug("connect connection_timeout $connection_timeout, response_timeout $response_timeout, scheme $this->scheme, host $this->host, port $this->port"); |
|
191 | - if ($this->io_method() == 'socket') { |
|
192 | - if (!is_array($this->proxy)) { |
|
193 | - $host = $this->host; |
|
194 | - $port = $this->port; |
|
195 | - } else { |
|
196 | - $host = $this->proxy['host']; |
|
197 | - $port = $this->proxy['port']; |
|
198 | - } |
|
190 | + $this->debug("connect connection_timeout $connection_timeout, response_timeout $response_timeout, scheme $this->scheme, host $this->host, port $this->port"); |
|
191 | + if ($this->io_method() == 'socket') { |
|
192 | + if (!is_array($this->proxy)) { |
|
193 | + $host = $this->host; |
|
194 | + $port = $this->port; |
|
195 | + } else { |
|
196 | + $host = $this->proxy['host']; |
|
197 | + $port = $this->proxy['port']; |
|
198 | + } |
|
199 | 199 | |
200 | - // use persistent connection |
|
201 | - if($this->persistentConnection && isset($this->fp) && is_resource($this->fp)){ |
|
202 | - if (!feof($this->fp)) { |
|
203 | - $this->debug('Re-use persistent connection'); |
|
204 | - return true; |
|
205 | - } |
|
206 | - fclose($this->fp); |
|
207 | - $this->debug('Closed persistent connection at EOF'); |
|
208 | - } |
|
200 | + // use persistent connection |
|
201 | + if($this->persistentConnection && isset($this->fp) && is_resource($this->fp)){ |
|
202 | + if (!feof($this->fp)) { |
|
203 | + $this->debug('Re-use persistent connection'); |
|
204 | + return true; |
|
205 | + } |
|
206 | + fclose($this->fp); |
|
207 | + $this->debug('Closed persistent connection at EOF'); |
|
208 | + } |
|
209 | 209 | |
210 | - // munge host if using OpenSSL |
|
211 | - if ($this->scheme == 'ssl') { |
|
212 | - $host = 'ssl://' . $host; |
|
213 | - } |
|
214 | - $this->debug('calling fsockopen with host ' . $host . ' connection_timeout ' . $connection_timeout); |
|
210 | + // munge host if using OpenSSL |
|
211 | + if ($this->scheme == 'ssl') { |
|
212 | + $host = 'ssl://' . $host; |
|
213 | + } |
|
214 | + $this->debug('calling fsockopen with host ' . $host . ' connection_timeout ' . $connection_timeout); |
|
215 | 215 | |
216 | - // open socket |
|
217 | - if($connection_timeout > 0){ |
|
218 | - $this->fp = @fsockopen( $host, $this->port, $this->errno, $this->error_str, $connection_timeout); |
|
219 | - } else { |
|
220 | - $this->fp = @fsockopen( $host, $this->port, $this->errno, $this->error_str); |
|
221 | - } |
|
216 | + // open socket |
|
217 | + if($connection_timeout > 0){ |
|
218 | + $this->fp = @fsockopen( $host, $this->port, $this->errno, $this->error_str, $connection_timeout); |
|
219 | + } else { |
|
220 | + $this->fp = @fsockopen( $host, $this->port, $this->errno, $this->error_str); |
|
221 | + } |
|
222 | 222 | |
223 | - // test pointer |
|
224 | - if(!$this->fp) { |
|
225 | - $msg = 'Couldn\'t open socket connection to server ' . $this->url; |
|
226 | - if ($this->errno) { |
|
227 | - $msg .= ', Error ('.$this->errno.'): '.$this->error_str; |
|
228 | - } else { |
|
229 | - $msg .= ' prior to connect(). This is often a problem looking up the host name.'; |
|
230 | - } |
|
231 | - $this->debug($msg); |
|
232 | - $this->setError($msg); |
|
233 | - return false; |
|
234 | - } |
|
223 | + // test pointer |
|
224 | + if(!$this->fp) { |
|
225 | + $msg = 'Couldn\'t open socket connection to server ' . $this->url; |
|
226 | + if ($this->errno) { |
|
227 | + $msg .= ', Error ('.$this->errno.'): '.$this->error_str; |
|
228 | + } else { |
|
229 | + $msg .= ' prior to connect(). This is often a problem looking up the host name.'; |
|
230 | + } |
|
231 | + $this->debug($msg); |
|
232 | + $this->setError($msg); |
|
233 | + return false; |
|
234 | + } |
|
235 | 235 | |
236 | - // set response timeout |
|
237 | - $this->debug('set response timeout to ' . $response_timeout); |
|
238 | - socket_set_timeout( $this->fp, $response_timeout); |
|
236 | + // set response timeout |
|
237 | + $this->debug('set response timeout to ' . $response_timeout); |
|
238 | + socket_set_timeout( $this->fp, $response_timeout); |
|
239 | 239 | |
240 | - $this->debug('socket connected'); |
|
241 | - return true; |
|
242 | - } else if ($this->io_method() == 'curl') { |
|
243 | - if (!extension_loaded('curl')) { |
|
240 | + $this->debug('socket connected'); |
|
241 | + return true; |
|
242 | + } else if ($this->io_method() == 'curl') { |
|
243 | + if (!extension_loaded('curl')) { |
|
244 | 244 | // $this->setError('cURL Extension, or OpenSSL extension w/ PHP version >= 4.3 is required for HTTPS'); |
245 | - $this->setError('The PHP cURL Extension is required for HTTPS or NLTM. You will need to re-build or update your PHP to include cURL or change php.ini to load the PHP cURL extension.'); |
|
246 | - return false; |
|
247 | - } |
|
248 | - // Avoid warnings when PHP does not have these options |
|
249 | - if (defined('CURLOPT_CONNECTIONTIMEOUT')) |
|
250 | - $CURLOPT_CONNECTIONTIMEOUT = CURLOPT_CONNECTIONTIMEOUT; |
|
251 | - else |
|
252 | - $CURLOPT_CONNECTIONTIMEOUT = 78; |
|
253 | - if (defined('CURLOPT_HTTPAUTH')) |
|
254 | - $CURLOPT_HTTPAUTH = CURLOPT_HTTPAUTH; |
|
255 | - else |
|
256 | - $CURLOPT_HTTPAUTH = 107; |
|
257 | - if (defined('CURLOPT_PROXYAUTH')) |
|
258 | - $CURLOPT_PROXYAUTH = CURLOPT_PROXYAUTH; |
|
259 | - else |
|
260 | - $CURLOPT_PROXYAUTH = 111; |
|
261 | - if (defined('CURLAUTH_BASIC')) |
|
262 | - $CURLAUTH_BASIC = CURLAUTH_BASIC; |
|
263 | - else |
|
264 | - $CURLAUTH_BASIC = 1; |
|
265 | - if (defined('CURLAUTH_DIGEST')) |
|
266 | - $CURLAUTH_DIGEST = CURLAUTH_DIGEST; |
|
267 | - else |
|
268 | - $CURLAUTH_DIGEST = 2; |
|
269 | - if (defined('CURLAUTH_NTLM')) |
|
270 | - $CURLAUTH_NTLM = CURLAUTH_NTLM; |
|
271 | - else |
|
272 | - $CURLAUTH_NTLM = 8; |
|
245 | + $this->setError('The PHP cURL Extension is required for HTTPS or NLTM. You will need to re-build or update your PHP to include cURL or change php.ini to load the PHP cURL extension.'); |
|
246 | + return false; |
|
247 | + } |
|
248 | + // Avoid warnings when PHP does not have these options |
|
249 | + if (defined('CURLOPT_CONNECTIONTIMEOUT')) |
|
250 | + $CURLOPT_CONNECTIONTIMEOUT = CURLOPT_CONNECTIONTIMEOUT; |
|
251 | + else |
|
252 | + $CURLOPT_CONNECTIONTIMEOUT = 78; |
|
253 | + if (defined('CURLOPT_HTTPAUTH')) |
|
254 | + $CURLOPT_HTTPAUTH = CURLOPT_HTTPAUTH; |
|
255 | + else |
|
256 | + $CURLOPT_HTTPAUTH = 107; |
|
257 | + if (defined('CURLOPT_PROXYAUTH')) |
|
258 | + $CURLOPT_PROXYAUTH = CURLOPT_PROXYAUTH; |
|
259 | + else |
|
260 | + $CURLOPT_PROXYAUTH = 111; |
|
261 | + if (defined('CURLAUTH_BASIC')) |
|
262 | + $CURLAUTH_BASIC = CURLAUTH_BASIC; |
|
263 | + else |
|
264 | + $CURLAUTH_BASIC = 1; |
|
265 | + if (defined('CURLAUTH_DIGEST')) |
|
266 | + $CURLAUTH_DIGEST = CURLAUTH_DIGEST; |
|
267 | + else |
|
268 | + $CURLAUTH_DIGEST = 2; |
|
269 | + if (defined('CURLAUTH_NTLM')) |
|
270 | + $CURLAUTH_NTLM = CURLAUTH_NTLM; |
|
271 | + else |
|
272 | + $CURLAUTH_NTLM = 8; |
|
273 | 273 | |
274 | - $this->debug('connect using cURL'); |
|
275 | - // init CURL |
|
276 | - $this->ch = curl_init(); |
|
277 | - // set url |
|
278 | - $hostURL = ($this->port != '') ? "$this->scheme://$this->host:$this->port" : "$this->scheme://$this->host"; |
|
279 | - // add path |
|
280 | - $hostURL .= $this->path; |
|
281 | - $this->setCurlOption(CURLOPT_URL, $hostURL); |
|
282 | - // follow location headers (re-directs) |
|
283 | - if (ini_get('safe_mode') || ini_get('open_basedir')) { |
|
284 | - $this->debug('safe_mode or open_basedir set, so do not set CURLOPT_FOLLOWLOCATION'); |
|
285 | - $this->debug('safe_mode = '); |
|
286 | - $this->appendDebug($this->varDump(ini_get('safe_mode'))); |
|
287 | - $this->debug('open_basedir = '); |
|
288 | - $this->appendDebug($this->varDump(ini_get('open_basedir'))); |
|
289 | - } else { |
|
290 | - $this->setCurlOption(CURLOPT_FOLLOWLOCATION, 1); |
|
291 | - } |
|
292 | - // ask for headers in the response output |
|
293 | - $this->setCurlOption(CURLOPT_HEADER, 1); |
|
294 | - // ask for the response output as the return value |
|
295 | - $this->setCurlOption(CURLOPT_RETURNTRANSFER, 1); |
|
296 | - // encode |
|
297 | - // We manage this ourselves through headers and encoding |
|
274 | + $this->debug('connect using cURL'); |
|
275 | + // init CURL |
|
276 | + $this->ch = curl_init(); |
|
277 | + // set url |
|
278 | + $hostURL = ($this->port != '') ? "$this->scheme://$this->host:$this->port" : "$this->scheme://$this->host"; |
|
279 | + // add path |
|
280 | + $hostURL .= $this->path; |
|
281 | + $this->setCurlOption(CURLOPT_URL, $hostURL); |
|
282 | + // follow location headers (re-directs) |
|
283 | + if (ini_get('safe_mode') || ini_get('open_basedir')) { |
|
284 | + $this->debug('safe_mode or open_basedir set, so do not set CURLOPT_FOLLOWLOCATION'); |
|
285 | + $this->debug('safe_mode = '); |
|
286 | + $this->appendDebug($this->varDump(ini_get('safe_mode'))); |
|
287 | + $this->debug('open_basedir = '); |
|
288 | + $this->appendDebug($this->varDump(ini_get('open_basedir'))); |
|
289 | + } else { |
|
290 | + $this->setCurlOption(CURLOPT_FOLLOWLOCATION, 1); |
|
291 | + } |
|
292 | + // ask for headers in the response output |
|
293 | + $this->setCurlOption(CURLOPT_HEADER, 1); |
|
294 | + // ask for the response output as the return value |
|
295 | + $this->setCurlOption(CURLOPT_RETURNTRANSFER, 1); |
|
296 | + // encode |
|
297 | + // We manage this ourselves through headers and encoding |
|
298 | 298 | // if(function_exists('gzuncompress')){ |
299 | 299 | // $this->setCurlOption(CURLOPT_ENCODING, 'deflate'); |
300 | 300 | // } |
301 | - // persistent connection |
|
302 | - if ($this->persistentConnection) { |
|
303 | - // I believe the following comment is now bogus, having applied to |
|
304 | - // the code when it used CURLOPT_CUSTOMREQUEST to send the request. |
|
305 | - // The way we send data, we cannot use persistent connections, since |
|
306 | - // there will be some "junk" at the end of our request. |
|
307 | - //$this->setCurlOption(CURL_HTTP_VERSION_1_1, true); |
|
308 | - $this->persistentConnection = false; |
|
309 | - $this->setHeader('Connection', 'close'); |
|
310 | - } |
|
311 | - // set timeouts |
|
312 | - if ($connection_timeout != 0) { |
|
313 | - $this->setCurlOption($CURLOPT_CONNECTIONTIMEOUT, $connection_timeout); |
|
314 | - } |
|
315 | - if ($response_timeout != 0) { |
|
316 | - $this->setCurlOption(CURLOPT_TIMEOUT, $response_timeout); |
|
317 | - } |
|
301 | + // persistent connection |
|
302 | + if ($this->persistentConnection) { |
|
303 | + // I believe the following comment is now bogus, having applied to |
|
304 | + // the code when it used CURLOPT_CUSTOMREQUEST to send the request. |
|
305 | + // The way we send data, we cannot use persistent connections, since |
|
306 | + // there will be some "junk" at the end of our request. |
|
307 | + //$this->setCurlOption(CURL_HTTP_VERSION_1_1, true); |
|
308 | + $this->persistentConnection = false; |
|
309 | + $this->setHeader('Connection', 'close'); |
|
310 | + } |
|
311 | + // set timeouts |
|
312 | + if ($connection_timeout != 0) { |
|
313 | + $this->setCurlOption($CURLOPT_CONNECTIONTIMEOUT, $connection_timeout); |
|
314 | + } |
|
315 | + if ($response_timeout != 0) { |
|
316 | + $this->setCurlOption(CURLOPT_TIMEOUT, $response_timeout); |
|
317 | + } |
|
318 | 318 | |
319 | - if ($this->scheme == 'https') { |
|
320 | - $this->debug('set cURL SSL verify options'); |
|
321 | - // recent versions of cURL turn on peer/host checking by default, |
|
322 | - // while PHP binaries are not compiled with a default location for the |
|
323 | - // CA cert bundle, so disable peer/host checking. |
|
324 | - //$this->setCurlOption(CURLOPT_CAINFO, 'f:\php-4.3.2-win32\extensions\curl-ca-bundle.crt'); |
|
325 | - $this->setCurlOption(CURLOPT_SSL_VERIFYPEER, 0); |
|
326 | - $this->setCurlOption(CURLOPT_SSL_VERIFYHOST, 0); |
|
319 | + if ($this->scheme == 'https') { |
|
320 | + $this->debug('set cURL SSL verify options'); |
|
321 | + // recent versions of cURL turn on peer/host checking by default, |
|
322 | + // while PHP binaries are not compiled with a default location for the |
|
323 | + // CA cert bundle, so disable peer/host checking. |
|
324 | + //$this->setCurlOption(CURLOPT_CAINFO, 'f:\php-4.3.2-win32\extensions\curl-ca-bundle.crt'); |
|
325 | + $this->setCurlOption(CURLOPT_SSL_VERIFYPEER, 0); |
|
326 | + $this->setCurlOption(CURLOPT_SSL_VERIFYHOST, 0); |
|
327 | 327 | |
328 | - // support client certificates (thanks Tobias Boes, Doug Anarino, Eryan Ariobowo) |
|
329 | - if ($this->authtype == 'certificate') { |
|
330 | - $this->debug('set cURL certificate options'); |
|
331 | - if (isset($this->certRequest['cainfofile'])) { |
|
332 | - $this->setCurlOption(CURLOPT_CAINFO, $this->certRequest['cainfofile']); |
|
333 | - } |
|
334 | - if (isset($this->certRequest['verifypeer'])) { |
|
335 | - $this->setCurlOption(CURLOPT_SSL_VERIFYPEER, $this->certRequest['verifypeer']); |
|
336 | - } else { |
|
337 | - $this->setCurlOption(CURLOPT_SSL_VERIFYPEER, 1); |
|
338 | - } |
|
339 | - if (isset($this->certRequest['verifyhost'])) { |
|
340 | - $this->setCurlOption(CURLOPT_SSL_VERIFYHOST, $this->certRequest['verifyhost']); |
|
341 | - } else { |
|
342 | - $this->setCurlOption(CURLOPT_SSL_VERIFYHOST, 1); |
|
343 | - } |
|
344 | - if (isset($this->certRequest['sslcertfile'])) { |
|
345 | - $this->setCurlOption(CURLOPT_SSLCERT, $this->certRequest['sslcertfile']); |
|
346 | - } |
|
347 | - if (isset($this->certRequest['sslkeyfile'])) { |
|
348 | - $this->setCurlOption(CURLOPT_SSLKEY, $this->certRequest['sslkeyfile']); |
|
349 | - } |
|
350 | - if (isset($this->certRequest['passphrase'])) { |
|
351 | - $this->setCurlOption(CURLOPT_SSLKEYPASSWD, $this->certRequest['passphrase']); |
|
352 | - } |
|
353 | - if (isset($this->certRequest['certpassword'])) { |
|
354 | - $this->setCurlOption(CURLOPT_SSLCERTPASSWD, $this->certRequest['certpassword']); |
|
355 | - } |
|
356 | - } |
|
357 | - } |
|
358 | - if ($this->authtype && ($this->authtype != 'certificate')) { |
|
359 | - if ($this->username) { |
|
360 | - $this->debug('set cURL username/password'); |
|
361 | - $this->setCurlOption(CURLOPT_USERPWD, "$this->username:$this->password"); |
|
362 | - } |
|
363 | - if ($this->authtype == 'basic') { |
|
364 | - $this->debug('set cURL for Basic authentication'); |
|
365 | - $this->setCurlOption($CURLOPT_HTTPAUTH, $CURLAUTH_BASIC); |
|
366 | - } |
|
367 | - if ($this->authtype == 'digest') { |
|
368 | - $this->debug('set cURL for digest authentication'); |
|
369 | - $this->setCurlOption($CURLOPT_HTTPAUTH, $CURLAUTH_DIGEST); |
|
370 | - } |
|
371 | - if ($this->authtype == 'ntlm') { |
|
372 | - $this->debug('set cURL for NTLM authentication'); |
|
373 | - $this->setCurlOption($CURLOPT_HTTPAUTH, $CURLAUTH_NTLM); |
|
374 | - } |
|
375 | - } |
|
376 | - if (is_array($this->proxy)) { |
|
377 | - $this->debug('set cURL proxy options'); |
|
378 | - if ($this->proxy['port'] != '') { |
|
379 | - $this->setCurlOption(CURLOPT_PROXY, $this->proxy['host'].':'.$this->proxy['port']); |
|
380 | - } else { |
|
381 | - $this->setCurlOption(CURLOPT_PROXY, $this->proxy['host']); |
|
382 | - } |
|
383 | - if ($this->proxy['username'] || $this->proxy['password']) { |
|
384 | - $this->debug('set cURL proxy authentication options'); |
|
385 | - $this->setCurlOption(CURLOPT_PROXYUSERPWD, $this->proxy['username'].':'.$this->proxy['password']); |
|
386 | - if ($this->proxy['authtype'] == 'basic') { |
|
387 | - $this->setCurlOption($CURLOPT_PROXYAUTH, $CURLAUTH_BASIC); |
|
388 | - } |
|
389 | - if ($this->proxy['authtype'] == 'ntlm') { |
|
390 | - $this->setCurlOption($CURLOPT_PROXYAUTH, $CURLAUTH_NTLM); |
|
391 | - } |
|
392 | - } |
|
393 | - } |
|
394 | - $this->debug('cURL connection set up'); |
|
395 | - return true; |
|
396 | - } else { |
|
397 | - $this->setError('Unknown scheme ' . $this->scheme); |
|
398 | - $this->debug('Unknown scheme ' . $this->scheme); |
|
399 | - return false; |
|
400 | - } |
|
401 | - } |
|
328 | + // support client certificates (thanks Tobias Boes, Doug Anarino, Eryan Ariobowo) |
|
329 | + if ($this->authtype == 'certificate') { |
|
330 | + $this->debug('set cURL certificate options'); |
|
331 | + if (isset($this->certRequest['cainfofile'])) { |
|
332 | + $this->setCurlOption(CURLOPT_CAINFO, $this->certRequest['cainfofile']); |
|
333 | + } |
|
334 | + if (isset($this->certRequest['verifypeer'])) { |
|
335 | + $this->setCurlOption(CURLOPT_SSL_VERIFYPEER, $this->certRequest['verifypeer']); |
|
336 | + } else { |
|
337 | + $this->setCurlOption(CURLOPT_SSL_VERIFYPEER, 1); |
|
338 | + } |
|
339 | + if (isset($this->certRequest['verifyhost'])) { |
|
340 | + $this->setCurlOption(CURLOPT_SSL_VERIFYHOST, $this->certRequest['verifyhost']); |
|
341 | + } else { |
|
342 | + $this->setCurlOption(CURLOPT_SSL_VERIFYHOST, 1); |
|
343 | + } |
|
344 | + if (isset($this->certRequest['sslcertfile'])) { |
|
345 | + $this->setCurlOption(CURLOPT_SSLCERT, $this->certRequest['sslcertfile']); |
|
346 | + } |
|
347 | + if (isset($this->certRequest['sslkeyfile'])) { |
|
348 | + $this->setCurlOption(CURLOPT_SSLKEY, $this->certRequest['sslkeyfile']); |
|
349 | + } |
|
350 | + if (isset($this->certRequest['passphrase'])) { |
|
351 | + $this->setCurlOption(CURLOPT_SSLKEYPASSWD, $this->certRequest['passphrase']); |
|
352 | + } |
|
353 | + if (isset($this->certRequest['certpassword'])) { |
|
354 | + $this->setCurlOption(CURLOPT_SSLCERTPASSWD, $this->certRequest['certpassword']); |
|
355 | + } |
|
356 | + } |
|
357 | + } |
|
358 | + if ($this->authtype && ($this->authtype != 'certificate')) { |
|
359 | + if ($this->username) { |
|
360 | + $this->debug('set cURL username/password'); |
|
361 | + $this->setCurlOption(CURLOPT_USERPWD, "$this->username:$this->password"); |
|
362 | + } |
|
363 | + if ($this->authtype == 'basic') { |
|
364 | + $this->debug('set cURL for Basic authentication'); |
|
365 | + $this->setCurlOption($CURLOPT_HTTPAUTH, $CURLAUTH_BASIC); |
|
366 | + } |
|
367 | + if ($this->authtype == 'digest') { |
|
368 | + $this->debug('set cURL for digest authentication'); |
|
369 | + $this->setCurlOption($CURLOPT_HTTPAUTH, $CURLAUTH_DIGEST); |
|
370 | + } |
|
371 | + if ($this->authtype == 'ntlm') { |
|
372 | + $this->debug('set cURL for NTLM authentication'); |
|
373 | + $this->setCurlOption($CURLOPT_HTTPAUTH, $CURLAUTH_NTLM); |
|
374 | + } |
|
375 | + } |
|
376 | + if (is_array($this->proxy)) { |
|
377 | + $this->debug('set cURL proxy options'); |
|
378 | + if ($this->proxy['port'] != '') { |
|
379 | + $this->setCurlOption(CURLOPT_PROXY, $this->proxy['host'].':'.$this->proxy['port']); |
|
380 | + } else { |
|
381 | + $this->setCurlOption(CURLOPT_PROXY, $this->proxy['host']); |
|
382 | + } |
|
383 | + if ($this->proxy['username'] || $this->proxy['password']) { |
|
384 | + $this->debug('set cURL proxy authentication options'); |
|
385 | + $this->setCurlOption(CURLOPT_PROXYUSERPWD, $this->proxy['username'].':'.$this->proxy['password']); |
|
386 | + if ($this->proxy['authtype'] == 'basic') { |
|
387 | + $this->setCurlOption($CURLOPT_PROXYAUTH, $CURLAUTH_BASIC); |
|
388 | + } |
|
389 | + if ($this->proxy['authtype'] == 'ntlm') { |
|
390 | + $this->setCurlOption($CURLOPT_PROXYAUTH, $CURLAUTH_NTLM); |
|
391 | + } |
|
392 | + } |
|
393 | + } |
|
394 | + $this->debug('cURL connection set up'); |
|
395 | + return true; |
|
396 | + } else { |
|
397 | + $this->setError('Unknown scheme ' . $this->scheme); |
|
398 | + $this->debug('Unknown scheme ' . $this->scheme); |
|
399 | + return false; |
|
400 | + } |
|
401 | + } |
|
402 | 402 | |
403 | - /** |
|
404 | - * sends the SOAP request and gets the SOAP response via HTTP[S] |
|
405 | - * |
|
406 | - * @param string $data message data |
|
407 | - * @param integer $timeout set connection timeout in seconds |
|
408 | - * @param integer $response_timeout set response timeout in seconds |
|
409 | - * @param array $cookies cookies to send |
|
410 | - * @return string data |
|
411 | - * @access public |
|
412 | - */ |
|
413 | - function send($data, $timeout=0, $response_timeout=30, $cookies=NULL) { |
|
403 | + /** |
|
404 | + * sends the SOAP request and gets the SOAP response via HTTP[S] |
|
405 | + * |
|
406 | + * @param string $data message data |
|
407 | + * @param integer $timeout set connection timeout in seconds |
|
408 | + * @param integer $response_timeout set response timeout in seconds |
|
409 | + * @param array $cookies cookies to send |
|
410 | + * @return string data |
|
411 | + * @access public |
|
412 | + */ |
|
413 | + function send($data, $timeout=0, $response_timeout=30, $cookies=NULL) { |
|
414 | 414 | |
415 | - $this->debug('entered send() with data of length: '.strlen($data)); |
|
415 | + $this->debug('entered send() with data of length: '.strlen($data)); |
|
416 | 416 | |
417 | - $this->tryagain = true; |
|
418 | - $tries = 0; |
|
419 | - while ($this->tryagain) { |
|
420 | - $this->tryagain = false; |
|
421 | - if ($tries++ < 2) { |
|
422 | - // make connnection |
|
423 | - if (!$this->connect($timeout, $response_timeout)){ |
|
424 | - return false; |
|
425 | - } |
|
417 | + $this->tryagain = true; |
|
418 | + $tries = 0; |
|
419 | + while ($this->tryagain) { |
|
420 | + $this->tryagain = false; |
|
421 | + if ($tries++ < 2) { |
|
422 | + // make connnection |
|
423 | + if (!$this->connect($timeout, $response_timeout)){ |
|
424 | + return false; |
|
425 | + } |
|
426 | 426 | |
427 | - // send request |
|
428 | - if (!$this->sendRequest($data, $cookies)){ |
|
429 | - return false; |
|
430 | - } |
|
427 | + // send request |
|
428 | + if (!$this->sendRequest($data, $cookies)){ |
|
429 | + return false; |
|
430 | + } |
|
431 | 431 | |
432 | - // get response |
|
433 | - $respdata = $this->getResponse(); |
|
434 | - } else { |
|
435 | - $this->setError("Too many tries to get an OK response ($this->response_status_line)"); |
|
436 | - } |
|
437 | - } |
|
438 | - $this->debug('end of send()'); |
|
439 | - return $respdata; |
|
440 | - } |
|
432 | + // get response |
|
433 | + $respdata = $this->getResponse(); |
|
434 | + } else { |
|
435 | + $this->setError("Too many tries to get an OK response ($this->response_status_line)"); |
|
436 | + } |
|
437 | + } |
|
438 | + $this->debug('end of send()'); |
|
439 | + return $respdata; |
|
440 | + } |
|
441 | 441 | |
442 | 442 | |
443 | - /** |
|
444 | - * sends the SOAP request and gets the SOAP response via HTTPS using CURL |
|
445 | - * |
|
446 | - * @param string $data message data |
|
447 | - * @param integer $timeout set connection timeout in seconds |
|
448 | - * @param integer $response_timeout set response timeout in seconds |
|
449 | - * @param array $cookies cookies to send |
|
450 | - * @return string data |
|
451 | - * @access public |
|
452 | - * @deprecated |
|
453 | - */ |
|
454 | - function sendHTTPS($data, $timeout=0, $response_timeout=30, $cookies) { |
|
455 | - return $this->send($data, $timeout, $response_timeout, $cookies); |
|
456 | - } |
|
443 | + /** |
|
444 | + * sends the SOAP request and gets the SOAP response via HTTPS using CURL |
|
445 | + * |
|
446 | + * @param string $data message data |
|
447 | + * @param integer $timeout set connection timeout in seconds |
|
448 | + * @param integer $response_timeout set response timeout in seconds |
|
449 | + * @param array $cookies cookies to send |
|
450 | + * @return string data |
|
451 | + * @access public |
|
452 | + * @deprecated |
|
453 | + */ |
|
454 | + function sendHTTPS($data, $timeout=0, $response_timeout=30, $cookies) { |
|
455 | + return $this->send($data, $timeout, $response_timeout, $cookies); |
|
456 | + } |
|
457 | 457 | |
458 | - /** |
|
459 | - * if authenticating, set user credentials here |
|
460 | - * |
|
461 | - * @param string $username |
|
462 | - * @param string $password |
|
463 | - * @param string $authtype (basic|digest|certificate|ntlm) |
|
464 | - * @param array $digestRequest (keys must be nonce, nc, realm, qop) |
|
465 | - * @param array $certRequest (keys must be cainfofile (optional), sslcertfile, sslkeyfile, passphrase, certpassword (optional), verifypeer (optional), verifyhost (optional): see corresponding options in cURL docs) |
|
466 | - * @access public |
|
467 | - */ |
|
468 | - function setCredentials($username, $password, $authtype = 'basic', $digestRequest = array(), $certRequest = array()) { |
|
469 | - $this->debug("setCredentials username=$username authtype=$authtype digestRequest="); |
|
470 | - $this->appendDebug($this->varDump($digestRequest)); |
|
471 | - $this->debug("certRequest="); |
|
472 | - $this->appendDebug($this->varDump($certRequest)); |
|
473 | - // cf. RFC 2617 |
|
474 | - if ($authtype == 'basic') { |
|
475 | - $this->setHeader('Authorization', 'Basic '.base64_encode(str_replace(':','',$username).':'.$password)); |
|
476 | - } elseif ($authtype == 'digest') { |
|
477 | - if (isset($digestRequest['nonce'])) { |
|
478 | - $digestRequest['nc'] = isset($digestRequest['nc']) ? $digestRequest['nc']++ : 1; |
|
458 | + /** |
|
459 | + * if authenticating, set user credentials here |
|
460 | + * |
|
461 | + * @param string $username |
|
462 | + * @param string $password |
|
463 | + * @param string $authtype (basic|digest|certificate|ntlm) |
|
464 | + * @param array $digestRequest (keys must be nonce, nc, realm, qop) |
|
465 | + * @param array $certRequest (keys must be cainfofile (optional), sslcertfile, sslkeyfile, passphrase, certpassword (optional), verifypeer (optional), verifyhost (optional): see corresponding options in cURL docs) |
|
466 | + * @access public |
|
467 | + */ |
|
468 | + function setCredentials($username, $password, $authtype = 'basic', $digestRequest = array(), $certRequest = array()) { |
|
469 | + $this->debug("setCredentials username=$username authtype=$authtype digestRequest="); |
|
470 | + $this->appendDebug($this->varDump($digestRequest)); |
|
471 | + $this->debug("certRequest="); |
|
472 | + $this->appendDebug($this->varDump($certRequest)); |
|
473 | + // cf. RFC 2617 |
|
474 | + if ($authtype == 'basic') { |
|
475 | + $this->setHeader('Authorization', 'Basic '.base64_encode(str_replace(':','',$username).':'.$password)); |
|
476 | + } elseif ($authtype == 'digest') { |
|
477 | + if (isset($digestRequest['nonce'])) { |
|
478 | + $digestRequest['nc'] = isset($digestRequest['nc']) ? $digestRequest['nc']++ : 1; |
|
479 | 479 | |
480 | - // calculate the Digest hashes (calculate code based on digest implementation found at: http://www.rassoc.com/gregr/weblog/stories/2002/07/09/webServicesSecurityHttpDigestAuthenticationWithoutActiveDirectory.html) |
|
480 | + // calculate the Digest hashes (calculate code based on digest implementation found at: http://www.rassoc.com/gregr/weblog/stories/2002/07/09/webServicesSecurityHttpDigestAuthenticationWithoutActiveDirectory.html) |
|
481 | 481 | |
482 | - // A1 = unq(username-value) ":" unq(realm-value) ":" passwd |
|
483 | - $A1 = $username. ':' . (isset($digestRequest['realm']) ? $digestRequest['realm'] : '') . ':' . $password; |
|
482 | + // A1 = unq(username-value) ":" unq(realm-value) ":" passwd |
|
483 | + $A1 = $username. ':' . (isset($digestRequest['realm']) ? $digestRequest['realm'] : '') . ':' . $password; |
|
484 | 484 | |
485 | - // H(A1) = MD5(A1) |
|
486 | - $HA1 = md5($A1); |
|
485 | + // H(A1) = MD5(A1) |
|
486 | + $HA1 = md5($A1); |
|
487 | 487 | |
488 | - // A2 = Method ":" digest-uri-value |
|
489 | - $A2 = $this->request_method . ':' . $this->digest_uri; |
|
488 | + // A2 = Method ":" digest-uri-value |
|
489 | + $A2 = $this->request_method . ':' . $this->digest_uri; |
|
490 | 490 | |
491 | - // H(A2) |
|
492 | - $HA2 = md5($A2); |
|
491 | + // H(A2) |
|
492 | + $HA2 = md5($A2); |
|
493 | 493 | |
494 | - // KD(secret, data) = H(concat(secret, ":", data)) |
|
495 | - // if qop == auth: |
|
496 | - // request-digest = <"> < KD ( H(A1), unq(nonce-value) |
|
497 | - // ":" nc-value |
|
498 | - // ":" unq(cnonce-value) |
|
499 | - // ":" unq(qop-value) |
|
500 | - // ":" H(A2) |
|
501 | - // ) <"> |
|
502 | - // if qop is missing, |
|
503 | - // request-digest = <"> < KD ( H(A1), unq(nonce-value) ":" H(A2) ) > <"> |
|
494 | + // KD(secret, data) = H(concat(secret, ":", data)) |
|
495 | + // if qop == auth: |
|
496 | + // request-digest = <"> < KD ( H(A1), unq(nonce-value) |
|
497 | + // ":" nc-value |
|
498 | + // ":" unq(cnonce-value) |
|
499 | + // ":" unq(qop-value) |
|
500 | + // ":" H(A2) |
|
501 | + // ) <"> |
|
502 | + // if qop is missing, |
|
503 | + // request-digest = <"> < KD ( H(A1), unq(nonce-value) ":" H(A2) ) > <"> |
|
504 | 504 | |
505 | - $unhashedDigest = ''; |
|
506 | - $nonce = isset($digestRequest['nonce']) ? $digestRequest['nonce'] : ''; |
|
507 | - $cnonce = $nonce; |
|
508 | - if ($digestRequest['qop'] != '') { |
|
509 | - $unhashedDigest = $HA1 . ':' . $nonce . ':' . sprintf("%08d", $digestRequest['nc']) . ':' . $cnonce . ':' . $digestRequest['qop'] . ':' . $HA2; |
|
510 | - } else { |
|
511 | - $unhashedDigest = $HA1 . ':' . $nonce . ':' . $HA2; |
|
512 | - } |
|
505 | + $unhashedDigest = ''; |
|
506 | + $nonce = isset($digestRequest['nonce']) ? $digestRequest['nonce'] : ''; |
|
507 | + $cnonce = $nonce; |
|
508 | + if ($digestRequest['qop'] != '') { |
|
509 | + $unhashedDigest = $HA1 . ':' . $nonce . ':' . sprintf("%08d", $digestRequest['nc']) . ':' . $cnonce . ':' . $digestRequest['qop'] . ':' . $HA2; |
|
510 | + } else { |
|
511 | + $unhashedDigest = $HA1 . ':' . $nonce . ':' . $HA2; |
|
512 | + } |
|
513 | 513 | |
514 | - $hashedDigest = md5($unhashedDigest); |
|
514 | + $hashedDigest = md5($unhashedDigest); |
|
515 | 515 | |
516 | - $opaque = ''; |
|
517 | - if (isset($digestRequest['opaque'])) { |
|
518 | - $opaque = ', opaque="' . $digestRequest['opaque'] . '"'; |
|
519 | - } |
|
516 | + $opaque = ''; |
|
517 | + if (isset($digestRequest['opaque'])) { |
|
518 | + $opaque = ', opaque="' . $digestRequest['opaque'] . '"'; |
|
519 | + } |
|
520 | 520 | |
521 | - $this->setHeader('Authorization', 'Digest username="' . $username . '", realm="' . $digestRequest['realm'] . '", nonce="' . $nonce . '", uri="' . $this->digest_uri . $opaque . '", cnonce="' . $cnonce . '", nc=' . sprintf("%08x", $digestRequest['nc']) . ', qop="' . $digestRequest['qop'] . '", response="' . $hashedDigest . '"'); |
|
522 | - } |
|
523 | - } elseif ($authtype == 'certificate') { |
|
524 | - $this->certRequest = $certRequest; |
|
525 | - $this->debug('Authorization header not set for certificate'); |
|
526 | - } elseif ($authtype == 'ntlm') { |
|
527 | - // do nothing |
|
528 | - $this->debug('Authorization header not set for ntlm'); |
|
529 | - } |
|
530 | - $this->username = $username; |
|
531 | - $this->password = $password; |
|
532 | - $this->authtype = $authtype; |
|
533 | - $this->digestRequest = $digestRequest; |
|
534 | - } |
|
521 | + $this->setHeader('Authorization', 'Digest username="' . $username . '", realm="' . $digestRequest['realm'] . '", nonce="' . $nonce . '", uri="' . $this->digest_uri . $opaque . '", cnonce="' . $cnonce . '", nc=' . sprintf("%08x", $digestRequest['nc']) . ', qop="' . $digestRequest['qop'] . '", response="' . $hashedDigest . '"'); |
|
522 | + } |
|
523 | + } elseif ($authtype == 'certificate') { |
|
524 | + $this->certRequest = $certRequest; |
|
525 | + $this->debug('Authorization header not set for certificate'); |
|
526 | + } elseif ($authtype == 'ntlm') { |
|
527 | + // do nothing |
|
528 | + $this->debug('Authorization header not set for ntlm'); |
|
529 | + } |
|
530 | + $this->username = $username; |
|
531 | + $this->password = $password; |
|
532 | + $this->authtype = $authtype; |
|
533 | + $this->digestRequest = $digestRequest; |
|
534 | + } |
|
535 | 535 | |
536 | - /** |
|
537 | - * set the soapaction value |
|
538 | - * |
|
539 | - * @param string $soapaction |
|
540 | - * @access public |
|
541 | - */ |
|
542 | - function setSOAPAction($soapaction) { |
|
543 | - $this->setHeader('SOAPAction', '"' . $soapaction . '"'); |
|
544 | - } |
|
536 | + /** |
|
537 | + * set the soapaction value |
|
538 | + * |
|
539 | + * @param string $soapaction |
|
540 | + * @access public |
|
541 | + */ |
|
542 | + function setSOAPAction($soapaction) { |
|
543 | + $this->setHeader('SOAPAction', '"' . $soapaction . '"'); |
|
544 | + } |
|
545 | 545 | |
546 | - /** |
|
547 | - * use http encoding |
|
548 | - * |
|
549 | - * @param string $enc encoding style. supported values: gzip, deflate, or both |
|
550 | - * @access public |
|
551 | - */ |
|
552 | - function setEncoding($enc='gzip, deflate') { |
|
553 | - if (function_exists('gzdeflate')) { |
|
554 | - $this->protocol_version = '1.1'; |
|
555 | - $this->setHeader('Accept-Encoding', $enc); |
|
556 | - if (!isset($this->outgoing_headers['Connection'])) { |
|
557 | - $this->setHeader('Connection', 'close'); |
|
558 | - $this->persistentConnection = false; |
|
559 | - } |
|
560 | - // deprecated as of PHP 5.3.0 |
|
561 | - //set_magic_quotes_runtime(0); |
|
562 | - $this->encoding = $enc; |
|
563 | - } |
|
564 | - } |
|
546 | + /** |
|
547 | + * use http encoding |
|
548 | + * |
|
549 | + * @param string $enc encoding style. supported values: gzip, deflate, or both |
|
550 | + * @access public |
|
551 | + */ |
|
552 | + function setEncoding($enc='gzip, deflate') { |
|
553 | + if (function_exists('gzdeflate')) { |
|
554 | + $this->protocol_version = '1.1'; |
|
555 | + $this->setHeader('Accept-Encoding', $enc); |
|
556 | + if (!isset($this->outgoing_headers['Connection'])) { |
|
557 | + $this->setHeader('Connection', 'close'); |
|
558 | + $this->persistentConnection = false; |
|
559 | + } |
|
560 | + // deprecated as of PHP 5.3.0 |
|
561 | + //set_magic_quotes_runtime(0); |
|
562 | + $this->encoding = $enc; |
|
563 | + } |
|
564 | + } |
|
565 | 565 | |
566 | - /** |
|
567 | - * set proxy info here |
|
568 | - * |
|
569 | - * @param string $proxyhost use an empty string to remove proxy |
|
570 | - * @param string $proxyport |
|
571 | - * @param string $proxyusername |
|
572 | - * @param string $proxypassword |
|
573 | - * @param string $proxyauthtype (basic|ntlm) |
|
574 | - * @access public |
|
575 | - */ |
|
576 | - function setProxy($proxyhost, $proxyport, $proxyusername = '', $proxypassword = '', $proxyauthtype = 'basic') { |
|
577 | - if ($proxyhost) { |
|
578 | - $this->proxy = array( |
|
579 | - 'host' => $proxyhost, |
|
580 | - 'port' => $proxyport, |
|
581 | - 'username' => $proxyusername, |
|
582 | - 'password' => $proxypassword, |
|
583 | - 'authtype' => $proxyauthtype |
|
584 | - ); |
|
585 | - if ($proxyusername != '' && $proxypassword != '' && $proxyauthtype = 'basic') { |
|
586 | - $this->setHeader('Proxy-Authorization', ' Basic '.base64_encode($proxyusername.':'.$proxypassword)); |
|
587 | - } |
|
588 | - } else { |
|
589 | - $this->debug('remove proxy'); |
|
590 | - $proxy = null; |
|
591 | - unsetHeader('Proxy-Authorization'); |
|
592 | - } |
|
593 | - } |
|
566 | + /** |
|
567 | + * set proxy info here |
|
568 | + * |
|
569 | + * @param string $proxyhost use an empty string to remove proxy |
|
570 | + * @param string $proxyport |
|
571 | + * @param string $proxyusername |
|
572 | + * @param string $proxypassword |
|
573 | + * @param string $proxyauthtype (basic|ntlm) |
|
574 | + * @access public |
|
575 | + */ |
|
576 | + function setProxy($proxyhost, $proxyport, $proxyusername = '', $proxypassword = '', $proxyauthtype = 'basic') { |
|
577 | + if ($proxyhost) { |
|
578 | + $this->proxy = array( |
|
579 | + 'host' => $proxyhost, |
|
580 | + 'port' => $proxyport, |
|
581 | + 'username' => $proxyusername, |
|
582 | + 'password' => $proxypassword, |
|
583 | + 'authtype' => $proxyauthtype |
|
584 | + ); |
|
585 | + if ($proxyusername != '' && $proxypassword != '' && $proxyauthtype = 'basic') { |
|
586 | + $this->setHeader('Proxy-Authorization', ' Basic '.base64_encode($proxyusername.':'.$proxypassword)); |
|
587 | + } |
|
588 | + } else { |
|
589 | + $this->debug('remove proxy'); |
|
590 | + $proxy = null; |
|
591 | + unsetHeader('Proxy-Authorization'); |
|
592 | + } |
|
593 | + } |
|
594 | 594 | |
595 | 595 | |
596 | - /** |
|
597 | - * Test if the given string starts with a header that is to be skipped. |
|
598 | - * Skippable headers result from chunked transfer and proxy requests. |
|
599 | - * |
|
600 | - * @param string $data The string to check. |
|
601 | - * @returns boolean Whether a skippable header was found. |
|
602 | - * @access private |
|
603 | - */ |
|
604 | - function isSkippableCurlHeader(&$data) { |
|
605 | - $skipHeaders = array( 'HTTP/1.1 100', |
|
606 | - 'HTTP/1.0 301', |
|
607 | - 'HTTP/1.1 301', |
|
608 | - 'HTTP/1.0 302', |
|
609 | - 'HTTP/1.1 302', |
|
610 | - 'HTTP/1.0 401', |
|
611 | - 'HTTP/1.1 401', |
|
612 | - 'HTTP/1.0 200 Connection established'); |
|
613 | - foreach ($skipHeaders as $hd) { |
|
614 | - $prefix = substr($data, 0, strlen($hd)); |
|
615 | - if ($prefix == $hd) return true; |
|
616 | - } |
|
596 | + /** |
|
597 | + * Test if the given string starts with a header that is to be skipped. |
|
598 | + * Skippable headers result from chunked transfer and proxy requests. |
|
599 | + * |
|
600 | + * @param string $data The string to check. |
|
601 | + * @returns boolean Whether a skippable header was found. |
|
602 | + * @access private |
|
603 | + */ |
|
604 | + function isSkippableCurlHeader(&$data) { |
|
605 | + $skipHeaders = array( 'HTTP/1.1 100', |
|
606 | + 'HTTP/1.0 301', |
|
607 | + 'HTTP/1.1 301', |
|
608 | + 'HTTP/1.0 302', |
|
609 | + 'HTTP/1.1 302', |
|
610 | + 'HTTP/1.0 401', |
|
611 | + 'HTTP/1.1 401', |
|
612 | + 'HTTP/1.0 200 Connection established'); |
|
613 | + foreach ($skipHeaders as $hd) { |
|
614 | + $prefix = substr($data, 0, strlen($hd)); |
|
615 | + if ($prefix == $hd) return true; |
|
616 | + } |
|
617 | 617 | |
618 | - return false; |
|
619 | - } |
|
618 | + return false; |
|
619 | + } |
|
620 | 620 | |
621 | - /** |
|
622 | - * decode a string that is encoded w/ "chunked' transfer encoding |
|
623 | - * as defined in RFC2068 19.4.6 |
|
624 | - * |
|
625 | - * @param string $buffer |
|
626 | - * @param string $lb |
|
627 | - * @returns string |
|
628 | - * @access public |
|
629 | - * @deprecated |
|
630 | - */ |
|
631 | - function decodeChunked($buffer, $lb){ |
|
632 | - // length := 0 |
|
633 | - $length = 0; |
|
634 | - $new = ''; |
|
621 | + /** |
|
622 | + * decode a string that is encoded w/ "chunked' transfer encoding |
|
623 | + * as defined in RFC2068 19.4.6 |
|
624 | + * |
|
625 | + * @param string $buffer |
|
626 | + * @param string $lb |
|
627 | + * @returns string |
|
628 | + * @access public |
|
629 | + * @deprecated |
|
630 | + */ |
|
631 | + function decodeChunked($buffer, $lb){ |
|
632 | + // length := 0 |
|
633 | + $length = 0; |
|
634 | + $new = ''; |
|
635 | 635 | |
636 | - // read chunk-size, chunk-extension (if any) and CRLF |
|
637 | - // get the position of the linebreak |
|
638 | - $chunkend = strpos($buffer, $lb); |
|
639 | - if ($chunkend == FALSE) { |
|
640 | - $this->debug('no linebreak found in decodeChunked'); |
|
641 | - return $new; |
|
642 | - } |
|
643 | - $temp = substr($buffer,0,$chunkend); |
|
644 | - $chunk_size = hexdec( trim($temp) ); |
|
645 | - $chunkstart = $chunkend + strlen($lb); |
|
646 | - // while (chunk-size > 0) { |
|
647 | - while ($chunk_size > 0) { |
|
648 | - $this->debug("chunkstart: $chunkstart chunk_size: $chunk_size"); |
|
649 | - $chunkend = strpos( $buffer, $lb, $chunkstart + $chunk_size); |
|
636 | + // read chunk-size, chunk-extension (if any) and CRLF |
|
637 | + // get the position of the linebreak |
|
638 | + $chunkend = strpos($buffer, $lb); |
|
639 | + if ($chunkend == FALSE) { |
|
640 | + $this->debug('no linebreak found in decodeChunked'); |
|
641 | + return $new; |
|
642 | + } |
|
643 | + $temp = substr($buffer,0,$chunkend); |
|
644 | + $chunk_size = hexdec( trim($temp) ); |
|
645 | + $chunkstart = $chunkend + strlen($lb); |
|
646 | + // while (chunk-size > 0) { |
|
647 | + while ($chunk_size > 0) { |
|
648 | + $this->debug("chunkstart: $chunkstart chunk_size: $chunk_size"); |
|
649 | + $chunkend = strpos( $buffer, $lb, $chunkstart + $chunk_size); |
|
650 | 650 | |
651 | - // Just in case we got a broken connection |
|
652 | - if ($chunkend == FALSE) { |
|
653 | - $chunk = substr($buffer,$chunkstart); |
|
654 | - // append chunk-data to entity-body |
|
655 | - $new .= $chunk; |
|
656 | - $length += strlen($chunk); |
|
657 | - break; |
|
658 | - } |
|
651 | + // Just in case we got a broken connection |
|
652 | + if ($chunkend == FALSE) { |
|
653 | + $chunk = substr($buffer,$chunkstart); |
|
654 | + // append chunk-data to entity-body |
|
655 | + $new .= $chunk; |
|
656 | + $length += strlen($chunk); |
|
657 | + break; |
|
658 | + } |
|
659 | 659 | |
660 | - // read chunk-data and CRLF |
|
661 | - $chunk = substr($buffer,$chunkstart,$chunkend-$chunkstart); |
|
662 | - // append chunk-data to entity-body |
|
663 | - $new .= $chunk; |
|
664 | - // length := length + chunk-size |
|
665 | - $length += strlen($chunk); |
|
666 | - // read chunk-size and CRLF |
|
667 | - $chunkstart = $chunkend + strlen($lb); |
|
660 | + // read chunk-data and CRLF |
|
661 | + $chunk = substr($buffer,$chunkstart,$chunkend-$chunkstart); |
|
662 | + // append chunk-data to entity-body |
|
663 | + $new .= $chunk; |
|
664 | + // length := length + chunk-size |
|
665 | + $length += strlen($chunk); |
|
666 | + // read chunk-size and CRLF |
|
667 | + $chunkstart = $chunkend + strlen($lb); |
|
668 | 668 | |
669 | - $chunkend = strpos($buffer, $lb, $chunkstart) + strlen($lb); |
|
670 | - if ($chunkend == FALSE) { |
|
671 | - break; //Just in case we got a broken connection |
|
672 | - } |
|
673 | - $temp = substr($buffer,$chunkstart,$chunkend-$chunkstart); |
|
674 | - $chunk_size = hexdec( trim($temp) ); |
|
675 | - $chunkstart = $chunkend; |
|
676 | - } |
|
677 | - return $new; |
|
678 | - } |
|
669 | + $chunkend = strpos($buffer, $lb, $chunkstart) + strlen($lb); |
|
670 | + if ($chunkend == FALSE) { |
|
671 | + break; //Just in case we got a broken connection |
|
672 | + } |
|
673 | + $temp = substr($buffer,$chunkstart,$chunkend-$chunkstart); |
|
674 | + $chunk_size = hexdec( trim($temp) ); |
|
675 | + $chunkstart = $chunkend; |
|
676 | + } |
|
677 | + return $new; |
|
678 | + } |
|
679 | 679 | |
680 | - /** |
|
681 | - * Writes the payload, including HTTP headers, to $this->outgoing_payload. |
|
682 | - * |
|
683 | - * @param string $data HTTP body |
|
684 | - * @param string $cookie_str data for HTTP Cookie header |
|
685 | - * @return void |
|
686 | - * @access private |
|
687 | - */ |
|
688 | - function buildPayload($data, $cookie_str = '') { |
|
689 | - // Note: for cURL connections, $this->outgoing_payload is ignored, |
|
690 | - // as is the Content-Length header, but these are still created as |
|
691 | - // debugging guides. |
|
680 | + /** |
|
681 | + * Writes the payload, including HTTP headers, to $this->outgoing_payload. |
|
682 | + * |
|
683 | + * @param string $data HTTP body |
|
684 | + * @param string $cookie_str data for HTTP Cookie header |
|
685 | + * @return void |
|
686 | + * @access private |
|
687 | + */ |
|
688 | + function buildPayload($data, $cookie_str = '') { |
|
689 | + // Note: for cURL connections, $this->outgoing_payload is ignored, |
|
690 | + // as is the Content-Length header, but these are still created as |
|
691 | + // debugging guides. |
|
692 | 692 | |
693 | - // add content-length header |
|
694 | - if ($this->request_method != 'GET') { |
|
695 | - $this->setHeader('Content-Length', strlen($data)); |
|
696 | - } |
|
693 | + // add content-length header |
|
694 | + if ($this->request_method != 'GET') { |
|
695 | + $this->setHeader('Content-Length', strlen($data)); |
|
696 | + } |
|
697 | 697 | |
698 | - // start building outgoing payload: |
|
699 | - if ($this->proxy) { |
|
700 | - $uri = $this->url; |
|
701 | - } else { |
|
702 | - $uri = $this->uri; |
|
703 | - } |
|
704 | - $req = "$this->request_method $uri HTTP/$this->protocol_version"; |
|
705 | - $this->debug("HTTP request: $req"); |
|
706 | - $this->outgoing_payload = "$req\r\n"; |
|
698 | + // start building outgoing payload: |
|
699 | + if ($this->proxy) { |
|
700 | + $uri = $this->url; |
|
701 | + } else { |
|
702 | + $uri = $this->uri; |
|
703 | + } |
|
704 | + $req = "$this->request_method $uri HTTP/$this->protocol_version"; |
|
705 | + $this->debug("HTTP request: $req"); |
|
706 | + $this->outgoing_payload = "$req\r\n"; |
|
707 | 707 | |
708 | - // loop thru headers, serializing |
|
709 | - foreach($this->outgoing_headers as $k => $v){ |
|
710 | - $hdr = $k.': '.$v; |
|
711 | - $this->debug("HTTP header: $hdr"); |
|
712 | - $this->outgoing_payload .= "$hdr\r\n"; |
|
713 | - } |
|
708 | + // loop thru headers, serializing |
|
709 | + foreach($this->outgoing_headers as $k => $v){ |
|
710 | + $hdr = $k.': '.$v; |
|
711 | + $this->debug("HTTP header: $hdr"); |
|
712 | + $this->outgoing_payload .= "$hdr\r\n"; |
|
713 | + } |
|
714 | 714 | |
715 | - // add any cookies |
|
716 | - if ($cookie_str != '') { |
|
717 | - $hdr = 'Cookie: '.$cookie_str; |
|
718 | - $this->debug("HTTP header: $hdr"); |
|
719 | - $this->outgoing_payload .= "$hdr\r\n"; |
|
720 | - } |
|
715 | + // add any cookies |
|
716 | + if ($cookie_str != '') { |
|
717 | + $hdr = 'Cookie: '.$cookie_str; |
|
718 | + $this->debug("HTTP header: $hdr"); |
|
719 | + $this->outgoing_payload .= "$hdr\r\n"; |
|
720 | + } |
|
721 | 721 | |
722 | - // header/body separator |
|
723 | - $this->outgoing_payload .= "\r\n"; |
|
722 | + // header/body separator |
|
723 | + $this->outgoing_payload .= "\r\n"; |
|
724 | 724 | |
725 | - // add data |
|
726 | - $this->outgoing_payload .= $data; |
|
727 | - } |
|
725 | + // add data |
|
726 | + $this->outgoing_payload .= $data; |
|
727 | + } |
|
728 | 728 | |
729 | - /** |
|
730 | - * sends the SOAP request via HTTP[S] |
|
731 | - * |
|
732 | - * @param string $data message data |
|
733 | - * @param array $cookies cookies to send |
|
734 | - * @return boolean true if OK, false if problem |
|
735 | - * @access private |
|
736 | - */ |
|
737 | - function sendRequest($data, $cookies = NULL) { |
|
738 | - // build cookie string |
|
739 | - $cookie_str = $this->getCookiesForRequest($cookies, (($this->scheme == 'ssl') || ($this->scheme == 'https'))); |
|
729 | + /** |
|
730 | + * sends the SOAP request via HTTP[S] |
|
731 | + * |
|
732 | + * @param string $data message data |
|
733 | + * @param array $cookies cookies to send |
|
734 | + * @return boolean true if OK, false if problem |
|
735 | + * @access private |
|
736 | + */ |
|
737 | + function sendRequest($data, $cookies = NULL) { |
|
738 | + // build cookie string |
|
739 | + $cookie_str = $this->getCookiesForRequest($cookies, (($this->scheme == 'ssl') || ($this->scheme == 'https'))); |
|
740 | 740 | |
741 | - // build payload |
|
742 | - $this->buildPayload($data, $cookie_str); |
|
741 | + // build payload |
|
742 | + $this->buildPayload($data, $cookie_str); |
|
743 | 743 | |
744 | - if ($this->io_method() == 'socket') { |
|
745 | - // send payload |
|
746 | - if(!fputs($this->fp, $this->outgoing_payload, strlen($this->outgoing_payload))) { |
|
747 | - $this->setError('couldn\'t write message data to socket'); |
|
748 | - $this->debug('couldn\'t write message data to socket'); |
|
749 | - return false; |
|
750 | - } |
|
751 | - $this->debug('wrote data to socket, length = ' . strlen($this->outgoing_payload)); |
|
752 | - return true; |
|
753 | - } else if ($this->io_method() == 'curl') { |
|
754 | - // set payload |
|
755 | - // cURL does say this should only be the verb, and in fact it |
|
756 | - // turns out that the URI and HTTP version are appended to this, which |
|
757 | - // some servers refuse to work with (so we no longer use this method!) |
|
758 | - //$this->setCurlOption(CURLOPT_CUSTOMREQUEST, $this->outgoing_payload); |
|
759 | - $curl_headers = array(); |
|
760 | - foreach($this->outgoing_headers as $k => $v){ |
|
761 | - if ($k == 'Connection' || $k == 'Content-Length' || $k == 'Host' || $k == 'Authorization' || $k == 'Proxy-Authorization') { |
|
762 | - $this->debug("Skip cURL header $k: $v"); |
|
763 | - } else { |
|
764 | - $curl_headers[] = "$k: $v"; |
|
765 | - } |
|
766 | - } |
|
767 | - if ($cookie_str != '') { |
|
768 | - $curl_headers[] = 'Cookie: ' . $cookie_str; |
|
769 | - } |
|
770 | - $this->setCurlOption(CURLOPT_HTTPHEADER, $curl_headers); |
|
771 | - $this->debug('set cURL HTTP headers'); |
|
772 | - if ($this->request_method == "POST") { |
|
773 | - $this->setCurlOption(CURLOPT_POST, 1); |
|
774 | - $this->setCurlOption(CURLOPT_POSTFIELDS, $data); |
|
775 | - $this->debug('set cURL POST data'); |
|
776 | - } else { |
|
777 | - } |
|
778 | - // insert custom user-set cURL options |
|
779 | - foreach ($this->ch_options as $key => $val) { |
|
780 | - $this->setCurlOption($key, $val); |
|
781 | - } |
|
744 | + if ($this->io_method() == 'socket') { |
|
745 | + // send payload |
|
746 | + if(!fputs($this->fp, $this->outgoing_payload, strlen($this->outgoing_payload))) { |
|
747 | + $this->setError('couldn\'t write message data to socket'); |
|
748 | + $this->debug('couldn\'t write message data to socket'); |
|
749 | + return false; |
|
750 | + } |
|
751 | + $this->debug('wrote data to socket, length = ' . strlen($this->outgoing_payload)); |
|
752 | + return true; |
|
753 | + } else if ($this->io_method() == 'curl') { |
|
754 | + // set payload |
|
755 | + // cURL does say this should only be the verb, and in fact it |
|
756 | + // turns out that the URI and HTTP version are appended to this, which |
|
757 | + // some servers refuse to work with (so we no longer use this method!) |
|
758 | + //$this->setCurlOption(CURLOPT_CUSTOMREQUEST, $this->outgoing_payload); |
|
759 | + $curl_headers = array(); |
|
760 | + foreach($this->outgoing_headers as $k => $v){ |
|
761 | + if ($k == 'Connection' || $k == 'Content-Length' || $k == 'Host' || $k == 'Authorization' || $k == 'Proxy-Authorization') { |
|
762 | + $this->debug("Skip cURL header $k: $v"); |
|
763 | + } else { |
|
764 | + $curl_headers[] = "$k: $v"; |
|
765 | + } |
|
766 | + } |
|
767 | + if ($cookie_str != '') { |
|
768 | + $curl_headers[] = 'Cookie: ' . $cookie_str; |
|
769 | + } |
|
770 | + $this->setCurlOption(CURLOPT_HTTPHEADER, $curl_headers); |
|
771 | + $this->debug('set cURL HTTP headers'); |
|
772 | + if ($this->request_method == "POST") { |
|
773 | + $this->setCurlOption(CURLOPT_POST, 1); |
|
774 | + $this->setCurlOption(CURLOPT_POSTFIELDS, $data); |
|
775 | + $this->debug('set cURL POST data'); |
|
776 | + } else { |
|
777 | + } |
|
778 | + // insert custom user-set cURL options |
|
779 | + foreach ($this->ch_options as $key => $val) { |
|
780 | + $this->setCurlOption($key, $val); |
|
781 | + } |
|
782 | 782 | |
783 | - $this->debug('set cURL payload'); |
|
784 | - return true; |
|
785 | - } |
|
786 | - } |
|
783 | + $this->debug('set cURL payload'); |
|
784 | + return true; |
|
785 | + } |
|
786 | + } |
|
787 | 787 | |
788 | - /** |
|
789 | - * gets the SOAP response via HTTP[S] |
|
790 | - * |
|
791 | - * @return string the response (also sets member variables like incoming_payload) |
|
792 | - * @access private |
|
793 | - */ |
|
794 | - function getResponse(){ |
|
795 | - $this->incoming_payload = ''; |
|
788 | + /** |
|
789 | + * gets the SOAP response via HTTP[S] |
|
790 | + * |
|
791 | + * @return string the response (also sets member variables like incoming_payload) |
|
792 | + * @access private |
|
793 | + */ |
|
794 | + function getResponse(){ |
|
795 | + $this->incoming_payload = ''; |
|
796 | 796 | |
797 | - if ($this->io_method() == 'socket') { |
|
798 | - // loop until headers have been retrieved |
|
799 | - $data = ''; |
|
800 | - while (!isset($lb)){ |
|
797 | + if ($this->io_method() == 'socket') { |
|
798 | + // loop until headers have been retrieved |
|
799 | + $data = ''; |
|
800 | + while (!isset($lb)){ |
|
801 | 801 | |
802 | - // We might EOF during header read. |
|
803 | - if(feof($this->fp)) { |
|
804 | - $this->incoming_payload = $data; |
|
805 | - $this->debug('found no headers before EOF after length ' . strlen($data)); |
|
806 | - $this->debug("received before EOF:\n" . $data); |
|
807 | - $this->setError('server failed to send headers'); |
|
808 | - return false; |
|
809 | - } |
|
802 | + // We might EOF during header read. |
|
803 | + if(feof($this->fp)) { |
|
804 | + $this->incoming_payload = $data; |
|
805 | + $this->debug('found no headers before EOF after length ' . strlen($data)); |
|
806 | + $this->debug("received before EOF:\n" . $data); |
|
807 | + $this->setError('server failed to send headers'); |
|
808 | + return false; |
|
809 | + } |
|
810 | 810 | |
811 | - $tmp = fgets($this->fp, 256); |
|
812 | - $tmplen = strlen($tmp); |
|
813 | - $this->debug("read line of $tmplen bytes: " . trim($tmp)); |
|
811 | + $tmp = fgets($this->fp, 256); |
|
812 | + $tmplen = strlen($tmp); |
|
813 | + $this->debug("read line of $tmplen bytes: " . trim($tmp)); |
|
814 | 814 | |
815 | - if ($tmplen == 0) { |
|
816 | - $this->incoming_payload = $data; |
|
817 | - $this->debug('socket read of headers timed out after length ' . strlen($data)); |
|
818 | - $this->debug("read before timeout: " . $data); |
|
819 | - $this->setError('socket read of headers timed out'); |
|
820 | - return false; |
|
821 | - } |
|
815 | + if ($tmplen == 0) { |
|
816 | + $this->incoming_payload = $data; |
|
817 | + $this->debug('socket read of headers timed out after length ' . strlen($data)); |
|
818 | + $this->debug("read before timeout: " . $data); |
|
819 | + $this->setError('socket read of headers timed out'); |
|
820 | + return false; |
|
821 | + } |
|
822 | 822 | |
823 | - $data .= $tmp; |
|
824 | - $pos = strpos($data,"\r\n\r\n"); |
|
825 | - if($pos > 1){ |
|
826 | - $lb = "\r\n"; |
|
827 | - } else { |
|
828 | - $pos = strpos($data,"\n\n"); |
|
829 | - if($pos > 1){ |
|
830 | - $lb = "\n"; |
|
831 | - } |
|
832 | - } |
|
833 | - // remove 100 headers |
|
834 | - if (isset($lb) && preg_match('/^HTTP\/1.1 100/',$data)) { |
|
835 | - unset($lb); |
|
836 | - $data = ''; |
|
837 | - }// |
|
838 | - } |
|
839 | - // store header data |
|
840 | - $this->incoming_payload .= $data; |
|
841 | - $this->debug('found end of headers after length ' . strlen($data)); |
|
842 | - // process headers |
|
843 | - $header_data = trim(substr($data,0,$pos)); |
|
844 | - $header_array = explode($lb,$header_data); |
|
845 | - $this->incoming_headers = array(); |
|
846 | - $this->incoming_cookies = array(); |
|
847 | - foreach($header_array as $header_line){ |
|
848 | - $arr = explode(':',$header_line, 2); |
|
849 | - if(count($arr) > 1){ |
|
850 | - $header_name = strtolower(trim($arr[0])); |
|
851 | - $this->incoming_headers[$header_name] = trim($arr[1]); |
|
852 | - if ($header_name == 'set-cookie') { |
|
853 | - // TODO: allow multiple cookies from parseCookie |
|
854 | - $cookie = $this->parseCookie(trim($arr[1])); |
|
855 | - if ($cookie) { |
|
856 | - $this->incoming_cookies[] = $cookie; |
|
857 | - $this->debug('found cookie: ' . $cookie['name'] . ' = ' . $cookie['value']); |
|
858 | - } else { |
|
859 | - $this->debug('did not find cookie in ' . trim($arr[1])); |
|
860 | - } |
|
861 | - } |
|
862 | - } else if (isset($header_name)) { |
|
863 | - // append continuation line to previous header |
|
864 | - $this->incoming_headers[$header_name] .= $lb . ' ' . $header_line; |
|
865 | - } |
|
866 | - } |
|
823 | + $data .= $tmp; |
|
824 | + $pos = strpos($data,"\r\n\r\n"); |
|
825 | + if($pos > 1){ |
|
826 | + $lb = "\r\n"; |
|
827 | + } else { |
|
828 | + $pos = strpos($data,"\n\n"); |
|
829 | + if($pos > 1){ |
|
830 | + $lb = "\n"; |
|
831 | + } |
|
832 | + } |
|
833 | + // remove 100 headers |
|
834 | + if (isset($lb) && preg_match('/^HTTP\/1.1 100/',$data)) { |
|
835 | + unset($lb); |
|
836 | + $data = ''; |
|
837 | + }// |
|
838 | + } |
|
839 | + // store header data |
|
840 | + $this->incoming_payload .= $data; |
|
841 | + $this->debug('found end of headers after length ' . strlen($data)); |
|
842 | + // process headers |
|
843 | + $header_data = trim(substr($data,0,$pos)); |
|
844 | + $header_array = explode($lb,$header_data); |
|
845 | + $this->incoming_headers = array(); |
|
846 | + $this->incoming_cookies = array(); |
|
847 | + foreach($header_array as $header_line){ |
|
848 | + $arr = explode(':',$header_line, 2); |
|
849 | + if(count($arr) > 1){ |
|
850 | + $header_name = strtolower(trim($arr[0])); |
|
851 | + $this->incoming_headers[$header_name] = trim($arr[1]); |
|
852 | + if ($header_name == 'set-cookie') { |
|
853 | + // TODO: allow multiple cookies from parseCookie |
|
854 | + $cookie = $this->parseCookie(trim($arr[1])); |
|
855 | + if ($cookie) { |
|
856 | + $this->incoming_cookies[] = $cookie; |
|
857 | + $this->debug('found cookie: ' . $cookie['name'] . ' = ' . $cookie['value']); |
|
858 | + } else { |
|
859 | + $this->debug('did not find cookie in ' . trim($arr[1])); |
|
860 | + } |
|
861 | + } |
|
862 | + } else if (isset($header_name)) { |
|
863 | + // append continuation line to previous header |
|
864 | + $this->incoming_headers[$header_name] .= $lb . ' ' . $header_line; |
|
865 | + } |
|
866 | + } |
|
867 | 867 | |
868 | - // loop until msg has been received |
|
869 | - if (isset($this->incoming_headers['transfer-encoding']) && strtolower($this->incoming_headers['transfer-encoding']) == 'chunked') { |
|
870 | - $content_length = 2147483647; // ignore any content-length header |
|
871 | - $chunked = true; |
|
872 | - $this->debug("want to read chunked content"); |
|
873 | - } elseif (isset($this->incoming_headers['content-length'])) { |
|
874 | - $content_length = $this->incoming_headers['content-length']; |
|
875 | - $chunked = false; |
|
876 | - $this->debug("want to read content of length $content_length"); |
|
877 | - } else { |
|
878 | - $content_length = 2147483647; |
|
879 | - $chunked = false; |
|
880 | - $this->debug("want to read content to EOF"); |
|
881 | - } |
|
882 | - $data = ''; |
|
883 | - do { |
|
884 | - if ($chunked) { |
|
885 | - $tmp = fgets($this->fp, 256); |
|
886 | - $tmplen = strlen($tmp); |
|
887 | - $this->debug("read chunk line of $tmplen bytes"); |
|
888 | - if ($tmplen == 0) { |
|
889 | - $this->incoming_payload = $data; |
|
890 | - $this->debug('socket read of chunk length timed out after length ' . strlen($data)); |
|
891 | - $this->debug("read before timeout:\n" . $data); |
|
892 | - $this->setError('socket read of chunk length timed out'); |
|
893 | - return false; |
|
894 | - } |
|
895 | - $content_length = hexdec(trim($tmp)); |
|
896 | - $this->debug("chunk length $content_length"); |
|
897 | - } |
|
898 | - $strlen = 0; |
|
899 | - while (($strlen < $content_length) && (!feof($this->fp))) { |
|
900 | - $readlen = min(8192, $content_length - $strlen); |
|
901 | - $tmp = fread($this->fp, $readlen); |
|
902 | - $tmplen = strlen($tmp); |
|
903 | - $this->debug("read buffer of $tmplen bytes"); |
|
904 | - if (($tmplen == 0) && (!feof($this->fp))) { |
|
905 | - $this->incoming_payload = $data; |
|
906 | - $this->debug('socket read of body timed out after length ' . strlen($data)); |
|
907 | - $this->debug("read before timeout:\n" . $data); |
|
908 | - $this->setError('socket read of body timed out'); |
|
909 | - return false; |
|
910 | - } |
|
911 | - $strlen += $tmplen; |
|
912 | - $data .= $tmp; |
|
913 | - } |
|
914 | - if ($chunked && ($content_length > 0)) { |
|
915 | - $tmp = fgets($this->fp, 256); |
|
916 | - $tmplen = strlen($tmp); |
|
917 | - $this->debug("read chunk terminator of $tmplen bytes"); |
|
918 | - if ($tmplen == 0) { |
|
919 | - $this->incoming_payload = $data; |
|
920 | - $this->debug('socket read of chunk terminator timed out after length ' . strlen($data)); |
|
921 | - $this->debug("read before timeout:\n" . $data); |
|
922 | - $this->setError('socket read of chunk terminator timed out'); |
|
923 | - return false; |
|
924 | - } |
|
925 | - } |
|
926 | - } while ($chunked && ($content_length > 0) && (!feof($this->fp))); |
|
927 | - if (feof($this->fp)) { |
|
928 | - $this->debug('read to EOF'); |
|
929 | - } |
|
930 | - $this->debug('read body of length ' . strlen($data)); |
|
931 | - $this->incoming_payload .= $data; |
|
932 | - $this->debug('received a total of '.strlen($this->incoming_payload).' bytes of data from server'); |
|
868 | + // loop until msg has been received |
|
869 | + if (isset($this->incoming_headers['transfer-encoding']) && strtolower($this->incoming_headers['transfer-encoding']) == 'chunked') { |
|
870 | + $content_length = 2147483647; // ignore any content-length header |
|
871 | + $chunked = true; |
|
872 | + $this->debug("want to read chunked content"); |
|
873 | + } elseif (isset($this->incoming_headers['content-length'])) { |
|
874 | + $content_length = $this->incoming_headers['content-length']; |
|
875 | + $chunked = false; |
|
876 | + $this->debug("want to read content of length $content_length"); |
|
877 | + } else { |
|
878 | + $content_length = 2147483647; |
|
879 | + $chunked = false; |
|
880 | + $this->debug("want to read content to EOF"); |
|
881 | + } |
|
882 | + $data = ''; |
|
883 | + do { |
|
884 | + if ($chunked) { |
|
885 | + $tmp = fgets($this->fp, 256); |
|
886 | + $tmplen = strlen($tmp); |
|
887 | + $this->debug("read chunk line of $tmplen bytes"); |
|
888 | + if ($tmplen == 0) { |
|
889 | + $this->incoming_payload = $data; |
|
890 | + $this->debug('socket read of chunk length timed out after length ' . strlen($data)); |
|
891 | + $this->debug("read before timeout:\n" . $data); |
|
892 | + $this->setError('socket read of chunk length timed out'); |
|
893 | + return false; |
|
894 | + } |
|
895 | + $content_length = hexdec(trim($tmp)); |
|
896 | + $this->debug("chunk length $content_length"); |
|
897 | + } |
|
898 | + $strlen = 0; |
|
899 | + while (($strlen < $content_length) && (!feof($this->fp))) { |
|
900 | + $readlen = min(8192, $content_length - $strlen); |
|
901 | + $tmp = fread($this->fp, $readlen); |
|
902 | + $tmplen = strlen($tmp); |
|
903 | + $this->debug("read buffer of $tmplen bytes"); |
|
904 | + if (($tmplen == 0) && (!feof($this->fp))) { |
|
905 | + $this->incoming_payload = $data; |
|
906 | + $this->debug('socket read of body timed out after length ' . strlen($data)); |
|
907 | + $this->debug("read before timeout:\n" . $data); |
|
908 | + $this->setError('socket read of body timed out'); |
|
909 | + return false; |
|
910 | + } |
|
911 | + $strlen += $tmplen; |
|
912 | + $data .= $tmp; |
|
913 | + } |
|
914 | + if ($chunked && ($content_length > 0)) { |
|
915 | + $tmp = fgets($this->fp, 256); |
|
916 | + $tmplen = strlen($tmp); |
|
917 | + $this->debug("read chunk terminator of $tmplen bytes"); |
|
918 | + if ($tmplen == 0) { |
|
919 | + $this->incoming_payload = $data; |
|
920 | + $this->debug('socket read of chunk terminator timed out after length ' . strlen($data)); |
|
921 | + $this->debug("read before timeout:\n" . $data); |
|
922 | + $this->setError('socket read of chunk terminator timed out'); |
|
923 | + return false; |
|
924 | + } |
|
925 | + } |
|
926 | + } while ($chunked && ($content_length > 0) && (!feof($this->fp))); |
|
927 | + if (feof($this->fp)) { |
|
928 | + $this->debug('read to EOF'); |
|
929 | + } |
|
930 | + $this->debug('read body of length ' . strlen($data)); |
|
931 | + $this->incoming_payload .= $data; |
|
932 | + $this->debug('received a total of '.strlen($this->incoming_payload).' bytes of data from server'); |
|
933 | 933 | |
934 | - // close filepointer |
|
935 | - if( |
|
936 | - (isset($this->incoming_headers['connection']) && strtolower($this->incoming_headers['connection']) == 'close') || |
|
937 | - (! $this->persistentConnection) || feof($this->fp)){ |
|
938 | - fclose($this->fp); |
|
939 | - $this->fp = false; |
|
940 | - $this->debug('closed socket'); |
|
941 | - } |
|
934 | + // close filepointer |
|
935 | + if( |
|
936 | + (isset($this->incoming_headers['connection']) && strtolower($this->incoming_headers['connection']) == 'close') || |
|
937 | + (! $this->persistentConnection) || feof($this->fp)){ |
|
938 | + fclose($this->fp); |
|
939 | + $this->fp = false; |
|
940 | + $this->debug('closed socket'); |
|
941 | + } |
|
942 | 942 | |
943 | - // connection was closed unexpectedly |
|
944 | - if($this->incoming_payload == ''){ |
|
945 | - $this->setError('no response from server'); |
|
946 | - return false; |
|
947 | - } |
|
943 | + // connection was closed unexpectedly |
|
944 | + if($this->incoming_payload == ''){ |
|
945 | + $this->setError('no response from server'); |
|
946 | + return false; |
|
947 | + } |
|
948 | 948 | |
949 | - // decode transfer-encoding |
|
949 | + // decode transfer-encoding |
|
950 | 950 | // if(isset($this->incoming_headers['transfer-encoding']) && strtolower($this->incoming_headers['transfer-encoding']) == 'chunked'){ |
951 | 951 | // if(!$data = $this->decodeChunked($data, $lb)){ |
952 | 952 | // $this->setError('Decoding of chunked data failed'); |
953 | 953 | // return false; |
954 | 954 | // } |
955 | - //print "<pre>\nde-chunked:\n---------------\n$data\n\n---------------\n</pre>"; |
|
956 | - // set decoded payload |
|
955 | + //print "<pre>\nde-chunked:\n---------------\n$data\n\n---------------\n</pre>"; |
|
956 | + // set decoded payload |
|
957 | 957 | // $this->incoming_payload = $header_data.$lb.$lb.$data; |
958 | 958 | // } |
959 | 959 | |
960 | - } else if ($this->io_method() == 'curl') { |
|
961 | - // send and receive |
|
962 | - $this->debug('send and receive with cURL'); |
|
963 | - $this->incoming_payload = curl_exec($this->ch); |
|
964 | - $data = $this->incoming_payload; |
|
960 | + } else if ($this->io_method() == 'curl') { |
|
961 | + // send and receive |
|
962 | + $this->debug('send and receive with cURL'); |
|
963 | + $this->incoming_payload = curl_exec($this->ch); |
|
964 | + $data = $this->incoming_payload; |
|
965 | 965 | |
966 | 966 | $cErr = curl_error($this->ch); |
967 | - if ($cErr != '') { |
|
968 | - $err = 'cURL ERROR: '.curl_errno($this->ch).': '.$cErr.'<br>'; |
|
969 | - // TODO: there is a PHP bug that can cause this to SEGV for CURLINFO_CONTENT_TYPE |
|
970 | - foreach(curl_getinfo($this->ch) as $k => $v){ |
|
971 | - $err .= "$k: $v<br>"; |
|
972 | - } |
|
973 | - $this->debug($err); |
|
974 | - $this->setError($err); |
|
975 | - curl_close($this->ch); |
|
976 | - return false; |
|
977 | - } else { |
|
978 | - //echo '<pre>'; |
|
979 | - //var_dump(curl_getinfo($this->ch)); |
|
980 | - //echo '</pre>'; |
|
981 | - } |
|
982 | - // close curl |
|
983 | - $this->debug('No cURL error, closing cURL'); |
|
984 | - curl_close($this->ch); |
|
967 | + if ($cErr != '') { |
|
968 | + $err = 'cURL ERROR: '.curl_errno($this->ch).': '.$cErr.'<br>'; |
|
969 | + // TODO: there is a PHP bug that can cause this to SEGV for CURLINFO_CONTENT_TYPE |
|
970 | + foreach(curl_getinfo($this->ch) as $k => $v){ |
|
971 | + $err .= "$k: $v<br>"; |
|
972 | + } |
|
973 | + $this->debug($err); |
|
974 | + $this->setError($err); |
|
975 | + curl_close($this->ch); |
|
976 | + return false; |
|
977 | + } else { |
|
978 | + //echo '<pre>'; |
|
979 | + //var_dump(curl_getinfo($this->ch)); |
|
980 | + //echo '</pre>'; |
|
981 | + } |
|
982 | + // close curl |
|
983 | + $this->debug('No cURL error, closing cURL'); |
|
984 | + curl_close($this->ch); |
|
985 | 985 | |
986 | - // try removing skippable headers |
|
987 | - $savedata = $data; |
|
988 | - while ($this->isSkippableCurlHeader($data)) { |
|
989 | - $this->debug("Found HTTP header to skip"); |
|
990 | - if ($pos = strpos($data,"\r\n\r\n")) { |
|
991 | - $data = ltrim(substr($data,$pos)); |
|
992 | - } elseif($pos = strpos($data,"\n\n") ) { |
|
993 | - $data = ltrim(substr($data,$pos)); |
|
994 | - } |
|
995 | - } |
|
986 | + // try removing skippable headers |
|
987 | + $savedata = $data; |
|
988 | + while ($this->isSkippableCurlHeader($data)) { |
|
989 | + $this->debug("Found HTTP header to skip"); |
|
990 | + if ($pos = strpos($data,"\r\n\r\n")) { |
|
991 | + $data = ltrim(substr($data,$pos)); |
|
992 | + } elseif($pos = strpos($data,"\n\n") ) { |
|
993 | + $data = ltrim(substr($data,$pos)); |
|
994 | + } |
|
995 | + } |
|
996 | 996 | |
997 | - if ($data == '') { |
|
998 | - // have nothing left; just remove 100 header(s) |
|
999 | - $data = $savedata; |
|
1000 | - while (preg_match('/^HTTP\/1.1 100/',$data)) { |
|
1001 | - if ($pos = strpos($data,"\r\n\r\n")) { |
|
1002 | - $data = ltrim(substr($data,$pos)); |
|
1003 | - } elseif($pos = strpos($data,"\n\n") ) { |
|
1004 | - $data = ltrim(substr($data,$pos)); |
|
1005 | - } |
|
1006 | - } |
|
1007 | - } |
|
997 | + if ($data == '') { |
|
998 | + // have nothing left; just remove 100 header(s) |
|
999 | + $data = $savedata; |
|
1000 | + while (preg_match('/^HTTP\/1.1 100/',$data)) { |
|
1001 | + if ($pos = strpos($data,"\r\n\r\n")) { |
|
1002 | + $data = ltrim(substr($data,$pos)); |
|
1003 | + } elseif($pos = strpos($data,"\n\n") ) { |
|
1004 | + $data = ltrim(substr($data,$pos)); |
|
1005 | + } |
|
1006 | + } |
|
1007 | + } |
|
1008 | 1008 | |
1009 | - // separate content from HTTP headers |
|
1010 | - if ($pos = strpos($data,"\r\n\r\n")) { |
|
1011 | - $lb = "\r\n"; |
|
1012 | - } elseif( $pos = strpos($data,"\n\n")) { |
|
1013 | - $lb = "\n"; |
|
1014 | - } else { |
|
1015 | - $this->debug('no proper separation of headers and document'); |
|
1016 | - $this->setError('no proper separation of headers and document'); |
|
1017 | - return false; |
|
1018 | - } |
|
1019 | - $header_data = trim(substr($data,0,$pos)); |
|
1020 | - $header_array = explode($lb,$header_data); |
|
1021 | - $data = ltrim(substr($data,$pos)); |
|
1022 | - $this->debug('found proper separation of headers and document'); |
|
1023 | - $this->debug('cleaned data, stringlen: '.strlen($data)); |
|
1024 | - // clean headers |
|
1025 | - foreach ($header_array as $header_line) { |
|
1026 | - $arr = explode(':',$header_line,2); |
|
1027 | - if(count($arr) > 1){ |
|
1028 | - $header_name = strtolower(trim($arr[0])); |
|
1029 | - $this->incoming_headers[$header_name] = trim($arr[1]); |
|
1030 | - if ($header_name == 'set-cookie') { |
|
1031 | - // TODO: allow multiple cookies from parseCookie |
|
1032 | - $cookie = $this->parseCookie(trim($arr[1])); |
|
1033 | - if ($cookie) { |
|
1034 | - $this->incoming_cookies[] = $cookie; |
|
1035 | - $this->debug('found cookie: ' . $cookie['name'] . ' = ' . $cookie['value']); |
|
1036 | - } else { |
|
1037 | - $this->debug('did not find cookie in ' . trim($arr[1])); |
|
1038 | - } |
|
1039 | - } |
|
1040 | - } else if (isset($header_name)) { |
|
1041 | - // append continuation line to previous header |
|
1042 | - $this->incoming_headers[$header_name] .= $lb . ' ' . $header_line; |
|
1043 | - } |
|
1044 | - } |
|
1045 | - } |
|
1009 | + // separate content from HTTP headers |
|
1010 | + if ($pos = strpos($data,"\r\n\r\n")) { |
|
1011 | + $lb = "\r\n"; |
|
1012 | + } elseif( $pos = strpos($data,"\n\n")) { |
|
1013 | + $lb = "\n"; |
|
1014 | + } else { |
|
1015 | + $this->debug('no proper separation of headers and document'); |
|
1016 | + $this->setError('no proper separation of headers and document'); |
|
1017 | + return false; |
|
1018 | + } |
|
1019 | + $header_data = trim(substr($data,0,$pos)); |
|
1020 | + $header_array = explode($lb,$header_data); |
|
1021 | + $data = ltrim(substr($data,$pos)); |
|
1022 | + $this->debug('found proper separation of headers and document'); |
|
1023 | + $this->debug('cleaned data, stringlen: '.strlen($data)); |
|
1024 | + // clean headers |
|
1025 | + foreach ($header_array as $header_line) { |
|
1026 | + $arr = explode(':',$header_line,2); |
|
1027 | + if(count($arr) > 1){ |
|
1028 | + $header_name = strtolower(trim($arr[0])); |
|
1029 | + $this->incoming_headers[$header_name] = trim($arr[1]); |
|
1030 | + if ($header_name == 'set-cookie') { |
|
1031 | + // TODO: allow multiple cookies from parseCookie |
|
1032 | + $cookie = $this->parseCookie(trim($arr[1])); |
|
1033 | + if ($cookie) { |
|
1034 | + $this->incoming_cookies[] = $cookie; |
|
1035 | + $this->debug('found cookie: ' . $cookie['name'] . ' = ' . $cookie['value']); |
|
1036 | + } else { |
|
1037 | + $this->debug('did not find cookie in ' . trim($arr[1])); |
|
1038 | + } |
|
1039 | + } |
|
1040 | + } else if (isset($header_name)) { |
|
1041 | + // append continuation line to previous header |
|
1042 | + $this->incoming_headers[$header_name] .= $lb . ' ' . $header_line; |
|
1043 | + } |
|
1044 | + } |
|
1045 | + } |
|
1046 | 1046 | |
1047 | - $this->response_status_line = $header_array[0]; |
|
1048 | - $arr = explode(' ', $this->response_status_line, 3); |
|
1049 | - $http_version = $arr[0]; |
|
1050 | - $http_status = intval($arr[1]); |
|
1051 | - $http_reason = count($arr) > 2 ? $arr[2] : ''; |
|
1047 | + $this->response_status_line = $header_array[0]; |
|
1048 | + $arr = explode(' ', $this->response_status_line, 3); |
|
1049 | + $http_version = $arr[0]; |
|
1050 | + $http_status = intval($arr[1]); |
|
1051 | + $http_reason = count($arr) > 2 ? $arr[2] : ''; |
|
1052 | 1052 | |
1053 | - // see if we need to resend the request with http digest authentication |
|
1054 | - if (isset($this->incoming_headers['location']) && ($http_status == 301 || $http_status == 302)) { |
|
1055 | - $this->debug("Got $http_status $http_reason with Location: " . $this->incoming_headers['location']); |
|
1056 | - $this->setURL($this->incoming_headers['location']); |
|
1057 | - $this->tryagain = true; |
|
1058 | - return false; |
|
1059 | - } |
|
1053 | + // see if we need to resend the request with http digest authentication |
|
1054 | + if (isset($this->incoming_headers['location']) && ($http_status == 301 || $http_status == 302)) { |
|
1055 | + $this->debug("Got $http_status $http_reason with Location: " . $this->incoming_headers['location']); |
|
1056 | + $this->setURL($this->incoming_headers['location']); |
|
1057 | + $this->tryagain = true; |
|
1058 | + return false; |
|
1059 | + } |
|
1060 | 1060 | |
1061 | - // see if we need to resend the request with http digest authentication |
|
1062 | - if (isset($this->incoming_headers['www-authenticate']) && $http_status == 401) { |
|
1063 | - $this->debug("Got 401 $http_reason with WWW-Authenticate: " . $this->incoming_headers['www-authenticate']); |
|
1064 | - if (strstr($this->incoming_headers['www-authenticate'], "Digest ")) { |
|
1065 | - $this->debug('Server wants digest authentication'); |
|
1066 | - // remove "Digest " from our elements |
|
1067 | - $digestString = str_replace('Digest ', '', $this->incoming_headers['www-authenticate']); |
|
1061 | + // see if we need to resend the request with http digest authentication |
|
1062 | + if (isset($this->incoming_headers['www-authenticate']) && $http_status == 401) { |
|
1063 | + $this->debug("Got 401 $http_reason with WWW-Authenticate: " . $this->incoming_headers['www-authenticate']); |
|
1064 | + if (strstr($this->incoming_headers['www-authenticate'], "Digest ")) { |
|
1065 | + $this->debug('Server wants digest authentication'); |
|
1066 | + // remove "Digest " from our elements |
|
1067 | + $digestString = str_replace('Digest ', '', $this->incoming_headers['www-authenticate']); |
|
1068 | 1068 | |
1069 | - // parse elements into array |
|
1070 | - $digestElements = explode(',', $digestString); |
|
1071 | - foreach ($digestElements as $val) { |
|
1072 | - $tempElement = explode('=', trim($val), 2); |
|
1073 | - $digestRequest[$tempElement[0]] = str_replace("\"", '', $tempElement[1]); |
|
1074 | - } |
|
1069 | + // parse elements into array |
|
1070 | + $digestElements = explode(',', $digestString); |
|
1071 | + foreach ($digestElements as $val) { |
|
1072 | + $tempElement = explode('=', trim($val), 2); |
|
1073 | + $digestRequest[$tempElement[0]] = str_replace("\"", '', $tempElement[1]); |
|
1074 | + } |
|
1075 | 1075 | |
1076 | - // should have (at least) qop, realm, nonce |
|
1077 | - if (isset($digestRequest['nonce'])) { |
|
1078 | - $this->setCredentials($this->username, $this->password, 'digest', $digestRequest); |
|
1079 | - $this->tryagain = true; |
|
1080 | - return false; |
|
1081 | - } |
|
1082 | - } |
|
1083 | - $this->debug('HTTP authentication failed'); |
|
1084 | - $this->setError('HTTP authentication failed'); |
|
1085 | - return false; |
|
1086 | - } |
|
1076 | + // should have (at least) qop, realm, nonce |
|
1077 | + if (isset($digestRequest['nonce'])) { |
|
1078 | + $this->setCredentials($this->username, $this->password, 'digest', $digestRequest); |
|
1079 | + $this->tryagain = true; |
|
1080 | + return false; |
|
1081 | + } |
|
1082 | + } |
|
1083 | + $this->debug('HTTP authentication failed'); |
|
1084 | + $this->setError('HTTP authentication failed'); |
|
1085 | + return false; |
|
1086 | + } |
|
1087 | 1087 | |
1088 | - if ( |
|
1089 | - ($http_status >= 300 && $http_status <= 307) || |
|
1090 | - ($http_status >= 400 && $http_status <= 417) || |
|
1091 | - ($http_status >= 501 && $http_status <= 505) |
|
1092 | - ) { |
|
1093 | - $this->setError("Unsupported HTTP response status $http_status $http_reason (soapclient->response has contents of the response)"); |
|
1094 | - return false; |
|
1095 | - } |
|
1088 | + if ( |
|
1089 | + ($http_status >= 300 && $http_status <= 307) || |
|
1090 | + ($http_status >= 400 && $http_status <= 417) || |
|
1091 | + ($http_status >= 501 && $http_status <= 505) |
|
1092 | + ) { |
|
1093 | + $this->setError("Unsupported HTTP response status $http_status $http_reason (soapclient->response has contents of the response)"); |
|
1094 | + return false; |
|
1095 | + } |
|
1096 | 1096 | |
1097 | - // decode content-encoding |
|
1098 | - if(isset($this->incoming_headers['content-encoding']) && $this->incoming_headers['content-encoding'] != ''){ |
|
1099 | - if(strtolower($this->incoming_headers['content-encoding']) == 'deflate' || strtolower($this->incoming_headers['content-encoding']) == 'gzip'){ |
|
1100 | - // if decoding works, use it. else assume data wasn't gzencoded |
|
1101 | - if(function_exists('gzinflate')){ |
|
1102 | - //$timer->setMarker('starting decoding of gzip/deflated content'); |
|
1103 | - // IIS 5 requires gzinflate instead of gzuncompress (similar to IE 5 and gzdeflate v. gzcompress) |
|
1104 | - // this means there are no Zlib headers, although there should be |
|
1105 | - $this->debug('The gzinflate function exists'); |
|
1106 | - $datalen = strlen($data); |
|
1107 | - if ($this->incoming_headers['content-encoding'] == 'deflate') { |
|
1108 | - if ($degzdata = @gzinflate($data)) { |
|
1109 | - $data = $degzdata; |
|
1110 | - $this->debug('The payload has been inflated to ' . strlen($data) . ' bytes'); |
|
1111 | - if (strlen($data) < $datalen) { |
|
1112 | - // test for the case that the payload has been compressed twice |
|
1113 | - $this->debug('The inflated payload is smaller than the gzipped one; try again'); |
|
1114 | - if ($degzdata = @gzinflate($data)) { |
|
1115 | - $data = $degzdata; |
|
1116 | - $this->debug('The payload has been inflated again to ' . strlen($data) . ' bytes'); |
|
1117 | - } |
|
1118 | - } |
|
1119 | - } else { |
|
1120 | - $this->debug('Error using gzinflate to inflate the payload'); |
|
1121 | - $this->setError('Error using gzinflate to inflate the payload'); |
|
1122 | - } |
|
1123 | - } elseif ($this->incoming_headers['content-encoding'] == 'gzip') { |
|
1124 | - if ($degzdata = @gzinflate(substr($data, 10))) { // do our best |
|
1125 | - $data = $degzdata; |
|
1126 | - $this->debug('The payload has been un-gzipped to ' . strlen($data) . ' bytes'); |
|
1127 | - if (strlen($data) < $datalen) { |
|
1128 | - // test for the case that the payload has been compressed twice |
|
1129 | - $this->debug('The un-gzipped payload is smaller than the gzipped one; try again'); |
|
1130 | - if ($degzdata = @gzinflate(substr($data, 10))) { |
|
1131 | - $data = $degzdata; |
|
1132 | - $this->debug('The payload has been un-gzipped again to ' . strlen($data) . ' bytes'); |
|
1133 | - } |
|
1134 | - } |
|
1135 | - } else { |
|
1136 | - $this->debug('Error using gzinflate to un-gzip the payload'); |
|
1137 | - $this->setError('Error using gzinflate to un-gzip the payload'); |
|
1138 | - } |
|
1139 | - } |
|
1140 | - //$timer->setMarker('finished decoding of gzip/deflated content'); |
|
1141 | - //print "<xmp>\nde-inflated:\n---------------\n$data\n-------------\n</xmp>"; |
|
1142 | - // set decoded payload |
|
1143 | - $this->incoming_payload = $header_data.$lb.$lb.$data; |
|
1144 | - } else { |
|
1145 | - $this->debug('The server sent compressed data. Your php install must have the Zlib extension compiled in to support this.'); |
|
1146 | - $this->setError('The server sent compressed data. Your php install must have the Zlib extension compiled in to support this.'); |
|
1147 | - } |
|
1148 | - } else { |
|
1149 | - $this->debug('Unsupported Content-Encoding ' . $this->incoming_headers['content-encoding']); |
|
1150 | - $this->setError('Unsupported Content-Encoding ' . $this->incoming_headers['content-encoding']); |
|
1151 | - } |
|
1152 | - } else { |
|
1153 | - $this->debug('No Content-Encoding header'); |
|
1154 | - } |
|
1097 | + // decode content-encoding |
|
1098 | + if(isset($this->incoming_headers['content-encoding']) && $this->incoming_headers['content-encoding'] != ''){ |
|
1099 | + if(strtolower($this->incoming_headers['content-encoding']) == 'deflate' || strtolower($this->incoming_headers['content-encoding']) == 'gzip'){ |
|
1100 | + // if decoding works, use it. else assume data wasn't gzencoded |
|
1101 | + if(function_exists('gzinflate')){ |
|
1102 | + //$timer->setMarker('starting decoding of gzip/deflated content'); |
|
1103 | + // IIS 5 requires gzinflate instead of gzuncompress (similar to IE 5 and gzdeflate v. gzcompress) |
|
1104 | + // this means there are no Zlib headers, although there should be |
|
1105 | + $this->debug('The gzinflate function exists'); |
|
1106 | + $datalen = strlen($data); |
|
1107 | + if ($this->incoming_headers['content-encoding'] == 'deflate') { |
|
1108 | + if ($degzdata = @gzinflate($data)) { |
|
1109 | + $data = $degzdata; |
|
1110 | + $this->debug('The payload has been inflated to ' . strlen($data) . ' bytes'); |
|
1111 | + if (strlen($data) < $datalen) { |
|
1112 | + // test for the case that the payload has been compressed twice |
|
1113 | + $this->debug('The inflated payload is smaller than the gzipped one; try again'); |
|
1114 | + if ($degzdata = @gzinflate($data)) { |
|
1115 | + $data = $degzdata; |
|
1116 | + $this->debug('The payload has been inflated again to ' . strlen($data) . ' bytes'); |
|
1117 | + } |
|
1118 | + } |
|
1119 | + } else { |
|
1120 | + $this->debug('Error using gzinflate to inflate the payload'); |
|
1121 | + $this->setError('Error using gzinflate to inflate the payload'); |
|
1122 | + } |
|
1123 | + } elseif ($this->incoming_headers['content-encoding'] == 'gzip') { |
|
1124 | + if ($degzdata = @gzinflate(substr($data, 10))) { // do our best |
|
1125 | + $data = $degzdata; |
|
1126 | + $this->debug('The payload has been un-gzipped to ' . strlen($data) . ' bytes'); |
|
1127 | + if (strlen($data) < $datalen) { |
|
1128 | + // test for the case that the payload has been compressed twice |
|
1129 | + $this->debug('The un-gzipped payload is smaller than the gzipped one; try again'); |
|
1130 | + if ($degzdata = @gzinflate(substr($data, 10))) { |
|
1131 | + $data = $degzdata; |
|
1132 | + $this->debug('The payload has been un-gzipped again to ' . strlen($data) . ' bytes'); |
|
1133 | + } |
|
1134 | + } |
|
1135 | + } else { |
|
1136 | + $this->debug('Error using gzinflate to un-gzip the payload'); |
|
1137 | + $this->setError('Error using gzinflate to un-gzip the payload'); |
|
1138 | + } |
|
1139 | + } |
|
1140 | + //$timer->setMarker('finished decoding of gzip/deflated content'); |
|
1141 | + //print "<xmp>\nde-inflated:\n---------------\n$data\n-------------\n</xmp>"; |
|
1142 | + // set decoded payload |
|
1143 | + $this->incoming_payload = $header_data.$lb.$lb.$data; |
|
1144 | + } else { |
|
1145 | + $this->debug('The server sent compressed data. Your php install must have the Zlib extension compiled in to support this.'); |
|
1146 | + $this->setError('The server sent compressed data. Your php install must have the Zlib extension compiled in to support this.'); |
|
1147 | + } |
|
1148 | + } else { |
|
1149 | + $this->debug('Unsupported Content-Encoding ' . $this->incoming_headers['content-encoding']); |
|
1150 | + $this->setError('Unsupported Content-Encoding ' . $this->incoming_headers['content-encoding']); |
|
1151 | + } |
|
1152 | + } else { |
|
1153 | + $this->debug('No Content-Encoding header'); |
|
1154 | + } |
|
1155 | 1155 | |
1156 | - if(strlen($data) == 0){ |
|
1157 | - $this->debug('no data after headers!'); |
|
1158 | - $this->setError('no data present after HTTP headers'); |
|
1159 | - return false; |
|
1160 | - } |
|
1156 | + if(strlen($data) == 0){ |
|
1157 | + $this->debug('no data after headers!'); |
|
1158 | + $this->setError('no data present after HTTP headers'); |
|
1159 | + return false; |
|
1160 | + } |
|
1161 | 1161 | |
1162 | - return $data; |
|
1163 | - } |
|
1162 | + return $data; |
|
1163 | + } |
|
1164 | 1164 | |
1165 | - /** |
|
1166 | - * sets the content-type for the SOAP message to be sent |
|
1167 | - * |
|
1168 | - * @param string $type the content type, MIME style |
|
1169 | - * @param mixed $charset character set used for encoding (or false) |
|
1170 | - * @access public |
|
1171 | - */ |
|
1172 | - function setContentType($type, $charset = false) { |
|
1173 | - $this->setHeader('Content-Type', $type . ($charset ? '; charset=' . $charset : '')); |
|
1174 | - } |
|
1165 | + /** |
|
1166 | + * sets the content-type for the SOAP message to be sent |
|
1167 | + * |
|
1168 | + * @param string $type the content type, MIME style |
|
1169 | + * @param mixed $charset character set used for encoding (or false) |
|
1170 | + * @access public |
|
1171 | + */ |
|
1172 | + function setContentType($type, $charset = false) { |
|
1173 | + $this->setHeader('Content-Type', $type . ($charset ? '; charset=' . $charset : '')); |
|
1174 | + } |
|
1175 | 1175 | |
1176 | - /** |
|
1177 | - * specifies that an HTTP persistent connection should be used |
|
1178 | - * |
|
1179 | - * @return boolean whether the request was honored by this method. |
|
1180 | - * @access public |
|
1181 | - */ |
|
1182 | - function usePersistentConnection(){ |
|
1183 | - if (isset($this->outgoing_headers['Accept-Encoding'])) { |
|
1184 | - return false; |
|
1185 | - } |
|
1186 | - $this->protocol_version = '1.1'; |
|
1187 | - $this->persistentConnection = true; |
|
1188 | - $this->setHeader('Connection', 'Keep-Alive'); |
|
1189 | - return true; |
|
1190 | - } |
|
1176 | + /** |
|
1177 | + * specifies that an HTTP persistent connection should be used |
|
1178 | + * |
|
1179 | + * @return boolean whether the request was honored by this method. |
|
1180 | + * @access public |
|
1181 | + */ |
|
1182 | + function usePersistentConnection(){ |
|
1183 | + if (isset($this->outgoing_headers['Accept-Encoding'])) { |
|
1184 | + return false; |
|
1185 | + } |
|
1186 | + $this->protocol_version = '1.1'; |
|
1187 | + $this->persistentConnection = true; |
|
1188 | + $this->setHeader('Connection', 'Keep-Alive'); |
|
1189 | + return true; |
|
1190 | + } |
|
1191 | 1191 | |
1192 | - /** |
|
1193 | - * parse an incoming Cookie into it's parts |
|
1194 | - * |
|
1195 | - * @param string $cookie_str content of cookie |
|
1196 | - * @return array with data of that cookie |
|
1197 | - * @access private |
|
1198 | - */ |
|
1199 | - /* |
|
1192 | + /** |
|
1193 | + * parse an incoming Cookie into it's parts |
|
1194 | + * |
|
1195 | + * @param string $cookie_str content of cookie |
|
1196 | + * @return array with data of that cookie |
|
1197 | + * @access private |
|
1198 | + */ |
|
1199 | + /* |
|
1200 | 1200 | * TODO: allow a Set-Cookie string to be parsed into multiple cookies |
1201 | 1201 | */ |
1202 | - function parseCookie($cookie_str) { |
|
1203 | - $cookie_str = str_replace('; ', ';', $cookie_str) . ';'; |
|
1204 | - $data = preg_split('/;/', $cookie_str); |
|
1205 | - $value_str = $data[0]; |
|
1202 | + function parseCookie($cookie_str) { |
|
1203 | + $cookie_str = str_replace('; ', ';', $cookie_str) . ';'; |
|
1204 | + $data = preg_split('/;/', $cookie_str); |
|
1205 | + $value_str = $data[0]; |
|
1206 | 1206 | |
1207 | - $cookie_param = 'domain='; |
|
1208 | - $start = strpos($cookie_str, $cookie_param); |
|
1209 | - if ($start > 0) { |
|
1210 | - $domain = substr($cookie_str, $start + strlen($cookie_param)); |
|
1211 | - $domain = substr($domain, 0, strpos($domain, ';')); |
|
1212 | - } else { |
|
1213 | - $domain = ''; |
|
1214 | - } |
|
1207 | + $cookie_param = 'domain='; |
|
1208 | + $start = strpos($cookie_str, $cookie_param); |
|
1209 | + if ($start > 0) { |
|
1210 | + $domain = substr($cookie_str, $start + strlen($cookie_param)); |
|
1211 | + $domain = substr($domain, 0, strpos($domain, ';')); |
|
1212 | + } else { |
|
1213 | + $domain = ''; |
|
1214 | + } |
|
1215 | 1215 | |
1216 | - $cookie_param = 'expires='; |
|
1217 | - $start = strpos($cookie_str, $cookie_param); |
|
1218 | - if ($start > 0) { |
|
1219 | - $expires = substr($cookie_str, $start + strlen($cookie_param)); |
|
1220 | - $expires = substr($expires, 0, strpos($expires, ';')); |
|
1221 | - } else { |
|
1222 | - $expires = ''; |
|
1223 | - } |
|
1216 | + $cookie_param = 'expires='; |
|
1217 | + $start = strpos($cookie_str, $cookie_param); |
|
1218 | + if ($start > 0) { |
|
1219 | + $expires = substr($cookie_str, $start + strlen($cookie_param)); |
|
1220 | + $expires = substr($expires, 0, strpos($expires, ';')); |
|
1221 | + } else { |
|
1222 | + $expires = ''; |
|
1223 | + } |
|
1224 | 1224 | |
1225 | - $cookie_param = 'path='; |
|
1226 | - $start = strpos($cookie_str, $cookie_param); |
|
1227 | - if ( $start > 0 ) { |
|
1228 | - $path = substr($cookie_str, $start + strlen($cookie_param)); |
|
1229 | - $path = substr($path, 0, strpos($path, ';')); |
|
1230 | - } else { |
|
1231 | - $path = '/'; |
|
1232 | - } |
|
1225 | + $cookie_param = 'path='; |
|
1226 | + $start = strpos($cookie_str, $cookie_param); |
|
1227 | + if ( $start > 0 ) { |
|
1228 | + $path = substr($cookie_str, $start + strlen($cookie_param)); |
|
1229 | + $path = substr($path, 0, strpos($path, ';')); |
|
1230 | + } else { |
|
1231 | + $path = '/'; |
|
1232 | + } |
|
1233 | 1233 | |
1234 | - $cookie_param = ';secure;'; |
|
1235 | - if (strpos($cookie_str, $cookie_param) !== FALSE) { |
|
1236 | - $secure = true; |
|
1237 | - } else { |
|
1238 | - $secure = false; |
|
1239 | - } |
|
1234 | + $cookie_param = ';secure;'; |
|
1235 | + if (strpos($cookie_str, $cookie_param) !== FALSE) { |
|
1236 | + $secure = true; |
|
1237 | + } else { |
|
1238 | + $secure = false; |
|
1239 | + } |
|
1240 | 1240 | |
1241 | - $sep_pos = strpos($value_str, '='); |
|
1241 | + $sep_pos = strpos($value_str, '='); |
|
1242 | 1242 | |
1243 | - if ($sep_pos) { |
|
1244 | - $name = substr($value_str, 0, $sep_pos); |
|
1245 | - $value = substr($value_str, $sep_pos + 1); |
|
1246 | - $cookie= array( 'name' => $name, |
|
1247 | - 'value' => $value, |
|
1248 | - 'domain' => $domain, |
|
1249 | - 'path' => $path, |
|
1250 | - 'expires' => $expires, |
|
1251 | - 'secure' => $secure |
|
1252 | - ); |
|
1253 | - return $cookie; |
|
1254 | - } |
|
1255 | - return false; |
|
1256 | - } |
|
1243 | + if ($sep_pos) { |
|
1244 | + $name = substr($value_str, 0, $sep_pos); |
|
1245 | + $value = substr($value_str, $sep_pos + 1); |
|
1246 | + $cookie= array( 'name' => $name, |
|
1247 | + 'value' => $value, |
|
1248 | + 'domain' => $domain, |
|
1249 | + 'path' => $path, |
|
1250 | + 'expires' => $expires, |
|
1251 | + 'secure' => $secure |
|
1252 | + ); |
|
1253 | + return $cookie; |
|
1254 | + } |
|
1255 | + return false; |
|
1256 | + } |
|
1257 | 1257 | |
1258 | - /** |
|
1259 | - * sort out cookies for the current request |
|
1260 | - * |
|
1261 | - * @param array $cookies array with all cookies |
|
1262 | - * @param boolean $secure is the send-content secure or not? |
|
1263 | - * @return string for Cookie-HTTP-Header |
|
1264 | - * @access private |
|
1265 | - */ |
|
1266 | - function getCookiesForRequest($cookies, $secure=false) { |
|
1267 | - $cookie_str = ''; |
|
1268 | - if ((! is_null($cookies)) && (is_array($cookies))) { |
|
1269 | - foreach ($cookies as $cookie) { |
|
1270 | - if (! is_array($cookie)) { |
|
1271 | - continue; |
|
1272 | - } |
|
1273 | - $this->debug("check cookie for validity: ".$cookie['name'].'='.$cookie['value']); |
|
1274 | - if ((isset($cookie['expires'])) && (! empty($cookie['expires']))) { |
|
1275 | - if (strtotime($cookie['expires']) <= time()) { |
|
1276 | - $this->debug('cookie has expired'); |
|
1277 | - continue; |
|
1278 | - } |
|
1279 | - } |
|
1280 | - if ((isset($cookie['domain'])) && (! empty($cookie['domain']))) { |
|
1281 | - $domain = preg_quote($cookie['domain']); |
|
1282 | - if (! preg_match("'.*$domain$'i", $this->host)) { |
|
1283 | - $this->debug('cookie has different domain'); |
|
1284 | - continue; |
|
1285 | - } |
|
1286 | - } |
|
1287 | - if ((isset($cookie['path'])) && (! empty($cookie['path']))) { |
|
1288 | - $path = preg_quote($cookie['path']); |
|
1289 | - if (! preg_match("'^$path.*'i", $this->path)) { |
|
1290 | - $this->debug('cookie is for a different path'); |
|
1291 | - continue; |
|
1292 | - } |
|
1293 | - } |
|
1294 | - if ((! $secure) && (isset($cookie['secure'])) && ($cookie['secure'])) { |
|
1295 | - $this->debug('cookie is secure, transport is not'); |
|
1296 | - continue; |
|
1297 | - } |
|
1298 | - $cookie_str .= $cookie['name'] . '=' . $cookie['value'] . '; '; |
|
1299 | - $this->debug('add cookie to Cookie-String: ' . $cookie['name'] . '=' . $cookie['value']); |
|
1300 | - } |
|
1301 | - } |
|
1302 | - return $cookie_str; |
|
1303 | - } |
|
1258 | + /** |
|
1259 | + * sort out cookies for the current request |
|
1260 | + * |
|
1261 | + * @param array $cookies array with all cookies |
|
1262 | + * @param boolean $secure is the send-content secure or not? |
|
1263 | + * @return string for Cookie-HTTP-Header |
|
1264 | + * @access private |
|
1265 | + */ |
|
1266 | + function getCookiesForRequest($cookies, $secure=false) { |
|
1267 | + $cookie_str = ''; |
|
1268 | + if ((! is_null($cookies)) && (is_array($cookies))) { |
|
1269 | + foreach ($cookies as $cookie) { |
|
1270 | + if (! is_array($cookie)) { |
|
1271 | + continue; |
|
1272 | + } |
|
1273 | + $this->debug("check cookie for validity: ".$cookie['name'].'='.$cookie['value']); |
|
1274 | + if ((isset($cookie['expires'])) && (! empty($cookie['expires']))) { |
|
1275 | + if (strtotime($cookie['expires']) <= time()) { |
|
1276 | + $this->debug('cookie has expired'); |
|
1277 | + continue; |
|
1278 | + } |
|
1279 | + } |
|
1280 | + if ((isset($cookie['domain'])) && (! empty($cookie['domain']))) { |
|
1281 | + $domain = preg_quote($cookie['domain']); |
|
1282 | + if (! preg_match("'.*$domain$'i", $this->host)) { |
|
1283 | + $this->debug('cookie has different domain'); |
|
1284 | + continue; |
|
1285 | + } |
|
1286 | + } |
|
1287 | + if ((isset($cookie['path'])) && (! empty($cookie['path']))) { |
|
1288 | + $path = preg_quote($cookie['path']); |
|
1289 | + if (! preg_match("'^$path.*'i", $this->path)) { |
|
1290 | + $this->debug('cookie is for a different path'); |
|
1291 | + continue; |
|
1292 | + } |
|
1293 | + } |
|
1294 | + if ((! $secure) && (isset($cookie['secure'])) && ($cookie['secure'])) { |
|
1295 | + $this->debug('cookie is secure, transport is not'); |
|
1296 | + continue; |
|
1297 | + } |
|
1298 | + $cookie_str .= $cookie['name'] . '=' . $cookie['value'] . '; '; |
|
1299 | + $this->debug('add cookie to Cookie-String: ' . $cookie['name'] . '=' . $cookie['value']); |
|
1300 | + } |
|
1301 | + } |
|
1302 | + return $cookie_str; |
|
1303 | + } |
|
1304 | 1304 | } |
1305 | 1305 | |
1306 | 1306 |
@@ -29,18 +29,18 @@ discard block |
||
29 | 29 | var $incoming_cookies = array(); |
30 | 30 | var $outgoing_payload = ''; |
31 | 31 | var $incoming_payload = ''; |
32 | - var $response_status_line; // HTTP response status line |
|
32 | + var $response_status_line; // HTTP response status line |
|
33 | 33 | var $useSOAPAction = true; |
34 | 34 | var $persistentConnection = false; |
35 | - var $ch = false; // cURL handle |
|
36 | - var $ch_options = array(); // cURL custom options |
|
37 | - var $use_curl = false; // force cURL use |
|
38 | - var $proxy = null; // proxy information (associative array) |
|
35 | + var $ch = false; // cURL handle |
|
36 | + var $ch_options = array(); // cURL custom options |
|
37 | + var $use_curl = false; // force cURL use |
|
38 | + var $proxy = null; // proxy information (associative array) |
|
39 | 39 | var $username = ''; |
40 | 40 | var $password = ''; |
41 | 41 | var $authtype = ''; |
42 | 42 | var $digestRequest = array(); |
43 | - var $certRequest = array(); // keys must be cainfofile (optional), sslcertfile, sslkeyfile, passphrase, certpassword (optional), verifypeer (optional), verifyhost (optional) |
|
43 | + var $certRequest = array(); // keys must be cainfofile (optional), sslcertfile, sslkeyfile, passphrase, certpassword (optional), verifypeer (optional), verifyhost (optional) |
|
44 | 44 | // cainfofile: certificate authority file, e.g. '$pathToPemFiles/rootca.pem' |
45 | 45 | // sslcertfile: SSL certificate file, e.g. '$pathToPemFiles/mycert.pem' |
46 | 46 | // sslkeyfile: SSL key file, e.g. '$pathToPemFiles/mykey.pem' |
@@ -57,7 +57,7 @@ discard block |
||
57 | 57 | * @param boolean $use_curl Whether to try to force cURL use |
58 | 58 | * @access public |
59 | 59 | */ |
60 | - function soap_transport_http($url, $curl_options = NULL, $use_curl = false){ |
|
60 | + function soap_transport_http($url, $curl_options = NULL, $use_curl = false) { |
|
61 | 61 | parent::nusoap_base(); |
62 | 62 | $this->debug("ctor url=$url use_curl=$use_curl curl_options:"); |
63 | 63 | $this->appendDebug($this->varDump($curl_options)); |
@@ -66,7 +66,7 @@ discard block |
||
66 | 66 | $this->ch_options = $curl_options; |
67 | 67 | } |
68 | 68 | $this->use_curl = $use_curl; |
69 | - preg_match('/\$Revisio' . 'n: ([^ ]+)/', $this->revision, $rev); |
|
69 | + preg_match('/\$Revisio'.'n: ([^ ]+)/', $this->revision, $rev); |
|
70 | 70 | $this->setHeader('User-Agent', $this->title.'/'.$this->version.' ('.$rev[1].')'); |
71 | 71 | } |
72 | 72 | |
@@ -118,19 +118,19 @@ discard block |
||
118 | 118 | $this->url = $url; |
119 | 119 | |
120 | 120 | $u = parse_url($url); |
121 | - foreach($u as $k => $v){ |
|
121 | + foreach ($u as $k => $v) { |
|
122 | 122 | $this->debug("parsed URL $k = $v"); |
123 | 123 | $this->$k = $v; |
124 | 124 | } |
125 | 125 | |
126 | 126 | // add any GET params to path |
127 | - if(isset($u['query']) && $u['query'] != ''){ |
|
128 | - $this->path .= '?' . $u['query']; |
|
127 | + if (isset($u['query']) && $u['query'] != '') { |
|
128 | + $this->path .= '?'.$u['query']; |
|
129 | 129 | } |
130 | 130 | |
131 | 131 | // set default port |
132 | - if(!isset($u['port'])){ |
|
133 | - if($u['scheme'] == 'https'){ |
|
132 | + if (!isset($u['port'])) { |
|
133 | + if ($u['scheme'] == 'https') { |
|
134 | 134 | $this->port = 443; |
135 | 135 | } else { |
136 | 136 | $this->port = 80; |
@@ -174,7 +174,7 @@ discard block |
||
174 | 174 | * @return boolean true if connected, false if not |
175 | 175 | * @access private |
176 | 176 | */ |
177 | - function connect($connection_timeout=0,$response_timeout=30){ |
|
177 | + function connect($connection_timeout = 0, $response_timeout = 30) { |
|
178 | 178 | // For PHP 4.3 with OpenSSL, change https scheme to ssl, then treat like |
179 | 179 | // "regular" socket. |
180 | 180 | // TODO: disabled for now because OpenSSL must be *compiled* in (not just |
@@ -198,7 +198,7 @@ discard block |
||
198 | 198 | } |
199 | 199 | |
200 | 200 | // use persistent connection |
201 | - if($this->persistentConnection && isset($this->fp) && is_resource($this->fp)){ |
|
201 | + if ($this->persistentConnection && isset($this->fp) && is_resource($this->fp)) { |
|
202 | 202 | if (!feof($this->fp)) { |
203 | 203 | $this->debug('Re-use persistent connection'); |
204 | 204 | return true; |
@@ -209,20 +209,20 @@ discard block |
||
209 | 209 | |
210 | 210 | // munge host if using OpenSSL |
211 | 211 | if ($this->scheme == 'ssl') { |
212 | - $host = 'ssl://' . $host; |
|
212 | + $host = 'ssl://'.$host; |
|
213 | 213 | } |
214 | - $this->debug('calling fsockopen with host ' . $host . ' connection_timeout ' . $connection_timeout); |
|
214 | + $this->debug('calling fsockopen with host '.$host.' connection_timeout '.$connection_timeout); |
|
215 | 215 | |
216 | 216 | // open socket |
217 | - if($connection_timeout > 0){ |
|
218 | - $this->fp = @fsockopen( $host, $this->port, $this->errno, $this->error_str, $connection_timeout); |
|
217 | + if ($connection_timeout > 0) { |
|
218 | + $this->fp = @fsockopen($host, $this->port, $this->errno, $this->error_str, $connection_timeout); |
|
219 | 219 | } else { |
220 | - $this->fp = @fsockopen( $host, $this->port, $this->errno, $this->error_str); |
|
220 | + $this->fp = @fsockopen($host, $this->port, $this->errno, $this->error_str); |
|
221 | 221 | } |
222 | 222 | |
223 | 223 | // test pointer |
224 | - if(!$this->fp) { |
|
225 | - $msg = 'Couldn\'t open socket connection to server ' . $this->url; |
|
224 | + if (!$this->fp) { |
|
225 | + $msg = 'Couldn\'t open socket connection to server '.$this->url; |
|
226 | 226 | if ($this->errno) { |
227 | 227 | $msg .= ', Error ('.$this->errno.'): '.$this->error_str; |
228 | 228 | } else { |
@@ -234,8 +234,8 @@ discard block |
||
234 | 234 | } |
235 | 235 | |
236 | 236 | // set response timeout |
237 | - $this->debug('set response timeout to ' . $response_timeout); |
|
238 | - socket_set_timeout( $this->fp, $response_timeout); |
|
237 | + $this->debug('set response timeout to '.$response_timeout); |
|
238 | + socket_set_timeout($this->fp, $response_timeout); |
|
239 | 239 | |
240 | 240 | $this->debug('socket connected'); |
241 | 241 | return true; |
@@ -394,8 +394,8 @@ discard block |
||
394 | 394 | $this->debug('cURL connection set up'); |
395 | 395 | return true; |
396 | 396 | } else { |
397 | - $this->setError('Unknown scheme ' . $this->scheme); |
|
398 | - $this->debug('Unknown scheme ' . $this->scheme); |
|
397 | + $this->setError('Unknown scheme '.$this->scheme); |
|
398 | + $this->debug('Unknown scheme '.$this->scheme); |
|
399 | 399 | return false; |
400 | 400 | } |
401 | 401 | } |
@@ -410,7 +410,7 @@ discard block |
||
410 | 410 | * @return string data |
411 | 411 | * @access public |
412 | 412 | */ |
413 | - function send($data, $timeout=0, $response_timeout=30, $cookies=NULL) { |
|
413 | + function send($data, $timeout = 0, $response_timeout = 30, $cookies = NULL) { |
|
414 | 414 | |
415 | 415 | $this->debug('entered send() with data of length: '.strlen($data)); |
416 | 416 | |
@@ -420,12 +420,12 @@ discard block |
||
420 | 420 | $this->tryagain = false; |
421 | 421 | if ($tries++ < 2) { |
422 | 422 | // make connnection |
423 | - if (!$this->connect($timeout, $response_timeout)){ |
|
423 | + if (!$this->connect($timeout, $response_timeout)) { |
|
424 | 424 | return false; |
425 | 425 | } |
426 | 426 | |
427 | 427 | // send request |
428 | - if (!$this->sendRequest($data, $cookies)){ |
|
428 | + if (!$this->sendRequest($data, $cookies)) { |
|
429 | 429 | return false; |
430 | 430 | } |
431 | 431 | |
@@ -451,7 +451,7 @@ discard block |
||
451 | 451 | * @access public |
452 | 452 | * @deprecated |
453 | 453 | */ |
454 | - function sendHTTPS($data, $timeout=0, $response_timeout=30, $cookies) { |
|
454 | + function sendHTTPS($data, $timeout = 0, $response_timeout = 30, $cookies) { |
|
455 | 455 | return $this->send($data, $timeout, $response_timeout, $cookies); |
456 | 456 | } |
457 | 457 | |
@@ -472,7 +472,7 @@ discard block |
||
472 | 472 | $this->appendDebug($this->varDump($certRequest)); |
473 | 473 | // cf. RFC 2617 |
474 | 474 | if ($authtype == 'basic') { |
475 | - $this->setHeader('Authorization', 'Basic '.base64_encode(str_replace(':','',$username).':'.$password)); |
|
475 | + $this->setHeader('Authorization', 'Basic '.base64_encode(str_replace(':', '', $username).':'.$password)); |
|
476 | 476 | } elseif ($authtype == 'digest') { |
477 | 477 | if (isset($digestRequest['nonce'])) { |
478 | 478 | $digestRequest['nc'] = isset($digestRequest['nc']) ? $digestRequest['nc']++ : 1; |
@@ -480,16 +480,16 @@ discard block |
||
480 | 480 | // calculate the Digest hashes (calculate code based on digest implementation found at: http://www.rassoc.com/gregr/weblog/stories/2002/07/09/webServicesSecurityHttpDigestAuthenticationWithoutActiveDirectory.html) |
481 | 481 | |
482 | 482 | // A1 = unq(username-value) ":" unq(realm-value) ":" passwd |
483 | - $A1 = $username. ':' . (isset($digestRequest['realm']) ? $digestRequest['realm'] : '') . ':' . $password; |
|
483 | + $A1 = $username.':'.(isset($digestRequest['realm']) ? $digestRequest['realm'] : '').':'.$password; |
|
484 | 484 | |
485 | 485 | // H(A1) = MD5(A1) |
486 | 486 | $HA1 = md5($A1); |
487 | 487 | |
488 | 488 | // A2 = Method ":" digest-uri-value |
489 | - $A2 = $this->request_method . ':' . $this->digest_uri; |
|
489 | + $A2 = $this->request_method.':'.$this->digest_uri; |
|
490 | 490 | |
491 | 491 | // H(A2) |
492 | - $HA2 = md5($A2); |
|
492 | + $HA2 = md5($A2); |
|
493 | 493 | |
494 | 494 | // KD(secret, data) = H(concat(secret, ":", data)) |
495 | 495 | // if qop == auth: |
@@ -506,19 +506,19 @@ discard block |
||
506 | 506 | $nonce = isset($digestRequest['nonce']) ? $digestRequest['nonce'] : ''; |
507 | 507 | $cnonce = $nonce; |
508 | 508 | if ($digestRequest['qop'] != '') { |
509 | - $unhashedDigest = $HA1 . ':' . $nonce . ':' . sprintf("%08d", $digestRequest['nc']) . ':' . $cnonce . ':' . $digestRequest['qop'] . ':' . $HA2; |
|
509 | + $unhashedDigest = $HA1.':'.$nonce.':'.sprintf("%08d", $digestRequest['nc']).':'.$cnonce.':'.$digestRequest['qop'].':'.$HA2; |
|
510 | 510 | } else { |
511 | - $unhashedDigest = $HA1 . ':' . $nonce . ':' . $HA2; |
|
511 | + $unhashedDigest = $HA1.':'.$nonce.':'.$HA2; |
|
512 | 512 | } |
513 | 513 | |
514 | 514 | $hashedDigest = md5($unhashedDigest); |
515 | 515 | |
516 | 516 | $opaque = ''; |
517 | 517 | if (isset($digestRequest['opaque'])) { |
518 | - $opaque = ', opaque="' . $digestRequest['opaque'] . '"'; |
|
518 | + $opaque = ', opaque="'.$digestRequest['opaque'].'"'; |
|
519 | 519 | } |
520 | 520 | |
521 | - $this->setHeader('Authorization', 'Digest username="' . $username . '", realm="' . $digestRequest['realm'] . '", nonce="' . $nonce . '", uri="' . $this->digest_uri . $opaque . '", cnonce="' . $cnonce . '", nc=' . sprintf("%08x", $digestRequest['nc']) . ', qop="' . $digestRequest['qop'] . '", response="' . $hashedDigest . '"'); |
|
521 | + $this->setHeader('Authorization', 'Digest username="'.$username.'", realm="'.$digestRequest['realm'].'", nonce="'.$nonce.'", uri="'.$this->digest_uri.$opaque.'", cnonce="'.$cnonce.'", nc='.sprintf("%08x", $digestRequest['nc']).', qop="'.$digestRequest['qop'].'", response="'.$hashedDigest.'"'); |
|
522 | 522 | } |
523 | 523 | } elseif ($authtype == 'certificate') { |
524 | 524 | $this->certRequest = $certRequest; |
@@ -540,7 +540,7 @@ discard block |
||
540 | 540 | * @access public |
541 | 541 | */ |
542 | 542 | function setSOAPAction($soapaction) { |
543 | - $this->setHeader('SOAPAction', '"' . $soapaction . '"'); |
|
543 | + $this->setHeader('SOAPAction', '"'.$soapaction.'"'); |
|
544 | 544 | } |
545 | 545 | |
546 | 546 | /** |
@@ -549,7 +549,7 @@ discard block |
||
549 | 549 | * @param string $enc encoding style. supported values: gzip, deflate, or both |
550 | 550 | * @access public |
551 | 551 | */ |
552 | - function setEncoding($enc='gzip, deflate') { |
|
552 | + function setEncoding($enc = 'gzip, deflate') { |
|
553 | 553 | if (function_exists('gzdeflate')) { |
554 | 554 | $this->protocol_version = '1.1'; |
555 | 555 | $this->setHeader('Accept-Encoding', $enc); |
@@ -602,7 +602,7 @@ discard block |
||
602 | 602 | * @access private |
603 | 603 | */ |
604 | 604 | function isSkippableCurlHeader(&$data) { |
605 | - $skipHeaders = array( 'HTTP/1.1 100', |
|
605 | + $skipHeaders = array('HTTP/1.1 100', |
|
606 | 606 | 'HTTP/1.0 301', |
607 | 607 | 'HTTP/1.1 301', |
608 | 608 | 'HTTP/1.0 302', |
@@ -628,7 +628,7 @@ discard block |
||
628 | 628 | * @access public |
629 | 629 | * @deprecated |
630 | 630 | */ |
631 | - function decodeChunked($buffer, $lb){ |
|
631 | + function decodeChunked($buffer, $lb) { |
|
632 | 632 | // length := 0 |
633 | 633 | $length = 0; |
634 | 634 | $new = ''; |
@@ -640,17 +640,17 @@ discard block |
||
640 | 640 | $this->debug('no linebreak found in decodeChunked'); |
641 | 641 | return $new; |
642 | 642 | } |
643 | - $temp = substr($buffer,0,$chunkend); |
|
644 | - $chunk_size = hexdec( trim($temp) ); |
|
643 | + $temp = substr($buffer, 0, $chunkend); |
|
644 | + $chunk_size = hexdec(trim($temp)); |
|
645 | 645 | $chunkstart = $chunkend + strlen($lb); |
646 | 646 | // while (chunk-size > 0) { |
647 | 647 | while ($chunk_size > 0) { |
648 | 648 | $this->debug("chunkstart: $chunkstart chunk_size: $chunk_size"); |
649 | - $chunkend = strpos( $buffer, $lb, $chunkstart + $chunk_size); |
|
649 | + $chunkend = strpos($buffer, $lb, $chunkstart + $chunk_size); |
|
650 | 650 | |
651 | 651 | // Just in case we got a broken connection |
652 | 652 | if ($chunkend == FALSE) { |
653 | - $chunk = substr($buffer,$chunkstart); |
|
653 | + $chunk = substr($buffer, $chunkstart); |
|
654 | 654 | // append chunk-data to entity-body |
655 | 655 | $new .= $chunk; |
656 | 656 | $length += strlen($chunk); |
@@ -658,7 +658,7 @@ discard block |
||
658 | 658 | } |
659 | 659 | |
660 | 660 | // read chunk-data and CRLF |
661 | - $chunk = substr($buffer,$chunkstart,$chunkend-$chunkstart); |
|
661 | + $chunk = substr($buffer, $chunkstart, $chunkend - $chunkstart); |
|
662 | 662 | // append chunk-data to entity-body |
663 | 663 | $new .= $chunk; |
664 | 664 | // length := length + chunk-size |
@@ -670,8 +670,8 @@ discard block |
||
670 | 670 | if ($chunkend == FALSE) { |
671 | 671 | break; //Just in case we got a broken connection |
672 | 672 | } |
673 | - $temp = substr($buffer,$chunkstart,$chunkend-$chunkstart); |
|
674 | - $chunk_size = hexdec( trim($temp) ); |
|
673 | + $temp = substr($buffer, $chunkstart, $chunkend - $chunkstart); |
|
674 | + $chunk_size = hexdec(trim($temp)); |
|
675 | 675 | $chunkstart = $chunkend; |
676 | 676 | } |
677 | 677 | return $new; |
@@ -706,7 +706,7 @@ discard block |
||
706 | 706 | $this->outgoing_payload = "$req\r\n"; |
707 | 707 | |
708 | 708 | // loop thru headers, serializing |
709 | - foreach($this->outgoing_headers as $k => $v){ |
|
709 | + foreach ($this->outgoing_headers as $k => $v) { |
|
710 | 710 | $hdr = $k.': '.$v; |
711 | 711 | $this->debug("HTTP header: $hdr"); |
712 | 712 | $this->outgoing_payload .= "$hdr\r\n"; |
@@ -743,12 +743,12 @@ discard block |
||
743 | 743 | |
744 | 744 | if ($this->io_method() == 'socket') { |
745 | 745 | // send payload |
746 | - if(!fputs($this->fp, $this->outgoing_payload, strlen($this->outgoing_payload))) { |
|
746 | + if (!fputs($this->fp, $this->outgoing_payload, strlen($this->outgoing_payload))) { |
|
747 | 747 | $this->setError('couldn\'t write message data to socket'); |
748 | 748 | $this->debug('couldn\'t write message data to socket'); |
749 | 749 | return false; |
750 | 750 | } |
751 | - $this->debug('wrote data to socket, length = ' . strlen($this->outgoing_payload)); |
|
751 | + $this->debug('wrote data to socket, length = '.strlen($this->outgoing_payload)); |
|
752 | 752 | return true; |
753 | 753 | } else if ($this->io_method() == 'curl') { |
754 | 754 | // set payload |
@@ -757,7 +757,7 @@ discard block |
||
757 | 757 | // some servers refuse to work with (so we no longer use this method!) |
758 | 758 | //$this->setCurlOption(CURLOPT_CUSTOMREQUEST, $this->outgoing_payload); |
759 | 759 | $curl_headers = array(); |
760 | - foreach($this->outgoing_headers as $k => $v){ |
|
760 | + foreach ($this->outgoing_headers as $k => $v) { |
|
761 | 761 | if ($k == 'Connection' || $k == 'Content-Length' || $k == 'Host' || $k == 'Authorization' || $k == 'Proxy-Authorization') { |
762 | 762 | $this->debug("Skip cURL header $k: $v"); |
763 | 763 | } else { |
@@ -765,7 +765,7 @@ discard block |
||
765 | 765 | } |
766 | 766 | } |
767 | 767 | if ($cookie_str != '') { |
768 | - $curl_headers[] = 'Cookie: ' . $cookie_str; |
|
768 | + $curl_headers[] = 'Cookie: '.$cookie_str; |
|
769 | 769 | } |
770 | 770 | $this->setCurlOption(CURLOPT_HTTPHEADER, $curl_headers); |
771 | 771 | $this->debug('set cURL HTTP headers'); |
@@ -791,62 +791,62 @@ discard block |
||
791 | 791 | * @return string the response (also sets member variables like incoming_payload) |
792 | 792 | * @access private |
793 | 793 | */ |
794 | - function getResponse(){ |
|
794 | + function getResponse() { |
|
795 | 795 | $this->incoming_payload = ''; |
796 | 796 | |
797 | 797 | if ($this->io_method() == 'socket') { |
798 | 798 | // loop until headers have been retrieved |
799 | 799 | $data = ''; |
800 | - while (!isset($lb)){ |
|
800 | + while (!isset($lb)) { |
|
801 | 801 | |
802 | 802 | // We might EOF during header read. |
803 | - if(feof($this->fp)) { |
|
803 | + if (feof($this->fp)) { |
|
804 | 804 | $this->incoming_payload = $data; |
805 | - $this->debug('found no headers before EOF after length ' . strlen($data)); |
|
806 | - $this->debug("received before EOF:\n" . $data); |
|
805 | + $this->debug('found no headers before EOF after length '.strlen($data)); |
|
806 | + $this->debug("received before EOF:\n".$data); |
|
807 | 807 | $this->setError('server failed to send headers'); |
808 | 808 | return false; |
809 | 809 | } |
810 | 810 | |
811 | 811 | $tmp = fgets($this->fp, 256); |
812 | 812 | $tmplen = strlen($tmp); |
813 | - $this->debug("read line of $tmplen bytes: " . trim($tmp)); |
|
813 | + $this->debug("read line of $tmplen bytes: ".trim($tmp)); |
|
814 | 814 | |
815 | 815 | if ($tmplen == 0) { |
816 | 816 | $this->incoming_payload = $data; |
817 | - $this->debug('socket read of headers timed out after length ' . strlen($data)); |
|
818 | - $this->debug("read before timeout: " . $data); |
|
817 | + $this->debug('socket read of headers timed out after length '.strlen($data)); |
|
818 | + $this->debug("read before timeout: ".$data); |
|
819 | 819 | $this->setError('socket read of headers timed out'); |
820 | 820 | return false; |
821 | 821 | } |
822 | 822 | |
823 | 823 | $data .= $tmp; |
824 | - $pos = strpos($data,"\r\n\r\n"); |
|
825 | - if($pos > 1){ |
|
824 | + $pos = strpos($data, "\r\n\r\n"); |
|
825 | + if ($pos > 1) { |
|
826 | 826 | $lb = "\r\n"; |
827 | 827 | } else { |
828 | - $pos = strpos($data,"\n\n"); |
|
829 | - if($pos > 1){ |
|
828 | + $pos = strpos($data, "\n\n"); |
|
829 | + if ($pos > 1) { |
|
830 | 830 | $lb = "\n"; |
831 | 831 | } |
832 | 832 | } |
833 | 833 | // remove 100 headers |
834 | - if (isset($lb) && preg_match('/^HTTP\/1.1 100/',$data)) { |
|
834 | + if (isset($lb) && preg_match('/^HTTP\/1.1 100/', $data)) { |
|
835 | 835 | unset($lb); |
836 | 836 | $data = ''; |
837 | 837 | }// |
838 | 838 | } |
839 | 839 | // store header data |
840 | 840 | $this->incoming_payload .= $data; |
841 | - $this->debug('found end of headers after length ' . strlen($data)); |
|
841 | + $this->debug('found end of headers after length '.strlen($data)); |
|
842 | 842 | // process headers |
843 | - $header_data = trim(substr($data,0,$pos)); |
|
844 | - $header_array = explode($lb,$header_data); |
|
843 | + $header_data = trim(substr($data, 0, $pos)); |
|
844 | + $header_array = explode($lb, $header_data); |
|
845 | 845 | $this->incoming_headers = array(); |
846 | 846 | $this->incoming_cookies = array(); |
847 | - foreach($header_array as $header_line){ |
|
848 | - $arr = explode(':',$header_line, 2); |
|
849 | - if(count($arr) > 1){ |
|
847 | + foreach ($header_array as $header_line) { |
|
848 | + $arr = explode(':', $header_line, 2); |
|
849 | + if (count($arr) > 1) { |
|
850 | 850 | $header_name = strtolower(trim($arr[0])); |
851 | 851 | $this->incoming_headers[$header_name] = trim($arr[1]); |
852 | 852 | if ($header_name == 'set-cookie') { |
@@ -854,20 +854,20 @@ discard block |
||
854 | 854 | $cookie = $this->parseCookie(trim($arr[1])); |
855 | 855 | if ($cookie) { |
856 | 856 | $this->incoming_cookies[] = $cookie; |
857 | - $this->debug('found cookie: ' . $cookie['name'] . ' = ' . $cookie['value']); |
|
857 | + $this->debug('found cookie: '.$cookie['name'].' = '.$cookie['value']); |
|
858 | 858 | } else { |
859 | - $this->debug('did not find cookie in ' . trim($arr[1])); |
|
859 | + $this->debug('did not find cookie in '.trim($arr[1])); |
|
860 | 860 | } |
861 | 861 | } |
862 | 862 | } else if (isset($header_name)) { |
863 | 863 | // append continuation line to previous header |
864 | - $this->incoming_headers[$header_name] .= $lb . ' ' . $header_line; |
|
864 | + $this->incoming_headers[$header_name] .= $lb.' '.$header_line; |
|
865 | 865 | } |
866 | 866 | } |
867 | 867 | |
868 | 868 | // loop until msg has been received |
869 | 869 | if (isset($this->incoming_headers['transfer-encoding']) && strtolower($this->incoming_headers['transfer-encoding']) == 'chunked') { |
870 | - $content_length = 2147483647; // ignore any content-length header |
|
870 | + $content_length = 2147483647; // ignore any content-length header |
|
871 | 871 | $chunked = true; |
872 | 872 | $this->debug("want to read chunked content"); |
873 | 873 | } elseif (isset($this->incoming_headers['content-length'])) { |
@@ -875,7 +875,7 @@ discard block |
||
875 | 875 | $chunked = false; |
876 | 876 | $this->debug("want to read content of length $content_length"); |
877 | 877 | } else { |
878 | - $content_length = 2147483647; |
|
878 | + $content_length = 2147483647; |
|
879 | 879 | $chunked = false; |
880 | 880 | $this->debug("want to read content to EOF"); |
881 | 881 | } |
@@ -887,8 +887,8 @@ discard block |
||
887 | 887 | $this->debug("read chunk line of $tmplen bytes"); |
888 | 888 | if ($tmplen == 0) { |
889 | 889 | $this->incoming_payload = $data; |
890 | - $this->debug('socket read of chunk length timed out after length ' . strlen($data)); |
|
891 | - $this->debug("read before timeout:\n" . $data); |
|
890 | + $this->debug('socket read of chunk length timed out after length '.strlen($data)); |
|
891 | + $this->debug("read before timeout:\n".$data); |
|
892 | 892 | $this->setError('socket read of chunk length timed out'); |
893 | 893 | return false; |
894 | 894 | } |
@@ -903,8 +903,8 @@ discard block |
||
903 | 903 | $this->debug("read buffer of $tmplen bytes"); |
904 | 904 | if (($tmplen == 0) && (!feof($this->fp))) { |
905 | 905 | $this->incoming_payload = $data; |
906 | - $this->debug('socket read of body timed out after length ' . strlen($data)); |
|
907 | - $this->debug("read before timeout:\n" . $data); |
|
906 | + $this->debug('socket read of body timed out after length '.strlen($data)); |
|
907 | + $this->debug("read before timeout:\n".$data); |
|
908 | 908 | $this->setError('socket read of body timed out'); |
909 | 909 | return false; |
910 | 910 | } |
@@ -917,8 +917,8 @@ discard block |
||
917 | 917 | $this->debug("read chunk terminator of $tmplen bytes"); |
918 | 918 | if ($tmplen == 0) { |
919 | 919 | $this->incoming_payload = $data; |
920 | - $this->debug('socket read of chunk terminator timed out after length ' . strlen($data)); |
|
921 | - $this->debug("read before timeout:\n" . $data); |
|
920 | + $this->debug('socket read of chunk terminator timed out after length '.strlen($data)); |
|
921 | + $this->debug("read before timeout:\n".$data); |
|
922 | 922 | $this->setError('socket read of chunk terminator timed out'); |
923 | 923 | return false; |
924 | 924 | } |
@@ -927,21 +927,21 @@ discard block |
||
927 | 927 | if (feof($this->fp)) { |
928 | 928 | $this->debug('read to EOF'); |
929 | 929 | } |
930 | - $this->debug('read body of length ' . strlen($data)); |
|
930 | + $this->debug('read body of length '.strlen($data)); |
|
931 | 931 | $this->incoming_payload .= $data; |
932 | 932 | $this->debug('received a total of '.strlen($this->incoming_payload).' bytes of data from server'); |
933 | 933 | |
934 | 934 | // close filepointer |
935 | - if( |
|
935 | + if ( |
|
936 | 936 | (isset($this->incoming_headers['connection']) && strtolower($this->incoming_headers['connection']) == 'close') || |
937 | - (! $this->persistentConnection) || feof($this->fp)){ |
|
937 | + (!$this->persistentConnection) || feof($this->fp)) { |
|
938 | 938 | fclose($this->fp); |
939 | 939 | $this->fp = false; |
940 | 940 | $this->debug('closed socket'); |
941 | 941 | } |
942 | 942 | |
943 | 943 | // connection was closed unexpectedly |
944 | - if($this->incoming_payload == ''){ |
|
944 | + if ($this->incoming_payload == '') { |
|
945 | 945 | $this->setError('no response from server'); |
946 | 946 | return false; |
947 | 947 | } |
@@ -967,7 +967,7 @@ discard block |
||
967 | 967 | if ($cErr != '') { |
968 | 968 | $err = 'cURL ERROR: '.curl_errno($this->ch).': '.$cErr.'<br>'; |
969 | 969 | // TODO: there is a PHP bug that can cause this to SEGV for CURLINFO_CONTENT_TYPE |
970 | - foreach(curl_getinfo($this->ch) as $k => $v){ |
|
970 | + foreach (curl_getinfo($this->ch) as $k => $v) { |
|
971 | 971 | $err .= "$k: $v<br>"; |
972 | 972 | } |
973 | 973 | $this->debug($err); |
@@ -987,44 +987,44 @@ discard block |
||
987 | 987 | $savedata = $data; |
988 | 988 | while ($this->isSkippableCurlHeader($data)) { |
989 | 989 | $this->debug("Found HTTP header to skip"); |
990 | - if ($pos = strpos($data,"\r\n\r\n")) { |
|
991 | - $data = ltrim(substr($data,$pos)); |
|
992 | - } elseif($pos = strpos($data,"\n\n") ) { |
|
993 | - $data = ltrim(substr($data,$pos)); |
|
990 | + if ($pos = strpos($data, "\r\n\r\n")) { |
|
991 | + $data = ltrim(substr($data, $pos)); |
|
992 | + } elseif ($pos = strpos($data, "\n\n")) { |
|
993 | + $data = ltrim(substr($data, $pos)); |
|
994 | 994 | } |
995 | 995 | } |
996 | 996 | |
997 | 997 | if ($data == '') { |
998 | 998 | // have nothing left; just remove 100 header(s) |
999 | 999 | $data = $savedata; |
1000 | - while (preg_match('/^HTTP\/1.1 100/',$data)) { |
|
1001 | - if ($pos = strpos($data,"\r\n\r\n")) { |
|
1002 | - $data = ltrim(substr($data,$pos)); |
|
1003 | - } elseif($pos = strpos($data,"\n\n") ) { |
|
1004 | - $data = ltrim(substr($data,$pos)); |
|
1000 | + while (preg_match('/^HTTP\/1.1 100/', $data)) { |
|
1001 | + if ($pos = strpos($data, "\r\n\r\n")) { |
|
1002 | + $data = ltrim(substr($data, $pos)); |
|
1003 | + } elseif ($pos = strpos($data, "\n\n")) { |
|
1004 | + $data = ltrim(substr($data, $pos)); |
|
1005 | 1005 | } |
1006 | 1006 | } |
1007 | 1007 | } |
1008 | 1008 | |
1009 | 1009 | // separate content from HTTP headers |
1010 | - if ($pos = strpos($data,"\r\n\r\n")) { |
|
1010 | + if ($pos = strpos($data, "\r\n\r\n")) { |
|
1011 | 1011 | $lb = "\r\n"; |
1012 | - } elseif( $pos = strpos($data,"\n\n")) { |
|
1012 | + } elseif ($pos = strpos($data, "\n\n")) { |
|
1013 | 1013 | $lb = "\n"; |
1014 | 1014 | } else { |
1015 | 1015 | $this->debug('no proper separation of headers and document'); |
1016 | 1016 | $this->setError('no proper separation of headers and document'); |
1017 | 1017 | return false; |
1018 | 1018 | } |
1019 | - $header_data = trim(substr($data,0,$pos)); |
|
1020 | - $header_array = explode($lb,$header_data); |
|
1021 | - $data = ltrim(substr($data,$pos)); |
|
1019 | + $header_data = trim(substr($data, 0, $pos)); |
|
1020 | + $header_array = explode($lb, $header_data); |
|
1021 | + $data = ltrim(substr($data, $pos)); |
|
1022 | 1022 | $this->debug('found proper separation of headers and document'); |
1023 | 1023 | $this->debug('cleaned data, stringlen: '.strlen($data)); |
1024 | 1024 | // clean headers |
1025 | 1025 | foreach ($header_array as $header_line) { |
1026 | - $arr = explode(':',$header_line,2); |
|
1027 | - if(count($arr) > 1){ |
|
1026 | + $arr = explode(':', $header_line, 2); |
|
1027 | + if (count($arr) > 1) { |
|
1028 | 1028 | $header_name = strtolower(trim($arr[0])); |
1029 | 1029 | $this->incoming_headers[$header_name] = trim($arr[1]); |
1030 | 1030 | if ($header_name == 'set-cookie') { |
@@ -1032,14 +1032,14 @@ discard block |
||
1032 | 1032 | $cookie = $this->parseCookie(trim($arr[1])); |
1033 | 1033 | if ($cookie) { |
1034 | 1034 | $this->incoming_cookies[] = $cookie; |
1035 | - $this->debug('found cookie: ' . $cookie['name'] . ' = ' . $cookie['value']); |
|
1035 | + $this->debug('found cookie: '.$cookie['name'].' = '.$cookie['value']); |
|
1036 | 1036 | } else { |
1037 | - $this->debug('did not find cookie in ' . trim($arr[1])); |
|
1037 | + $this->debug('did not find cookie in '.trim($arr[1])); |
|
1038 | 1038 | } |
1039 | 1039 | } |
1040 | 1040 | } else if (isset($header_name)) { |
1041 | 1041 | // append continuation line to previous header |
1042 | - $this->incoming_headers[$header_name] .= $lb . ' ' . $header_line; |
|
1042 | + $this->incoming_headers[$header_name] .= $lb.' '.$header_line; |
|
1043 | 1043 | } |
1044 | 1044 | } |
1045 | 1045 | } |
@@ -1052,7 +1052,7 @@ discard block |
||
1052 | 1052 | |
1053 | 1053 | // see if we need to resend the request with http digest authentication |
1054 | 1054 | if (isset($this->incoming_headers['location']) && ($http_status == 301 || $http_status == 302)) { |
1055 | - $this->debug("Got $http_status $http_reason with Location: " . $this->incoming_headers['location']); |
|
1055 | + $this->debug("Got $http_status $http_reason with Location: ".$this->incoming_headers['location']); |
|
1056 | 1056 | $this->setURL($this->incoming_headers['location']); |
1057 | 1057 | $this->tryagain = true; |
1058 | 1058 | return false; |
@@ -1060,7 +1060,7 @@ discard block |
||
1060 | 1060 | |
1061 | 1061 | // see if we need to resend the request with http digest authentication |
1062 | 1062 | if (isset($this->incoming_headers['www-authenticate']) && $http_status == 401) { |
1063 | - $this->debug("Got 401 $http_reason with WWW-Authenticate: " . $this->incoming_headers['www-authenticate']); |
|
1063 | + $this->debug("Got 401 $http_reason with WWW-Authenticate: ".$this->incoming_headers['www-authenticate']); |
|
1064 | 1064 | if (strstr($this->incoming_headers['www-authenticate'], "Digest ")) { |
1065 | 1065 | $this->debug('Server wants digest authentication'); |
1066 | 1066 | // remove "Digest " from our elements |
@@ -1095,10 +1095,10 @@ discard block |
||
1095 | 1095 | } |
1096 | 1096 | |
1097 | 1097 | // decode content-encoding |
1098 | - if(isset($this->incoming_headers['content-encoding']) && $this->incoming_headers['content-encoding'] != ''){ |
|
1099 | - if(strtolower($this->incoming_headers['content-encoding']) == 'deflate' || strtolower($this->incoming_headers['content-encoding']) == 'gzip'){ |
|
1098 | + if (isset($this->incoming_headers['content-encoding']) && $this->incoming_headers['content-encoding'] != '') { |
|
1099 | + if (strtolower($this->incoming_headers['content-encoding']) == 'deflate' || strtolower($this->incoming_headers['content-encoding']) == 'gzip') { |
|
1100 | 1100 | // if decoding works, use it. else assume data wasn't gzencoded |
1101 | - if(function_exists('gzinflate')){ |
|
1101 | + if (function_exists('gzinflate')) { |
|
1102 | 1102 | //$timer->setMarker('starting decoding of gzip/deflated content'); |
1103 | 1103 | // IIS 5 requires gzinflate instead of gzuncompress (similar to IE 5 and gzdeflate v. gzcompress) |
1104 | 1104 | // this means there are no Zlib headers, although there should be |
@@ -1107,13 +1107,13 @@ discard block |
||
1107 | 1107 | if ($this->incoming_headers['content-encoding'] == 'deflate') { |
1108 | 1108 | if ($degzdata = @gzinflate($data)) { |
1109 | 1109 | $data = $degzdata; |
1110 | - $this->debug('The payload has been inflated to ' . strlen($data) . ' bytes'); |
|
1110 | + $this->debug('The payload has been inflated to '.strlen($data).' bytes'); |
|
1111 | 1111 | if (strlen($data) < $datalen) { |
1112 | 1112 | // test for the case that the payload has been compressed twice |
1113 | 1113 | $this->debug('The inflated payload is smaller than the gzipped one; try again'); |
1114 | 1114 | if ($degzdata = @gzinflate($data)) { |
1115 | 1115 | $data = $degzdata; |
1116 | - $this->debug('The payload has been inflated again to ' . strlen($data) . ' bytes'); |
|
1116 | + $this->debug('The payload has been inflated again to '.strlen($data).' bytes'); |
|
1117 | 1117 | } |
1118 | 1118 | } |
1119 | 1119 | } else { |
@@ -1123,13 +1123,13 @@ discard block |
||
1123 | 1123 | } elseif ($this->incoming_headers['content-encoding'] == 'gzip') { |
1124 | 1124 | if ($degzdata = @gzinflate(substr($data, 10))) { // do our best |
1125 | 1125 | $data = $degzdata; |
1126 | - $this->debug('The payload has been un-gzipped to ' . strlen($data) . ' bytes'); |
|
1126 | + $this->debug('The payload has been un-gzipped to '.strlen($data).' bytes'); |
|
1127 | 1127 | if (strlen($data) < $datalen) { |
1128 | 1128 | // test for the case that the payload has been compressed twice |
1129 | 1129 | $this->debug('The un-gzipped payload is smaller than the gzipped one; try again'); |
1130 | 1130 | if ($degzdata = @gzinflate(substr($data, 10))) { |
1131 | 1131 | $data = $degzdata; |
1132 | - $this->debug('The payload has been un-gzipped again to ' . strlen($data) . ' bytes'); |
|
1132 | + $this->debug('The payload has been un-gzipped again to '.strlen($data).' bytes'); |
|
1133 | 1133 | } |
1134 | 1134 | } |
1135 | 1135 | } else { |
@@ -1146,14 +1146,14 @@ discard block |
||
1146 | 1146 | $this->setError('The server sent compressed data. Your php install must have the Zlib extension compiled in to support this.'); |
1147 | 1147 | } |
1148 | 1148 | } else { |
1149 | - $this->debug('Unsupported Content-Encoding ' . $this->incoming_headers['content-encoding']); |
|
1150 | - $this->setError('Unsupported Content-Encoding ' . $this->incoming_headers['content-encoding']); |
|
1149 | + $this->debug('Unsupported Content-Encoding '.$this->incoming_headers['content-encoding']); |
|
1150 | + $this->setError('Unsupported Content-Encoding '.$this->incoming_headers['content-encoding']); |
|
1151 | 1151 | } |
1152 | 1152 | } else { |
1153 | 1153 | $this->debug('No Content-Encoding header'); |
1154 | 1154 | } |
1155 | 1155 | |
1156 | - if(strlen($data) == 0){ |
|
1156 | + if (strlen($data) == 0) { |
|
1157 | 1157 | $this->debug('no data after headers!'); |
1158 | 1158 | $this->setError('no data present after HTTP headers'); |
1159 | 1159 | return false; |
@@ -1170,7 +1170,7 @@ discard block |
||
1170 | 1170 | * @access public |
1171 | 1171 | */ |
1172 | 1172 | function setContentType($type, $charset = false) { |
1173 | - $this->setHeader('Content-Type', $type . ($charset ? '; charset=' . $charset : '')); |
|
1173 | + $this->setHeader('Content-Type', $type.($charset ? '; charset='.$charset : '')); |
|
1174 | 1174 | } |
1175 | 1175 | |
1176 | 1176 | /** |
@@ -1179,7 +1179,7 @@ discard block |
||
1179 | 1179 | * @return boolean whether the request was honored by this method. |
1180 | 1180 | * @access public |
1181 | 1181 | */ |
1182 | - function usePersistentConnection(){ |
|
1182 | + function usePersistentConnection() { |
|
1183 | 1183 | if (isset($this->outgoing_headers['Accept-Encoding'])) { |
1184 | 1184 | return false; |
1185 | 1185 | } |
@@ -1200,7 +1200,7 @@ discard block |
||
1200 | 1200 | * TODO: allow a Set-Cookie string to be parsed into multiple cookies |
1201 | 1201 | */ |
1202 | 1202 | function parseCookie($cookie_str) { |
1203 | - $cookie_str = str_replace('; ', ';', $cookie_str) . ';'; |
|
1203 | + $cookie_str = str_replace('; ', ';', $cookie_str).';'; |
|
1204 | 1204 | $data = preg_split('/;/', $cookie_str); |
1205 | 1205 | $value_str = $data[0]; |
1206 | 1206 | |
@@ -1224,7 +1224,7 @@ discard block |
||
1224 | 1224 | |
1225 | 1225 | $cookie_param = 'path='; |
1226 | 1226 | $start = strpos($cookie_str, $cookie_param); |
1227 | - if ( $start > 0 ) { |
|
1227 | + if ($start > 0) { |
|
1228 | 1228 | $path = substr($cookie_str, $start + strlen($cookie_param)); |
1229 | 1229 | $path = substr($path, 0, strpos($path, ';')); |
1230 | 1230 | } else { |
@@ -1243,7 +1243,7 @@ discard block |
||
1243 | 1243 | if ($sep_pos) { |
1244 | 1244 | $name = substr($value_str, 0, $sep_pos); |
1245 | 1245 | $value = substr($value_str, $sep_pos + 1); |
1246 | - $cookie= array( 'name' => $name, |
|
1246 | + $cookie = array('name' => $name, |
|
1247 | 1247 | 'value' => $value, |
1248 | 1248 | 'domain' => $domain, |
1249 | 1249 | 'path' => $path, |
@@ -1263,40 +1263,40 @@ discard block |
||
1263 | 1263 | * @return string for Cookie-HTTP-Header |
1264 | 1264 | * @access private |
1265 | 1265 | */ |
1266 | - function getCookiesForRequest($cookies, $secure=false) { |
|
1266 | + function getCookiesForRequest($cookies, $secure = false) { |
|
1267 | 1267 | $cookie_str = ''; |
1268 | - if ((! is_null($cookies)) && (is_array($cookies))) { |
|
1268 | + if ((!is_null($cookies)) && (is_array($cookies))) { |
|
1269 | 1269 | foreach ($cookies as $cookie) { |
1270 | - if (! is_array($cookie)) { |
|
1270 | + if (!is_array($cookie)) { |
|
1271 | 1271 | continue; |
1272 | 1272 | } |
1273 | 1273 | $this->debug("check cookie for validity: ".$cookie['name'].'='.$cookie['value']); |
1274 | - if ((isset($cookie['expires'])) && (! empty($cookie['expires']))) { |
|
1274 | + if ((isset($cookie['expires'])) && (!empty($cookie['expires']))) { |
|
1275 | 1275 | if (strtotime($cookie['expires']) <= time()) { |
1276 | 1276 | $this->debug('cookie has expired'); |
1277 | 1277 | continue; |
1278 | 1278 | } |
1279 | 1279 | } |
1280 | - if ((isset($cookie['domain'])) && (! empty($cookie['domain']))) { |
|
1280 | + if ((isset($cookie['domain'])) && (!empty($cookie['domain']))) { |
|
1281 | 1281 | $domain = preg_quote($cookie['domain']); |
1282 | - if (! preg_match("'.*$domain$'i", $this->host)) { |
|
1282 | + if (!preg_match("'.*$domain$'i", $this->host)) { |
|
1283 | 1283 | $this->debug('cookie has different domain'); |
1284 | 1284 | continue; |
1285 | 1285 | } |
1286 | 1286 | } |
1287 | - if ((isset($cookie['path'])) && (! empty($cookie['path']))) { |
|
1287 | + if ((isset($cookie['path'])) && (!empty($cookie['path']))) { |
|
1288 | 1288 | $path = preg_quote($cookie['path']); |
1289 | - if (! preg_match("'^$path.*'i", $this->path)) { |
|
1289 | + if (!preg_match("'^$path.*'i", $this->path)) { |
|
1290 | 1290 | $this->debug('cookie is for a different path'); |
1291 | 1291 | continue; |
1292 | 1292 | } |
1293 | 1293 | } |
1294 | - if ((! $secure) && (isset($cookie['secure'])) && ($cookie['secure'])) { |
|
1294 | + if ((!$secure) && (isset($cookie['secure'])) && ($cookie['secure'])) { |
|
1295 | 1295 | $this->debug('cookie is secure, transport is not'); |
1296 | 1296 | continue; |
1297 | 1297 | } |
1298 | - $cookie_str .= $cookie['name'] . '=' . $cookie['value'] . '; '; |
|
1299 | - $this->debug('add cookie to Cookie-String: ' . $cookie['name'] . '=' . $cookie['value']); |
|
1298 | + $cookie_str .= $cookie['name'].'='.$cookie['value'].'; '; |
|
1299 | + $this->debug('add cookie to Cookie-String: '.$cookie['name'].'='.$cookie['value']); |
|
1300 | 1300 | } |
1301 | 1301 | } |
1302 | 1302 | return $cookie_str; |
@@ -159,10 +159,12 @@ discard block |
||
159 | 159 | * @access private |
160 | 160 | */ |
161 | 161 | function io_method() { |
162 | - if ($this->use_curl || ($this->scheme == 'https') || ($this->scheme == 'http' && $this->authtype == 'ntlm') || ($this->scheme == 'http' && is_array($this->proxy) && $this->proxy['authtype'] == 'ntlm')) |
|
163 | - return 'curl'; |
|
164 | - if (($this->scheme == 'http' || $this->scheme == 'ssl') && $this->authtype != 'ntlm' && (!is_array($this->proxy) || $this->proxy['authtype'] != 'ntlm')) |
|
165 | - return 'socket'; |
|
162 | + if ($this->use_curl || ($this->scheme == 'https') || ($this->scheme == 'http' && $this->authtype == 'ntlm') || ($this->scheme == 'http' && is_array($this->proxy) && $this->proxy['authtype'] == 'ntlm')) { |
|
163 | + return 'curl'; |
|
164 | + } |
|
165 | + if (($this->scheme == 'http' || $this->scheme == 'ssl') && $this->authtype != 'ntlm' && (!is_array($this->proxy) || $this->proxy['authtype'] != 'ntlm')) { |
|
166 | + return 'socket'; |
|
167 | + } |
|
166 | 168 | return 'unknown'; |
167 | 169 | } |
168 | 170 | |
@@ -246,30 +248,36 @@ discard block |
||
246 | 248 | return false; |
247 | 249 | } |
248 | 250 | // Avoid warnings when PHP does not have these options |
249 | - if (defined('CURLOPT_CONNECTIONTIMEOUT')) |
|
250 | - $CURLOPT_CONNECTIONTIMEOUT = CURLOPT_CONNECTIONTIMEOUT; |
|
251 | - else |
|
252 | - $CURLOPT_CONNECTIONTIMEOUT = 78; |
|
253 | - if (defined('CURLOPT_HTTPAUTH')) |
|
254 | - $CURLOPT_HTTPAUTH = CURLOPT_HTTPAUTH; |
|
255 | - else |
|
256 | - $CURLOPT_HTTPAUTH = 107; |
|
257 | - if (defined('CURLOPT_PROXYAUTH')) |
|
258 | - $CURLOPT_PROXYAUTH = CURLOPT_PROXYAUTH; |
|
259 | - else |
|
260 | - $CURLOPT_PROXYAUTH = 111; |
|
261 | - if (defined('CURLAUTH_BASIC')) |
|
262 | - $CURLAUTH_BASIC = CURLAUTH_BASIC; |
|
263 | - else |
|
264 | - $CURLAUTH_BASIC = 1; |
|
265 | - if (defined('CURLAUTH_DIGEST')) |
|
266 | - $CURLAUTH_DIGEST = CURLAUTH_DIGEST; |
|
267 | - else |
|
268 | - $CURLAUTH_DIGEST = 2; |
|
269 | - if (defined('CURLAUTH_NTLM')) |
|
270 | - $CURLAUTH_NTLM = CURLAUTH_NTLM; |
|
271 | - else |
|
272 | - $CURLAUTH_NTLM = 8; |
|
251 | + if (defined('CURLOPT_CONNECTIONTIMEOUT')) { |
|
252 | + $CURLOPT_CONNECTIONTIMEOUT = CURLOPT_CONNECTIONTIMEOUT; |
|
253 | + } else { |
|
254 | + $CURLOPT_CONNECTIONTIMEOUT = 78; |
|
255 | + } |
|
256 | + if (defined('CURLOPT_HTTPAUTH')) { |
|
257 | + $CURLOPT_HTTPAUTH = CURLOPT_HTTPAUTH; |
|
258 | + } else { |
|
259 | + $CURLOPT_HTTPAUTH = 107; |
|
260 | + } |
|
261 | + if (defined('CURLOPT_PROXYAUTH')) { |
|
262 | + $CURLOPT_PROXYAUTH = CURLOPT_PROXYAUTH; |
|
263 | + } else { |
|
264 | + $CURLOPT_PROXYAUTH = 111; |
|
265 | + } |
|
266 | + if (defined('CURLAUTH_BASIC')) { |
|
267 | + $CURLAUTH_BASIC = CURLAUTH_BASIC; |
|
268 | + } else { |
|
269 | + $CURLAUTH_BASIC = 1; |
|
270 | + } |
|
271 | + if (defined('CURLAUTH_DIGEST')) { |
|
272 | + $CURLAUTH_DIGEST = CURLAUTH_DIGEST; |
|
273 | + } else { |
|
274 | + $CURLAUTH_DIGEST = 2; |
|
275 | + } |
|
276 | + if (defined('CURLAUTH_NTLM')) { |
|
277 | + $CURLAUTH_NTLM = CURLAUTH_NTLM; |
|
278 | + } else { |
|
279 | + $CURLAUTH_NTLM = 8; |
|
280 | + } |
|
273 | 281 | |
274 | 282 | $this->debug('connect using cURL'); |
275 | 283 | // init CURL |
@@ -612,7 +620,9 @@ discard block |
||
612 | 620 | 'HTTP/1.0 200 Connection established'); |
613 | 621 | foreach ($skipHeaders as $hd) { |
614 | 622 | $prefix = substr($data, 0, strlen($hd)); |
615 | - if ($prefix == $hd) return true; |
|
623 | + if ($prefix == $hd) { |
|
624 | + return true; |
|
625 | + } |
|
616 | 626 | } |
617 | 627 | |
618 | 628 | return false; |
@@ -63,7 +63,7 @@ |
||
63 | 63 | * |
64 | 64 | * @param string $name optional name |
65 | 65 | * @param mixed $type optional type name |
66 | - * @param mixed $value optional value |
|
66 | + * @param integer $value optional value |
|
67 | 67 | * @param mixed $element_ns optional namespace of value |
68 | 68 | * @param mixed $type_ns optional namespace of type |
69 | 69 | * @param mixed $attributes associative array of attributes to add to element serialization |
@@ -15,90 +15,90 @@ |
||
15 | 15 | * @access public |
16 | 16 | */ |
17 | 17 | class soapval extends nusoap_base { |
18 | - /** |
|
19 | - * The XML element name |
|
20 | - * |
|
21 | - * @var string |
|
22 | - * @access private |
|
23 | - */ |
|
24 | - var $name; |
|
25 | - /** |
|
26 | - * The XML type name (string or false) |
|
27 | - * |
|
28 | - * @var mixed |
|
29 | - * @access private |
|
30 | - */ |
|
31 | - var $type; |
|
32 | - /** |
|
33 | - * The PHP value |
|
34 | - * |
|
35 | - * @var mixed |
|
36 | - * @access private |
|
37 | - */ |
|
38 | - var $value; |
|
39 | - /** |
|
40 | - * The XML element namespace (string or false) |
|
41 | - * |
|
42 | - * @var mixed |
|
43 | - * @access private |
|
44 | - */ |
|
45 | - var $element_ns; |
|
46 | - /** |
|
47 | - * The XML type namespace (string or false) |
|
48 | - * |
|
49 | - * @var mixed |
|
50 | - * @access private |
|
51 | - */ |
|
52 | - var $type_ns; |
|
53 | - /** |
|
54 | - * The XML element attributes (array or false) |
|
55 | - * |
|
56 | - * @var mixed |
|
57 | - * @access private |
|
58 | - */ |
|
59 | - var $attributes; |
|
18 | + /** |
|
19 | + * The XML element name |
|
20 | + * |
|
21 | + * @var string |
|
22 | + * @access private |
|
23 | + */ |
|
24 | + var $name; |
|
25 | + /** |
|
26 | + * The XML type name (string or false) |
|
27 | + * |
|
28 | + * @var mixed |
|
29 | + * @access private |
|
30 | + */ |
|
31 | + var $type; |
|
32 | + /** |
|
33 | + * The PHP value |
|
34 | + * |
|
35 | + * @var mixed |
|
36 | + * @access private |
|
37 | + */ |
|
38 | + var $value; |
|
39 | + /** |
|
40 | + * The XML element namespace (string or false) |
|
41 | + * |
|
42 | + * @var mixed |
|
43 | + * @access private |
|
44 | + */ |
|
45 | + var $element_ns; |
|
46 | + /** |
|
47 | + * The XML type namespace (string or false) |
|
48 | + * |
|
49 | + * @var mixed |
|
50 | + * @access private |
|
51 | + */ |
|
52 | + var $type_ns; |
|
53 | + /** |
|
54 | + * The XML element attributes (array or false) |
|
55 | + * |
|
56 | + * @var mixed |
|
57 | + * @access private |
|
58 | + */ |
|
59 | + var $attributes; |
|
60 | 60 | |
61 | - /** |
|
62 | - * constructor |
|
63 | - * |
|
64 | - * @param string $name optional name |
|
65 | - * @param mixed $type optional type name |
|
66 | - * @param mixed $value optional value |
|
67 | - * @param mixed $element_ns optional namespace of value |
|
68 | - * @param mixed $type_ns optional namespace of type |
|
69 | - * @param mixed $attributes associative array of attributes to add to element serialization |
|
70 | - * @access public |
|
71 | - */ |
|
72 | - function soapval($name='soapval',$type=false,$value=-1,$element_ns=false,$type_ns=false,$attributes=false) { |
|
73 | - parent::nusoap_base(); |
|
74 | - $this->name = $name; |
|
75 | - $this->type = $type; |
|
76 | - $this->value = $value; |
|
77 | - $this->element_ns = $element_ns; |
|
78 | - $this->type_ns = $type_ns; |
|
79 | - $this->attributes = $attributes; |
|
61 | + /** |
|
62 | + * constructor |
|
63 | + * |
|
64 | + * @param string $name optional name |
|
65 | + * @param mixed $type optional type name |
|
66 | + * @param mixed $value optional value |
|
67 | + * @param mixed $element_ns optional namespace of value |
|
68 | + * @param mixed $type_ns optional namespace of type |
|
69 | + * @param mixed $attributes associative array of attributes to add to element serialization |
|
70 | + * @access public |
|
71 | + */ |
|
72 | + function soapval($name='soapval',$type=false,$value=-1,$element_ns=false,$type_ns=false,$attributes=false) { |
|
73 | + parent::nusoap_base(); |
|
74 | + $this->name = $name; |
|
75 | + $this->type = $type; |
|
76 | + $this->value = $value; |
|
77 | + $this->element_ns = $element_ns; |
|
78 | + $this->type_ns = $type_ns; |
|
79 | + $this->attributes = $attributes; |
|
80 | 80 | } |
81 | 81 | |
82 | - /** |
|
83 | - * return serialized value |
|
84 | - * |
|
85 | - * @param string $use The WSDL use value (encoded|literal) |
|
86 | - * @return string XML data |
|
87 | - * @access public |
|
88 | - */ |
|
89 | - function serialize($use='encoded') { |
|
90 | - return $this->serialize_val($this->value, $this->name, $this->type, $this->element_ns, $this->type_ns, $this->attributes, $use, true); |
|
82 | + /** |
|
83 | + * return serialized value |
|
84 | + * |
|
85 | + * @param string $use The WSDL use value (encoded|literal) |
|
86 | + * @return string XML data |
|
87 | + * @access public |
|
88 | + */ |
|
89 | + function serialize($use='encoded') { |
|
90 | + return $this->serialize_val($this->value, $this->name, $this->type, $this->element_ns, $this->type_ns, $this->attributes, $use, true); |
|
91 | 91 | } |
92 | 92 | |
93 | - /** |
|
94 | - * decodes a soapval object into a PHP native type |
|
95 | - * |
|
96 | - * @return mixed |
|
97 | - * @access public |
|
98 | - */ |
|
99 | - function decode(){ |
|
100 | - return $this->value; |
|
101 | - } |
|
93 | + /** |
|
94 | + * decodes a soapval object into a PHP native type |
|
95 | + * |
|
96 | + * @return mixed |
|
97 | + * @access public |
|
98 | + */ |
|
99 | + function decode(){ |
|
100 | + return $this->value; |
|
101 | + } |
|
102 | 102 | } |
103 | 103 | |
104 | 104 |
@@ -69,7 +69,7 @@ discard block |
||
69 | 69 | * @param mixed $attributes associative array of attributes to add to element serialization |
70 | 70 | * @access public |
71 | 71 | */ |
72 | - function soapval($name='soapval',$type=false,$value=-1,$element_ns=false,$type_ns=false,$attributes=false) { |
|
72 | + function soapval($name = 'soapval', $type = false, $value = -1, $element_ns = false, $type_ns = false, $attributes = false) { |
|
73 | 73 | parent::nusoap_base(); |
74 | 74 | $this->name = $name; |
75 | 75 | $this->type = $type; |
@@ -86,7 +86,7 @@ discard block |
||
86 | 86 | * @return string XML data |
87 | 87 | * @access public |
88 | 88 | */ |
89 | - function serialize($use='encoded') { |
|
89 | + function serialize($use = 'encoded') { |
|
90 | 90 | return $this->serialize_val($this->value, $this->name, $this->type, $this->element_ns, $this->type_ns, $this->attributes, $use, true); |
91 | 91 | } |
92 | 92 | |
@@ -96,7 +96,7 @@ discard block |
||
96 | 96 | * @return mixed |
97 | 97 | * @access public |
98 | 98 | */ |
99 | - function decode(){ |
|
99 | + function decode() { |
|
100 | 100 | return $this->value; |
101 | 101 | } |
102 | 102 | } |
@@ -743,6 +743,7 @@ |
||
743 | 743 | /** |
744 | 744 | * dynamically creates proxy class code |
745 | 745 | * |
746 | + * @param integer $r |
|
746 | 747 | * @return string PHP/NuSOAP code for the proxy class |
747 | 748 | * @access private |
748 | 749 | */ |
@@ -25,967 +25,967 @@ |
||
25 | 25 | */ |
26 | 26 | class nusoap_client extends nusoap_base { |
27 | 27 | |
28 | - var $username = ''; // Username for HTTP authentication |
|
29 | - var $password = ''; // Password for HTTP authentication |
|
30 | - var $authtype = ''; // Type of HTTP authentication |
|
31 | - var $certRequest = array(); // Certificate for HTTP SSL authentication |
|
32 | - var $requestHeaders = false; // SOAP headers in request (text) |
|
33 | - var $responseHeaders = ''; // SOAP headers from response (incomplete namespace resolution) (text) |
|
34 | - var $responseHeader = NULL; // SOAP Header from response (parsed) |
|
35 | - var $document = ''; // SOAP body response portion (incomplete namespace resolution) (text) |
|
36 | - var $endpoint; |
|
37 | - var $forceEndpoint = ''; // overrides WSDL endpoint |
|
28 | + var $username = ''; // Username for HTTP authentication |
|
29 | + var $password = ''; // Password for HTTP authentication |
|
30 | + var $authtype = ''; // Type of HTTP authentication |
|
31 | + var $certRequest = array(); // Certificate for HTTP SSL authentication |
|
32 | + var $requestHeaders = false; // SOAP headers in request (text) |
|
33 | + var $responseHeaders = ''; // SOAP headers from response (incomplete namespace resolution) (text) |
|
34 | + var $responseHeader = NULL; // SOAP Header from response (parsed) |
|
35 | + var $document = ''; // SOAP body response portion (incomplete namespace resolution) (text) |
|
36 | + var $endpoint; |
|
37 | + var $forceEndpoint = ''; // overrides WSDL endpoint |
|
38 | 38 | var $proxyhost = ''; |
39 | 39 | var $proxyport = ''; |
40 | - var $proxyusername = ''; |
|
41 | - var $proxypassword = ''; |
|
42 | - var $portName = ''; // port name to use in WSDL |
|
40 | + var $proxyusername = ''; |
|
41 | + var $proxypassword = ''; |
|
42 | + var $portName = ''; // port name to use in WSDL |
|
43 | 43 | var $xml_encoding = ''; // character set encoding of incoming (response) messages |
44 | - var $http_encoding = false; |
|
45 | - var $timeout = 0; // HTTP connection timeout |
|
46 | - var $response_timeout = 30; // HTTP response timeout |
|
47 | - var $endpointType = ''; // soap|wsdl, empty for WSDL initialization error |
|
48 | - var $persistentConnection = false; |
|
49 | - var $defaultRpcParams = false; // This is no longer used |
|
50 | - var $request = ''; // HTTP request |
|
51 | - var $response = ''; // HTTP response |
|
52 | - var $responseData = ''; // SOAP payload of response |
|
53 | - var $cookies = array(); // Cookies from response or for request |
|
44 | + var $http_encoding = false; |
|
45 | + var $timeout = 0; // HTTP connection timeout |
|
46 | + var $response_timeout = 30; // HTTP response timeout |
|
47 | + var $endpointType = ''; // soap|wsdl, empty for WSDL initialization error |
|
48 | + var $persistentConnection = false; |
|
49 | + var $defaultRpcParams = false; // This is no longer used |
|
50 | + var $request = ''; // HTTP request |
|
51 | + var $response = ''; // HTTP response |
|
52 | + var $responseData = ''; // SOAP payload of response |
|
53 | + var $cookies = array(); // Cookies from response or for request |
|
54 | 54 | var $decode_utf8 = true; // toggles whether the parser decodes element content w/ utf8_decode() |
55 | - var $operations = array(); // WSDL operations, empty for WSDL initialization error |
|
56 | - var $curl_options = array(); // User-specified cURL options |
|
57 | - var $bindingType = ''; // WSDL operation binding type |
|
58 | - var $use_curl = false; // whether to always try to use cURL |
|
55 | + var $operations = array(); // WSDL operations, empty for WSDL initialization error |
|
56 | + var $curl_options = array(); // User-specified cURL options |
|
57 | + var $bindingType = ''; // WSDL operation binding type |
|
58 | + var $use_curl = false; // whether to always try to use cURL |
|
59 | 59 | |
60 | - /* |
|
60 | + /* |
|
61 | 61 | * fault related variables |
62 | 62 | */ |
63 | - /** |
|
64 | - * @var fault |
|
65 | - * @access public |
|
66 | - */ |
|
67 | - var $fault; |
|
68 | - /** |
|
69 | - * @var faultcode |
|
70 | - * @access public |
|
71 | - */ |
|
72 | - var $faultcode; |
|
73 | - /** |
|
74 | - * @var faultstring |
|
75 | - * @access public |
|
76 | - */ |
|
77 | - var $faultstring; |
|
78 | - /** |
|
79 | - * @var faultdetail |
|
80 | - * @access public |
|
81 | - */ |
|
82 | - var $faultdetail; |
|
83 | - |
|
84 | - /** |
|
85 | - * constructor |
|
86 | - * |
|
87 | - * @param mixed $endpoint SOAP server or WSDL URL (string), or wsdl instance (object) |
|
88 | - * @param mixed $wsdl optional, set to 'wsdl' or true if using WSDL |
|
89 | - * @param string $proxyhost optional |
|
90 | - * @param string $proxyport optional |
|
91 | - * @param string $proxyusername optional |
|
92 | - * @param string $proxypassword optional |
|
93 | - * @param integer $timeout set the connection timeout |
|
94 | - * @param integer $response_timeout set the response timeout |
|
95 | - * @param string $portName optional portName in WSDL document |
|
96 | - * @access public |
|
97 | - */ |
|
98 | - function nusoap_client($endpoint,$wsdl = false,$proxyhost = false,$proxyport = false,$proxyusername = false, $proxypassword = false, $timeout = 0, $response_timeout = 30, $portName = ''){ |
|
99 | - parent::nusoap_base(); |
|
100 | - $this->endpoint = $endpoint; |
|
101 | - $this->proxyhost = $proxyhost; |
|
102 | - $this->proxyport = $proxyport; |
|
103 | - $this->proxyusername = $proxyusername; |
|
104 | - $this->proxypassword = $proxypassword; |
|
105 | - $this->timeout = $timeout; |
|
106 | - $this->response_timeout = $response_timeout; |
|
107 | - $this->portName = $portName; |
|
108 | - |
|
109 | - $this->debug("ctor wsdl=$wsdl timeout=$timeout response_timeout=$response_timeout"); |
|
110 | - $this->appendDebug('endpoint=' . $this->varDump($endpoint)); |
|
111 | - |
|
112 | - // make values |
|
113 | - if($wsdl){ |
|
114 | - if (is_object($endpoint) && (get_class($endpoint) == 'wsdl')) { |
|
115 | - $this->wsdl = $endpoint; |
|
116 | - $this->endpoint = $this->wsdl->wsdl; |
|
117 | - $this->wsdlFile = $this->endpoint; |
|
118 | - $this->debug('existing wsdl instance created from ' . $this->endpoint); |
|
119 | - $this->checkWSDL(); |
|
120 | - } else { |
|
121 | - $this->wsdlFile = $this->endpoint; |
|
122 | - $this->wsdl = null; |
|
123 | - $this->debug('will use lazy evaluation of wsdl from ' . $this->endpoint); |
|
124 | - } |
|
125 | - $this->endpointType = 'wsdl'; |
|
126 | - } else { |
|
127 | - $this->debug("instantiate SOAP with endpoint at $endpoint"); |
|
128 | - $this->endpointType = 'soap'; |
|
129 | - } |
|
130 | - } |
|
63 | + /** |
|
64 | + * @var fault |
|
65 | + * @access public |
|
66 | + */ |
|
67 | + var $fault; |
|
68 | + /** |
|
69 | + * @var faultcode |
|
70 | + * @access public |
|
71 | + */ |
|
72 | + var $faultcode; |
|
73 | + /** |
|
74 | + * @var faultstring |
|
75 | + * @access public |
|
76 | + */ |
|
77 | + var $faultstring; |
|
78 | + /** |
|
79 | + * @var faultdetail |
|
80 | + * @access public |
|
81 | + */ |
|
82 | + var $faultdetail; |
|
131 | 83 | |
132 | - /** |
|
133 | - * calls method, returns PHP native type |
|
134 | - * |
|
135 | - * @param string $operation SOAP server URL or path |
|
136 | - * @param mixed $params An array, associative or simple, of the parameters |
|
137 | - * for the method call, or a string that is the XML |
|
138 | - * for the call. For rpc style, this call will |
|
139 | - * wrap the XML in a tag named after the method, as |
|
140 | - * well as the SOAP Envelope and Body. For document |
|
141 | - * style, this will only wrap with the Envelope and Body. |
|
142 | - * IMPORTANT: when using an array with document style, |
|
143 | - * in which case there |
|
144 | - * is really one parameter, the root of the fragment |
|
145 | - * used in the call, which encloses what programmers |
|
146 | - * normally think of parameters. A parameter array |
|
147 | - * *must* include the wrapper. |
|
148 | - * @param string $namespace optional method namespace (WSDL can override) |
|
149 | - * @param string $soapAction optional SOAPAction value (WSDL can override) |
|
150 | - * @param mixed $headers optional string of XML with SOAP header content, or array of soapval objects for SOAP headers, or associative array |
|
151 | - * @param boolean $rpcParams optional (no longer used) |
|
152 | - * @param string $style optional (rpc|document) the style to use when serializing parameters (WSDL can override) |
|
153 | - * @param string $use optional (encoded|literal) the use when serializing parameters (WSDL can override) |
|
154 | - * @return mixed response from SOAP call, normally an associative array mirroring the structure of the XML response, false for certain fatal errors |
|
155 | - * @access public |
|
156 | - */ |
|
157 | - function call($operation,$params=array(),$namespace='http://tempuri.org',$soapAction='',$headers=false,$rpcParams=null,$style='rpc',$use='encoded'){ |
|
158 | - $this->operation = $operation; |
|
159 | - $this->fault = false; |
|
160 | - $this->setError(''); |
|
161 | - $this->request = ''; |
|
162 | - $this->response = ''; |
|
163 | - $this->responseData = ''; |
|
164 | - $this->faultstring = ''; |
|
165 | - $this->faultcode = ''; |
|
166 | - $this->opData = array(); |
|
84 | + /** |
|
85 | + * constructor |
|
86 | + * |
|
87 | + * @param mixed $endpoint SOAP server or WSDL URL (string), or wsdl instance (object) |
|
88 | + * @param mixed $wsdl optional, set to 'wsdl' or true if using WSDL |
|
89 | + * @param string $proxyhost optional |
|
90 | + * @param string $proxyport optional |
|
91 | + * @param string $proxyusername optional |
|
92 | + * @param string $proxypassword optional |
|
93 | + * @param integer $timeout set the connection timeout |
|
94 | + * @param integer $response_timeout set the response timeout |
|
95 | + * @param string $portName optional portName in WSDL document |
|
96 | + * @access public |
|
97 | + */ |
|
98 | + function nusoap_client($endpoint,$wsdl = false,$proxyhost = false,$proxyport = false,$proxyusername = false, $proxypassword = false, $timeout = 0, $response_timeout = 30, $portName = ''){ |
|
99 | + parent::nusoap_base(); |
|
100 | + $this->endpoint = $endpoint; |
|
101 | + $this->proxyhost = $proxyhost; |
|
102 | + $this->proxyport = $proxyport; |
|
103 | + $this->proxyusername = $proxyusername; |
|
104 | + $this->proxypassword = $proxypassword; |
|
105 | + $this->timeout = $timeout; |
|
106 | + $this->response_timeout = $response_timeout; |
|
107 | + $this->portName = $portName; |
|
108 | + |
|
109 | + $this->debug("ctor wsdl=$wsdl timeout=$timeout response_timeout=$response_timeout"); |
|
110 | + $this->appendDebug('endpoint=' . $this->varDump($endpoint)); |
|
111 | + |
|
112 | + // make values |
|
113 | + if($wsdl){ |
|
114 | + if (is_object($endpoint) && (get_class($endpoint) == 'wsdl')) { |
|
115 | + $this->wsdl = $endpoint; |
|
116 | + $this->endpoint = $this->wsdl->wsdl; |
|
117 | + $this->wsdlFile = $this->endpoint; |
|
118 | + $this->debug('existing wsdl instance created from ' . $this->endpoint); |
|
119 | + $this->checkWSDL(); |
|
120 | + } else { |
|
121 | + $this->wsdlFile = $this->endpoint; |
|
122 | + $this->wsdl = null; |
|
123 | + $this->debug('will use lazy evaluation of wsdl from ' . $this->endpoint); |
|
124 | + } |
|
125 | + $this->endpointType = 'wsdl'; |
|
126 | + } else { |
|
127 | + $this->debug("instantiate SOAP with endpoint at $endpoint"); |
|
128 | + $this->endpointType = 'soap'; |
|
129 | + } |
|
130 | + } |
|
131 | + |
|
132 | + /** |
|
133 | + * calls method, returns PHP native type |
|
134 | + * |
|
135 | + * @param string $operation SOAP server URL or path |
|
136 | + * @param mixed $params An array, associative or simple, of the parameters |
|
137 | + * for the method call, or a string that is the XML |
|
138 | + * for the call. For rpc style, this call will |
|
139 | + * wrap the XML in a tag named after the method, as |
|
140 | + * well as the SOAP Envelope and Body. For document |
|
141 | + * style, this will only wrap with the Envelope and Body. |
|
142 | + * IMPORTANT: when using an array with document style, |
|
143 | + * in which case there |
|
144 | + * is really one parameter, the root of the fragment |
|
145 | + * used in the call, which encloses what programmers |
|
146 | + * normally think of parameters. A parameter array |
|
147 | + * *must* include the wrapper. |
|
148 | + * @param string $namespace optional method namespace (WSDL can override) |
|
149 | + * @param string $soapAction optional SOAPAction value (WSDL can override) |
|
150 | + * @param mixed $headers optional string of XML with SOAP header content, or array of soapval objects for SOAP headers, or associative array |
|
151 | + * @param boolean $rpcParams optional (no longer used) |
|
152 | + * @param string $style optional (rpc|document) the style to use when serializing parameters (WSDL can override) |
|
153 | + * @param string $use optional (encoded|literal) the use when serializing parameters (WSDL can override) |
|
154 | + * @return mixed response from SOAP call, normally an associative array mirroring the structure of the XML response, false for certain fatal errors |
|
155 | + * @access public |
|
156 | + */ |
|
157 | + function call($operation,$params=array(),$namespace='http://tempuri.org',$soapAction='',$headers=false,$rpcParams=null,$style='rpc',$use='encoded'){ |
|
158 | + $this->operation = $operation; |
|
159 | + $this->fault = false; |
|
160 | + $this->setError(''); |
|
161 | + $this->request = ''; |
|
162 | + $this->response = ''; |
|
163 | + $this->responseData = ''; |
|
164 | + $this->faultstring = ''; |
|
165 | + $this->faultcode = ''; |
|
166 | + $this->opData = array(); |
|
167 | 167 | |
168 | - $this->debug("call: operation=$operation, namespace=$namespace, soapAction=$soapAction, rpcParams=$rpcParams, style=$style, use=$use, endpointType=$this->endpointType"); |
|
169 | - $this->appendDebug('params=' . $this->varDump($params)); |
|
170 | - $this->appendDebug('headers=' . $this->varDump($headers)); |
|
171 | - if ($headers) { |
|
172 | - $this->requestHeaders = $headers; |
|
173 | - } |
|
174 | - if ($this->endpointType == 'wsdl' && is_null($this->wsdl)) { |
|
175 | - $this->loadWSDL(); |
|
176 | - if ($this->getError()) |
|
177 | - return false; |
|
178 | - } |
|
179 | - // serialize parameters |
|
180 | - if($this->endpointType == 'wsdl' && $opData = $this->getOperationData($operation)){ |
|
181 | - // use WSDL for operation |
|
182 | - $this->opData = $opData; |
|
183 | - $this->debug("found operation"); |
|
184 | - $this->appendDebug('opData=' . $this->varDump($opData)); |
|
185 | - if (isset($opData['soapAction'])) { |
|
186 | - $soapAction = $opData['soapAction']; |
|
187 | - } |
|
188 | - if (! $this->forceEndpoint) { |
|
189 | - $this->endpoint = $opData['endpoint']; |
|
190 | - } else { |
|
191 | - $this->endpoint = $this->forceEndpoint; |
|
192 | - } |
|
193 | - $namespace = isset($opData['input']['namespace']) ? $opData['input']['namespace'] : $namespace; |
|
194 | - $style = $opData['style']; |
|
195 | - $use = $opData['input']['use']; |
|
196 | - // add ns to ns array |
|
197 | - if($namespace != '' && !isset($this->wsdl->namespaces[$namespace])){ |
|
198 | - $nsPrefix = 'ns' . rand(1000, 9999); |
|
199 | - $this->wsdl->namespaces[$nsPrefix] = $namespace; |
|
200 | - } |
|
168 | + $this->debug("call: operation=$operation, namespace=$namespace, soapAction=$soapAction, rpcParams=$rpcParams, style=$style, use=$use, endpointType=$this->endpointType"); |
|
169 | + $this->appendDebug('params=' . $this->varDump($params)); |
|
170 | + $this->appendDebug('headers=' . $this->varDump($headers)); |
|
171 | + if ($headers) { |
|
172 | + $this->requestHeaders = $headers; |
|
173 | + } |
|
174 | + if ($this->endpointType == 'wsdl' && is_null($this->wsdl)) { |
|
175 | + $this->loadWSDL(); |
|
176 | + if ($this->getError()) |
|
177 | + return false; |
|
178 | + } |
|
179 | + // serialize parameters |
|
180 | + if($this->endpointType == 'wsdl' && $opData = $this->getOperationData($operation)){ |
|
181 | + // use WSDL for operation |
|
182 | + $this->opData = $opData; |
|
183 | + $this->debug("found operation"); |
|
184 | + $this->appendDebug('opData=' . $this->varDump($opData)); |
|
185 | + if (isset($opData['soapAction'])) { |
|
186 | + $soapAction = $opData['soapAction']; |
|
187 | + } |
|
188 | + if (! $this->forceEndpoint) { |
|
189 | + $this->endpoint = $opData['endpoint']; |
|
190 | + } else { |
|
191 | + $this->endpoint = $this->forceEndpoint; |
|
192 | + } |
|
193 | + $namespace = isset($opData['input']['namespace']) ? $opData['input']['namespace'] : $namespace; |
|
194 | + $style = $opData['style']; |
|
195 | + $use = $opData['input']['use']; |
|
196 | + // add ns to ns array |
|
197 | + if($namespace != '' && !isset($this->wsdl->namespaces[$namespace])){ |
|
198 | + $nsPrefix = 'ns' . rand(1000, 9999); |
|
199 | + $this->wsdl->namespaces[$nsPrefix] = $namespace; |
|
200 | + } |
|
201 | 201 | $nsPrefix = $this->wsdl->getPrefixFromNamespace($namespace); |
202 | - // serialize payload |
|
203 | - if (is_string($params)) { |
|
204 | - $this->debug("serializing param string for WSDL operation $operation"); |
|
205 | - $payload = $params; |
|
206 | - } elseif (is_array($params)) { |
|
207 | - $this->debug("serializing param array for WSDL operation $operation"); |
|
208 | - $payload = $this->wsdl->serializeRPCParameters($operation,'input',$params,$this->bindingType); |
|
209 | - } else { |
|
210 | - $this->debug('params must be array or string'); |
|
211 | - $this->setError('params must be array or string'); |
|
212 | - return false; |
|
213 | - } |
|
202 | + // serialize payload |
|
203 | + if (is_string($params)) { |
|
204 | + $this->debug("serializing param string for WSDL operation $operation"); |
|
205 | + $payload = $params; |
|
206 | + } elseif (is_array($params)) { |
|
207 | + $this->debug("serializing param array for WSDL operation $operation"); |
|
208 | + $payload = $this->wsdl->serializeRPCParameters($operation,'input',$params,$this->bindingType); |
|
209 | + } else { |
|
210 | + $this->debug('params must be array or string'); |
|
211 | + $this->setError('params must be array or string'); |
|
212 | + return false; |
|
213 | + } |
|
214 | 214 | $usedNamespaces = $this->wsdl->usedNamespaces; |
215 | - if (isset($opData['input']['encodingStyle'])) { |
|
216 | - $encodingStyle = $opData['input']['encodingStyle']; |
|
217 | - } else { |
|
218 | - $encodingStyle = ''; |
|
219 | - } |
|
220 | - $this->appendDebug($this->wsdl->getDebug()); |
|
221 | - $this->wsdl->clearDebug(); |
|
222 | - if ($errstr = $this->wsdl->getError()) { |
|
223 | - $this->debug('got wsdl error: '.$errstr); |
|
224 | - $this->setError('wsdl error: '.$errstr); |
|
225 | - return false; |
|
226 | - } |
|
227 | - } elseif($this->endpointType == 'wsdl') { |
|
228 | - // operation not in WSDL |
|
229 | - $this->appendDebug($this->wsdl->getDebug()); |
|
230 | - $this->wsdl->clearDebug(); |
|
231 | - $this->setError('operation '.$operation.' not present in WSDL.'); |
|
232 | - $this->debug("operation '$operation' not present in WSDL."); |
|
233 | - return false; |
|
234 | - } else { |
|
235 | - // no WSDL |
|
236 | - //$this->namespaces['ns1'] = $namespace; |
|
237 | - $nsPrefix = 'ns' . rand(1000, 9999); |
|
238 | - // serialize |
|
239 | - $payload = ''; |
|
240 | - if (is_string($params)) { |
|
241 | - $this->debug("serializing param string for operation $operation"); |
|
242 | - $payload = $params; |
|
243 | - } elseif (is_array($params)) { |
|
244 | - $this->debug("serializing param array for operation $operation"); |
|
245 | - foreach($params as $k => $v){ |
|
246 | - $payload .= $this->serialize_val($v,$k,false,false,false,false,$use); |
|
247 | - } |
|
248 | - } else { |
|
249 | - $this->debug('params must be array or string'); |
|
250 | - $this->setError('params must be array or string'); |
|
251 | - return false; |
|
252 | - } |
|
253 | - $usedNamespaces = array(); |
|
254 | - if ($use == 'encoded') { |
|
255 | - $encodingStyle = 'http://schemas.xmlsoap.org/soap/encoding/'; |
|
256 | - } else { |
|
257 | - $encodingStyle = ''; |
|
258 | - } |
|
259 | - } |
|
260 | - // wrap RPC calls with method element |
|
261 | - if ($style == 'rpc') { |
|
262 | - if ($use == 'literal') { |
|
263 | - $this->debug("wrapping RPC request with literal method element"); |
|
264 | - if ($namespace) { |
|
265 | - // http://www.ws-i.org/Profiles/BasicProfile-1.1-2004-08-24.html R2735 says rpc/literal accessor elements should not be in a namespace |
|
266 | - $payload = "<$nsPrefix:$operation xmlns:$nsPrefix=\"$namespace\">" . |
|
267 | - $payload . |
|
268 | - "</$nsPrefix:$operation>"; |
|
269 | - } else { |
|
270 | - $payload = "<$operation>" . $payload . "</$operation>"; |
|
271 | - } |
|
272 | - } else { |
|
273 | - $this->debug("wrapping RPC request with encoded method element"); |
|
274 | - if ($namespace) { |
|
275 | - $payload = "<$nsPrefix:$operation xmlns:$nsPrefix=\"$namespace\">" . |
|
276 | - $payload . |
|
277 | - "</$nsPrefix:$operation>"; |
|
278 | - } else { |
|
279 | - $payload = "<$operation>" . |
|
280 | - $payload . |
|
281 | - "</$operation>"; |
|
282 | - } |
|
283 | - } |
|
284 | - } |
|
285 | - // serialize envelope |
|
286 | - $soapmsg = $this->serializeEnvelope($payload,$this->requestHeaders,$usedNamespaces,$style,$use,$encodingStyle); |
|
287 | - $this->debug("endpoint=$this->endpoint, soapAction=$soapAction, namespace=$namespace, style=$style, use=$use, encodingStyle=$encodingStyle"); |
|
288 | - $this->debug('SOAP message length=' . strlen($soapmsg) . ' contents (max 1000 bytes)=' . substr($soapmsg, 0, 1000)); |
|
289 | - // send |
|
290 | - $return = $this->send($this->getHTTPBody($soapmsg),$soapAction,$this->timeout,$this->response_timeout); |
|
291 | - if($errstr = $this->getError()){ |
|
292 | - $this->debug('Error: '.$errstr); |
|
293 | - return false; |
|
294 | - } else { |
|
295 | - $this->return = $return; |
|
296 | - $this->debug('sent message successfully and got a(n) '.gettype($return)); |
|
297 | - $this->appendDebug('return=' . $this->varDump($return)); |
|
215 | + if (isset($opData['input']['encodingStyle'])) { |
|
216 | + $encodingStyle = $opData['input']['encodingStyle']; |
|
217 | + } else { |
|
218 | + $encodingStyle = ''; |
|
219 | + } |
|
220 | + $this->appendDebug($this->wsdl->getDebug()); |
|
221 | + $this->wsdl->clearDebug(); |
|
222 | + if ($errstr = $this->wsdl->getError()) { |
|
223 | + $this->debug('got wsdl error: '.$errstr); |
|
224 | + $this->setError('wsdl error: '.$errstr); |
|
225 | + return false; |
|
226 | + } |
|
227 | + } elseif($this->endpointType == 'wsdl') { |
|
228 | + // operation not in WSDL |
|
229 | + $this->appendDebug($this->wsdl->getDebug()); |
|
230 | + $this->wsdl->clearDebug(); |
|
231 | + $this->setError('operation '.$operation.' not present in WSDL.'); |
|
232 | + $this->debug("operation '$operation' not present in WSDL."); |
|
233 | + return false; |
|
234 | + } else { |
|
235 | + // no WSDL |
|
236 | + //$this->namespaces['ns1'] = $namespace; |
|
237 | + $nsPrefix = 'ns' . rand(1000, 9999); |
|
238 | + // serialize |
|
239 | + $payload = ''; |
|
240 | + if (is_string($params)) { |
|
241 | + $this->debug("serializing param string for operation $operation"); |
|
242 | + $payload = $params; |
|
243 | + } elseif (is_array($params)) { |
|
244 | + $this->debug("serializing param array for operation $operation"); |
|
245 | + foreach($params as $k => $v){ |
|
246 | + $payload .= $this->serialize_val($v,$k,false,false,false,false,$use); |
|
247 | + } |
|
248 | + } else { |
|
249 | + $this->debug('params must be array or string'); |
|
250 | + $this->setError('params must be array or string'); |
|
251 | + return false; |
|
252 | + } |
|
253 | + $usedNamespaces = array(); |
|
254 | + if ($use == 'encoded') { |
|
255 | + $encodingStyle = 'http://schemas.xmlsoap.org/soap/encoding/'; |
|
256 | + } else { |
|
257 | + $encodingStyle = ''; |
|
258 | + } |
|
259 | + } |
|
260 | + // wrap RPC calls with method element |
|
261 | + if ($style == 'rpc') { |
|
262 | + if ($use == 'literal') { |
|
263 | + $this->debug("wrapping RPC request with literal method element"); |
|
264 | + if ($namespace) { |
|
265 | + // http://www.ws-i.org/Profiles/BasicProfile-1.1-2004-08-24.html R2735 says rpc/literal accessor elements should not be in a namespace |
|
266 | + $payload = "<$nsPrefix:$operation xmlns:$nsPrefix=\"$namespace\">" . |
|
267 | + $payload . |
|
268 | + "</$nsPrefix:$operation>"; |
|
269 | + } else { |
|
270 | + $payload = "<$operation>" . $payload . "</$operation>"; |
|
271 | + } |
|
272 | + } else { |
|
273 | + $this->debug("wrapping RPC request with encoded method element"); |
|
274 | + if ($namespace) { |
|
275 | + $payload = "<$nsPrefix:$operation xmlns:$nsPrefix=\"$namespace\">" . |
|
276 | + $payload . |
|
277 | + "</$nsPrefix:$operation>"; |
|
278 | + } else { |
|
279 | + $payload = "<$operation>" . |
|
280 | + $payload . |
|
281 | + "</$operation>"; |
|
282 | + } |
|
283 | + } |
|
284 | + } |
|
285 | + // serialize envelope |
|
286 | + $soapmsg = $this->serializeEnvelope($payload,$this->requestHeaders,$usedNamespaces,$style,$use,$encodingStyle); |
|
287 | + $this->debug("endpoint=$this->endpoint, soapAction=$soapAction, namespace=$namespace, style=$style, use=$use, encodingStyle=$encodingStyle"); |
|
288 | + $this->debug('SOAP message length=' . strlen($soapmsg) . ' contents (max 1000 bytes)=' . substr($soapmsg, 0, 1000)); |
|
289 | + // send |
|
290 | + $return = $this->send($this->getHTTPBody($soapmsg),$soapAction,$this->timeout,$this->response_timeout); |
|
291 | + if($errstr = $this->getError()){ |
|
292 | + $this->debug('Error: '.$errstr); |
|
293 | + return false; |
|
294 | + } else { |
|
295 | + $this->return = $return; |
|
296 | + $this->debug('sent message successfully and got a(n) '.gettype($return)); |
|
297 | + $this->appendDebug('return=' . $this->varDump($return)); |
|
298 | 298 | |
299 | - // fault? |
|
300 | - if(is_array($return) && isset($return['faultcode'])){ |
|
301 | - $this->debug('got fault'); |
|
302 | - $this->setError($return['faultcode'].': '.$return['faultstring']); |
|
303 | - $this->fault = true; |
|
304 | - foreach($return as $k => $v){ |
|
305 | - $this->$k = $v; |
|
306 | - $this->debug("$k = $v<br>"); |
|
307 | - } |
|
308 | - return $return; |
|
309 | - } elseif ($style == 'document') { |
|
310 | - // NOTE: if the response is defined to have multiple parts (i.e. unwrapped), |
|
311 | - // we are only going to return the first part here...sorry about that |
|
312 | - return $return; |
|
313 | - } else { |
|
314 | - // array of return values |
|
315 | - if(is_array($return)){ |
|
316 | - // multiple 'out' parameters, which we return wrapped up |
|
317 | - // in the array |
|
318 | - if(sizeof($return) > 1){ |
|
319 | - return $return; |
|
320 | - } |
|
321 | - // single 'out' parameter (normally the return value) |
|
322 | - $return = array_shift($return); |
|
323 | - $this->debug('return shifted value: '); |
|
324 | - $this->appendDebug($this->varDump($return)); |
|
325 | - return $return; |
|
326 | - // nothing returned (ie, echoVoid) |
|
327 | - } else { |
|
328 | - return ""; |
|
329 | - } |
|
330 | - } |
|
331 | - } |
|
332 | - } |
|
299 | + // fault? |
|
300 | + if(is_array($return) && isset($return['faultcode'])){ |
|
301 | + $this->debug('got fault'); |
|
302 | + $this->setError($return['faultcode'].': '.$return['faultstring']); |
|
303 | + $this->fault = true; |
|
304 | + foreach($return as $k => $v){ |
|
305 | + $this->$k = $v; |
|
306 | + $this->debug("$k = $v<br>"); |
|
307 | + } |
|
308 | + return $return; |
|
309 | + } elseif ($style == 'document') { |
|
310 | + // NOTE: if the response is defined to have multiple parts (i.e. unwrapped), |
|
311 | + // we are only going to return the first part here...sorry about that |
|
312 | + return $return; |
|
313 | + } else { |
|
314 | + // array of return values |
|
315 | + if(is_array($return)){ |
|
316 | + // multiple 'out' parameters, which we return wrapped up |
|
317 | + // in the array |
|
318 | + if(sizeof($return) > 1){ |
|
319 | + return $return; |
|
320 | + } |
|
321 | + // single 'out' parameter (normally the return value) |
|
322 | + $return = array_shift($return); |
|
323 | + $this->debug('return shifted value: '); |
|
324 | + $this->appendDebug($this->varDump($return)); |
|
325 | + return $return; |
|
326 | + // nothing returned (ie, echoVoid) |
|
327 | + } else { |
|
328 | + return ""; |
|
329 | + } |
|
330 | + } |
|
331 | + } |
|
332 | + } |
|
333 | 333 | |
334 | - /** |
|
335 | - * check WSDL passed as an instance or pulled from an endpoint |
|
336 | - * |
|
337 | - * @access private |
|
338 | - */ |
|
339 | - function checkWSDL() { |
|
340 | - $this->appendDebug($this->wsdl->getDebug()); |
|
341 | - $this->wsdl->clearDebug(); |
|
342 | - $this->debug('checkWSDL'); |
|
343 | - // catch errors |
|
344 | - if ($errstr = $this->wsdl->getError()) { |
|
345 | - $this->appendDebug($this->wsdl->getDebug()); |
|
346 | - $this->wsdl->clearDebug(); |
|
347 | - $this->debug('got wsdl error: '.$errstr); |
|
348 | - $this->setError('wsdl error: '.$errstr); |
|
349 | - } elseif ($this->operations = $this->wsdl->getOperations($this->portName, 'soap')) { |
|
350 | - $this->appendDebug($this->wsdl->getDebug()); |
|
351 | - $this->wsdl->clearDebug(); |
|
352 | - $this->bindingType = 'soap'; |
|
353 | - $this->debug('got '.count($this->operations).' operations from wsdl '.$this->wsdlFile.' for binding type '.$this->bindingType); |
|
354 | - } elseif ($this->operations = $this->wsdl->getOperations($this->portName, 'soap12')) { |
|
355 | - $this->appendDebug($this->wsdl->getDebug()); |
|
356 | - $this->wsdl->clearDebug(); |
|
357 | - $this->bindingType = 'soap12'; |
|
358 | - $this->debug('got '.count($this->operations).' operations from wsdl '.$this->wsdlFile.' for binding type '.$this->bindingType); |
|
359 | - $this->debug('**************** WARNING: SOAP 1.2 BINDING *****************'); |
|
360 | - } else { |
|
361 | - $this->appendDebug($this->wsdl->getDebug()); |
|
362 | - $this->wsdl->clearDebug(); |
|
363 | - $this->debug('getOperations returned false'); |
|
364 | - $this->setError('no operations defined in the WSDL document!'); |
|
365 | - } |
|
366 | - } |
|
334 | + /** |
|
335 | + * check WSDL passed as an instance or pulled from an endpoint |
|
336 | + * |
|
337 | + * @access private |
|
338 | + */ |
|
339 | + function checkWSDL() { |
|
340 | + $this->appendDebug($this->wsdl->getDebug()); |
|
341 | + $this->wsdl->clearDebug(); |
|
342 | + $this->debug('checkWSDL'); |
|
343 | + // catch errors |
|
344 | + if ($errstr = $this->wsdl->getError()) { |
|
345 | + $this->appendDebug($this->wsdl->getDebug()); |
|
346 | + $this->wsdl->clearDebug(); |
|
347 | + $this->debug('got wsdl error: '.$errstr); |
|
348 | + $this->setError('wsdl error: '.$errstr); |
|
349 | + } elseif ($this->operations = $this->wsdl->getOperations($this->portName, 'soap')) { |
|
350 | + $this->appendDebug($this->wsdl->getDebug()); |
|
351 | + $this->wsdl->clearDebug(); |
|
352 | + $this->bindingType = 'soap'; |
|
353 | + $this->debug('got '.count($this->operations).' operations from wsdl '.$this->wsdlFile.' for binding type '.$this->bindingType); |
|
354 | + } elseif ($this->operations = $this->wsdl->getOperations($this->portName, 'soap12')) { |
|
355 | + $this->appendDebug($this->wsdl->getDebug()); |
|
356 | + $this->wsdl->clearDebug(); |
|
357 | + $this->bindingType = 'soap12'; |
|
358 | + $this->debug('got '.count($this->operations).' operations from wsdl '.$this->wsdlFile.' for binding type '.$this->bindingType); |
|
359 | + $this->debug('**************** WARNING: SOAP 1.2 BINDING *****************'); |
|
360 | + } else { |
|
361 | + $this->appendDebug($this->wsdl->getDebug()); |
|
362 | + $this->wsdl->clearDebug(); |
|
363 | + $this->debug('getOperations returned false'); |
|
364 | + $this->setError('no operations defined in the WSDL document!'); |
|
365 | + } |
|
366 | + } |
|
367 | 367 | |
368 | - /** |
|
369 | - * instantiate wsdl object and parse wsdl file |
|
370 | - * |
|
371 | - * @access public |
|
372 | - */ |
|
373 | - function loadWSDL() { |
|
374 | - $this->debug('instantiating wsdl class with doc: '.$this->wsdlFile); |
|
375 | - $this->wsdl = new wsdl('',$this->proxyhost,$this->proxyport,$this->proxyusername,$this->proxypassword,$this->timeout,$this->response_timeout,$this->curl_options,$this->use_curl); |
|
376 | - $this->wsdl->setCredentials($this->username, $this->password, $this->authtype, $this->certRequest); |
|
377 | - $this->wsdl->fetchWSDL($this->wsdlFile); |
|
378 | - $this->checkWSDL(); |
|
379 | - } |
|
368 | + /** |
|
369 | + * instantiate wsdl object and parse wsdl file |
|
370 | + * |
|
371 | + * @access public |
|
372 | + */ |
|
373 | + function loadWSDL() { |
|
374 | + $this->debug('instantiating wsdl class with doc: '.$this->wsdlFile); |
|
375 | + $this->wsdl = new wsdl('',$this->proxyhost,$this->proxyport,$this->proxyusername,$this->proxypassword,$this->timeout,$this->response_timeout,$this->curl_options,$this->use_curl); |
|
376 | + $this->wsdl->setCredentials($this->username, $this->password, $this->authtype, $this->certRequest); |
|
377 | + $this->wsdl->fetchWSDL($this->wsdlFile); |
|
378 | + $this->checkWSDL(); |
|
379 | + } |
|
380 | 380 | |
381 | - /** |
|
382 | - * get available data pertaining to an operation |
|
383 | - * |
|
384 | - * @param string $operation operation name |
|
385 | - * @return array array of data pertaining to the operation |
|
386 | - * @access public |
|
387 | - */ |
|
388 | - function getOperationData($operation){ |
|
389 | - if ($this->endpointType == 'wsdl' && is_null($this->wsdl)) { |
|
390 | - $this->loadWSDL(); |
|
391 | - if ($this->getError()) |
|
392 | - return false; |
|
393 | - } |
|
394 | - if(isset($this->operations[$operation])){ |
|
395 | - return $this->operations[$operation]; |
|
396 | - } |
|
397 | - $this->debug("No data for operation: $operation"); |
|
398 | - } |
|
381 | + /** |
|
382 | + * get available data pertaining to an operation |
|
383 | + * |
|
384 | + * @param string $operation operation name |
|
385 | + * @return array array of data pertaining to the operation |
|
386 | + * @access public |
|
387 | + */ |
|
388 | + function getOperationData($operation){ |
|
389 | + if ($this->endpointType == 'wsdl' && is_null($this->wsdl)) { |
|
390 | + $this->loadWSDL(); |
|
391 | + if ($this->getError()) |
|
392 | + return false; |
|
393 | + } |
|
394 | + if(isset($this->operations[$operation])){ |
|
395 | + return $this->operations[$operation]; |
|
396 | + } |
|
397 | + $this->debug("No data for operation: $operation"); |
|
398 | + } |
|
399 | 399 | |
400 | 400 | /** |
401 | - * send the SOAP message |
|
402 | - * |
|
403 | - * Note: if the operation has multiple return values |
|
404 | - * the return value of this method will be an array |
|
405 | - * of those values. |
|
406 | - * |
|
407 | - * @param string $msg a SOAPx4 soapmsg object |
|
408 | - * @param string $soapaction SOAPAction value |
|
409 | - * @param integer $timeout set connection timeout in seconds |
|
410 | - * @param integer $response_timeout set response timeout in seconds |
|
411 | - * @return mixed native PHP types. |
|
412 | - * @access private |
|
413 | - */ |
|
414 | - function send($msg, $soapaction = '', $timeout=0, $response_timeout=30) { |
|
415 | - $this->checkCookies(); |
|
416 | - // detect transport |
|
417 | - switch(true){ |
|
418 | - // http(s) |
|
419 | - case preg_match('/^http/',$this->endpoint): |
|
420 | - $this->debug('transporting via HTTP'); |
|
421 | - if($this->persistentConnection == true && is_object($this->persistentConnection)){ |
|
422 | - $http =& $this->persistentConnection; |
|
423 | - } else { |
|
424 | - $http = new soap_transport_http($this->endpoint, $this->curl_options, $this->use_curl); |
|
425 | - if ($this->persistentConnection) { |
|
426 | - $http->usePersistentConnection(); |
|
427 | - } |
|
428 | - } |
|
429 | - $http->setContentType($this->getHTTPContentType(), $this->getHTTPContentTypeCharset()); |
|
430 | - $http->setSOAPAction($soapaction); |
|
431 | - if($this->proxyhost && $this->proxyport){ |
|
432 | - $http->setProxy($this->proxyhost,$this->proxyport,$this->proxyusername,$this->proxypassword); |
|
433 | - } |
|
401 | + * send the SOAP message |
|
402 | + * |
|
403 | + * Note: if the operation has multiple return values |
|
404 | + * the return value of this method will be an array |
|
405 | + * of those values. |
|
406 | + * |
|
407 | + * @param string $msg a SOAPx4 soapmsg object |
|
408 | + * @param string $soapaction SOAPAction value |
|
409 | + * @param integer $timeout set connection timeout in seconds |
|
410 | + * @param integer $response_timeout set response timeout in seconds |
|
411 | + * @return mixed native PHP types. |
|
412 | + * @access private |
|
413 | + */ |
|
414 | + function send($msg, $soapaction = '', $timeout=0, $response_timeout=30) { |
|
415 | + $this->checkCookies(); |
|
416 | + // detect transport |
|
417 | + switch(true){ |
|
418 | + // http(s) |
|
419 | + case preg_match('/^http/',$this->endpoint): |
|
420 | + $this->debug('transporting via HTTP'); |
|
421 | + if($this->persistentConnection == true && is_object($this->persistentConnection)){ |
|
422 | + $http =& $this->persistentConnection; |
|
423 | + } else { |
|
424 | + $http = new soap_transport_http($this->endpoint, $this->curl_options, $this->use_curl); |
|
425 | + if ($this->persistentConnection) { |
|
426 | + $http->usePersistentConnection(); |
|
427 | + } |
|
428 | + } |
|
429 | + $http->setContentType($this->getHTTPContentType(), $this->getHTTPContentTypeCharset()); |
|
430 | + $http->setSOAPAction($soapaction); |
|
431 | + if($this->proxyhost && $this->proxyport){ |
|
432 | + $http->setProxy($this->proxyhost,$this->proxyport,$this->proxyusername,$this->proxypassword); |
|
433 | + } |
|
434 | 434 | if($this->authtype != '') { |
435 | - $http->setCredentials($this->username, $this->password, $this->authtype, array(), $this->certRequest); |
|
436 | - } |
|
437 | - if($this->http_encoding != ''){ |
|
438 | - $http->setEncoding($this->http_encoding); |
|
439 | - } |
|
440 | - $this->debug('sending message, length='.strlen($msg)); |
|
441 | - if(preg_match('/^http:/',$this->endpoint)){ |
|
442 | - //if(strpos($this->endpoint,'http:')){ |
|
443 | - $this->responseData = $http->send($msg,$timeout,$response_timeout,$this->cookies); |
|
444 | - } elseif(preg_match('/^https/',$this->endpoint)){ |
|
445 | - //} elseif(strpos($this->endpoint,'https:')){ |
|
446 | - //if(phpversion() == '4.3.0-dev'){ |
|
447 | - //$response = $http->send($msg,$timeout,$response_timeout); |
|
448 | - //$this->request = $http->outgoing_payload; |
|
449 | - //$this->response = $http->incoming_payload; |
|
450 | - //} else |
|
451 | - $this->responseData = $http->sendHTTPS($msg,$timeout,$response_timeout,$this->cookies); |
|
452 | - } else { |
|
453 | - $this->setError('no http/s in endpoint url'); |
|
454 | - } |
|
455 | - $this->request = $http->outgoing_payload; |
|
456 | - $this->response = $http->incoming_payload; |
|
457 | - $this->appendDebug($http->getDebug()); |
|
458 | - $this->UpdateCookies($http->incoming_cookies); |
|
459 | - |
|
460 | - // save transport object if using persistent connections |
|
461 | - if ($this->persistentConnection) { |
|
462 | - $http->clearDebug(); |
|
463 | - if (!is_object($this->persistentConnection)) { |
|
464 | - $this->persistentConnection = $http; |
|
465 | - } |
|
466 | - } |
|
435 | + $http->setCredentials($this->username, $this->password, $this->authtype, array(), $this->certRequest); |
|
436 | + } |
|
437 | + if($this->http_encoding != ''){ |
|
438 | + $http->setEncoding($this->http_encoding); |
|
439 | + } |
|
440 | + $this->debug('sending message, length='.strlen($msg)); |
|
441 | + if(preg_match('/^http:/',$this->endpoint)){ |
|
442 | + //if(strpos($this->endpoint,'http:')){ |
|
443 | + $this->responseData = $http->send($msg,$timeout,$response_timeout,$this->cookies); |
|
444 | + } elseif(preg_match('/^https/',$this->endpoint)){ |
|
445 | + //} elseif(strpos($this->endpoint,'https:')){ |
|
446 | + //if(phpversion() == '4.3.0-dev'){ |
|
447 | + //$response = $http->send($msg,$timeout,$response_timeout); |
|
448 | + //$this->request = $http->outgoing_payload; |
|
449 | + //$this->response = $http->incoming_payload; |
|
450 | + //} else |
|
451 | + $this->responseData = $http->sendHTTPS($msg,$timeout,$response_timeout,$this->cookies); |
|
452 | + } else { |
|
453 | + $this->setError('no http/s in endpoint url'); |
|
454 | + } |
|
455 | + $this->request = $http->outgoing_payload; |
|
456 | + $this->response = $http->incoming_payload; |
|
457 | + $this->appendDebug($http->getDebug()); |
|
458 | + $this->UpdateCookies($http->incoming_cookies); |
|
459 | + |
|
460 | + // save transport object if using persistent connections |
|
461 | + if ($this->persistentConnection) { |
|
462 | + $http->clearDebug(); |
|
463 | + if (!is_object($this->persistentConnection)) { |
|
464 | + $this->persistentConnection = $http; |
|
465 | + } |
|
466 | + } |
|
467 | 467 | |
468 | - if($err = $http->getError()){ |
|
469 | - $this->setError('HTTP Error: '.$err); |
|
470 | - return false; |
|
471 | - } elseif($this->getError()){ |
|
472 | - return false; |
|
473 | - } else { |
|
474 | - $this->debug('got response, length='. strlen($this->responseData).' type='.$http->incoming_headers['content-type']); |
|
475 | - return $this->parseResponse($http->incoming_headers, $this->responseData); |
|
476 | - } |
|
477 | - break; |
|
478 | - default: |
|
479 | - $this->setError('no transport found, or selected transport is not yet supported!'); |
|
480 | - return false; |
|
481 | - break; |
|
482 | - } |
|
483 | - } |
|
468 | + if($err = $http->getError()){ |
|
469 | + $this->setError('HTTP Error: '.$err); |
|
470 | + return false; |
|
471 | + } elseif($this->getError()){ |
|
472 | + return false; |
|
473 | + } else { |
|
474 | + $this->debug('got response, length='. strlen($this->responseData).' type='.$http->incoming_headers['content-type']); |
|
475 | + return $this->parseResponse($http->incoming_headers, $this->responseData); |
|
476 | + } |
|
477 | + break; |
|
478 | + default: |
|
479 | + $this->setError('no transport found, or selected transport is not yet supported!'); |
|
480 | + return false; |
|
481 | + break; |
|
482 | + } |
|
483 | + } |
|
484 | 484 | |
485 | - /** |
|
486 | - * processes SOAP message returned from server |
|
487 | - * |
|
488 | - * @param array $headers The HTTP headers |
|
489 | - * @param string $data unprocessed response data from server |
|
490 | - * @return mixed value of the message, decoded into a PHP type |
|
491 | - * @access private |
|
492 | - */ |
|
485 | + /** |
|
486 | + * processes SOAP message returned from server |
|
487 | + * |
|
488 | + * @param array $headers The HTTP headers |
|
489 | + * @param string $data unprocessed response data from server |
|
490 | + * @return mixed value of the message, decoded into a PHP type |
|
491 | + * @access private |
|
492 | + */ |
|
493 | 493 | function parseResponse($headers, $data) { |
494 | - $this->debug('Entering parseResponse() for data of length ' . strlen($data) . ' headers:'); |
|
495 | - $this->appendDebug($this->varDump($headers)); |
|
496 | - if (!isset($headers['content-type'])) { |
|
497 | - $this->setError('Response not of type text/xml (no content-type header)'); |
|
498 | - return false; |
|
499 | - } |
|
500 | - if (!strstr($headers['content-type'], 'text/xml')) { |
|
501 | - $this->setError('Response not of type text/xml: ' . $headers['content-type']); |
|
502 | - return false; |
|
503 | - } |
|
504 | - if (strpos($headers['content-type'], '=')) { |
|
505 | - $enc = str_replace('"', '', substr(strstr($headers["content-type"], '='), 1)); |
|
506 | - $this->debug('Got response encoding: ' . $enc); |
|
507 | - if(preg_match('/^(ISO-8859-1|US-ASCII|UTF-8)$/i',$enc)){ |
|
508 | - $this->xml_encoding = strtoupper($enc); |
|
509 | - } else { |
|
510 | - $this->xml_encoding = 'US-ASCII'; |
|
511 | - } |
|
512 | - } else { |
|
513 | - // should be US-ASCII for HTTP 1.0 or ISO-8859-1 for HTTP 1.1 |
|
514 | - $this->xml_encoding = 'ISO-8859-1'; |
|
515 | - } |
|
516 | - $this->debug('Use encoding: ' . $this->xml_encoding . ' when creating nusoap_parser'); |
|
517 | - $parser = new nusoap_parser($data,$this->xml_encoding,$this->operation,$this->decode_utf8); |
|
518 | - // add parser debug data to our debug |
|
519 | - $this->appendDebug($parser->getDebug()); |
|
520 | - // if parse errors |
|
521 | - if($errstr = $parser->getError()){ |
|
522 | - $this->setError( $errstr); |
|
523 | - // destroy the parser object |
|
524 | - unset($parser); |
|
525 | - return false; |
|
526 | - } else { |
|
527 | - // get SOAP headers |
|
528 | - $this->responseHeaders = $parser->getHeaders(); |
|
529 | - // get SOAP headers |
|
530 | - $this->responseHeader = $parser->get_soapheader(); |
|
531 | - // get decoded message |
|
532 | - $return = $parser->get_soapbody(); |
|
494 | + $this->debug('Entering parseResponse() for data of length ' . strlen($data) . ' headers:'); |
|
495 | + $this->appendDebug($this->varDump($headers)); |
|
496 | + if (!isset($headers['content-type'])) { |
|
497 | + $this->setError('Response not of type text/xml (no content-type header)'); |
|
498 | + return false; |
|
499 | + } |
|
500 | + if (!strstr($headers['content-type'], 'text/xml')) { |
|
501 | + $this->setError('Response not of type text/xml: ' . $headers['content-type']); |
|
502 | + return false; |
|
503 | + } |
|
504 | + if (strpos($headers['content-type'], '=')) { |
|
505 | + $enc = str_replace('"', '', substr(strstr($headers["content-type"], '='), 1)); |
|
506 | + $this->debug('Got response encoding: ' . $enc); |
|
507 | + if(preg_match('/^(ISO-8859-1|US-ASCII|UTF-8)$/i',$enc)){ |
|
508 | + $this->xml_encoding = strtoupper($enc); |
|
509 | + } else { |
|
510 | + $this->xml_encoding = 'US-ASCII'; |
|
511 | + } |
|
512 | + } else { |
|
513 | + // should be US-ASCII for HTTP 1.0 or ISO-8859-1 for HTTP 1.1 |
|
514 | + $this->xml_encoding = 'ISO-8859-1'; |
|
515 | + } |
|
516 | + $this->debug('Use encoding: ' . $this->xml_encoding . ' when creating nusoap_parser'); |
|
517 | + $parser = new nusoap_parser($data,$this->xml_encoding,$this->operation,$this->decode_utf8); |
|
518 | + // add parser debug data to our debug |
|
519 | + $this->appendDebug($parser->getDebug()); |
|
520 | + // if parse errors |
|
521 | + if($errstr = $parser->getError()){ |
|
522 | + $this->setError( $errstr); |
|
523 | + // destroy the parser object |
|
524 | + unset($parser); |
|
525 | + return false; |
|
526 | + } else { |
|
527 | + // get SOAP headers |
|
528 | + $this->responseHeaders = $parser->getHeaders(); |
|
529 | + // get SOAP headers |
|
530 | + $this->responseHeader = $parser->get_soapheader(); |
|
531 | + // get decoded message |
|
532 | + $return = $parser->get_soapbody(); |
|
533 | 533 | // add document for doclit support |
534 | 534 | $this->document = $parser->document; |
535 | - // destroy the parser object |
|
536 | - unset($parser); |
|
537 | - // return decode message |
|
538 | - return $return; |
|
539 | - } |
|
540 | - } |
|
541 | - |
|
542 | - /** |
|
543 | - * sets user-specified cURL options |
|
544 | - * |
|
545 | - * @param mixed $option The cURL option (always integer?) |
|
546 | - * @param mixed $value The cURL option value |
|
547 | - * @access public |
|
548 | - */ |
|
549 | - function setCurlOption($option, $value) { |
|
550 | - $this->debug("setCurlOption option=$option, value="); |
|
551 | - $this->appendDebug($this->varDump($value)); |
|
552 | - $this->curl_options[$option] = $value; |
|
553 | - } |
|
535 | + // destroy the parser object |
|
536 | + unset($parser); |
|
537 | + // return decode message |
|
538 | + return $return; |
|
539 | + } |
|
540 | + } |
|
554 | 541 | |
555 | - /** |
|
556 | - * sets the SOAP endpoint, which can override WSDL |
|
557 | - * |
|
558 | - * @param string $endpoint The endpoint URL to use, or empty string or false to prevent override |
|
559 | - * @access public |
|
560 | - */ |
|
561 | - function setEndpoint($endpoint) { |
|
562 | - $this->debug("setEndpoint(\"$endpoint\")"); |
|
563 | - $this->forceEndpoint = $endpoint; |
|
564 | - } |
|
542 | + /** |
|
543 | + * sets user-specified cURL options |
|
544 | + * |
|
545 | + * @param mixed $option The cURL option (always integer?) |
|
546 | + * @param mixed $value The cURL option value |
|
547 | + * @access public |
|
548 | + */ |
|
549 | + function setCurlOption($option, $value) { |
|
550 | + $this->debug("setCurlOption option=$option, value="); |
|
551 | + $this->appendDebug($this->varDump($value)); |
|
552 | + $this->curl_options[$option] = $value; |
|
553 | + } |
|
565 | 554 | |
566 | - /** |
|
567 | - * set the SOAP headers |
|
568 | - * |
|
569 | - * @param mixed $headers String of XML with SOAP header content, or array of soapval objects for SOAP headers |
|
570 | - * @access public |
|
571 | - */ |
|
572 | - function setHeaders($headers){ |
|
573 | - $this->debug("setHeaders headers="); |
|
574 | - $this->appendDebug($this->varDump($headers)); |
|
575 | - $this->requestHeaders = $headers; |
|
576 | - } |
|
555 | + /** |
|
556 | + * sets the SOAP endpoint, which can override WSDL |
|
557 | + * |
|
558 | + * @param string $endpoint The endpoint URL to use, or empty string or false to prevent override |
|
559 | + * @access public |
|
560 | + */ |
|
561 | + function setEndpoint($endpoint) { |
|
562 | + $this->debug("setEndpoint(\"$endpoint\")"); |
|
563 | + $this->forceEndpoint = $endpoint; |
|
564 | + } |
|
577 | 565 | |
578 | - /** |
|
579 | - * get the SOAP response headers (namespace resolution incomplete) |
|
580 | - * |
|
581 | - * @return string |
|
582 | - * @access public |
|
583 | - */ |
|
584 | - function getHeaders(){ |
|
585 | - return $this->responseHeaders; |
|
586 | - } |
|
566 | + /** |
|
567 | + * set the SOAP headers |
|
568 | + * |
|
569 | + * @param mixed $headers String of XML with SOAP header content, or array of soapval objects for SOAP headers |
|
570 | + * @access public |
|
571 | + */ |
|
572 | + function setHeaders($headers){ |
|
573 | + $this->debug("setHeaders headers="); |
|
574 | + $this->appendDebug($this->varDump($headers)); |
|
575 | + $this->requestHeaders = $headers; |
|
576 | + } |
|
587 | 577 | |
588 | - /** |
|
589 | - * get the SOAP response Header (parsed) |
|
590 | - * |
|
591 | - * @return mixed |
|
592 | - * @access public |
|
593 | - */ |
|
594 | - function getHeader(){ |
|
595 | - return $this->responseHeader; |
|
596 | - } |
|
578 | + /** |
|
579 | + * get the SOAP response headers (namespace resolution incomplete) |
|
580 | + * |
|
581 | + * @return string |
|
582 | + * @access public |
|
583 | + */ |
|
584 | + function getHeaders(){ |
|
585 | + return $this->responseHeaders; |
|
586 | + } |
|
597 | 587 | |
598 | - /** |
|
599 | - * set proxy info here |
|
600 | - * |
|
601 | - * @param string $proxyhost |
|
602 | - * @param string $proxyport |
|
603 | - * @param string $proxyusername |
|
604 | - * @param string $proxypassword |
|
605 | - * @access public |
|
606 | - */ |
|
607 | - function setHTTPProxy($proxyhost, $proxyport, $proxyusername = '', $proxypassword = '') { |
|
608 | - $this->proxyhost = $proxyhost; |
|
609 | - $this->proxyport = $proxyport; |
|
610 | - $this->proxyusername = $proxyusername; |
|
611 | - $this->proxypassword = $proxypassword; |
|
612 | - } |
|
588 | + /** |
|
589 | + * get the SOAP response Header (parsed) |
|
590 | + * |
|
591 | + * @return mixed |
|
592 | + * @access public |
|
593 | + */ |
|
594 | + function getHeader(){ |
|
595 | + return $this->responseHeader; |
|
596 | + } |
|
613 | 597 | |
614 | - /** |
|
615 | - * if authenticating, set user credentials here |
|
616 | - * |
|
617 | - * @param string $username |
|
618 | - * @param string $password |
|
619 | - * @param string $authtype (basic|digest|certificate|ntlm) |
|
620 | - * @param array $certRequest (keys must be cainfofile (optional), sslcertfile, sslkeyfile, passphrase, verifypeer (optional), verifyhost (optional): see corresponding options in cURL docs) |
|
621 | - * @access public |
|
622 | - */ |
|
623 | - function setCredentials($username, $password, $authtype = 'basic', $certRequest = array()) { |
|
624 | - $this->debug("setCredentials username=$username authtype=$authtype certRequest="); |
|
625 | - $this->appendDebug($this->varDump($certRequest)); |
|
626 | - $this->username = $username; |
|
627 | - $this->password = $password; |
|
628 | - $this->authtype = $authtype; |
|
629 | - $this->certRequest = $certRequest; |
|
630 | - } |
|
598 | + /** |
|
599 | + * set proxy info here |
|
600 | + * |
|
601 | + * @param string $proxyhost |
|
602 | + * @param string $proxyport |
|
603 | + * @param string $proxyusername |
|
604 | + * @param string $proxypassword |
|
605 | + * @access public |
|
606 | + */ |
|
607 | + function setHTTPProxy($proxyhost, $proxyport, $proxyusername = '', $proxypassword = '') { |
|
608 | + $this->proxyhost = $proxyhost; |
|
609 | + $this->proxyport = $proxyport; |
|
610 | + $this->proxyusername = $proxyusername; |
|
611 | + $this->proxypassword = $proxypassword; |
|
612 | + } |
|
613 | + |
|
614 | + /** |
|
615 | + * if authenticating, set user credentials here |
|
616 | + * |
|
617 | + * @param string $username |
|
618 | + * @param string $password |
|
619 | + * @param string $authtype (basic|digest|certificate|ntlm) |
|
620 | + * @param array $certRequest (keys must be cainfofile (optional), sslcertfile, sslkeyfile, passphrase, verifypeer (optional), verifyhost (optional): see corresponding options in cURL docs) |
|
621 | + * @access public |
|
622 | + */ |
|
623 | + function setCredentials($username, $password, $authtype = 'basic', $certRequest = array()) { |
|
624 | + $this->debug("setCredentials username=$username authtype=$authtype certRequest="); |
|
625 | + $this->appendDebug($this->varDump($certRequest)); |
|
626 | + $this->username = $username; |
|
627 | + $this->password = $password; |
|
628 | + $this->authtype = $authtype; |
|
629 | + $this->certRequest = $certRequest; |
|
630 | + } |
|
631 | 631 | |
632 | - /** |
|
633 | - * use HTTP encoding |
|
634 | - * |
|
635 | - * @param string $enc HTTP encoding |
|
636 | - * @access public |
|
637 | - */ |
|
638 | - function setHTTPEncoding($enc='gzip, deflate'){ |
|
639 | - $this->debug("setHTTPEncoding(\"$enc\")"); |
|
640 | - $this->http_encoding = $enc; |
|
641 | - } |
|
632 | + /** |
|
633 | + * use HTTP encoding |
|
634 | + * |
|
635 | + * @param string $enc HTTP encoding |
|
636 | + * @access public |
|
637 | + */ |
|
638 | + function setHTTPEncoding($enc='gzip, deflate'){ |
|
639 | + $this->debug("setHTTPEncoding(\"$enc\")"); |
|
640 | + $this->http_encoding = $enc; |
|
641 | + } |
|
642 | 642 | |
643 | - /** |
|
644 | - * Set whether to try to use cURL connections if possible |
|
645 | - * |
|
646 | - * @param boolean $use Whether to try to use cURL |
|
647 | - * @access public |
|
648 | - */ |
|
649 | - function setUseCURL($use) { |
|
650 | - $this->debug("setUseCURL($use)"); |
|
651 | - $this->use_curl = $use; |
|
652 | - } |
|
643 | + /** |
|
644 | + * Set whether to try to use cURL connections if possible |
|
645 | + * |
|
646 | + * @param boolean $use Whether to try to use cURL |
|
647 | + * @access public |
|
648 | + */ |
|
649 | + function setUseCURL($use) { |
|
650 | + $this->debug("setUseCURL($use)"); |
|
651 | + $this->use_curl = $use; |
|
652 | + } |
|
653 | 653 | |
654 | - /** |
|
655 | - * use HTTP persistent connections if possible |
|
656 | - * |
|
657 | - * @access public |
|
658 | - */ |
|
659 | - function useHTTPPersistentConnection(){ |
|
660 | - $this->debug("useHTTPPersistentConnection"); |
|
661 | - $this->persistentConnection = true; |
|
662 | - } |
|
654 | + /** |
|
655 | + * use HTTP persistent connections if possible |
|
656 | + * |
|
657 | + * @access public |
|
658 | + */ |
|
659 | + function useHTTPPersistentConnection(){ |
|
660 | + $this->debug("useHTTPPersistentConnection"); |
|
661 | + $this->persistentConnection = true; |
|
662 | + } |
|
663 | 663 | |
664 | - /** |
|
665 | - * gets the default RPC parameter setting. |
|
666 | - * If true, default is that call params are like RPC even for document style. |
|
667 | - * Each call() can override this value. |
|
668 | - * |
|
669 | - * This is no longer used. |
|
670 | - * |
|
671 | - * @return boolean |
|
672 | - * @access public |
|
673 | - * @deprecated |
|
674 | - */ |
|
675 | - function getDefaultRpcParams() { |
|
676 | - return $this->defaultRpcParams; |
|
677 | - } |
|
664 | + /** |
|
665 | + * gets the default RPC parameter setting. |
|
666 | + * If true, default is that call params are like RPC even for document style. |
|
667 | + * Each call() can override this value. |
|
668 | + * |
|
669 | + * This is no longer used. |
|
670 | + * |
|
671 | + * @return boolean |
|
672 | + * @access public |
|
673 | + * @deprecated |
|
674 | + */ |
|
675 | + function getDefaultRpcParams() { |
|
676 | + return $this->defaultRpcParams; |
|
677 | + } |
|
678 | 678 | |
679 | - /** |
|
680 | - * sets the default RPC parameter setting. |
|
681 | - * If true, default is that call params are like RPC even for document style |
|
682 | - * Each call() can override this value. |
|
683 | - * |
|
684 | - * This is no longer used. |
|
685 | - * |
|
686 | - * @param boolean $rpcParams |
|
687 | - * @access public |
|
688 | - * @deprecated |
|
689 | - */ |
|
690 | - function setDefaultRpcParams($rpcParams) { |
|
691 | - $this->defaultRpcParams = $rpcParams; |
|
692 | - } |
|
679 | + /** |
|
680 | + * sets the default RPC parameter setting. |
|
681 | + * If true, default is that call params are like RPC even for document style |
|
682 | + * Each call() can override this value. |
|
683 | + * |
|
684 | + * This is no longer used. |
|
685 | + * |
|
686 | + * @param boolean $rpcParams |
|
687 | + * @access public |
|
688 | + * @deprecated |
|
689 | + */ |
|
690 | + function setDefaultRpcParams($rpcParams) { |
|
691 | + $this->defaultRpcParams = $rpcParams; |
|
692 | + } |
|
693 | 693 | |
694 | - /** |
|
695 | - * dynamically creates an instance of a proxy class, |
|
696 | - * allowing user to directly call methods from wsdl |
|
697 | - * |
|
698 | - * @return object soap_proxy object |
|
699 | - * @access public |
|
700 | - */ |
|
701 | - function getProxy() { |
|
702 | - $r = rand(); |
|
703 | - $evalStr = $this->_getProxyClassCode($r); |
|
704 | - //$this->debug("proxy class: $evalStr"); |
|
705 | - if ($this->getError()) { |
|
706 | - $this->debug("Error from _getProxyClassCode, so return NULL"); |
|
707 | - return null; |
|
708 | - } |
|
709 | - // eval the class |
|
710 | - eval($evalStr); |
|
711 | - // instantiate proxy object |
|
712 | - eval("\$proxy = new nusoap_proxy_$r('');"); |
|
713 | - // transfer current wsdl data to the proxy thereby avoiding parsing the wsdl twice |
|
714 | - $proxy->endpointType = 'wsdl'; |
|
715 | - $proxy->wsdlFile = $this->wsdlFile; |
|
716 | - $proxy->wsdl = $this->wsdl; |
|
717 | - $proxy->operations = $this->operations; |
|
718 | - $proxy->defaultRpcParams = $this->defaultRpcParams; |
|
719 | - // transfer other state |
|
720 | - $proxy->soap_defencoding = $this->soap_defencoding; |
|
721 | - $proxy->username = $this->username; |
|
722 | - $proxy->password = $this->password; |
|
723 | - $proxy->authtype = $this->authtype; |
|
724 | - $proxy->certRequest = $this->certRequest; |
|
725 | - $proxy->requestHeaders = $this->requestHeaders; |
|
726 | - $proxy->endpoint = $this->endpoint; |
|
727 | - $proxy->forceEndpoint = $this->forceEndpoint; |
|
728 | - $proxy->proxyhost = $this->proxyhost; |
|
729 | - $proxy->proxyport = $this->proxyport; |
|
730 | - $proxy->proxyusername = $this->proxyusername; |
|
731 | - $proxy->proxypassword = $this->proxypassword; |
|
732 | - $proxy->http_encoding = $this->http_encoding; |
|
733 | - $proxy->timeout = $this->timeout; |
|
734 | - $proxy->response_timeout = $this->response_timeout; |
|
735 | - $proxy->persistentConnection = &$this->persistentConnection; |
|
736 | - $proxy->decode_utf8 = $this->decode_utf8; |
|
737 | - $proxy->curl_options = $this->curl_options; |
|
738 | - $proxy->bindingType = $this->bindingType; |
|
739 | - $proxy->use_curl = $this->use_curl; |
|
740 | - return $proxy; |
|
741 | - } |
|
694 | + /** |
|
695 | + * dynamically creates an instance of a proxy class, |
|
696 | + * allowing user to directly call methods from wsdl |
|
697 | + * |
|
698 | + * @return object soap_proxy object |
|
699 | + * @access public |
|
700 | + */ |
|
701 | + function getProxy() { |
|
702 | + $r = rand(); |
|
703 | + $evalStr = $this->_getProxyClassCode($r); |
|
704 | + //$this->debug("proxy class: $evalStr"); |
|
705 | + if ($this->getError()) { |
|
706 | + $this->debug("Error from _getProxyClassCode, so return NULL"); |
|
707 | + return null; |
|
708 | + } |
|
709 | + // eval the class |
|
710 | + eval($evalStr); |
|
711 | + // instantiate proxy object |
|
712 | + eval("\$proxy = new nusoap_proxy_$r('');"); |
|
713 | + // transfer current wsdl data to the proxy thereby avoiding parsing the wsdl twice |
|
714 | + $proxy->endpointType = 'wsdl'; |
|
715 | + $proxy->wsdlFile = $this->wsdlFile; |
|
716 | + $proxy->wsdl = $this->wsdl; |
|
717 | + $proxy->operations = $this->operations; |
|
718 | + $proxy->defaultRpcParams = $this->defaultRpcParams; |
|
719 | + // transfer other state |
|
720 | + $proxy->soap_defencoding = $this->soap_defencoding; |
|
721 | + $proxy->username = $this->username; |
|
722 | + $proxy->password = $this->password; |
|
723 | + $proxy->authtype = $this->authtype; |
|
724 | + $proxy->certRequest = $this->certRequest; |
|
725 | + $proxy->requestHeaders = $this->requestHeaders; |
|
726 | + $proxy->endpoint = $this->endpoint; |
|
727 | + $proxy->forceEndpoint = $this->forceEndpoint; |
|
728 | + $proxy->proxyhost = $this->proxyhost; |
|
729 | + $proxy->proxyport = $this->proxyport; |
|
730 | + $proxy->proxyusername = $this->proxyusername; |
|
731 | + $proxy->proxypassword = $this->proxypassword; |
|
732 | + $proxy->http_encoding = $this->http_encoding; |
|
733 | + $proxy->timeout = $this->timeout; |
|
734 | + $proxy->response_timeout = $this->response_timeout; |
|
735 | + $proxy->persistentConnection = &$this->persistentConnection; |
|
736 | + $proxy->decode_utf8 = $this->decode_utf8; |
|
737 | + $proxy->curl_options = $this->curl_options; |
|
738 | + $proxy->bindingType = $this->bindingType; |
|
739 | + $proxy->use_curl = $this->use_curl; |
|
740 | + return $proxy; |
|
741 | + } |
|
742 | 742 | |
743 | - /** |
|
744 | - * dynamically creates proxy class code |
|
745 | - * |
|
746 | - * @return string PHP/NuSOAP code for the proxy class |
|
747 | - * @access private |
|
748 | - */ |
|
749 | - function _getProxyClassCode($r) { |
|
750 | - $this->debug("in getProxy endpointType=$this->endpointType"); |
|
751 | - $this->appendDebug("wsdl=" . $this->varDump($this->wsdl)); |
|
752 | - if ($this->endpointType != 'wsdl') { |
|
753 | - $evalStr = 'A proxy can only be created for a WSDL client'; |
|
754 | - $this->setError($evalStr); |
|
755 | - $evalStr = "echo \"$evalStr\";"; |
|
756 | - return $evalStr; |
|
757 | - } |
|
758 | - if ($this->endpointType == 'wsdl' && is_null($this->wsdl)) { |
|
759 | - $this->loadWSDL(); |
|
760 | - if ($this->getError()) { |
|
761 | - return "echo \"" . $this->getError() . "\";"; |
|
762 | - } |
|
763 | - } |
|
764 | - $evalStr = ''; |
|
765 | - foreach ($this->operations as $operation => $opData) { |
|
766 | - if ($operation != '') { |
|
767 | - // create param string and param comment string |
|
768 | - if (sizeof($opData['input']['parts']) > 0) { |
|
769 | - $paramStr = ''; |
|
770 | - $paramArrayStr = ''; |
|
771 | - $paramCommentStr = ''; |
|
772 | - foreach ($opData['input']['parts'] as $name => $type) { |
|
773 | - $paramStr .= "\$$name, "; |
|
774 | - $paramArrayStr .= "'$name' => \$$name, "; |
|
775 | - $paramCommentStr .= "$type \$$name, "; |
|
776 | - } |
|
777 | - $paramStr = substr($paramStr, 0, strlen($paramStr)-2); |
|
778 | - $paramArrayStr = substr($paramArrayStr, 0, strlen($paramArrayStr)-2); |
|
779 | - $paramCommentStr = substr($paramCommentStr, 0, strlen($paramCommentStr)-2); |
|
780 | - } else { |
|
781 | - $paramStr = ''; |
|
782 | - $paramArrayStr = ''; |
|
783 | - $paramCommentStr = 'void'; |
|
784 | - } |
|
785 | - $opData['namespace'] = !isset($opData['namespace']) ? 'http://testuri.com' : $opData['namespace']; |
|
786 | - $evalStr .= "// $paramCommentStr |
|
743 | + /** |
|
744 | + * dynamically creates proxy class code |
|
745 | + * |
|
746 | + * @return string PHP/NuSOAP code for the proxy class |
|
747 | + * @access private |
|
748 | + */ |
|
749 | + function _getProxyClassCode($r) { |
|
750 | + $this->debug("in getProxy endpointType=$this->endpointType"); |
|
751 | + $this->appendDebug("wsdl=" . $this->varDump($this->wsdl)); |
|
752 | + if ($this->endpointType != 'wsdl') { |
|
753 | + $evalStr = 'A proxy can only be created for a WSDL client'; |
|
754 | + $this->setError($evalStr); |
|
755 | + $evalStr = "echo \"$evalStr\";"; |
|
756 | + return $evalStr; |
|
757 | + } |
|
758 | + if ($this->endpointType == 'wsdl' && is_null($this->wsdl)) { |
|
759 | + $this->loadWSDL(); |
|
760 | + if ($this->getError()) { |
|
761 | + return "echo \"" . $this->getError() . "\";"; |
|
762 | + } |
|
763 | + } |
|
764 | + $evalStr = ''; |
|
765 | + foreach ($this->operations as $operation => $opData) { |
|
766 | + if ($operation != '') { |
|
767 | + // create param string and param comment string |
|
768 | + if (sizeof($opData['input']['parts']) > 0) { |
|
769 | + $paramStr = ''; |
|
770 | + $paramArrayStr = ''; |
|
771 | + $paramCommentStr = ''; |
|
772 | + foreach ($opData['input']['parts'] as $name => $type) { |
|
773 | + $paramStr .= "\$$name, "; |
|
774 | + $paramArrayStr .= "'$name' => \$$name, "; |
|
775 | + $paramCommentStr .= "$type \$$name, "; |
|
776 | + } |
|
777 | + $paramStr = substr($paramStr, 0, strlen($paramStr)-2); |
|
778 | + $paramArrayStr = substr($paramArrayStr, 0, strlen($paramArrayStr)-2); |
|
779 | + $paramCommentStr = substr($paramCommentStr, 0, strlen($paramCommentStr)-2); |
|
780 | + } else { |
|
781 | + $paramStr = ''; |
|
782 | + $paramArrayStr = ''; |
|
783 | + $paramCommentStr = 'void'; |
|
784 | + } |
|
785 | + $opData['namespace'] = !isset($opData['namespace']) ? 'http://testuri.com' : $opData['namespace']; |
|
786 | + $evalStr .= "// $paramCommentStr |
|
787 | 787 | function " . str_replace('.', '__', $operation) . "($paramStr) { |
788 | 788 | \$params = array($paramArrayStr); |
789 | 789 | return \$this->call('$operation', \$params, '".$opData['namespace']."', '".(isset($opData['soapAction']) ? $opData['soapAction'] : '')."'); |
790 | 790 | } |
791 | 791 | "; |
792 | - unset($paramStr); |
|
793 | - unset($paramCommentStr); |
|
794 | - } |
|
795 | - } |
|
796 | - $evalStr = 'class nusoap_proxy_'.$r.' extends nusoap_client { |
|
792 | + unset($paramStr); |
|
793 | + unset($paramCommentStr); |
|
794 | + } |
|
795 | + } |
|
796 | + $evalStr = 'class nusoap_proxy_'.$r.' extends nusoap_client { |
|
797 | 797 | '.$evalStr.' |
798 | 798 | }'; |
799 | - return $evalStr; |
|
800 | - } |
|
799 | + return $evalStr; |
|
800 | + } |
|
801 | 801 | |
802 | - /** |
|
803 | - * dynamically creates proxy class code |
|
804 | - * |
|
805 | - * @return string PHP/NuSOAP code for the proxy class |
|
806 | - * @access public |
|
807 | - */ |
|
808 | - function getProxyClassCode() { |
|
809 | - $r = rand(); |
|
810 | - return $this->_getProxyClassCode($r); |
|
811 | - } |
|
802 | + /** |
|
803 | + * dynamically creates proxy class code |
|
804 | + * |
|
805 | + * @return string PHP/NuSOAP code for the proxy class |
|
806 | + * @access public |
|
807 | + */ |
|
808 | + function getProxyClassCode() { |
|
809 | + $r = rand(); |
|
810 | + return $this->_getProxyClassCode($r); |
|
811 | + } |
|
812 | 812 | |
813 | - /** |
|
814 | - * gets the HTTP body for the current request. |
|
815 | - * |
|
816 | - * @param string $soapmsg The SOAP payload |
|
817 | - * @return string The HTTP body, which includes the SOAP payload |
|
818 | - * @access private |
|
819 | - */ |
|
820 | - function getHTTPBody($soapmsg) { |
|
821 | - return $soapmsg; |
|
822 | - } |
|
813 | + /** |
|
814 | + * gets the HTTP body for the current request. |
|
815 | + * |
|
816 | + * @param string $soapmsg The SOAP payload |
|
817 | + * @return string The HTTP body, which includes the SOAP payload |
|
818 | + * @access private |
|
819 | + */ |
|
820 | + function getHTTPBody($soapmsg) { |
|
821 | + return $soapmsg; |
|
822 | + } |
|
823 | 823 | |
824 | - /** |
|
825 | - * gets the HTTP content type for the current request. |
|
826 | - * |
|
827 | - * Note: getHTTPBody must be called before this. |
|
828 | - * |
|
829 | - * @return string the HTTP content type for the current request. |
|
830 | - * @access private |
|
831 | - */ |
|
832 | - function getHTTPContentType() { |
|
833 | - return 'text/xml'; |
|
834 | - } |
|
824 | + /** |
|
825 | + * gets the HTTP content type for the current request. |
|
826 | + * |
|
827 | + * Note: getHTTPBody must be called before this. |
|
828 | + * |
|
829 | + * @return string the HTTP content type for the current request. |
|
830 | + * @access private |
|
831 | + */ |
|
832 | + function getHTTPContentType() { |
|
833 | + return 'text/xml'; |
|
834 | + } |
|
835 | 835 | |
836 | - /** |
|
837 | - * gets the HTTP content type charset for the current request. |
|
838 | - * returns false for non-text content types. |
|
839 | - * |
|
840 | - * Note: getHTTPBody must be called before this. |
|
841 | - * |
|
842 | - * @return string the HTTP content type charset for the current request. |
|
843 | - * @access private |
|
844 | - */ |
|
845 | - function getHTTPContentTypeCharset() { |
|
846 | - return $this->soap_defencoding; |
|
847 | - } |
|
836 | + /** |
|
837 | + * gets the HTTP content type charset for the current request. |
|
838 | + * returns false for non-text content types. |
|
839 | + * |
|
840 | + * Note: getHTTPBody must be called before this. |
|
841 | + * |
|
842 | + * @return string the HTTP content type charset for the current request. |
|
843 | + * @access private |
|
844 | + */ |
|
845 | + function getHTTPContentTypeCharset() { |
|
846 | + return $this->soap_defencoding; |
|
847 | + } |
|
848 | 848 | |
849 | - /* |
|
849 | + /* |
|
850 | 850 | * whether or not parser should decode utf8 element content |
851 | 851 | * |
852 | 852 | * @return always returns true |
853 | 853 | * @access public |
854 | 854 | */ |
855 | 855 | function decodeUTF8($bool){ |
856 | - $this->decode_utf8 = $bool; |
|
857 | - return true; |
|
856 | + $this->decode_utf8 = $bool; |
|
857 | + return true; |
|
858 | 858 | } |
859 | 859 | |
860 | - /** |
|
861 | - * adds a new Cookie into $this->cookies array |
|
862 | - * |
|
863 | - * @param string $name Cookie Name |
|
864 | - * @param string $value Cookie Value |
|
865 | - * @return boolean if cookie-set was successful returns true, else false |
|
866 | - * @access public |
|
867 | - */ |
|
868 | - function setCookie($name, $value) { |
|
869 | - if (strlen($name) == 0) { |
|
870 | - return false; |
|
871 | - } |
|
872 | - $this->cookies[] = array('name' => $name, 'value' => $value); |
|
873 | - return true; |
|
874 | - } |
|
860 | + /** |
|
861 | + * adds a new Cookie into $this->cookies array |
|
862 | + * |
|
863 | + * @param string $name Cookie Name |
|
864 | + * @param string $value Cookie Value |
|
865 | + * @return boolean if cookie-set was successful returns true, else false |
|
866 | + * @access public |
|
867 | + */ |
|
868 | + function setCookie($name, $value) { |
|
869 | + if (strlen($name) == 0) { |
|
870 | + return false; |
|
871 | + } |
|
872 | + $this->cookies[] = array('name' => $name, 'value' => $value); |
|
873 | + return true; |
|
874 | + } |
|
875 | 875 | |
876 | - /** |
|
877 | - * gets all Cookies |
|
878 | - * |
|
879 | - * @return array with all internal cookies |
|
880 | - * @access public |
|
881 | - */ |
|
882 | - function getCookies() { |
|
883 | - return $this->cookies; |
|
884 | - } |
|
876 | + /** |
|
877 | + * gets all Cookies |
|
878 | + * |
|
879 | + * @return array with all internal cookies |
|
880 | + * @access public |
|
881 | + */ |
|
882 | + function getCookies() { |
|
883 | + return $this->cookies; |
|
884 | + } |
|
885 | 885 | |
886 | - /** |
|
887 | - * checks all Cookies and delete those which are expired |
|
888 | - * |
|
889 | - * @return boolean always return true |
|
890 | - * @access private |
|
891 | - */ |
|
892 | - function checkCookies() { |
|
893 | - if (sizeof($this->cookies) == 0) { |
|
894 | - return true; |
|
895 | - } |
|
896 | - $this->debug('checkCookie: check ' . sizeof($this->cookies) . ' cookies'); |
|
897 | - $curr_cookies = $this->cookies; |
|
898 | - $this->cookies = array(); |
|
899 | - foreach ($curr_cookies as $cookie) { |
|
900 | - if (! is_array($cookie)) { |
|
901 | - $this->debug('Remove cookie that is not an array'); |
|
902 | - continue; |
|
903 | - } |
|
904 | - if ((isset($cookie['expires'])) && (! empty($cookie['expires']))) { |
|
905 | - if (strtotime($cookie['expires']) > time()) { |
|
906 | - $this->cookies[] = $cookie; |
|
907 | - } else { |
|
908 | - $this->debug('Remove expired cookie ' . $cookie['name']); |
|
909 | - } |
|
910 | - } else { |
|
911 | - $this->cookies[] = $cookie; |
|
912 | - } |
|
913 | - } |
|
914 | - $this->debug('checkCookie: '.sizeof($this->cookies).' cookies left in array'); |
|
915 | - return true; |
|
916 | - } |
|
886 | + /** |
|
887 | + * checks all Cookies and delete those which are expired |
|
888 | + * |
|
889 | + * @return boolean always return true |
|
890 | + * @access private |
|
891 | + */ |
|
892 | + function checkCookies() { |
|
893 | + if (sizeof($this->cookies) == 0) { |
|
894 | + return true; |
|
895 | + } |
|
896 | + $this->debug('checkCookie: check ' . sizeof($this->cookies) . ' cookies'); |
|
897 | + $curr_cookies = $this->cookies; |
|
898 | + $this->cookies = array(); |
|
899 | + foreach ($curr_cookies as $cookie) { |
|
900 | + if (! is_array($cookie)) { |
|
901 | + $this->debug('Remove cookie that is not an array'); |
|
902 | + continue; |
|
903 | + } |
|
904 | + if ((isset($cookie['expires'])) && (! empty($cookie['expires']))) { |
|
905 | + if (strtotime($cookie['expires']) > time()) { |
|
906 | + $this->cookies[] = $cookie; |
|
907 | + } else { |
|
908 | + $this->debug('Remove expired cookie ' . $cookie['name']); |
|
909 | + } |
|
910 | + } else { |
|
911 | + $this->cookies[] = $cookie; |
|
912 | + } |
|
913 | + } |
|
914 | + $this->debug('checkCookie: '.sizeof($this->cookies).' cookies left in array'); |
|
915 | + return true; |
|
916 | + } |
|
917 | 917 | |
918 | - /** |
|
919 | - * updates the current cookies with a new set |
|
920 | - * |
|
921 | - * @param array $cookies new cookies with which to update current ones |
|
922 | - * @return boolean always return true |
|
923 | - * @access private |
|
924 | - */ |
|
925 | - function UpdateCookies($cookies) { |
|
926 | - if (sizeof($this->cookies) == 0) { |
|
927 | - // no existing cookies: take whatever is new |
|
928 | - if (sizeof($cookies) > 0) { |
|
929 | - $this->debug('Setting new cookie(s)'); |
|
930 | - $this->cookies = $cookies; |
|
931 | - } |
|
932 | - return true; |
|
933 | - } |
|
934 | - if (sizeof($cookies) == 0) { |
|
935 | - // no new cookies: keep what we've got |
|
936 | - return true; |
|
937 | - } |
|
938 | - // merge |
|
939 | - foreach ($cookies as $newCookie) { |
|
940 | - if (!is_array($newCookie)) { |
|
941 | - continue; |
|
942 | - } |
|
943 | - if ((!isset($newCookie['name'])) || (!isset($newCookie['value']))) { |
|
944 | - continue; |
|
945 | - } |
|
946 | - $newName = $newCookie['name']; |
|
947 | - |
|
948 | - $found = false; |
|
949 | - for ($i = 0; $i < count($this->cookies); $i++) { |
|
950 | - $cookie = $this->cookies[$i]; |
|
951 | - if (!is_array($cookie)) { |
|
952 | - continue; |
|
953 | - } |
|
954 | - if (!isset($cookie['name'])) { |
|
955 | - continue; |
|
956 | - } |
|
957 | - if ($newName != $cookie['name']) { |
|
958 | - continue; |
|
959 | - } |
|
960 | - $newDomain = isset($newCookie['domain']) ? $newCookie['domain'] : 'NODOMAIN'; |
|
961 | - $domain = isset($cookie['domain']) ? $cookie['domain'] : 'NODOMAIN'; |
|
962 | - if ($newDomain != $domain) { |
|
963 | - continue; |
|
964 | - } |
|
965 | - $newPath = isset($newCookie['path']) ? $newCookie['path'] : 'NOPATH'; |
|
966 | - $path = isset($cookie['path']) ? $cookie['path'] : 'NOPATH'; |
|
967 | - if ($newPath != $path) { |
|
968 | - continue; |
|
969 | - } |
|
970 | - $this->cookies[$i] = $newCookie; |
|
971 | - $found = true; |
|
972 | - $this->debug('Update cookie ' . $newName . '=' . $newCookie['value']); |
|
973 | - break; |
|
974 | - } |
|
975 | - if (! $found) { |
|
976 | - $this->debug('Add cookie ' . $newName . '=' . $newCookie['value']); |
|
977 | - $this->cookies[] = $newCookie; |
|
978 | - } |
|
979 | - } |
|
980 | - return true; |
|
981 | - } |
|
918 | + /** |
|
919 | + * updates the current cookies with a new set |
|
920 | + * |
|
921 | + * @param array $cookies new cookies with which to update current ones |
|
922 | + * @return boolean always return true |
|
923 | + * @access private |
|
924 | + */ |
|
925 | + function UpdateCookies($cookies) { |
|
926 | + if (sizeof($this->cookies) == 0) { |
|
927 | + // no existing cookies: take whatever is new |
|
928 | + if (sizeof($cookies) > 0) { |
|
929 | + $this->debug('Setting new cookie(s)'); |
|
930 | + $this->cookies = $cookies; |
|
931 | + } |
|
932 | + return true; |
|
933 | + } |
|
934 | + if (sizeof($cookies) == 0) { |
|
935 | + // no new cookies: keep what we've got |
|
936 | + return true; |
|
937 | + } |
|
938 | + // merge |
|
939 | + foreach ($cookies as $newCookie) { |
|
940 | + if (!is_array($newCookie)) { |
|
941 | + continue; |
|
942 | + } |
|
943 | + if ((!isset($newCookie['name'])) || (!isset($newCookie['value']))) { |
|
944 | + continue; |
|
945 | + } |
|
946 | + $newName = $newCookie['name']; |
|
947 | + |
|
948 | + $found = false; |
|
949 | + for ($i = 0; $i < count($this->cookies); $i++) { |
|
950 | + $cookie = $this->cookies[$i]; |
|
951 | + if (!is_array($cookie)) { |
|
952 | + continue; |
|
953 | + } |
|
954 | + if (!isset($cookie['name'])) { |
|
955 | + continue; |
|
956 | + } |
|
957 | + if ($newName != $cookie['name']) { |
|
958 | + continue; |
|
959 | + } |
|
960 | + $newDomain = isset($newCookie['domain']) ? $newCookie['domain'] : 'NODOMAIN'; |
|
961 | + $domain = isset($cookie['domain']) ? $cookie['domain'] : 'NODOMAIN'; |
|
962 | + if ($newDomain != $domain) { |
|
963 | + continue; |
|
964 | + } |
|
965 | + $newPath = isset($newCookie['path']) ? $newCookie['path'] : 'NOPATH'; |
|
966 | + $path = isset($cookie['path']) ? $cookie['path'] : 'NOPATH'; |
|
967 | + if ($newPath != $path) { |
|
968 | + continue; |
|
969 | + } |
|
970 | + $this->cookies[$i] = $newCookie; |
|
971 | + $found = true; |
|
972 | + $this->debug('Update cookie ' . $newName . '=' . $newCookie['value']); |
|
973 | + break; |
|
974 | + } |
|
975 | + if (! $found) { |
|
976 | + $this->debug('Add cookie ' . $newName . '=' . $newCookie['value']); |
|
977 | + $this->cookies[] = $newCookie; |
|
978 | + } |
|
979 | + } |
|
980 | + return true; |
|
981 | + } |
|
982 | 982 | } |
983 | 983 | |
984 | 984 | if (!extension_loaded('soap')) { |
985 | - /** |
|
986 | - * For backwards compatiblity, define soapclient unless the PHP SOAP extension is loaded. |
|
987 | - */ |
|
988 | - class soapclient extends nusoap_client { |
|
989 | - } |
|
985 | + /** |
|
986 | + * For backwards compatiblity, define soapclient unless the PHP SOAP extension is loaded. |
|
987 | + */ |
|
988 | + class soapclient extends nusoap_client { |
|
989 | + } |
|
990 | 990 | } |
991 | 991 | ?> |
@@ -23,39 +23,39 @@ discard block |
||
23 | 23 | * @version $Id: class.soapclient.php,v 1.69 2010/04/26 20:15:08 snichol Exp $ |
24 | 24 | * @access public |
25 | 25 | */ |
26 | -class nusoap_client extends nusoap_base { |
|
27 | - |
|
28 | - var $username = ''; // Username for HTTP authentication |
|
29 | - var $password = ''; // Password for HTTP authentication |
|
30 | - var $authtype = ''; // Type of HTTP authentication |
|
31 | - var $certRequest = array(); // Certificate for HTTP SSL authentication |
|
32 | - var $requestHeaders = false; // SOAP headers in request (text) |
|
33 | - var $responseHeaders = ''; // SOAP headers from response (incomplete namespace resolution) (text) |
|
34 | - var $responseHeader = NULL; // SOAP Header from response (parsed) |
|
35 | - var $document = ''; // SOAP body response portion (incomplete namespace resolution) (text) |
|
26 | +class nusoap_client extends nusoap_base { |
|
27 | + |
|
28 | + var $username = ''; // Username for HTTP authentication |
|
29 | + var $password = ''; // Password for HTTP authentication |
|
30 | + var $authtype = ''; // Type of HTTP authentication |
|
31 | + var $certRequest = array(); // Certificate for HTTP SSL authentication |
|
32 | + var $requestHeaders = false; // SOAP headers in request (text) |
|
33 | + var $responseHeaders = ''; // SOAP headers from response (incomplete namespace resolution) (text) |
|
34 | + var $responseHeader = NULL; // SOAP Header from response (parsed) |
|
35 | + var $document = ''; // SOAP body response portion (incomplete namespace resolution) (text) |
|
36 | 36 | var $endpoint; |
37 | - var $forceEndpoint = ''; // overrides WSDL endpoint |
|
37 | + var $forceEndpoint = ''; // overrides WSDL endpoint |
|
38 | 38 | var $proxyhost = ''; |
39 | 39 | var $proxyport = ''; |
40 | 40 | var $proxyusername = ''; |
41 | 41 | var $proxypassword = ''; |
42 | - var $portName = ''; // port name to use in WSDL |
|
43 | - var $xml_encoding = ''; // character set encoding of incoming (response) messages |
|
42 | + var $portName = ''; // port name to use in WSDL |
|
43 | + var $xml_encoding = ''; // character set encoding of incoming (response) messages |
|
44 | 44 | var $http_encoding = false; |
45 | - var $timeout = 0; // HTTP connection timeout |
|
46 | - var $response_timeout = 30; // HTTP response timeout |
|
47 | - var $endpointType = ''; // soap|wsdl, empty for WSDL initialization error |
|
45 | + var $timeout = 0; // HTTP connection timeout |
|
46 | + var $response_timeout = 30; // HTTP response timeout |
|
47 | + var $endpointType = ''; // soap|wsdl, empty for WSDL initialization error |
|
48 | 48 | var $persistentConnection = false; |
49 | - var $defaultRpcParams = false; // This is no longer used |
|
50 | - var $request = ''; // HTTP request |
|
51 | - var $response = ''; // HTTP response |
|
52 | - var $responseData = ''; // SOAP payload of response |
|
53 | - var $cookies = array(); // Cookies from response or for request |
|
54 | - var $decode_utf8 = true; // toggles whether the parser decodes element content w/ utf8_decode() |
|
55 | - var $operations = array(); // WSDL operations, empty for WSDL initialization error |
|
56 | - var $curl_options = array(); // User-specified cURL options |
|
57 | - var $bindingType = ''; // WSDL operation binding type |
|
58 | - var $use_curl = false; // whether to always try to use cURL |
|
49 | + var $defaultRpcParams = false; // This is no longer used |
|
50 | + var $request = ''; // HTTP request |
|
51 | + var $response = ''; // HTTP response |
|
52 | + var $responseData = ''; // SOAP payload of response |
|
53 | + var $cookies = array(); // Cookies from response or for request |
|
54 | + var $decode_utf8 = true; // toggles whether the parser decodes element content w/ utf8_decode() |
|
55 | + var $operations = array(); // WSDL operations, empty for WSDL initialization error |
|
56 | + var $curl_options = array(); // User-specified cURL options |
|
57 | + var $bindingType = ''; // WSDL operation binding type |
|
58 | + var $use_curl = false; // whether to always try to use cURL |
|
59 | 59 | |
60 | 60 | /* |
61 | 61 | * fault related variables |
@@ -95,7 +95,7 @@ discard block |
||
95 | 95 | * @param string $portName optional portName in WSDL document |
96 | 96 | * @access public |
97 | 97 | */ |
98 | - function nusoap_client($endpoint,$wsdl = false,$proxyhost = false,$proxyport = false,$proxyusername = false, $proxypassword = false, $timeout = 0, $response_timeout = 30, $portName = ''){ |
|
98 | + function nusoap_client($endpoint, $wsdl = false, $proxyhost = false, $proxyport = false, $proxyusername = false, $proxypassword = false, $timeout = 0, $response_timeout = 30, $portName = '') { |
|
99 | 99 | parent::nusoap_base(); |
100 | 100 | $this->endpoint = $endpoint; |
101 | 101 | $this->proxyhost = $proxyhost; |
@@ -107,20 +107,20 @@ discard block |
||
107 | 107 | $this->portName = $portName; |
108 | 108 | |
109 | 109 | $this->debug("ctor wsdl=$wsdl timeout=$timeout response_timeout=$response_timeout"); |
110 | - $this->appendDebug('endpoint=' . $this->varDump($endpoint)); |
|
110 | + $this->appendDebug('endpoint='.$this->varDump($endpoint)); |
|
111 | 111 | |
112 | 112 | // make values |
113 | - if($wsdl){ |
|
113 | + if ($wsdl) { |
|
114 | 114 | if (is_object($endpoint) && (get_class($endpoint) == 'wsdl')) { |
115 | 115 | $this->wsdl = $endpoint; |
116 | 116 | $this->endpoint = $this->wsdl->wsdl; |
117 | 117 | $this->wsdlFile = $this->endpoint; |
118 | - $this->debug('existing wsdl instance created from ' . $this->endpoint); |
|
118 | + $this->debug('existing wsdl instance created from '.$this->endpoint); |
|
119 | 119 | $this->checkWSDL(); |
120 | 120 | } else { |
121 | 121 | $this->wsdlFile = $this->endpoint; |
122 | 122 | $this->wsdl = null; |
123 | - $this->debug('will use lazy evaluation of wsdl from ' . $this->endpoint); |
|
123 | + $this->debug('will use lazy evaluation of wsdl from '.$this->endpoint); |
|
124 | 124 | } |
125 | 125 | $this->endpointType = 'wsdl'; |
126 | 126 | } else { |
@@ -154,7 +154,7 @@ discard block |
||
154 | 154 | * @return mixed response from SOAP call, normally an associative array mirroring the structure of the XML response, false for certain fatal errors |
155 | 155 | * @access public |
156 | 156 | */ |
157 | - function call($operation,$params=array(),$namespace='http://tempuri.org',$soapAction='',$headers=false,$rpcParams=null,$style='rpc',$use='encoded'){ |
|
157 | + function call($operation, $params = array(), $namespace = 'http://tempuri.org', $soapAction = '', $headers = false, $rpcParams = null, $style = 'rpc', $use = 'encoded') { |
|
158 | 158 | $this->operation = $operation; |
159 | 159 | $this->fault = false; |
160 | 160 | $this->setError(''); |
@@ -166,8 +166,8 @@ discard block |
||
166 | 166 | $this->opData = array(); |
167 | 167 | |
168 | 168 | $this->debug("call: operation=$operation, namespace=$namespace, soapAction=$soapAction, rpcParams=$rpcParams, style=$style, use=$use, endpointType=$this->endpointType"); |
169 | - $this->appendDebug('params=' . $this->varDump($params)); |
|
170 | - $this->appendDebug('headers=' . $this->varDump($headers)); |
|
169 | + $this->appendDebug('params='.$this->varDump($params)); |
|
170 | + $this->appendDebug('headers='.$this->varDump($headers)); |
|
171 | 171 | if ($headers) { |
172 | 172 | $this->requestHeaders = $headers; |
173 | 173 | } |
@@ -177,25 +177,25 @@ discard block |
||
177 | 177 | return false; |
178 | 178 | } |
179 | 179 | // serialize parameters |
180 | - if($this->endpointType == 'wsdl' && $opData = $this->getOperationData($operation)){ |
|
180 | + if ($this->endpointType == 'wsdl' && $opData = $this->getOperationData($operation)) { |
|
181 | 181 | // use WSDL for operation |
182 | 182 | $this->opData = $opData; |
183 | 183 | $this->debug("found operation"); |
184 | - $this->appendDebug('opData=' . $this->varDump($opData)); |
|
184 | + $this->appendDebug('opData='.$this->varDump($opData)); |
|
185 | 185 | if (isset($opData['soapAction'])) { |
186 | 186 | $soapAction = $opData['soapAction']; |
187 | 187 | } |
188 | - if (! $this->forceEndpoint) { |
|
188 | + if (!$this->forceEndpoint) { |
|
189 | 189 | $this->endpoint = $opData['endpoint']; |
190 | 190 | } else { |
191 | 191 | $this->endpoint = $this->forceEndpoint; |
192 | 192 | } |
193 | - $namespace = isset($opData['input']['namespace']) ? $opData['input']['namespace'] : $namespace; |
|
193 | + $namespace = isset($opData['input']['namespace']) ? $opData['input']['namespace'] : $namespace; |
|
194 | 194 | $style = $opData['style']; |
195 | 195 | $use = $opData['input']['use']; |
196 | 196 | // add ns to ns array |
197 | - if($namespace != '' && !isset($this->wsdl->namespaces[$namespace])){ |
|
198 | - $nsPrefix = 'ns' . rand(1000, 9999); |
|
197 | + if ($namespace != '' && !isset($this->wsdl->namespaces[$namespace])) { |
|
198 | + $nsPrefix = 'ns'.rand(1000, 9999); |
|
199 | 199 | $this->wsdl->namespaces[$nsPrefix] = $namespace; |
200 | 200 | } |
201 | 201 | $nsPrefix = $this->wsdl->getPrefixFromNamespace($namespace); |
@@ -205,7 +205,7 @@ discard block |
||
205 | 205 | $payload = $params; |
206 | 206 | } elseif (is_array($params)) { |
207 | 207 | $this->debug("serializing param array for WSDL operation $operation"); |
208 | - $payload = $this->wsdl->serializeRPCParameters($operation,'input',$params,$this->bindingType); |
|
208 | + $payload = $this->wsdl->serializeRPCParameters($operation, 'input', $params, $this->bindingType); |
|
209 | 209 | } else { |
210 | 210 | $this->debug('params must be array or string'); |
211 | 211 | $this->setError('params must be array or string'); |
@@ -224,7 +224,7 @@ discard block |
||
224 | 224 | $this->setError('wsdl error: '.$errstr); |
225 | 225 | return false; |
226 | 226 | } |
227 | - } elseif($this->endpointType == 'wsdl') { |
|
227 | + } elseif ($this->endpointType == 'wsdl') { |
|
228 | 228 | // operation not in WSDL |
229 | 229 | $this->appendDebug($this->wsdl->getDebug()); |
230 | 230 | $this->wsdl->clearDebug(); |
@@ -234,7 +234,7 @@ discard block |
||
234 | 234 | } else { |
235 | 235 | // no WSDL |
236 | 236 | //$this->namespaces['ns1'] = $namespace; |
237 | - $nsPrefix = 'ns' . rand(1000, 9999); |
|
237 | + $nsPrefix = 'ns'.rand(1000, 9999); |
|
238 | 238 | // serialize |
239 | 239 | $payload = ''; |
240 | 240 | if (is_string($params)) { |
@@ -242,8 +242,8 @@ discard block |
||
242 | 242 | $payload = $params; |
243 | 243 | } elseif (is_array($params)) { |
244 | 244 | $this->debug("serializing param array for operation $operation"); |
245 | - foreach($params as $k => $v){ |
|
246 | - $payload .= $this->serialize_val($v,$k,false,false,false,false,$use); |
|
245 | + foreach ($params as $k => $v) { |
|
246 | + $payload .= $this->serialize_val($v, $k, false, false, false, false, $use); |
|
247 | 247 | } |
248 | 248 | } else { |
249 | 249 | $this->debug('params must be array or string'); |
@@ -263,45 +263,45 @@ discard block |
||
263 | 263 | $this->debug("wrapping RPC request with literal method element"); |
264 | 264 | if ($namespace) { |
265 | 265 | // http://www.ws-i.org/Profiles/BasicProfile-1.1-2004-08-24.html R2735 says rpc/literal accessor elements should not be in a namespace |
266 | - $payload = "<$nsPrefix:$operation xmlns:$nsPrefix=\"$namespace\">" . |
|
267 | - $payload . |
|
266 | + $payload = "<$nsPrefix:$operation xmlns:$nsPrefix=\"$namespace\">". |
|
267 | + $payload. |
|
268 | 268 | "</$nsPrefix:$operation>"; |
269 | 269 | } else { |
270 | - $payload = "<$operation>" . $payload . "</$operation>"; |
|
270 | + $payload = "<$operation>".$payload."</$operation>"; |
|
271 | 271 | } |
272 | 272 | } else { |
273 | 273 | $this->debug("wrapping RPC request with encoded method element"); |
274 | 274 | if ($namespace) { |
275 | - $payload = "<$nsPrefix:$operation xmlns:$nsPrefix=\"$namespace\">" . |
|
276 | - $payload . |
|
275 | + $payload = "<$nsPrefix:$operation xmlns:$nsPrefix=\"$namespace\">". |
|
276 | + $payload. |
|
277 | 277 | "</$nsPrefix:$operation>"; |
278 | 278 | } else { |
279 | - $payload = "<$operation>" . |
|
280 | - $payload . |
|
279 | + $payload = "<$operation>". |
|
280 | + $payload. |
|
281 | 281 | "</$operation>"; |
282 | 282 | } |
283 | 283 | } |
284 | 284 | } |
285 | 285 | // serialize envelope |
286 | - $soapmsg = $this->serializeEnvelope($payload,$this->requestHeaders,$usedNamespaces,$style,$use,$encodingStyle); |
|
286 | + $soapmsg = $this->serializeEnvelope($payload, $this->requestHeaders, $usedNamespaces, $style, $use, $encodingStyle); |
|
287 | 287 | $this->debug("endpoint=$this->endpoint, soapAction=$soapAction, namespace=$namespace, style=$style, use=$use, encodingStyle=$encodingStyle"); |
288 | - $this->debug('SOAP message length=' . strlen($soapmsg) . ' contents (max 1000 bytes)=' . substr($soapmsg, 0, 1000)); |
|
288 | + $this->debug('SOAP message length='.strlen($soapmsg).' contents (max 1000 bytes)='.substr($soapmsg, 0, 1000)); |
|
289 | 289 | // send |
290 | - $return = $this->send($this->getHTTPBody($soapmsg),$soapAction,$this->timeout,$this->response_timeout); |
|
291 | - if($errstr = $this->getError()){ |
|
290 | + $return = $this->send($this->getHTTPBody($soapmsg), $soapAction, $this->timeout, $this->response_timeout); |
|
291 | + if ($errstr = $this->getError()) { |
|
292 | 292 | $this->debug('Error: '.$errstr); |
293 | 293 | return false; |
294 | 294 | } else { |
295 | 295 | $this->return = $return; |
296 | 296 | $this->debug('sent message successfully and got a(n) '.gettype($return)); |
297 | - $this->appendDebug('return=' . $this->varDump($return)); |
|
297 | + $this->appendDebug('return='.$this->varDump($return)); |
|
298 | 298 | |
299 | 299 | // fault? |
300 | - if(is_array($return) && isset($return['faultcode'])){ |
|
300 | + if (is_array($return) && isset($return['faultcode'])) { |
|
301 | 301 | $this->debug('got fault'); |
302 | 302 | $this->setError($return['faultcode'].': '.$return['faultstring']); |
303 | 303 | $this->fault = true; |
304 | - foreach($return as $k => $v){ |
|
304 | + foreach ($return as $k => $v) { |
|
305 | 305 | $this->$k = $v; |
306 | 306 | $this->debug("$k = $v<br>"); |
307 | 307 | } |
@@ -312,10 +312,10 @@ discard block |
||
312 | 312 | return $return; |
313 | 313 | } else { |
314 | 314 | // array of return values |
315 | - if(is_array($return)){ |
|
315 | + if (is_array($return)) { |
|
316 | 316 | // multiple 'out' parameters, which we return wrapped up |
317 | 317 | // in the array |
318 | - if(sizeof($return) > 1){ |
|
318 | + if (sizeof($return) > 1) { |
|
319 | 319 | return $return; |
320 | 320 | } |
321 | 321 | // single 'out' parameter (normally the return value) |
@@ -372,7 +372,7 @@ discard block |
||
372 | 372 | */ |
373 | 373 | function loadWSDL() { |
374 | 374 | $this->debug('instantiating wsdl class with doc: '.$this->wsdlFile); |
375 | - $this->wsdl = new wsdl('',$this->proxyhost,$this->proxyport,$this->proxyusername,$this->proxypassword,$this->timeout,$this->response_timeout,$this->curl_options,$this->use_curl); |
|
375 | + $this->wsdl = new wsdl('', $this->proxyhost, $this->proxyport, $this->proxyusername, $this->proxypassword, $this->timeout, $this->response_timeout, $this->curl_options, $this->use_curl); |
|
376 | 376 | $this->wsdl->setCredentials($this->username, $this->password, $this->authtype, $this->certRequest); |
377 | 377 | $this->wsdl->fetchWSDL($this->wsdlFile); |
378 | 378 | $this->checkWSDL(); |
@@ -385,13 +385,13 @@ discard block |
||
385 | 385 | * @return array array of data pertaining to the operation |
386 | 386 | * @access public |
387 | 387 | */ |
388 | - function getOperationData($operation){ |
|
388 | + function getOperationData($operation) { |
|
389 | 389 | if ($this->endpointType == 'wsdl' && is_null($this->wsdl)) { |
390 | 390 | $this->loadWSDL(); |
391 | 391 | if ($this->getError()) |
392 | 392 | return false; |
393 | 393 | } |
394 | - if(isset($this->operations[$operation])){ |
|
394 | + if (isset($this->operations[$operation])) { |
|
395 | 395 | return $this->operations[$operation]; |
396 | 396 | } |
397 | 397 | $this->debug("No data for operation: $operation"); |
@@ -411,15 +411,15 @@ discard block |
||
411 | 411 | * @return mixed native PHP types. |
412 | 412 | * @access private |
413 | 413 | */ |
414 | - function send($msg, $soapaction = '', $timeout=0, $response_timeout=30) { |
|
414 | + function send($msg, $soapaction = '', $timeout = 0, $response_timeout = 30) { |
|
415 | 415 | $this->checkCookies(); |
416 | 416 | // detect transport |
417 | - switch(true){ |
|
417 | + switch (true) { |
|
418 | 418 | // http(s) |
419 | - case preg_match('/^http/',$this->endpoint): |
|
419 | + case preg_match('/^http/', $this->endpoint): |
|
420 | 420 | $this->debug('transporting via HTTP'); |
421 | - if($this->persistentConnection == true && is_object($this->persistentConnection)){ |
|
422 | - $http =& $this->persistentConnection; |
|
421 | + if ($this->persistentConnection == true && is_object($this->persistentConnection)) { |
|
422 | + $http = & $this->persistentConnection; |
|
423 | 423 | } else { |
424 | 424 | $http = new soap_transport_http($this->endpoint, $this->curl_options, $this->use_curl); |
425 | 425 | if ($this->persistentConnection) { |
@@ -428,27 +428,27 @@ discard block |
||
428 | 428 | } |
429 | 429 | $http->setContentType($this->getHTTPContentType(), $this->getHTTPContentTypeCharset()); |
430 | 430 | $http->setSOAPAction($soapaction); |
431 | - if($this->proxyhost && $this->proxyport){ |
|
432 | - $http->setProxy($this->proxyhost,$this->proxyport,$this->proxyusername,$this->proxypassword); |
|
431 | + if ($this->proxyhost && $this->proxyport) { |
|
432 | + $http->setProxy($this->proxyhost, $this->proxyport, $this->proxyusername, $this->proxypassword); |
|
433 | 433 | } |
434 | - if($this->authtype != '') { |
|
434 | + if ($this->authtype != '') { |
|
435 | 435 | $http->setCredentials($this->username, $this->password, $this->authtype, array(), $this->certRequest); |
436 | 436 | } |
437 | - if($this->http_encoding != ''){ |
|
437 | + if ($this->http_encoding != '') { |
|
438 | 438 | $http->setEncoding($this->http_encoding); |
439 | 439 | } |
440 | 440 | $this->debug('sending message, length='.strlen($msg)); |
441 | - if(preg_match('/^http:/',$this->endpoint)){ |
|
441 | + if (preg_match('/^http:/', $this->endpoint)) { |
|
442 | 442 | //if(strpos($this->endpoint,'http:')){ |
443 | - $this->responseData = $http->send($msg,$timeout,$response_timeout,$this->cookies); |
|
444 | - } elseif(preg_match('/^https/',$this->endpoint)){ |
|
443 | + $this->responseData = $http->send($msg, $timeout, $response_timeout, $this->cookies); |
|
444 | + } elseif (preg_match('/^https/', $this->endpoint)) { |
|
445 | 445 | //} elseif(strpos($this->endpoint,'https:')){ |
446 | 446 | //if(phpversion() == '4.3.0-dev'){ |
447 | 447 | //$response = $http->send($msg,$timeout,$response_timeout); |
448 | 448 | //$this->request = $http->outgoing_payload; |
449 | 449 | //$this->response = $http->incoming_payload; |
450 | 450 | //} else |
451 | - $this->responseData = $http->sendHTTPS($msg,$timeout,$response_timeout,$this->cookies); |
|
451 | + $this->responseData = $http->sendHTTPS($msg, $timeout, $response_timeout, $this->cookies); |
|
452 | 452 | } else { |
453 | 453 | $this->setError('no http/s in endpoint url'); |
454 | 454 | } |
@@ -465,13 +465,13 @@ discard block |
||
465 | 465 | } |
466 | 466 | } |
467 | 467 | |
468 | - if($err = $http->getError()){ |
|
468 | + if ($err = $http->getError()) { |
|
469 | 469 | $this->setError('HTTP Error: '.$err); |
470 | 470 | return false; |
471 | - } elseif($this->getError()){ |
|
471 | + } elseif ($this->getError()) { |
|
472 | 472 | return false; |
473 | 473 | } else { |
474 | - $this->debug('got response, length='. strlen($this->responseData).' type='.$http->incoming_headers['content-type']); |
|
474 | + $this->debug('got response, length='.strlen($this->responseData).' type='.$http->incoming_headers['content-type']); |
|
475 | 475 | return $this->parseResponse($http->incoming_headers, $this->responseData); |
476 | 476 | } |
477 | 477 | break; |
@@ -491,20 +491,20 @@ discard block |
||
491 | 491 | * @access private |
492 | 492 | */ |
493 | 493 | function parseResponse($headers, $data) { |
494 | - $this->debug('Entering parseResponse() for data of length ' . strlen($data) . ' headers:'); |
|
494 | + $this->debug('Entering parseResponse() for data of length '.strlen($data).' headers:'); |
|
495 | 495 | $this->appendDebug($this->varDump($headers)); |
496 | 496 | if (!isset($headers['content-type'])) { |
497 | 497 | $this->setError('Response not of type text/xml (no content-type header)'); |
498 | 498 | return false; |
499 | 499 | } |
500 | 500 | if (!strstr($headers['content-type'], 'text/xml')) { |
501 | - $this->setError('Response not of type text/xml: ' . $headers['content-type']); |
|
501 | + $this->setError('Response not of type text/xml: '.$headers['content-type']); |
|
502 | 502 | return false; |
503 | 503 | } |
504 | 504 | if (strpos($headers['content-type'], '=')) { |
505 | 505 | $enc = str_replace('"', '', substr(strstr($headers["content-type"], '='), 1)); |
506 | - $this->debug('Got response encoding: ' . $enc); |
|
507 | - if(preg_match('/^(ISO-8859-1|US-ASCII|UTF-8)$/i',$enc)){ |
|
506 | + $this->debug('Got response encoding: '.$enc); |
|
507 | + if (preg_match('/^(ISO-8859-1|US-ASCII|UTF-8)$/i', $enc)) { |
|
508 | 508 | $this->xml_encoding = strtoupper($enc); |
509 | 509 | } else { |
510 | 510 | $this->xml_encoding = 'US-ASCII'; |
@@ -513,13 +513,13 @@ discard block |
||
513 | 513 | // should be US-ASCII for HTTP 1.0 or ISO-8859-1 for HTTP 1.1 |
514 | 514 | $this->xml_encoding = 'ISO-8859-1'; |
515 | 515 | } |
516 | - $this->debug('Use encoding: ' . $this->xml_encoding . ' when creating nusoap_parser'); |
|
517 | - $parser = new nusoap_parser($data,$this->xml_encoding,$this->operation,$this->decode_utf8); |
|
516 | + $this->debug('Use encoding: '.$this->xml_encoding.' when creating nusoap_parser'); |
|
517 | + $parser = new nusoap_parser($data, $this->xml_encoding, $this->operation, $this->decode_utf8); |
|
518 | 518 | // add parser debug data to our debug |
519 | 519 | $this->appendDebug($parser->getDebug()); |
520 | 520 | // if parse errors |
521 | - if($errstr = $parser->getError()){ |
|
522 | - $this->setError( $errstr); |
|
521 | + if ($errstr = $parser->getError()) { |
|
522 | + $this->setError($errstr); |
|
523 | 523 | // destroy the parser object |
524 | 524 | unset($parser); |
525 | 525 | return false; |
@@ -569,7 +569,7 @@ discard block |
||
569 | 569 | * @param mixed $headers String of XML with SOAP header content, or array of soapval objects for SOAP headers |
570 | 570 | * @access public |
571 | 571 | */ |
572 | - function setHeaders($headers){ |
|
572 | + function setHeaders($headers) { |
|
573 | 573 | $this->debug("setHeaders headers="); |
574 | 574 | $this->appendDebug($this->varDump($headers)); |
575 | 575 | $this->requestHeaders = $headers; |
@@ -581,7 +581,7 @@ discard block |
||
581 | 581 | * @return string |
582 | 582 | * @access public |
583 | 583 | */ |
584 | - function getHeaders(){ |
|
584 | + function getHeaders() { |
|
585 | 585 | return $this->responseHeaders; |
586 | 586 | } |
587 | 587 | |
@@ -591,7 +591,7 @@ discard block |
||
591 | 591 | * @return mixed |
592 | 592 | * @access public |
593 | 593 | */ |
594 | - function getHeader(){ |
|
594 | + function getHeader() { |
|
595 | 595 | return $this->responseHeader; |
596 | 596 | } |
597 | 597 | |
@@ -635,7 +635,7 @@ discard block |
||
635 | 635 | * @param string $enc HTTP encoding |
636 | 636 | * @access public |
637 | 637 | */ |
638 | - function setHTTPEncoding($enc='gzip, deflate'){ |
|
638 | + function setHTTPEncoding($enc = 'gzip, deflate') { |
|
639 | 639 | $this->debug("setHTTPEncoding(\"$enc\")"); |
640 | 640 | $this->http_encoding = $enc; |
641 | 641 | } |
@@ -656,7 +656,7 @@ discard block |
||
656 | 656 | * |
657 | 657 | * @access public |
658 | 658 | */ |
659 | - function useHTTPPersistentConnection(){ |
|
659 | + function useHTTPPersistentConnection() { |
|
660 | 660 | $this->debug("useHTTPPersistentConnection"); |
661 | 661 | $this->persistentConnection = true; |
662 | 662 | } |
@@ -748,7 +748,7 @@ discard block |
||
748 | 748 | */ |
749 | 749 | function _getProxyClassCode($r) { |
750 | 750 | $this->debug("in getProxy endpointType=$this->endpointType"); |
751 | - $this->appendDebug("wsdl=" . $this->varDump($this->wsdl)); |
|
751 | + $this->appendDebug("wsdl=".$this->varDump($this->wsdl)); |
|
752 | 752 | if ($this->endpointType != 'wsdl') { |
753 | 753 | $evalStr = 'A proxy can only be created for a WSDL client'; |
754 | 754 | $this->setError($evalStr); |
@@ -758,7 +758,7 @@ discard block |
||
758 | 758 | if ($this->endpointType == 'wsdl' && is_null($this->wsdl)) { |
759 | 759 | $this->loadWSDL(); |
760 | 760 | if ($this->getError()) { |
761 | - return "echo \"" . $this->getError() . "\";"; |
|
761 | + return "echo \"".$this->getError()."\";"; |
|
762 | 762 | } |
763 | 763 | } |
764 | 764 | $evalStr = ''; |
@@ -774,9 +774,9 @@ discard block |
||
774 | 774 | $paramArrayStr .= "'$name' => \$$name, "; |
775 | 775 | $paramCommentStr .= "$type \$$name, "; |
776 | 776 | } |
777 | - $paramStr = substr($paramStr, 0, strlen($paramStr)-2); |
|
778 | - $paramArrayStr = substr($paramArrayStr, 0, strlen($paramArrayStr)-2); |
|
779 | - $paramCommentStr = substr($paramCommentStr, 0, strlen($paramCommentStr)-2); |
|
777 | + $paramStr = substr($paramStr, 0, strlen($paramStr) - 2); |
|
778 | + $paramArrayStr = substr($paramArrayStr, 0, strlen($paramArrayStr) - 2); |
|
779 | + $paramCommentStr = substr($paramCommentStr, 0, strlen($paramCommentStr) - 2); |
|
780 | 780 | } else { |
781 | 781 | $paramStr = ''; |
782 | 782 | $paramArrayStr = ''; |
@@ -784,7 +784,7 @@ discard block |
||
784 | 784 | } |
785 | 785 | $opData['namespace'] = !isset($opData['namespace']) ? 'http://testuri.com' : $opData['namespace']; |
786 | 786 | $evalStr .= "// $paramCommentStr |
787 | - function " . str_replace('.', '__', $operation) . "($paramStr) { |
|
787 | + function ".str_replace('.', '__', $operation)."($paramStr) { |
|
788 | 788 | \$params = array($paramArrayStr); |
789 | 789 | return \$this->call('$operation', \$params, '".$opData['namespace']."', '".(isset($opData['soapAction']) ? $opData['soapAction'] : '')."'); |
790 | 790 | } |
@@ -852,7 +852,7 @@ discard block |
||
852 | 852 | * @return always returns true |
853 | 853 | * @access public |
854 | 854 | */ |
855 | - function decodeUTF8($bool){ |
|
855 | + function decodeUTF8($bool) { |
|
856 | 856 | $this->decode_utf8 = $bool; |
857 | 857 | return true; |
858 | 858 | } |
@@ -893,19 +893,19 @@ discard block |
||
893 | 893 | if (sizeof($this->cookies) == 0) { |
894 | 894 | return true; |
895 | 895 | } |
896 | - $this->debug('checkCookie: check ' . sizeof($this->cookies) . ' cookies'); |
|
896 | + $this->debug('checkCookie: check '.sizeof($this->cookies).' cookies'); |
|
897 | 897 | $curr_cookies = $this->cookies; |
898 | 898 | $this->cookies = array(); |
899 | 899 | foreach ($curr_cookies as $cookie) { |
900 | - if (! is_array($cookie)) { |
|
900 | + if (!is_array($cookie)) { |
|
901 | 901 | $this->debug('Remove cookie that is not an array'); |
902 | 902 | continue; |
903 | 903 | } |
904 | - if ((isset($cookie['expires'])) && (! empty($cookie['expires']))) { |
|
904 | + if ((isset($cookie['expires'])) && (!empty($cookie['expires']))) { |
|
905 | 905 | if (strtotime($cookie['expires']) > time()) { |
906 | 906 | $this->cookies[] = $cookie; |
907 | 907 | } else { |
908 | - $this->debug('Remove expired cookie ' . $cookie['name']); |
|
908 | + $this->debug('Remove expired cookie '.$cookie['name']); |
|
909 | 909 | } |
910 | 910 | } else { |
911 | 911 | $this->cookies[] = $cookie; |
@@ -969,11 +969,11 @@ discard block |
||
969 | 969 | } |
970 | 970 | $this->cookies[$i] = $newCookie; |
971 | 971 | $found = true; |
972 | - $this->debug('Update cookie ' . $newName . '=' . $newCookie['value']); |
|
972 | + $this->debug('Update cookie '.$newName.'='.$newCookie['value']); |
|
973 | 973 | break; |
974 | 974 | } |
975 | - if (! $found) { |
|
976 | - $this->debug('Add cookie ' . $newName . '=' . $newCookie['value']); |
|
975 | + if (!$found) { |
|
976 | + $this->debug('Add cookie '.$newName.'='.$newCookie['value']); |
|
977 | 977 | $this->cookies[] = $newCookie; |
978 | 978 | } |
979 | 979 | } |
@@ -173,8 +173,9 @@ discard block |
||
173 | 173 | } |
174 | 174 | if ($this->endpointType == 'wsdl' && is_null($this->wsdl)) { |
175 | 175 | $this->loadWSDL(); |
176 | - if ($this->getError()) |
|
177 | - return false; |
|
176 | + if ($this->getError()) { |
|
177 | + return false; |
|
178 | + } |
|
178 | 179 | } |
179 | 180 | // serialize parameters |
180 | 181 | if($this->endpointType == 'wsdl' && $opData = $this->getOperationData($operation)){ |
@@ -388,8 +389,9 @@ discard block |
||
388 | 389 | function getOperationData($operation){ |
389 | 390 | if ($this->endpointType == 'wsdl' && is_null($this->wsdl)) { |
390 | 391 | $this->loadWSDL(); |
391 | - if ($this->getError()) |
|
392 | - return false; |
|
392 | + if ($this->getError()) { |
|
393 | + return false; |
|
394 | + } |
|
393 | 395 | } |
394 | 396 | if(isset($this->operations[$operation])){ |
395 | 397 | return $this->operations[$operation]; |
@@ -883,7 +883,7 @@ discard block |
||
883 | 883 | /** |
884 | 884 | * serialize the parsed wsdl |
885 | 885 | * |
886 | - * @param mixed $debug whether to put debug=1 in endpoint URL |
|
886 | + * @param integer $debug whether to put debug=1 in endpoint URL |
|
887 | 887 | * @return string serialization of WSDL |
888 | 888 | * @access public |
889 | 889 | */ |
@@ -1106,7 +1106,7 @@ discard block |
||
1106 | 1106 | * @param string $direction (input|output) |
1107 | 1107 | * @param mixed $parameters parameter value(s) |
1108 | 1108 | * @param string $bindingType (soap|soap12) |
1109 | - * @return mixed parameters serialized as XML or false on error (e.g. operation not found) |
|
1109 | + * @return false|string parameters serialized as XML or false on error (e.g. operation not found) |
|
1110 | 1110 | * @access public |
1111 | 1111 | */ |
1112 | 1112 | function serializeRPCParameters($operation, $direction, $parameters, $bindingType = 'soap') { |
@@ -1206,7 +1206,7 @@ discard block |
||
1206 | 1206 | * @param string $operation operation name |
1207 | 1207 | * @param string $direction (input|output) |
1208 | 1208 | * @param mixed $parameters parameter value(s) |
1209 | - * @return mixed parameters serialized as XML or false on error (e.g. operation not found) |
|
1209 | + * @return false|string parameters serialized as XML or false on error (e.g. operation not found) |
|
1210 | 1210 | * @access public |
1211 | 1211 | * @deprecated |
1212 | 1212 | */ |
@@ -13,7 +13,7 @@ discard block |
||
13 | 13 | * @access public |
14 | 14 | */ |
15 | 15 | class wsdl extends nusoap_base { |
16 | - // URL or filename of the root of this WSDL |
|
16 | + // URL or filename of the root of this WSDL |
|
17 | 17 | var $wsdl; |
18 | 18 | // define internal arrays of bindings, ports, operations, messages, etc. |
19 | 19 | var $schemas = array(); |
@@ -40,142 +40,142 @@ discard block |
||
40 | 40 | var $position = 0; |
41 | 41 | var $depth = 0; |
42 | 42 | var $depth_array = array(); |
43 | - // for getting wsdl |
|
44 | - var $proxyhost = ''; |
|
43 | + // for getting wsdl |
|
44 | + var $proxyhost = ''; |
|
45 | 45 | var $proxyport = ''; |
46 | - var $proxyusername = ''; |
|
47 | - var $proxypassword = ''; |
|
48 | - var $timeout = 0; |
|
49 | - var $response_timeout = 30; |
|
50 | - var $curl_options = array(); // User-specified cURL options |
|
51 | - var $use_curl = false; // whether to always try to use cURL |
|
52 | - // for HTTP authentication |
|
53 | - var $username = ''; // Username for HTTP authentication |
|
54 | - var $password = ''; // Password for HTTP authentication |
|
55 | - var $authtype = ''; // Type of HTTP authentication |
|
56 | - var $certRequest = array(); // Certificate for HTTP SSL authentication |
|
46 | + var $proxyusername = ''; |
|
47 | + var $proxypassword = ''; |
|
48 | + var $timeout = 0; |
|
49 | + var $response_timeout = 30; |
|
50 | + var $curl_options = array(); // User-specified cURL options |
|
51 | + var $use_curl = false; // whether to always try to use cURL |
|
52 | + // for HTTP authentication |
|
53 | + var $username = ''; // Username for HTTP authentication |
|
54 | + var $password = ''; // Password for HTTP authentication |
|
55 | + var $authtype = ''; // Type of HTTP authentication |
|
56 | + var $certRequest = array(); // Certificate for HTTP SSL authentication |
|
57 | 57 | |
58 | 58 | /** |
59 | 59 | * constructor |
60 | 60 | * |
61 | 61 | * @param string $wsdl WSDL document URL |
62 | - * @param string $proxyhost |
|
63 | - * @param string $proxyport |
|
64 | - * @param string $proxyusername |
|
65 | - * @param string $proxypassword |
|
66 | - * @param integer $timeout set the connection timeout |
|
67 | - * @param integer $response_timeout set the response timeout |
|
68 | - * @param array $curl_options user-specified cURL options |
|
69 | - * @param boolean $use_curl try to use cURL |
|
62 | + * @param string $proxyhost |
|
63 | + * @param string $proxyport |
|
64 | + * @param string $proxyusername |
|
65 | + * @param string $proxypassword |
|
66 | + * @param integer $timeout set the connection timeout |
|
67 | + * @param integer $response_timeout set the response timeout |
|
68 | + * @param array $curl_options user-specified cURL options |
|
69 | + * @param boolean $use_curl try to use cURL |
|
70 | 70 | * @access public |
71 | 71 | */ |
72 | 72 | function wsdl($wsdl = '',$proxyhost=false,$proxyport=false,$proxyusername=false,$proxypassword=false,$timeout=0,$response_timeout=30,$curl_options=null,$use_curl=false){ |
73 | - parent::nusoap_base(); |
|
74 | - $this->debug("ctor wsdl=$wsdl timeout=$timeout response_timeout=$response_timeout"); |
|
73 | + parent::nusoap_base(); |
|
74 | + $this->debug("ctor wsdl=$wsdl timeout=$timeout response_timeout=$response_timeout"); |
|
75 | 75 | $this->proxyhost = $proxyhost; |
76 | 76 | $this->proxyport = $proxyport; |
77 | - $this->proxyusername = $proxyusername; |
|
78 | - $this->proxypassword = $proxypassword; |
|
79 | - $this->timeout = $timeout; |
|
80 | - $this->response_timeout = $response_timeout; |
|
81 | - if (is_array($curl_options)) |
|
82 | - $this->curl_options = $curl_options; |
|
83 | - $this->use_curl = $use_curl; |
|
84 | - $this->fetchWSDL($wsdl); |
|
77 | + $this->proxyusername = $proxyusername; |
|
78 | + $this->proxypassword = $proxypassword; |
|
79 | + $this->timeout = $timeout; |
|
80 | + $this->response_timeout = $response_timeout; |
|
81 | + if (is_array($curl_options)) |
|
82 | + $this->curl_options = $curl_options; |
|
83 | + $this->use_curl = $use_curl; |
|
84 | + $this->fetchWSDL($wsdl); |
|
85 | 85 | } |
86 | 86 | |
87 | - /** |
|
88 | - * fetches the WSDL document and parses it |
|
89 | - * |
|
90 | - * @access public |
|
91 | - */ |
|
92 | - function fetchWSDL($wsdl) { |
|
93 | - $this->debug("parse and process WSDL path=$wsdl"); |
|
94 | - $this->wsdl = $wsdl; |
|
87 | + /** |
|
88 | + * fetches the WSDL document and parses it |
|
89 | + * |
|
90 | + * @access public |
|
91 | + */ |
|
92 | + function fetchWSDL($wsdl) { |
|
93 | + $this->debug("parse and process WSDL path=$wsdl"); |
|
94 | + $this->wsdl = $wsdl; |
|
95 | 95 | // parse wsdl file |
96 | 96 | if ($this->wsdl != "") { |
97 | 97 | $this->parseWSDL($this->wsdl); |
98 | 98 | } |
99 | 99 | // imports |
100 | 100 | // TODO: handle imports more properly, grabbing them in-line and nesting them |
101 | - $imported_urls = array(); |
|
102 | - $imported = 1; |
|
103 | - while ($imported > 0) { |
|
104 | - $imported = 0; |
|
105 | - // Schema imports |
|
106 | - foreach ($this->schemas as $ns => $list) { |
|
107 | - foreach ($list as $xs) { |
|
108 | - $wsdlparts = parse_url($this->wsdl); // this is bogusly simple! |
|
109 | - foreach ($xs->imports as $ns2 => $list2) { |
|
110 | - for ($ii = 0; $ii < count($list2); $ii++) { |
|
111 | - if (! $list2[$ii]['loaded']) { |
|
112 | - $this->schemas[$ns]->imports[$ns2][$ii]['loaded'] = true; |
|
113 | - $url = $list2[$ii]['location']; |
|
114 | - if ($url != '') { |
|
115 | - $urlparts = parse_url($url); |
|
116 | - if (!isset($urlparts['host'])) { |
|
117 | - $url = $wsdlparts['scheme'] . '://' . $wsdlparts['host'] . (isset($wsdlparts['port']) ? ':' .$wsdlparts['port'] : '') . |
|
118 | - substr($wsdlparts['path'],0,strrpos($wsdlparts['path'],'/') + 1) .$urlparts['path']; |
|
119 | - } |
|
120 | - if (! in_array($url, $imported_urls)) { |
|
121 | - $this->parseWSDL($url); |
|
122 | - $imported++; |
|
123 | - $imported_urls[] = $url; |
|
124 | - } |
|
125 | - } else { |
|
126 | - $this->debug("Unexpected scenario: empty URL for unloaded import"); |
|
127 | - } |
|
128 | - } |
|
129 | - } |
|
130 | - } |
|
131 | - } |
|
132 | - } |
|
133 | - // WSDL imports |
|
134 | - $wsdlparts = parse_url($this->wsdl); // this is bogusly simple! |
|
101 | + $imported_urls = array(); |
|
102 | + $imported = 1; |
|
103 | + while ($imported > 0) { |
|
104 | + $imported = 0; |
|
105 | + // Schema imports |
|
106 | + foreach ($this->schemas as $ns => $list) { |
|
107 | + foreach ($list as $xs) { |
|
108 | + $wsdlparts = parse_url($this->wsdl); // this is bogusly simple! |
|
109 | + foreach ($xs->imports as $ns2 => $list2) { |
|
110 | + for ($ii = 0; $ii < count($list2); $ii++) { |
|
111 | + if (! $list2[$ii]['loaded']) { |
|
112 | + $this->schemas[$ns]->imports[$ns2][$ii]['loaded'] = true; |
|
113 | + $url = $list2[$ii]['location']; |
|
114 | + if ($url != '') { |
|
115 | + $urlparts = parse_url($url); |
|
116 | + if (!isset($urlparts['host'])) { |
|
117 | + $url = $wsdlparts['scheme'] . '://' . $wsdlparts['host'] . (isset($wsdlparts['port']) ? ':' .$wsdlparts['port'] : '') . |
|
118 | + substr($wsdlparts['path'],0,strrpos($wsdlparts['path'],'/') + 1) .$urlparts['path']; |
|
119 | + } |
|
120 | + if (! in_array($url, $imported_urls)) { |
|
121 | + $this->parseWSDL($url); |
|
122 | + $imported++; |
|
123 | + $imported_urls[] = $url; |
|
124 | + } |
|
125 | + } else { |
|
126 | + $this->debug("Unexpected scenario: empty URL for unloaded import"); |
|
127 | + } |
|
128 | + } |
|
129 | + } |
|
130 | + } |
|
131 | + } |
|
132 | + } |
|
133 | + // WSDL imports |
|
134 | + $wsdlparts = parse_url($this->wsdl); // this is bogusly simple! |
|
135 | 135 | foreach ($this->import as $ns => $list) { |
136 | 136 | for ($ii = 0; $ii < count($list); $ii++) { |
137 | - if (! $list[$ii]['loaded']) { |
|
138 | - $this->import[$ns][$ii]['loaded'] = true; |
|
139 | - $url = $list[$ii]['location']; |
|
140 | - if ($url != '') { |
|
141 | - $urlparts = parse_url($url); |
|
142 | - if (!isset($urlparts['host'])) { |
|
143 | - $url = $wsdlparts['scheme'] . '://' . $wsdlparts['host'] . (isset($wsdlparts['port']) ? ':' . $wsdlparts['port'] : '') . |
|
144 | - substr($wsdlparts['path'],0,strrpos($wsdlparts['path'],'/') + 1) .$urlparts['path']; |
|
145 | - } |
|
146 | - if (! in_array($url, $imported_urls)) { |
|
147 | - $this->parseWSDL($url); |
|
148 | - $imported++; |
|
149 | - $imported_urls[] = $url; |
|
150 | - } |
|
151 | - } else { |
|
152 | - $this->debug("Unexpected scenario: empty URL for unloaded import"); |
|
153 | - } |
|
154 | - } |
|
155 | - } |
|
137 | + if (! $list[$ii]['loaded']) { |
|
138 | + $this->import[$ns][$ii]['loaded'] = true; |
|
139 | + $url = $list[$ii]['location']; |
|
140 | + if ($url != '') { |
|
141 | + $urlparts = parse_url($url); |
|
142 | + if (!isset($urlparts['host'])) { |
|
143 | + $url = $wsdlparts['scheme'] . '://' . $wsdlparts['host'] . (isset($wsdlparts['port']) ? ':' . $wsdlparts['port'] : '') . |
|
144 | + substr($wsdlparts['path'],0,strrpos($wsdlparts['path'],'/') + 1) .$urlparts['path']; |
|
145 | + } |
|
146 | + if (! in_array($url, $imported_urls)) { |
|
147 | + $this->parseWSDL($url); |
|
148 | + $imported++; |
|
149 | + $imported_urls[] = $url; |
|
150 | + } |
|
151 | + } else { |
|
152 | + $this->debug("Unexpected scenario: empty URL for unloaded import"); |
|
153 | + } |
|
154 | + } |
|
155 | + } |
|
156 | 156 | } |
157 | - } |
|
157 | + } |
|
158 | 158 | // add new data to operation data |
159 | 159 | foreach($this->bindings as $binding => $bindingData) { |
160 | 160 | if (isset($bindingData['operations']) && is_array($bindingData['operations'])) { |
161 | 161 | foreach($bindingData['operations'] as $operation => $data) { |
162 | 162 | $this->debug('post-parse data gathering for ' . $operation); |
163 | 163 | $this->bindings[$binding]['operations'][$operation]['input'] = |
164 | - isset($this->bindings[$binding]['operations'][$operation]['input']) ? |
|
165 | - array_merge($this->bindings[$binding]['operations'][$operation]['input'], $this->portTypes[ $bindingData['portType'] ][$operation]['input']) : |
|
166 | - $this->portTypes[ $bindingData['portType'] ][$operation]['input']; |
|
164 | + isset($this->bindings[$binding]['operations'][$operation]['input']) ? |
|
165 | + array_merge($this->bindings[$binding]['operations'][$operation]['input'], $this->portTypes[ $bindingData['portType'] ][$operation]['input']) : |
|
166 | + $this->portTypes[ $bindingData['portType'] ][$operation]['input']; |
|
167 | 167 | $this->bindings[$binding]['operations'][$operation]['output'] = |
168 | - isset($this->bindings[$binding]['operations'][$operation]['output']) ? |
|
169 | - array_merge($this->bindings[$binding]['operations'][$operation]['output'], $this->portTypes[ $bindingData['portType'] ][$operation]['output']) : |
|
170 | - $this->portTypes[ $bindingData['portType'] ][$operation]['output']; |
|
168 | + isset($this->bindings[$binding]['operations'][$operation]['output']) ? |
|
169 | + array_merge($this->bindings[$binding]['operations'][$operation]['output'], $this->portTypes[ $bindingData['portType'] ][$operation]['output']) : |
|
170 | + $this->portTypes[ $bindingData['portType'] ][$operation]['output']; |
|
171 | 171 | if(isset($this->messages[ $this->bindings[$binding]['operations'][$operation]['input']['message'] ])){ |
172 | - $this->bindings[$binding]['operations'][$operation]['input']['parts'] = $this->messages[ $this->bindings[$binding]['operations'][$operation]['input']['message'] ]; |
|
173 | - } |
|
174 | - if(isset($this->messages[ $this->bindings[$binding]['operations'][$operation]['output']['message'] ])){ |
|
175 | - $this->bindings[$binding]['operations'][$operation]['output']['parts'] = $this->messages[ $this->bindings[$binding]['operations'][$operation]['output']['message'] ]; |
|
172 | + $this->bindings[$binding]['operations'][$operation]['input']['parts'] = $this->messages[ $this->bindings[$binding]['operations'][$operation]['input']['message'] ]; |
|
173 | + } |
|
174 | + if(isset($this->messages[ $this->bindings[$binding]['operations'][$operation]['output']['message'] ])){ |
|
175 | + $this->bindings[$binding]['operations'][$operation]['output']['parts'] = $this->messages[ $this->bindings[$binding]['operations'][$operation]['output']['message'] ]; |
|
176 | 176 | } |
177 | 177 | // Set operation style if necessary, but do not override one already provided |
178 | - if (isset($bindingData['style']) && !isset($this->bindings[$binding]['operations'][$operation]['style'])) { |
|
178 | + if (isset($bindingData['style']) && !isset($this->bindings[$binding]['operations'][$operation]['style'])) { |
|
179 | 179 | $this->bindings[$binding]['operations'][$operation]['style'] = $bindingData['style']; |
180 | 180 | } |
181 | 181 | $this->bindings[$binding]['operations'][$operation]['transport'] = isset($bindingData['transport']) ? $bindingData['transport'] : ''; |
@@ -184,7 +184,7 @@ discard block |
||
184 | 184 | } |
185 | 185 | } |
186 | 186 | } |
187 | - } |
|
187 | + } |
|
188 | 188 | |
189 | 189 | /** |
190 | 190 | * parses the wsdl document |
@@ -193,7 +193,7 @@ discard block |
||
193 | 193 | * @access private |
194 | 194 | */ |
195 | 195 | function parseWSDL($wsdl = '') { |
196 | - $this->debug("parse WSDL at path=$wsdl"); |
|
196 | + $this->debug("parse WSDL at path=$wsdl"); |
|
197 | 197 | |
198 | 198 | if ($wsdl == '') { |
199 | 199 | $this->debug('no wsdl passed to parseWSDL()!!'); |
@@ -206,38 +206,38 @@ discard block |
||
206 | 206 | |
207 | 207 | if (isset($wsdl_props['scheme']) && ($wsdl_props['scheme'] == 'http' || $wsdl_props['scheme'] == 'https')) { |
208 | 208 | $this->debug('getting WSDL http(s) URL ' . $wsdl); |
209 | - // get wsdl |
|
210 | - $tr = new soap_transport_http($wsdl, $this->curl_options, $this->use_curl); |
|
211 | - $tr->request_method = 'GET'; |
|
212 | - $tr->useSOAPAction = false; |
|
213 | - if($this->proxyhost && $this->proxyport){ |
|
214 | - $tr->setProxy($this->proxyhost,$this->proxyport,$this->proxyusername,$this->proxypassword); |
|
215 | - } |
|
216 | - if ($this->authtype != '') { |
|
217 | - $tr->setCredentials($this->username, $this->password, $this->authtype, array(), $this->certRequest); |
|
218 | - } |
|
219 | - $tr->setEncoding('gzip, deflate'); |
|
220 | - $wsdl_string = $tr->send('', $this->timeout, $this->response_timeout); |
|
221 | - //$this->debug("WSDL request\n" . $tr->outgoing_payload); |
|
222 | - //$this->debug("WSDL response\n" . $tr->incoming_payload); |
|
223 | - $this->appendDebug($tr->getDebug()); |
|
224 | - // catch errors |
|
225 | - if($err = $tr->getError() ){ |
|
226 | - $errstr = 'Getting ' . $wsdl . ' - HTTP ERROR: '.$err; |
|
227 | - $this->debug($errstr); |
|
228 | - $this->setError($errstr); |
|
229 | - unset($tr); |
|
230 | - return false; |
|
231 | - } |
|
232 | - unset($tr); |
|
233 | - $this->debug("got WSDL URL"); |
|
209 | + // get wsdl |
|
210 | + $tr = new soap_transport_http($wsdl, $this->curl_options, $this->use_curl); |
|
211 | + $tr->request_method = 'GET'; |
|
212 | + $tr->useSOAPAction = false; |
|
213 | + if($this->proxyhost && $this->proxyport){ |
|
214 | + $tr->setProxy($this->proxyhost,$this->proxyport,$this->proxyusername,$this->proxypassword); |
|
215 | + } |
|
216 | + if ($this->authtype != '') { |
|
217 | + $tr->setCredentials($this->username, $this->password, $this->authtype, array(), $this->certRequest); |
|
218 | + } |
|
219 | + $tr->setEncoding('gzip, deflate'); |
|
220 | + $wsdl_string = $tr->send('', $this->timeout, $this->response_timeout); |
|
221 | + //$this->debug("WSDL request\n" . $tr->outgoing_payload); |
|
222 | + //$this->debug("WSDL response\n" . $tr->incoming_payload); |
|
223 | + $this->appendDebug($tr->getDebug()); |
|
224 | + // catch errors |
|
225 | + if($err = $tr->getError() ){ |
|
226 | + $errstr = 'Getting ' . $wsdl . ' - HTTP ERROR: '.$err; |
|
227 | + $this->debug($errstr); |
|
228 | + $this->setError($errstr); |
|
229 | + unset($tr); |
|
230 | + return false; |
|
231 | + } |
|
232 | + unset($tr); |
|
233 | + $this->debug("got WSDL URL"); |
|
234 | 234 | } else { |
235 | 235 | // $wsdl is not http(s), so treat it as a file URL or plain file path |
236 | - if (isset($wsdl_props['scheme']) && ($wsdl_props['scheme'] == 'file') && isset($wsdl_props['path'])) { |
|
237 | - $path = isset($wsdl_props['host']) ? ($wsdl_props['host'] . ':' . $wsdl_props['path']) : $wsdl_props['path']; |
|
238 | - } else { |
|
239 | - $path = $wsdl; |
|
240 | - } |
|
236 | + if (isset($wsdl_props['scheme']) && ($wsdl_props['scheme'] == 'file') && isset($wsdl_props['path'])) { |
|
237 | + $path = isset($wsdl_props['host']) ? ($wsdl_props['host'] . ':' . $wsdl_props['path']) : $wsdl_props['path']; |
|
238 | + } else { |
|
239 | + $path = $wsdl; |
|
240 | + } |
|
241 | 241 | $this->debug('getting WSDL file ' . $path); |
242 | 242 | if ($fp = @fopen($path, 'r')) { |
243 | 243 | $wsdl_string = ''; |
@@ -246,8 +246,8 @@ discard block |
||
246 | 246 | } |
247 | 247 | fclose($fp); |
248 | 248 | } else { |
249 | - $errstr = "Bad path to WSDL file $path"; |
|
250 | - $this->debug($errstr); |
|
249 | + $errstr = "Bad path to WSDL file $path"; |
|
250 | + $this->debug($errstr); |
|
251 | 251 | $this->setError($errstr); |
252 | 252 | return false; |
253 | 253 | } |
@@ -268,23 +268,23 @@ discard block |
||
268 | 268 | if (!xml_parse($this->parser, $wsdl_string, true)) { |
269 | 269 | // Display an error message. |
270 | 270 | $errstr = sprintf( |
271 | - 'XML error parsing WSDL from %s on line %d: %s', |
|
272 | - $wsdl, |
|
271 | + 'XML error parsing WSDL from %s on line %d: %s', |
|
272 | + $wsdl, |
|
273 | 273 | xml_get_current_line_number($this->parser), |
274 | 274 | xml_error_string(xml_get_error_code($this->parser)) |
275 | 275 | ); |
276 | 276 | $this->debug($errstr); |
277 | - $this->debug("XML payload:\n" . $wsdl_string); |
|
277 | + $this->debug("XML payload:\n" . $wsdl_string); |
|
278 | 278 | $this->setError($errstr); |
279 | 279 | return false; |
280 | 280 | } |
281 | - // free the parser |
|
281 | + // free the parser |
|
282 | 282 | xml_parser_free($this->parser); |
283 | 283 | $this->debug('Parsing WSDL done'); |
284 | - // catch wsdl parse errors |
|
285 | - if($this->getError()){ |
|
286 | - return false; |
|
287 | - } |
|
284 | + // catch wsdl parse errors |
|
285 | + if($this->getError()){ |
|
286 | + return false; |
|
287 | + } |
|
288 | 288 | return true; |
289 | 289 | } |
290 | 290 | |
@@ -303,7 +303,7 @@ discard block |
||
303 | 303 | $this->appendDebug($this->currentSchema->getDebug()); |
304 | 304 | $this->currentSchema->clearDebug(); |
305 | 305 | } elseif (preg_match('/schema$/', $name)) { |
306 | - $this->debug('Parsing WSDL schema'); |
|
306 | + $this->debug('Parsing WSDL schema'); |
|
307 | 307 | // $this->debug("startElement for $name ($attrs[name]). status = $this->status (".$this->getLocalPart($name).")"); |
308 | 308 | $this->status = 'schema'; |
309 | 309 | $this->currentSchema = new nusoap_xmlschema('', '', $this->namespaces); |
@@ -319,7 +319,7 @@ discard block |
||
319 | 319 | $this->message[$pos] = array('cdata' => ''); |
320 | 320 | // process attributes |
321 | 321 | if (count($attrs) > 0) { |
322 | - // register namespace declarations |
|
322 | + // register namespace declarations |
|
323 | 323 | foreach($attrs as $k => $v) { |
324 | 324 | if (preg_match('/^xmlns/',$k)) { |
325 | 325 | if ($ns_prefix = substr(strrchr($k, ':'), 1)) { |
@@ -354,417 +354,417 @@ discard block |
||
354 | 354 | // get unqualified name |
355 | 355 | $name = substr(strstr($name, ':'), 1); |
356 | 356 | } |
357 | - // process attributes, expanding any prefixes to namespaces |
|
357 | + // process attributes, expanding any prefixes to namespaces |
|
358 | 358 | // find status, register data |
359 | 359 | switch ($this->status) { |
360 | 360 | case 'message': |
361 | 361 | if ($name == 'part') { |
362 | - if (isset($attrs['type'])) { |
|
363 | - $this->debug("msg " . $this->currentMessage . ": found part (with type) $attrs[name]: " . implode(',', $attrs)); |
|
364 | - $this->messages[$this->currentMessage][$attrs['name']] = $attrs['type']; |
|
365 | - } |
|
366 | - if (isset($attrs['element'])) { |
|
367 | - $this->debug("msg " . $this->currentMessage . ": found part (with element) $attrs[name]: " . implode(',', $attrs)); |
|
368 | - $this->messages[$this->currentMessage][$attrs['name']] = $attrs['element'] . '^'; |
|
369 | - } |
|
370 | - } |
|
371 | - break; |
|
372 | - case 'portType': |
|
373 | - switch ($name) { |
|
374 | - case 'operation': |
|
375 | - $this->currentPortOperation = $attrs['name']; |
|
376 | - $this->debug("portType $this->currentPortType operation: $this->currentPortOperation"); |
|
377 | - if (isset($attrs['parameterOrder'])) { |
|
378 | - $this->portTypes[$this->currentPortType][$attrs['name']]['parameterOrder'] = $attrs['parameterOrder']; |
|
379 | - } |
|
380 | - break; |
|
381 | - case 'documentation': |
|
382 | - $this->documentation = true; |
|
383 | - break; |
|
384 | - // merge input/output data |
|
385 | - default: |
|
386 | - $m = isset($attrs['message']) ? $this->getLocalPart($attrs['message']) : ''; |
|
387 | - $this->portTypes[$this->currentPortType][$this->currentPortOperation][$name]['message'] = $m; |
|
388 | - break; |
|
389 | - } |
|
390 | - break; |
|
391 | - case 'binding': |
|
392 | - switch ($name) { |
|
393 | - case 'binding': |
|
394 | - // get ns prefix |
|
395 | - if (isset($attrs['style'])) { |
|
396 | - $this->bindings[$this->currentBinding]['prefix'] = $prefix; |
|
397 | - } |
|
398 | - $this->bindings[$this->currentBinding] = array_merge($this->bindings[$this->currentBinding], $attrs); |
|
399 | - break; |
|
400 | - case 'header': |
|
401 | - $this->bindings[$this->currentBinding]['operations'][$this->currentOperation][$this->opStatus]['headers'][] = $attrs; |
|
402 | - break; |
|
403 | - case 'operation': |
|
404 | - if (isset($attrs['soapAction'])) { |
|
405 | - $this->bindings[$this->currentBinding]['operations'][$this->currentOperation]['soapAction'] = $attrs['soapAction']; |
|
406 | - } |
|
407 | - if (isset($attrs['style'])) { |
|
408 | - $this->bindings[$this->currentBinding]['operations'][$this->currentOperation]['style'] = $attrs['style']; |
|
409 | - } |
|
410 | - if (isset($attrs['name'])) { |
|
411 | - $this->currentOperation = $attrs['name']; |
|
412 | - $this->debug("current binding operation: $this->currentOperation"); |
|
413 | - $this->bindings[$this->currentBinding]['operations'][$this->currentOperation]['name'] = $attrs['name']; |
|
414 | - $this->bindings[$this->currentBinding]['operations'][$this->currentOperation]['binding'] = $this->currentBinding; |
|
415 | - $this->bindings[$this->currentBinding]['operations'][$this->currentOperation]['endpoint'] = isset($this->bindings[$this->currentBinding]['endpoint']) ? $this->bindings[$this->currentBinding]['endpoint'] : ''; |
|
416 | - } |
|
417 | - break; |
|
418 | - case 'input': |
|
419 | - $this->opStatus = 'input'; |
|
420 | - break; |
|
421 | - case 'output': |
|
422 | - $this->opStatus = 'output'; |
|
423 | - break; |
|
424 | - case 'body': |
|
425 | - if (isset($this->bindings[$this->currentBinding]['operations'][$this->currentOperation][$this->opStatus])) { |
|
426 | - $this->bindings[$this->currentBinding]['operations'][$this->currentOperation][$this->opStatus] = array_merge($this->bindings[$this->currentBinding]['operations'][$this->currentOperation][$this->opStatus], $attrs); |
|
427 | - } else { |
|
428 | - $this->bindings[$this->currentBinding]['operations'][$this->currentOperation][$this->opStatus] = $attrs; |
|
429 | - } |
|
430 | - break; |
|
431 | - } |
|
432 | - break; |
|
433 | - case 'service': |
|
434 | - switch ($name) { |
|
435 | - case 'port': |
|
436 | - $this->currentPort = $attrs['name']; |
|
437 | - $this->debug('current port: ' . $this->currentPort); |
|
438 | - $this->ports[$this->currentPort]['binding'] = $this->getLocalPart($attrs['binding']); |
|
362 | + if (isset($attrs['type'])) { |
|
363 | + $this->debug("msg " . $this->currentMessage . ": found part (with type) $attrs[name]: " . implode(',', $attrs)); |
|
364 | + $this->messages[$this->currentMessage][$attrs['name']] = $attrs['type']; |
|
365 | + } |
|
366 | + if (isset($attrs['element'])) { |
|
367 | + $this->debug("msg " . $this->currentMessage . ": found part (with element) $attrs[name]: " . implode(',', $attrs)); |
|
368 | + $this->messages[$this->currentMessage][$attrs['name']] = $attrs['element'] . '^'; |
|
369 | + } |
|
370 | + } |
|
371 | + break; |
|
372 | + case 'portType': |
|
373 | + switch ($name) { |
|
374 | + case 'operation': |
|
375 | + $this->currentPortOperation = $attrs['name']; |
|
376 | + $this->debug("portType $this->currentPortType operation: $this->currentPortOperation"); |
|
377 | + if (isset($attrs['parameterOrder'])) { |
|
378 | + $this->portTypes[$this->currentPortType][$attrs['name']]['parameterOrder'] = $attrs['parameterOrder']; |
|
379 | + } |
|
380 | + break; |
|
381 | + case 'documentation': |
|
382 | + $this->documentation = true; |
|
383 | + break; |
|
384 | + // merge input/output data |
|
385 | + default: |
|
386 | + $m = isset($attrs['message']) ? $this->getLocalPart($attrs['message']) : ''; |
|
387 | + $this->portTypes[$this->currentPortType][$this->currentPortOperation][$name]['message'] = $m; |
|
388 | + break; |
|
389 | + } |
|
390 | + break; |
|
391 | + case 'binding': |
|
392 | + switch ($name) { |
|
393 | + case 'binding': |
|
394 | + // get ns prefix |
|
395 | + if (isset($attrs['style'])) { |
|
396 | + $this->bindings[$this->currentBinding]['prefix'] = $prefix; |
|
397 | + } |
|
398 | + $this->bindings[$this->currentBinding] = array_merge($this->bindings[$this->currentBinding], $attrs); |
|
399 | + break; |
|
400 | + case 'header': |
|
401 | + $this->bindings[$this->currentBinding]['operations'][$this->currentOperation][$this->opStatus]['headers'][] = $attrs; |
|
402 | + break; |
|
403 | + case 'operation': |
|
404 | + if (isset($attrs['soapAction'])) { |
|
405 | + $this->bindings[$this->currentBinding]['operations'][$this->currentOperation]['soapAction'] = $attrs['soapAction']; |
|
406 | + } |
|
407 | + if (isset($attrs['style'])) { |
|
408 | + $this->bindings[$this->currentBinding]['operations'][$this->currentOperation]['style'] = $attrs['style']; |
|
409 | + } |
|
410 | + if (isset($attrs['name'])) { |
|
411 | + $this->currentOperation = $attrs['name']; |
|
412 | + $this->debug("current binding operation: $this->currentOperation"); |
|
413 | + $this->bindings[$this->currentBinding]['operations'][$this->currentOperation]['name'] = $attrs['name']; |
|
414 | + $this->bindings[$this->currentBinding]['operations'][$this->currentOperation]['binding'] = $this->currentBinding; |
|
415 | + $this->bindings[$this->currentBinding]['operations'][$this->currentOperation]['endpoint'] = isset($this->bindings[$this->currentBinding]['endpoint']) ? $this->bindings[$this->currentBinding]['endpoint'] : ''; |
|
416 | + } |
|
417 | + break; |
|
418 | + case 'input': |
|
419 | + $this->opStatus = 'input'; |
|
420 | + break; |
|
421 | + case 'output': |
|
422 | + $this->opStatus = 'output'; |
|
423 | + break; |
|
424 | + case 'body': |
|
425 | + if (isset($this->bindings[$this->currentBinding]['operations'][$this->currentOperation][$this->opStatus])) { |
|
426 | + $this->bindings[$this->currentBinding]['operations'][$this->currentOperation][$this->opStatus] = array_merge($this->bindings[$this->currentBinding]['operations'][$this->currentOperation][$this->opStatus], $attrs); |
|
427 | + } else { |
|
428 | + $this->bindings[$this->currentBinding]['operations'][$this->currentOperation][$this->opStatus] = $attrs; |
|
429 | + } |
|
430 | + break; |
|
431 | + } |
|
432 | + break; |
|
433 | + case 'service': |
|
434 | + switch ($name) { |
|
435 | + case 'port': |
|
436 | + $this->currentPort = $attrs['name']; |
|
437 | + $this->debug('current port: ' . $this->currentPort); |
|
438 | + $this->ports[$this->currentPort]['binding'] = $this->getLocalPart($attrs['binding']); |
|
439 | 439 | |
440 | - break; |
|
441 | - case 'address': |
|
442 | - $this->ports[$this->currentPort]['location'] = $attrs['location']; |
|
443 | - $this->ports[$this->currentPort]['bindingType'] = $namespace; |
|
444 | - $this->bindings[ $this->ports[$this->currentPort]['binding'] ]['bindingType'] = $namespace; |
|
445 | - $this->bindings[ $this->ports[$this->currentPort]['binding'] ]['endpoint'] = $attrs['location']; |
|
446 | - break; |
|
447 | - } |
|
448 | - break; |
|
449 | - } |
|
450 | - // set status |
|
451 | - switch ($name) { |
|
452 | - case 'import': |
|
453 | - if (isset($attrs['location'])) { |
|
440 | + break; |
|
441 | + case 'address': |
|
442 | + $this->ports[$this->currentPort]['location'] = $attrs['location']; |
|
443 | + $this->ports[$this->currentPort]['bindingType'] = $namespace; |
|
444 | + $this->bindings[ $this->ports[$this->currentPort]['binding'] ]['bindingType'] = $namespace; |
|
445 | + $this->bindings[ $this->ports[$this->currentPort]['binding'] ]['endpoint'] = $attrs['location']; |
|
446 | + break; |
|
447 | + } |
|
448 | + break; |
|
449 | + } |
|
450 | + // set status |
|
451 | + switch ($name) { |
|
452 | + case 'import': |
|
453 | + if (isset($attrs['location'])) { |
|
454 | 454 | $this->import[$attrs['namespace']][] = array('location' => $attrs['location'], 'loaded' => false); |
455 | 455 | $this->debug('parsing import ' . $attrs['namespace']. ' - ' . $attrs['location'] . ' (' . count($this->import[$attrs['namespace']]).')'); |
456 | - } else { |
|
456 | + } else { |
|
457 | 457 | $this->import[$attrs['namespace']][] = array('location' => '', 'loaded' => true); |
458 | - if (! $this->getPrefixFromNamespace($attrs['namespace'])) { |
|
459 | - $this->namespaces['ns'.(count($this->namespaces)+1)] = $attrs['namespace']; |
|
460 | - } |
|
458 | + if (! $this->getPrefixFromNamespace($attrs['namespace'])) { |
|
459 | + $this->namespaces['ns'.(count($this->namespaces)+1)] = $attrs['namespace']; |
|
460 | + } |
|
461 | 461 | $this->debug('parsing import ' . $attrs['namespace']. ' - [no location] (' . count($this->import[$attrs['namespace']]).')'); |
462 | - } |
|
463 | - break; |
|
464 | - //wait for schema |
|
465 | - //case 'types': |
|
466 | - // $this->status = 'schema'; |
|
467 | - // break; |
|
468 | - case 'message': |
|
469 | - $this->status = 'message'; |
|
470 | - $this->messages[$attrs['name']] = array(); |
|
471 | - $this->currentMessage = $attrs['name']; |
|
472 | - break; |
|
473 | - case 'portType': |
|
474 | - $this->status = 'portType'; |
|
475 | - $this->portTypes[$attrs['name']] = array(); |
|
476 | - $this->currentPortType = $attrs['name']; |
|
477 | - break; |
|
478 | - case "binding": |
|
479 | - if (isset($attrs['name'])) { |
|
480 | - // get binding name |
|
481 | - if (strpos($attrs['name'], ':')) { |
|
482 | - $this->currentBinding = $this->getLocalPart($attrs['name']); |
|
483 | - } else { |
|
484 | - $this->currentBinding = $attrs['name']; |
|
485 | - } |
|
486 | - $this->status = 'binding'; |
|
487 | - $this->bindings[$this->currentBinding]['portType'] = $this->getLocalPart($attrs['type']); |
|
488 | - $this->debug("current binding: $this->currentBinding of portType: " . $attrs['type']); |
|
489 | - } |
|
490 | - break; |
|
491 | - case 'service': |
|
492 | - $this->serviceName = $attrs['name']; |
|
493 | - $this->status = 'service'; |
|
494 | - $this->debug('current service: ' . $this->serviceName); |
|
495 | - break; |
|
496 | - case 'definitions': |
|
497 | - foreach ($attrs as $name => $value) { |
|
498 | - $this->wsdl_info[$name] = $value; |
|
499 | - } |
|
500 | - break; |
|
501 | - } |
|
502 | - } |
|
503 | - } |
|
462 | + } |
|
463 | + break; |
|
464 | + //wait for schema |
|
465 | + //case 'types': |
|
466 | + // $this->status = 'schema'; |
|
467 | + // break; |
|
468 | + case 'message': |
|
469 | + $this->status = 'message'; |
|
470 | + $this->messages[$attrs['name']] = array(); |
|
471 | + $this->currentMessage = $attrs['name']; |
|
472 | + break; |
|
473 | + case 'portType': |
|
474 | + $this->status = 'portType'; |
|
475 | + $this->portTypes[$attrs['name']] = array(); |
|
476 | + $this->currentPortType = $attrs['name']; |
|
477 | + break; |
|
478 | + case "binding": |
|
479 | + if (isset($attrs['name'])) { |
|
480 | + // get binding name |
|
481 | + if (strpos($attrs['name'], ':')) { |
|
482 | + $this->currentBinding = $this->getLocalPart($attrs['name']); |
|
483 | + } else { |
|
484 | + $this->currentBinding = $attrs['name']; |
|
485 | + } |
|
486 | + $this->status = 'binding'; |
|
487 | + $this->bindings[$this->currentBinding]['portType'] = $this->getLocalPart($attrs['type']); |
|
488 | + $this->debug("current binding: $this->currentBinding of portType: " . $attrs['type']); |
|
489 | + } |
|
490 | + break; |
|
491 | + case 'service': |
|
492 | + $this->serviceName = $attrs['name']; |
|
493 | + $this->status = 'service'; |
|
494 | + $this->debug('current service: ' . $this->serviceName); |
|
495 | + break; |
|
496 | + case 'definitions': |
|
497 | + foreach ($attrs as $name => $value) { |
|
498 | + $this->wsdl_info[$name] = $value; |
|
499 | + } |
|
500 | + break; |
|
501 | + } |
|
502 | + } |
|
503 | + } |
|
504 | 504 | |
505 | - /** |
|
506 | - * end-element handler |
|
507 | - * |
|
508 | - * @param string $parser XML parser object |
|
509 | - * @param string $name element name |
|
510 | - * @access private |
|
511 | - */ |
|
512 | - function end_element($parser, $name){ |
|
513 | - // unset schema status |
|
514 | - if (/*preg_match('/types$/', $name) ||*/ preg_match('/schema$/', $name)) { |
|
515 | - $this->status = ""; |
|
505 | + /** |
|
506 | + * end-element handler |
|
507 | + * |
|
508 | + * @param string $parser XML parser object |
|
509 | + * @param string $name element name |
|
510 | + * @access private |
|
511 | + */ |
|
512 | + function end_element($parser, $name){ |
|
513 | + // unset schema status |
|
514 | + if (/*preg_match('/types$/', $name) ||*/ preg_match('/schema$/', $name)) { |
|
515 | + $this->status = ""; |
|
516 | 516 | $this->appendDebug($this->currentSchema->getDebug()); |
517 | 517 | $this->currentSchema->clearDebug(); |
518 | - $this->schemas[$this->currentSchema->schemaTargetNamespace][] = $this->currentSchema; |
|
519 | - $this->debug('Parsing WSDL schema done'); |
|
520 | - } |
|
521 | - if ($this->status == 'schema') { |
|
522 | - $this->currentSchema->schemaEndElement($parser, $name); |
|
523 | - } else { |
|
524 | - // bring depth down a notch |
|
525 | - $this->depth--; |
|
526 | - } |
|
527 | - // end documentation |
|
528 | - if ($this->documentation) { |
|
529 | - //TODO: track the node to which documentation should be assigned; it can be a part, message, etc. |
|
530 | - //$this->portTypes[$this->currentPortType][$this->currentPortOperation]['documentation'] = $this->documentation; |
|
531 | - $this->documentation = false; |
|
532 | - } |
|
533 | - } |
|
518 | + $this->schemas[$this->currentSchema->schemaTargetNamespace][] = $this->currentSchema; |
|
519 | + $this->debug('Parsing WSDL schema done'); |
|
520 | + } |
|
521 | + if ($this->status == 'schema') { |
|
522 | + $this->currentSchema->schemaEndElement($parser, $name); |
|
523 | + } else { |
|
524 | + // bring depth down a notch |
|
525 | + $this->depth--; |
|
526 | + } |
|
527 | + // end documentation |
|
528 | + if ($this->documentation) { |
|
529 | + //TODO: track the node to which documentation should be assigned; it can be a part, message, etc. |
|
530 | + //$this->portTypes[$this->currentPortType][$this->currentPortOperation]['documentation'] = $this->documentation; |
|
531 | + $this->documentation = false; |
|
532 | + } |
|
533 | + } |
|
534 | 534 | |
535 | - /** |
|
536 | - * element content handler |
|
537 | - * |
|
538 | - * @param string $parser XML parser object |
|
539 | - * @param string $data element content |
|
540 | - * @access private |
|
541 | - */ |
|
542 | - function character_data($parser, $data) |
|
543 | - { |
|
544 | - $pos = isset($this->depth_array[$this->depth]) ? $this->depth_array[$this->depth] : 0; |
|
545 | - if (isset($this->message[$pos]['cdata'])) { |
|
546 | - $this->message[$pos]['cdata'] .= $data; |
|
547 | - } |
|
548 | - if ($this->documentation) { |
|
549 | - $this->documentation .= $data; |
|
550 | - } |
|
551 | - } |
|
535 | + /** |
|
536 | + * element content handler |
|
537 | + * |
|
538 | + * @param string $parser XML parser object |
|
539 | + * @param string $data element content |
|
540 | + * @access private |
|
541 | + */ |
|
542 | + function character_data($parser, $data) |
|
543 | + { |
|
544 | + $pos = isset($this->depth_array[$this->depth]) ? $this->depth_array[$this->depth] : 0; |
|
545 | + if (isset($this->message[$pos]['cdata'])) { |
|
546 | + $this->message[$pos]['cdata'] .= $data; |
|
547 | + } |
|
548 | + if ($this->documentation) { |
|
549 | + $this->documentation .= $data; |
|
550 | + } |
|
551 | + } |
|
552 | 552 | |
553 | - /** |
|
554 | - * if authenticating, set user credentials here |
|
555 | - * |
|
556 | - * @param string $username |
|
557 | - * @param string $password |
|
558 | - * @param string $authtype (basic|digest|certificate|ntlm) |
|
559 | - * @param array $certRequest (keys must be cainfofile (optional), sslcertfile, sslkeyfile, passphrase, certpassword (optional), verifypeer (optional), verifyhost (optional): see corresponding options in cURL docs) |
|
560 | - * @access public |
|
561 | - */ |
|
562 | - function setCredentials($username, $password, $authtype = 'basic', $certRequest = array()) { |
|
563 | - $this->debug("setCredentials username=$username authtype=$authtype certRequest="); |
|
564 | - $this->appendDebug($this->varDump($certRequest)); |
|
565 | - $this->username = $username; |
|
566 | - $this->password = $password; |
|
567 | - $this->authtype = $authtype; |
|
568 | - $this->certRequest = $certRequest; |
|
569 | - } |
|
553 | + /** |
|
554 | + * if authenticating, set user credentials here |
|
555 | + * |
|
556 | + * @param string $username |
|
557 | + * @param string $password |
|
558 | + * @param string $authtype (basic|digest|certificate|ntlm) |
|
559 | + * @param array $certRequest (keys must be cainfofile (optional), sslcertfile, sslkeyfile, passphrase, certpassword (optional), verifypeer (optional), verifyhost (optional): see corresponding options in cURL docs) |
|
560 | + * @access public |
|
561 | + */ |
|
562 | + function setCredentials($username, $password, $authtype = 'basic', $certRequest = array()) { |
|
563 | + $this->debug("setCredentials username=$username authtype=$authtype certRequest="); |
|
564 | + $this->appendDebug($this->varDump($certRequest)); |
|
565 | + $this->username = $username; |
|
566 | + $this->password = $password; |
|
567 | + $this->authtype = $authtype; |
|
568 | + $this->certRequest = $certRequest; |
|
569 | + } |
|
570 | 570 | |
571 | - function getBindingData($binding) |
|
572 | - { |
|
573 | - if (is_array($this->bindings[$binding])) { |
|
574 | - return $this->bindings[$binding]; |
|
575 | - } |
|
576 | - } |
|
571 | + function getBindingData($binding) |
|
572 | + { |
|
573 | + if (is_array($this->bindings[$binding])) { |
|
574 | + return $this->bindings[$binding]; |
|
575 | + } |
|
576 | + } |
|
577 | 577 | |
578 | - /** |
|
579 | - * returns an assoc array of operation names => operation data |
|
580 | - * |
|
581 | - * @param string $portName WSDL port name |
|
582 | - * @param string $bindingType eg: soap, smtp, dime (only soap and soap12 are currently supported) |
|
583 | - * @return array |
|
584 | - * @access public |
|
585 | - */ |
|
586 | - function getOperations($portName = '', $bindingType = 'soap') { |
|
587 | - $ops = array(); |
|
588 | - if ($bindingType == 'soap') { |
|
589 | - $bindingType = 'http://schemas.xmlsoap.org/wsdl/soap/'; |
|
590 | - } elseif ($bindingType == 'soap12') { |
|
591 | - $bindingType = 'http://schemas.xmlsoap.org/wsdl/soap12/'; |
|
592 | - } else { |
|
593 | - $this->debug("getOperations bindingType $bindingType may not be supported"); |
|
594 | - } |
|
595 | - $this->debug("getOperations for port '$portName' bindingType $bindingType"); |
|
596 | - // loop thru ports |
|
597 | - foreach($this->ports as $port => $portData) { |
|
598 | - $this->debug("getOperations checking port $port bindingType " . $portData['bindingType']); |
|
599 | - if ($portName == '' || $port == $portName) { |
|
600 | - // binding type of port matches parameter |
|
601 | - if ($portData['bindingType'] == $bindingType) { |
|
602 | - $this->debug("getOperations found port $port bindingType $bindingType"); |
|
603 | - //$this->debug("port data: " . $this->varDump($portData)); |
|
604 | - //$this->debug("bindings: " . $this->varDump($this->bindings[ $portData['binding'] ])); |
|
605 | - // merge bindings |
|
606 | - if (isset($this->bindings[ $portData['binding'] ]['operations'])) { |
|
607 | - $ops = array_merge ($ops, $this->bindings[ $portData['binding'] ]['operations']); |
|
608 | - } |
|
609 | - } |
|
610 | - } |
|
611 | - } |
|
612 | - if (count($ops) == 0) { |
|
613 | - $this->debug("getOperations found no operations for port '$portName' bindingType $bindingType"); |
|
614 | - } |
|
615 | - return $ops; |
|
616 | - } |
|
578 | + /** |
|
579 | + * returns an assoc array of operation names => operation data |
|
580 | + * |
|
581 | + * @param string $portName WSDL port name |
|
582 | + * @param string $bindingType eg: soap, smtp, dime (only soap and soap12 are currently supported) |
|
583 | + * @return array |
|
584 | + * @access public |
|
585 | + */ |
|
586 | + function getOperations($portName = '', $bindingType = 'soap') { |
|
587 | + $ops = array(); |
|
588 | + if ($bindingType == 'soap') { |
|
589 | + $bindingType = 'http://schemas.xmlsoap.org/wsdl/soap/'; |
|
590 | + } elseif ($bindingType == 'soap12') { |
|
591 | + $bindingType = 'http://schemas.xmlsoap.org/wsdl/soap12/'; |
|
592 | + } else { |
|
593 | + $this->debug("getOperations bindingType $bindingType may not be supported"); |
|
594 | + } |
|
595 | + $this->debug("getOperations for port '$portName' bindingType $bindingType"); |
|
596 | + // loop thru ports |
|
597 | + foreach($this->ports as $port => $portData) { |
|
598 | + $this->debug("getOperations checking port $port bindingType " . $portData['bindingType']); |
|
599 | + if ($portName == '' || $port == $portName) { |
|
600 | + // binding type of port matches parameter |
|
601 | + if ($portData['bindingType'] == $bindingType) { |
|
602 | + $this->debug("getOperations found port $port bindingType $bindingType"); |
|
603 | + //$this->debug("port data: " . $this->varDump($portData)); |
|
604 | + //$this->debug("bindings: " . $this->varDump($this->bindings[ $portData['binding'] ])); |
|
605 | + // merge bindings |
|
606 | + if (isset($this->bindings[ $portData['binding'] ]['operations'])) { |
|
607 | + $ops = array_merge ($ops, $this->bindings[ $portData['binding'] ]['operations']); |
|
608 | + } |
|
609 | + } |
|
610 | + } |
|
611 | + } |
|
612 | + if (count($ops) == 0) { |
|
613 | + $this->debug("getOperations found no operations for port '$portName' bindingType $bindingType"); |
|
614 | + } |
|
615 | + return $ops; |
|
616 | + } |
|
617 | 617 | |
618 | - /** |
|
619 | - * returns an associative array of data necessary for calling an operation |
|
620 | - * |
|
621 | - * @param string $operation name of operation |
|
622 | - * @param string $bindingType type of binding eg: soap, soap12 |
|
623 | - * @return array |
|
624 | - * @access public |
|
625 | - */ |
|
626 | - function getOperationData($operation, $bindingType = 'soap') |
|
627 | - { |
|
628 | - if ($bindingType == 'soap') { |
|
629 | - $bindingType = 'http://schemas.xmlsoap.org/wsdl/soap/'; |
|
630 | - } elseif ($bindingType == 'soap12') { |
|
631 | - $bindingType = 'http://schemas.xmlsoap.org/wsdl/soap12/'; |
|
632 | - } |
|
633 | - // loop thru ports |
|
634 | - foreach($this->ports as $port => $portData) { |
|
635 | - // binding type of port matches parameter |
|
636 | - if ($portData['bindingType'] == $bindingType) { |
|
637 | - // get binding |
|
638 | - //foreach($this->bindings[ $portData['binding'] ]['operations'] as $bOperation => $opData) { |
|
639 | - foreach(array_keys($this->bindings[ $portData['binding'] ]['operations']) as $bOperation) { |
|
640 | - // note that we could/should also check the namespace here |
|
641 | - if ($operation == $bOperation) { |
|
642 | - $opData = $this->bindings[ $portData['binding'] ]['operations'][$operation]; |
|
643 | - return $opData; |
|
644 | - } |
|
645 | - } |
|
646 | - } |
|
647 | - } |
|
648 | - } |
|
618 | + /** |
|
619 | + * returns an associative array of data necessary for calling an operation |
|
620 | + * |
|
621 | + * @param string $operation name of operation |
|
622 | + * @param string $bindingType type of binding eg: soap, soap12 |
|
623 | + * @return array |
|
624 | + * @access public |
|
625 | + */ |
|
626 | + function getOperationData($operation, $bindingType = 'soap') |
|
627 | + { |
|
628 | + if ($bindingType == 'soap') { |
|
629 | + $bindingType = 'http://schemas.xmlsoap.org/wsdl/soap/'; |
|
630 | + } elseif ($bindingType == 'soap12') { |
|
631 | + $bindingType = 'http://schemas.xmlsoap.org/wsdl/soap12/'; |
|
632 | + } |
|
633 | + // loop thru ports |
|
634 | + foreach($this->ports as $port => $portData) { |
|
635 | + // binding type of port matches parameter |
|
636 | + if ($portData['bindingType'] == $bindingType) { |
|
637 | + // get binding |
|
638 | + //foreach($this->bindings[ $portData['binding'] ]['operations'] as $bOperation => $opData) { |
|
639 | + foreach(array_keys($this->bindings[ $portData['binding'] ]['operations']) as $bOperation) { |
|
640 | + // note that we could/should also check the namespace here |
|
641 | + if ($operation == $bOperation) { |
|
642 | + $opData = $this->bindings[ $portData['binding'] ]['operations'][$operation]; |
|
643 | + return $opData; |
|
644 | + } |
|
645 | + } |
|
646 | + } |
|
647 | + } |
|
648 | + } |
|
649 | 649 | |
650 | - /** |
|
651 | - * returns an associative array of data necessary for calling an operation |
|
652 | - * |
|
653 | - * @param string $soapAction soapAction for operation |
|
654 | - * @param string $bindingType type of binding eg: soap, soap12 |
|
655 | - * @return array |
|
656 | - * @access public |
|
657 | - */ |
|
658 | - function getOperationDataForSoapAction($soapAction, $bindingType = 'soap') { |
|
659 | - if ($bindingType == 'soap') { |
|
660 | - $bindingType = 'http://schemas.xmlsoap.org/wsdl/soap/'; |
|
661 | - } elseif ($bindingType == 'soap12') { |
|
662 | - $bindingType = 'http://schemas.xmlsoap.org/wsdl/soap12/'; |
|
663 | - } |
|
664 | - // loop thru ports |
|
665 | - foreach($this->ports as $port => $portData) { |
|
666 | - // binding type of port matches parameter |
|
667 | - if ($portData['bindingType'] == $bindingType) { |
|
668 | - // loop through operations for the binding |
|
669 | - foreach ($this->bindings[ $portData['binding'] ]['operations'] as $bOperation => $opData) { |
|
670 | - if ($opData['soapAction'] == $soapAction) { |
|
671 | - return $opData; |
|
672 | - } |
|
673 | - } |
|
674 | - } |
|
675 | - } |
|
676 | - } |
|
650 | + /** |
|
651 | + * returns an associative array of data necessary for calling an operation |
|
652 | + * |
|
653 | + * @param string $soapAction soapAction for operation |
|
654 | + * @param string $bindingType type of binding eg: soap, soap12 |
|
655 | + * @return array |
|
656 | + * @access public |
|
657 | + */ |
|
658 | + function getOperationDataForSoapAction($soapAction, $bindingType = 'soap') { |
|
659 | + if ($bindingType == 'soap') { |
|
660 | + $bindingType = 'http://schemas.xmlsoap.org/wsdl/soap/'; |
|
661 | + } elseif ($bindingType == 'soap12') { |
|
662 | + $bindingType = 'http://schemas.xmlsoap.org/wsdl/soap12/'; |
|
663 | + } |
|
664 | + // loop thru ports |
|
665 | + foreach($this->ports as $port => $portData) { |
|
666 | + // binding type of port matches parameter |
|
667 | + if ($portData['bindingType'] == $bindingType) { |
|
668 | + // loop through operations for the binding |
|
669 | + foreach ($this->bindings[ $portData['binding'] ]['operations'] as $bOperation => $opData) { |
|
670 | + if ($opData['soapAction'] == $soapAction) { |
|
671 | + return $opData; |
|
672 | + } |
|
673 | + } |
|
674 | + } |
|
675 | + } |
|
676 | + } |
|
677 | 677 | |
678 | - /** |
|
679 | - * returns an array of information about a given type |
|
680 | - * returns false if no type exists by the given name |
|
681 | - * |
|
682 | - * typeDef = array( |
|
683 | - * 'elements' => array(), // refs to elements array |
|
684 | - * 'restrictionBase' => '', |
|
685 | - * 'phpType' => '', |
|
686 | - * 'order' => '(sequence|all)', |
|
687 | - * 'attrs' => array() // refs to attributes array |
|
688 | - * ) |
|
689 | - * |
|
690 | - * @param string $type the type |
|
691 | - * @param string $ns namespace (not prefix) of the type |
|
692 | - * @return mixed |
|
693 | - * @access public |
|
694 | - * @see nusoap_xmlschema |
|
695 | - */ |
|
696 | - function getTypeDef($type, $ns) { |
|
697 | - $this->debug("in getTypeDef: type=$type, ns=$ns"); |
|
698 | - if ((! $ns) && isset($this->namespaces['tns'])) { |
|
699 | - $ns = $this->namespaces['tns']; |
|
700 | - $this->debug("in getTypeDef: type namespace forced to $ns"); |
|
701 | - } |
|
702 | - if (!isset($this->schemas[$ns])) { |
|
703 | - foreach ($this->schemas as $ns0 => $schema0) { |
|
704 | - if (strcasecmp($ns, $ns0) == 0) { |
|
705 | - $this->debug("in getTypeDef: replacing schema namespace $ns with $ns0"); |
|
706 | - $ns = $ns0; |
|
707 | - break; |
|
708 | - } |
|
709 | - } |
|
710 | - } |
|
711 | - if (isset($this->schemas[$ns])) { |
|
712 | - $this->debug("in getTypeDef: have schema for namespace $ns"); |
|
713 | - for ($i = 0; $i < count($this->schemas[$ns]); $i++) { |
|
714 | - $xs = &$this->schemas[$ns][$i]; |
|
715 | - $t = $xs->getTypeDef($type); |
|
716 | - $this->appendDebug($xs->getDebug()); |
|
717 | - $xs->clearDebug(); |
|
718 | - if ($t) { |
|
719 | - $this->debug("in getTypeDef: found type $type"); |
|
720 | - if (!isset($t['phpType'])) { |
|
721 | - // get info for type to tack onto the element |
|
722 | - $uqType = substr($t['type'], strrpos($t['type'], ':') + 1); |
|
723 | - $ns = substr($t['type'], 0, strrpos($t['type'], ':')); |
|
724 | - $etype = $this->getTypeDef($uqType, $ns); |
|
725 | - if ($etype) { |
|
726 | - $this->debug("found type for [element] $type:"); |
|
727 | - $this->debug($this->varDump($etype)); |
|
728 | - if (isset($etype['phpType'])) { |
|
729 | - $t['phpType'] = $etype['phpType']; |
|
730 | - } |
|
731 | - if (isset($etype['elements'])) { |
|
732 | - $t['elements'] = $etype['elements']; |
|
733 | - } |
|
734 | - if (isset($etype['attrs'])) { |
|
735 | - $t['attrs'] = $etype['attrs']; |
|
736 | - } |
|
737 | - } else { |
|
738 | - $this->debug("did not find type for [element] $type"); |
|
739 | - } |
|
740 | - } |
|
741 | - return $t; |
|
742 | - } |
|
743 | - } |
|
744 | - $this->debug("in getTypeDef: did not find type $type"); |
|
745 | - } else { |
|
746 | - $this->debug("in getTypeDef: do not have schema for namespace $ns"); |
|
747 | - } |
|
748 | - return false; |
|
749 | - } |
|
678 | + /** |
|
679 | + * returns an array of information about a given type |
|
680 | + * returns false if no type exists by the given name |
|
681 | + * |
|
682 | + * typeDef = array( |
|
683 | + * 'elements' => array(), // refs to elements array |
|
684 | + * 'restrictionBase' => '', |
|
685 | + * 'phpType' => '', |
|
686 | + * 'order' => '(sequence|all)', |
|
687 | + * 'attrs' => array() // refs to attributes array |
|
688 | + * ) |
|
689 | + * |
|
690 | + * @param string $type the type |
|
691 | + * @param string $ns namespace (not prefix) of the type |
|
692 | + * @return mixed |
|
693 | + * @access public |
|
694 | + * @see nusoap_xmlschema |
|
695 | + */ |
|
696 | + function getTypeDef($type, $ns) { |
|
697 | + $this->debug("in getTypeDef: type=$type, ns=$ns"); |
|
698 | + if ((! $ns) && isset($this->namespaces['tns'])) { |
|
699 | + $ns = $this->namespaces['tns']; |
|
700 | + $this->debug("in getTypeDef: type namespace forced to $ns"); |
|
701 | + } |
|
702 | + if (!isset($this->schemas[$ns])) { |
|
703 | + foreach ($this->schemas as $ns0 => $schema0) { |
|
704 | + if (strcasecmp($ns, $ns0) == 0) { |
|
705 | + $this->debug("in getTypeDef: replacing schema namespace $ns with $ns0"); |
|
706 | + $ns = $ns0; |
|
707 | + break; |
|
708 | + } |
|
709 | + } |
|
710 | + } |
|
711 | + if (isset($this->schemas[$ns])) { |
|
712 | + $this->debug("in getTypeDef: have schema for namespace $ns"); |
|
713 | + for ($i = 0; $i < count($this->schemas[$ns]); $i++) { |
|
714 | + $xs = &$this->schemas[$ns][$i]; |
|
715 | + $t = $xs->getTypeDef($type); |
|
716 | + $this->appendDebug($xs->getDebug()); |
|
717 | + $xs->clearDebug(); |
|
718 | + if ($t) { |
|
719 | + $this->debug("in getTypeDef: found type $type"); |
|
720 | + if (!isset($t['phpType'])) { |
|
721 | + // get info for type to tack onto the element |
|
722 | + $uqType = substr($t['type'], strrpos($t['type'], ':') + 1); |
|
723 | + $ns = substr($t['type'], 0, strrpos($t['type'], ':')); |
|
724 | + $etype = $this->getTypeDef($uqType, $ns); |
|
725 | + if ($etype) { |
|
726 | + $this->debug("found type for [element] $type:"); |
|
727 | + $this->debug($this->varDump($etype)); |
|
728 | + if (isset($etype['phpType'])) { |
|
729 | + $t['phpType'] = $etype['phpType']; |
|
730 | + } |
|
731 | + if (isset($etype['elements'])) { |
|
732 | + $t['elements'] = $etype['elements']; |
|
733 | + } |
|
734 | + if (isset($etype['attrs'])) { |
|
735 | + $t['attrs'] = $etype['attrs']; |
|
736 | + } |
|
737 | + } else { |
|
738 | + $this->debug("did not find type for [element] $type"); |
|
739 | + } |
|
740 | + } |
|
741 | + return $t; |
|
742 | + } |
|
743 | + } |
|
744 | + $this->debug("in getTypeDef: did not find type $type"); |
|
745 | + } else { |
|
746 | + $this->debug("in getTypeDef: do not have schema for namespace $ns"); |
|
747 | + } |
|
748 | + return false; |
|
749 | + } |
|
750 | 750 | |
751 | 751 | /** |
752 | - * prints html description of services |
|
753 | - * |
|
754 | - * @access private |
|
755 | - */ |
|
752 | + * prints html description of services |
|
753 | + * |
|
754 | + * @access private |
|
755 | + */ |
|
756 | 756 | function webDescription(){ |
757 | - global $HTTP_SERVER_VARS; |
|
757 | + global $HTTP_SERVER_VARS; |
|
758 | 758 | |
759 | - if (isset($_SERVER)) { |
|
760 | - $PHP_SELF = $_SERVER['PHP_SELF']; |
|
761 | - } elseif (isset($HTTP_SERVER_VARS)) { |
|
762 | - $PHP_SELF = $HTTP_SERVER_VARS['PHP_SELF']; |
|
763 | - } else { |
|
764 | - $this->setError("Neither _SERVER nor HTTP_SERVER_VARS is available"); |
|
765 | - } |
|
759 | + if (isset($_SERVER)) { |
|
760 | + $PHP_SELF = $_SERVER['PHP_SELF']; |
|
761 | + } elseif (isset($HTTP_SERVER_VARS)) { |
|
762 | + $PHP_SELF = $HTTP_SERVER_VARS['PHP_SELF']; |
|
763 | + } else { |
|
764 | + $this->setError("Neither _SERVER nor HTTP_SERVER_VARS is available"); |
|
765 | + } |
|
766 | 766 | |
767 | - $b = ' |
|
767 | + $b = ' |
|
768 | 768 | <html><head><title>NuSOAP: '.$this->serviceName.'</title> |
769 | 769 | <style type="text/css"> |
770 | 770 | body { font-family: arial; color: #000000; background-color: #ffffff; margin: 0px 0px 0px 0px; } |
@@ -847,1092 +847,1092 @@ discard block |
||
847 | 847 | <p>View the <a href="'.$PHP_SELF.'?wsdl">WSDL</a> for the service. |
848 | 848 | Click on an operation name to view it's details.</p> |
849 | 849 | <ul>'; |
850 | - foreach($this->getOperations() as $op => $data){ |
|
851 | - $b .= "<li><a href='#' onclick=\"popout();popup('$op')\">$op</a></li>"; |
|
852 | - // create hidden div |
|
853 | - $b .= "<div id='$op' class='hidden'> |
|
850 | + foreach($this->getOperations() as $op => $data){ |
|
851 | + $b .= "<li><a href='#' onclick=\"popout();popup('$op')\">$op</a></li>"; |
|
852 | + // create hidden div |
|
853 | + $b .= "<div id='$op' class='hidden'> |
|
854 | 854 | <a href='#' onclick='popout()'><font color='#ffffff'>Close</font></a><br><br>"; |
855 | - foreach($data as $donnie => $marie){ // loop through opdata |
|
856 | - if($donnie == 'input' || $donnie == 'output'){ // show input/output data |
|
857 | - $b .= "<font color='white'>".ucfirst($donnie).':</font><br>'; |
|
858 | - foreach($marie as $captain => $tenille){ // loop through data |
|
859 | - if($captain == 'parts'){ // loop thru parts |
|
860 | - $b .= " $captain:<br>"; |
|
861 | - //if(is_array($tenille)){ |
|
862 | - foreach($tenille as $joanie => $chachi){ |
|
863 | - $b .= " $joanie: $chachi<br>"; |
|
864 | - } |
|
865 | - //} |
|
866 | - } else { |
|
867 | - $b .= " $captain: $tenille<br>"; |
|
868 | - } |
|
869 | - } |
|
870 | - } else { |
|
871 | - $b .= "<font color='white'>".ucfirst($donnie).":</font> $marie<br>"; |
|
872 | - } |
|
873 | - } |
|
874 | - $b .= '</div>'; |
|
875 | - } |
|
876 | - $b .= ' |
|
855 | + foreach($data as $donnie => $marie){ // loop through opdata |
|
856 | + if($donnie == 'input' || $donnie == 'output'){ // show input/output data |
|
857 | + $b .= "<font color='white'>".ucfirst($donnie).':</font><br>'; |
|
858 | + foreach($marie as $captain => $tenille){ // loop through data |
|
859 | + if($captain == 'parts'){ // loop thru parts |
|
860 | + $b .= " $captain:<br>"; |
|
861 | + //if(is_array($tenille)){ |
|
862 | + foreach($tenille as $joanie => $chachi){ |
|
863 | + $b .= " $joanie: $chachi<br>"; |
|
864 | + } |
|
865 | + //} |
|
866 | + } else { |
|
867 | + $b .= " $captain: $tenille<br>"; |
|
868 | + } |
|
869 | + } |
|
870 | + } else { |
|
871 | + $b .= "<font color='white'>".ucfirst($donnie).":</font> $marie<br>"; |
|
872 | + } |
|
873 | + } |
|
874 | + $b .= '</div>'; |
|
875 | + } |
|
876 | + $b .= ' |
|
877 | 877 | <ul> |
878 | 878 | </div> |
879 | 879 | </div></body></html>'; |
880 | - return $b; |
|
880 | + return $b; |
|
881 | 881 | } |
882 | 882 | |
883 | - /** |
|
884 | - * serialize the parsed wsdl |
|
885 | - * |
|
886 | - * @param mixed $debug whether to put debug=1 in endpoint URL |
|
887 | - * @return string serialization of WSDL |
|
888 | - * @access public |
|
889 | - */ |
|
890 | - function serialize($debug = 0) |
|
891 | - { |
|
892 | - $xml = '<?xml version="1.0" encoding="ISO-8859-1"?>'; |
|
893 | - $xml .= "\n<definitions"; |
|
894 | - foreach($this->namespaces as $k => $v) { |
|
895 | - $xml .= " xmlns:$k=\"$v\""; |
|
896 | - } |
|
897 | - // 10.9.02 - add poulter fix for wsdl and tns declarations |
|
898 | - if (isset($this->namespaces['wsdl'])) { |
|
899 | - $xml .= " xmlns=\"" . $this->namespaces['wsdl'] . "\""; |
|
900 | - } |
|
901 | - if (isset($this->namespaces['tns'])) { |
|
902 | - $xml .= " targetNamespace=\"" . $this->namespaces['tns'] . "\""; |
|
903 | - } |
|
904 | - $xml .= '>'; |
|
905 | - // imports |
|
906 | - if (sizeof($this->import) > 0) { |
|
907 | - foreach($this->import as $ns => $list) { |
|
908 | - foreach ($list as $ii) { |
|
909 | - if ($ii['location'] != '') { |
|
910 | - $xml .= '<import location="' . $ii['location'] . '" namespace="' . $ns . '" />'; |
|
911 | - } else { |
|
912 | - $xml .= '<import namespace="' . $ns . '" />'; |
|
913 | - } |
|
914 | - } |
|
915 | - } |
|
916 | - } |
|
917 | - // types |
|
918 | - if (count($this->schemas)>=1) { |
|
919 | - $xml .= "\n<types>\n"; |
|
920 | - foreach ($this->schemas as $ns => $list) { |
|
921 | - foreach ($list as $xs) { |
|
922 | - $xml .= $xs->serializeSchema(); |
|
923 | - } |
|
924 | - } |
|
925 | - $xml .= '</types>'; |
|
926 | - } |
|
927 | - // messages |
|
928 | - if (count($this->messages) >= 1) { |
|
929 | - foreach($this->messages as $msgName => $msgParts) { |
|
930 | - $xml .= "\n<message name=\"" . $msgName . '">'; |
|
931 | - if(is_array($msgParts)){ |
|
932 | - foreach($msgParts as $partName => $partType) { |
|
933 | - // print 'serializing '.$partType.', sv: '.$this->XMLSchemaVersion.'<br>'; |
|
934 | - if (strpos($partType, ':')) { |
|
935 | - $typePrefix = $this->getPrefixFromNamespace($this->getPrefix($partType)); |
|
936 | - } elseif (isset($this->typemap[$this->namespaces['xsd']][$partType])) { |
|
937 | - // print 'checking typemap: '.$this->XMLSchemaVersion.'<br>'; |
|
938 | - $typePrefix = 'xsd'; |
|
939 | - } else { |
|
940 | - foreach($this->typemap as $ns => $types) { |
|
941 | - if (isset($types[$partType])) { |
|
942 | - $typePrefix = $this->getPrefixFromNamespace($ns); |
|
943 | - } |
|
944 | - } |
|
945 | - if (!isset($typePrefix)) { |
|
946 | - die("$partType has no namespace!"); |
|
947 | - } |
|
948 | - } |
|
949 | - $ns = $this->getNamespaceFromPrefix($typePrefix); |
|
950 | - $localPart = $this->getLocalPart($partType); |
|
951 | - $typeDef = $this->getTypeDef($localPart, $ns); |
|
952 | - if ($typeDef['typeClass'] == 'element') { |
|
953 | - $elementortype = 'element'; |
|
954 | - if (substr($localPart, -1) == '^') { |
|
955 | - $localPart = substr($localPart, 0, -1); |
|
956 | - } |
|
957 | - } else { |
|
958 | - $elementortype = 'type'; |
|
959 | - } |
|
960 | - $xml .= "\n" . ' <part name="' . $partName . '" ' . $elementortype . '="' . $typePrefix . ':' . $localPart . '" />'; |
|
961 | - } |
|
962 | - } |
|
963 | - $xml .= '</message>'; |
|
964 | - } |
|
965 | - } |
|
966 | - // bindings & porttypes |
|
967 | - if (count($this->bindings) >= 1) { |
|
968 | - $binding_xml = ''; |
|
969 | - $portType_xml = ''; |
|
970 | - foreach($this->bindings as $bindingName => $attrs) { |
|
971 | - $binding_xml .= "\n<binding name=\"" . $bindingName . '" type="tns:' . $attrs['portType'] . '">'; |
|
972 | - $binding_xml .= "\n" . ' <soap:binding style="' . $attrs['style'] . '" transport="' . $attrs['transport'] . '"/>'; |
|
973 | - $portType_xml .= "\n<portType name=\"" . $attrs['portType'] . '">'; |
|
974 | - foreach($attrs['operations'] as $opName => $opParts) { |
|
975 | - $binding_xml .= "\n" . ' <operation name="' . $opName . '">'; |
|
976 | - $binding_xml .= "\n" . ' <soap:operation soapAction="' . $opParts['soapAction'] . '" style="'. $opParts['style'] . '"/>'; |
|
977 | - if (isset($opParts['input']['encodingStyle']) && $opParts['input']['encodingStyle'] != '') { |
|
978 | - $enc_style = ' encodingStyle="' . $opParts['input']['encodingStyle'] . '"'; |
|
979 | - } else { |
|
980 | - $enc_style = ''; |
|
981 | - } |
|
982 | - $binding_xml .= "\n" . ' <input><soap:body use="' . $opParts['input']['use'] . '" namespace="' . $opParts['input']['namespace'] . '"' . $enc_style . '/></input>'; |
|
983 | - if (isset($opParts['output']['encodingStyle']) && $opParts['output']['encodingStyle'] != '') { |
|
984 | - $enc_style = ' encodingStyle="' . $opParts['output']['encodingStyle'] . '"'; |
|
985 | - } else { |
|
986 | - $enc_style = ''; |
|
987 | - } |
|
988 | - $binding_xml .= "\n" . ' <output><soap:body use="' . $opParts['output']['use'] . '" namespace="' . $opParts['output']['namespace'] . '"' . $enc_style . '/></output>'; |
|
989 | - $binding_xml .= "\n" . ' </operation>'; |
|
990 | - $portType_xml .= "\n" . ' <operation name="' . $opParts['name'] . '"'; |
|
991 | - if (isset($opParts['parameterOrder'])) { |
|
992 | - $portType_xml .= ' parameterOrder="' . $opParts['parameterOrder'] . '"'; |
|
993 | - } |
|
994 | - $portType_xml .= '>'; |
|
995 | - if(isset($opParts['documentation']) && $opParts['documentation'] != '') { |
|
996 | - $portType_xml .= "\n" . ' <documentation>' . htmlspecialchars($opParts['documentation']) . '</documentation>'; |
|
997 | - } |
|
998 | - $portType_xml .= "\n" . ' <input message="tns:' . $opParts['input']['message'] . '"/>'; |
|
999 | - $portType_xml .= "\n" . ' <output message="tns:' . $opParts['output']['message'] . '"/>'; |
|
1000 | - $portType_xml .= "\n" . ' </operation>'; |
|
1001 | - } |
|
1002 | - $portType_xml .= "\n" . '</portType>'; |
|
1003 | - $binding_xml .= "\n" . '</binding>'; |
|
1004 | - } |
|
1005 | - $xml .= $portType_xml . $binding_xml; |
|
1006 | - } |
|
1007 | - // services |
|
1008 | - $xml .= "\n<service name=\"" . $this->serviceName . '">'; |
|
1009 | - if (count($this->ports) >= 1) { |
|
1010 | - foreach($this->ports as $pName => $attrs) { |
|
1011 | - $xml .= "\n" . ' <port name="' . $pName . '" binding="tns:' . $attrs['binding'] . '">'; |
|
1012 | - $xml .= "\n" . ' <soap:address location="' . $attrs['location'] . ($debug ? '?debug=1' : '') . '"/>'; |
|
1013 | - $xml .= "\n" . ' </port>'; |
|
1014 | - } |
|
1015 | - } |
|
1016 | - $xml .= "\n" . '</service>'; |
|
1017 | - return $xml . "\n</definitions>"; |
|
1018 | - } |
|
883 | + /** |
|
884 | + * serialize the parsed wsdl |
|
885 | + * |
|
886 | + * @param mixed $debug whether to put debug=1 in endpoint URL |
|
887 | + * @return string serialization of WSDL |
|
888 | + * @access public |
|
889 | + */ |
|
890 | + function serialize($debug = 0) |
|
891 | + { |
|
892 | + $xml = '<?xml version="1.0" encoding="ISO-8859-1"?>'; |
|
893 | + $xml .= "\n<definitions"; |
|
894 | + foreach($this->namespaces as $k => $v) { |
|
895 | + $xml .= " xmlns:$k=\"$v\""; |
|
896 | + } |
|
897 | + // 10.9.02 - add poulter fix for wsdl and tns declarations |
|
898 | + if (isset($this->namespaces['wsdl'])) { |
|
899 | + $xml .= " xmlns=\"" . $this->namespaces['wsdl'] . "\""; |
|
900 | + } |
|
901 | + if (isset($this->namespaces['tns'])) { |
|
902 | + $xml .= " targetNamespace=\"" . $this->namespaces['tns'] . "\""; |
|
903 | + } |
|
904 | + $xml .= '>'; |
|
905 | + // imports |
|
906 | + if (sizeof($this->import) > 0) { |
|
907 | + foreach($this->import as $ns => $list) { |
|
908 | + foreach ($list as $ii) { |
|
909 | + if ($ii['location'] != '') { |
|
910 | + $xml .= '<import location="' . $ii['location'] . '" namespace="' . $ns . '" />'; |
|
911 | + } else { |
|
912 | + $xml .= '<import namespace="' . $ns . '" />'; |
|
913 | + } |
|
914 | + } |
|
915 | + } |
|
916 | + } |
|
917 | + // types |
|
918 | + if (count($this->schemas)>=1) { |
|
919 | + $xml .= "\n<types>\n"; |
|
920 | + foreach ($this->schemas as $ns => $list) { |
|
921 | + foreach ($list as $xs) { |
|
922 | + $xml .= $xs->serializeSchema(); |
|
923 | + } |
|
924 | + } |
|
925 | + $xml .= '</types>'; |
|
926 | + } |
|
927 | + // messages |
|
928 | + if (count($this->messages) >= 1) { |
|
929 | + foreach($this->messages as $msgName => $msgParts) { |
|
930 | + $xml .= "\n<message name=\"" . $msgName . '">'; |
|
931 | + if(is_array($msgParts)){ |
|
932 | + foreach($msgParts as $partName => $partType) { |
|
933 | + // print 'serializing '.$partType.', sv: '.$this->XMLSchemaVersion.'<br>'; |
|
934 | + if (strpos($partType, ':')) { |
|
935 | + $typePrefix = $this->getPrefixFromNamespace($this->getPrefix($partType)); |
|
936 | + } elseif (isset($this->typemap[$this->namespaces['xsd']][$partType])) { |
|
937 | + // print 'checking typemap: '.$this->XMLSchemaVersion.'<br>'; |
|
938 | + $typePrefix = 'xsd'; |
|
939 | + } else { |
|
940 | + foreach($this->typemap as $ns => $types) { |
|
941 | + if (isset($types[$partType])) { |
|
942 | + $typePrefix = $this->getPrefixFromNamespace($ns); |
|
943 | + } |
|
944 | + } |
|
945 | + if (!isset($typePrefix)) { |
|
946 | + die("$partType has no namespace!"); |
|
947 | + } |
|
948 | + } |
|
949 | + $ns = $this->getNamespaceFromPrefix($typePrefix); |
|
950 | + $localPart = $this->getLocalPart($partType); |
|
951 | + $typeDef = $this->getTypeDef($localPart, $ns); |
|
952 | + if ($typeDef['typeClass'] == 'element') { |
|
953 | + $elementortype = 'element'; |
|
954 | + if (substr($localPart, -1) == '^') { |
|
955 | + $localPart = substr($localPart, 0, -1); |
|
956 | + } |
|
957 | + } else { |
|
958 | + $elementortype = 'type'; |
|
959 | + } |
|
960 | + $xml .= "\n" . ' <part name="' . $partName . '" ' . $elementortype . '="' . $typePrefix . ':' . $localPart . '" />'; |
|
961 | + } |
|
962 | + } |
|
963 | + $xml .= '</message>'; |
|
964 | + } |
|
965 | + } |
|
966 | + // bindings & porttypes |
|
967 | + if (count($this->bindings) >= 1) { |
|
968 | + $binding_xml = ''; |
|
969 | + $portType_xml = ''; |
|
970 | + foreach($this->bindings as $bindingName => $attrs) { |
|
971 | + $binding_xml .= "\n<binding name=\"" . $bindingName . '" type="tns:' . $attrs['portType'] . '">'; |
|
972 | + $binding_xml .= "\n" . ' <soap:binding style="' . $attrs['style'] . '" transport="' . $attrs['transport'] . '"/>'; |
|
973 | + $portType_xml .= "\n<portType name=\"" . $attrs['portType'] . '">'; |
|
974 | + foreach($attrs['operations'] as $opName => $opParts) { |
|
975 | + $binding_xml .= "\n" . ' <operation name="' . $opName . '">'; |
|
976 | + $binding_xml .= "\n" . ' <soap:operation soapAction="' . $opParts['soapAction'] . '" style="'. $opParts['style'] . '"/>'; |
|
977 | + if (isset($opParts['input']['encodingStyle']) && $opParts['input']['encodingStyle'] != '') { |
|
978 | + $enc_style = ' encodingStyle="' . $opParts['input']['encodingStyle'] . '"'; |
|
979 | + } else { |
|
980 | + $enc_style = ''; |
|
981 | + } |
|
982 | + $binding_xml .= "\n" . ' <input><soap:body use="' . $opParts['input']['use'] . '" namespace="' . $opParts['input']['namespace'] . '"' . $enc_style . '/></input>'; |
|
983 | + if (isset($opParts['output']['encodingStyle']) && $opParts['output']['encodingStyle'] != '') { |
|
984 | + $enc_style = ' encodingStyle="' . $opParts['output']['encodingStyle'] . '"'; |
|
985 | + } else { |
|
986 | + $enc_style = ''; |
|
987 | + } |
|
988 | + $binding_xml .= "\n" . ' <output><soap:body use="' . $opParts['output']['use'] . '" namespace="' . $opParts['output']['namespace'] . '"' . $enc_style . '/></output>'; |
|
989 | + $binding_xml .= "\n" . ' </operation>'; |
|
990 | + $portType_xml .= "\n" . ' <operation name="' . $opParts['name'] . '"'; |
|
991 | + if (isset($opParts['parameterOrder'])) { |
|
992 | + $portType_xml .= ' parameterOrder="' . $opParts['parameterOrder'] . '"'; |
|
993 | + } |
|
994 | + $portType_xml .= '>'; |
|
995 | + if(isset($opParts['documentation']) && $opParts['documentation'] != '') { |
|
996 | + $portType_xml .= "\n" . ' <documentation>' . htmlspecialchars($opParts['documentation']) . '</documentation>'; |
|
997 | + } |
|
998 | + $portType_xml .= "\n" . ' <input message="tns:' . $opParts['input']['message'] . '"/>'; |
|
999 | + $portType_xml .= "\n" . ' <output message="tns:' . $opParts['output']['message'] . '"/>'; |
|
1000 | + $portType_xml .= "\n" . ' </operation>'; |
|
1001 | + } |
|
1002 | + $portType_xml .= "\n" . '</portType>'; |
|
1003 | + $binding_xml .= "\n" . '</binding>'; |
|
1004 | + } |
|
1005 | + $xml .= $portType_xml . $binding_xml; |
|
1006 | + } |
|
1007 | + // services |
|
1008 | + $xml .= "\n<service name=\"" . $this->serviceName . '">'; |
|
1009 | + if (count($this->ports) >= 1) { |
|
1010 | + foreach($this->ports as $pName => $attrs) { |
|
1011 | + $xml .= "\n" . ' <port name="' . $pName . '" binding="tns:' . $attrs['binding'] . '">'; |
|
1012 | + $xml .= "\n" . ' <soap:address location="' . $attrs['location'] . ($debug ? '?debug=1' : '') . '"/>'; |
|
1013 | + $xml .= "\n" . ' </port>'; |
|
1014 | + } |
|
1015 | + } |
|
1016 | + $xml .= "\n" . '</service>'; |
|
1017 | + return $xml . "\n</definitions>"; |
|
1018 | + } |
|
1019 | 1019 | |
1020 | - /** |
|
1021 | - * determine whether a set of parameters are unwrapped |
|
1022 | - * when they are expect to be wrapped, Microsoft-style. |
|
1023 | - * |
|
1024 | - * @param string $type the type (element name) of the wrapper |
|
1025 | - * @param array $parameters the parameter values for the SOAP call |
|
1026 | - * @return boolean whether they parameters are unwrapped (and should be wrapped) |
|
1027 | - * @access private |
|
1028 | - */ |
|
1029 | - function parametersMatchWrapped($type, &$parameters) { |
|
1030 | - $this->debug("in parametersMatchWrapped type=$type, parameters="); |
|
1031 | - $this->appendDebug($this->varDump($parameters)); |
|
1020 | + /** |
|
1021 | + * determine whether a set of parameters are unwrapped |
|
1022 | + * when they are expect to be wrapped, Microsoft-style. |
|
1023 | + * |
|
1024 | + * @param string $type the type (element name) of the wrapper |
|
1025 | + * @param array $parameters the parameter values for the SOAP call |
|
1026 | + * @return boolean whether they parameters are unwrapped (and should be wrapped) |
|
1027 | + * @access private |
|
1028 | + */ |
|
1029 | + function parametersMatchWrapped($type, &$parameters) { |
|
1030 | + $this->debug("in parametersMatchWrapped type=$type, parameters="); |
|
1031 | + $this->appendDebug($this->varDump($parameters)); |
|
1032 | 1032 | |
1033 | - // split type into namespace:unqualified-type |
|
1034 | - if (strpos($type, ':')) { |
|
1035 | - $uqType = substr($type, strrpos($type, ':') + 1); |
|
1036 | - $ns = substr($type, 0, strrpos($type, ':')); |
|
1037 | - $this->debug("in parametersMatchWrapped: got a prefixed type: $uqType, $ns"); |
|
1038 | - if ($this->getNamespaceFromPrefix($ns)) { |
|
1039 | - $ns = $this->getNamespaceFromPrefix($ns); |
|
1040 | - $this->debug("in parametersMatchWrapped: expanded prefixed type: $uqType, $ns"); |
|
1041 | - } |
|
1042 | - } else { |
|
1043 | - // TODO: should the type be compared to types in XSD, and the namespace |
|
1044 | - // set to XSD if the type matches? |
|
1045 | - $this->debug("in parametersMatchWrapped: No namespace for type $type"); |
|
1046 | - $ns = ''; |
|
1047 | - $uqType = $type; |
|
1048 | - } |
|
1033 | + // split type into namespace:unqualified-type |
|
1034 | + if (strpos($type, ':')) { |
|
1035 | + $uqType = substr($type, strrpos($type, ':') + 1); |
|
1036 | + $ns = substr($type, 0, strrpos($type, ':')); |
|
1037 | + $this->debug("in parametersMatchWrapped: got a prefixed type: $uqType, $ns"); |
|
1038 | + if ($this->getNamespaceFromPrefix($ns)) { |
|
1039 | + $ns = $this->getNamespaceFromPrefix($ns); |
|
1040 | + $this->debug("in parametersMatchWrapped: expanded prefixed type: $uqType, $ns"); |
|
1041 | + } |
|
1042 | + } else { |
|
1043 | + // TODO: should the type be compared to types in XSD, and the namespace |
|
1044 | + // set to XSD if the type matches? |
|
1045 | + $this->debug("in parametersMatchWrapped: No namespace for type $type"); |
|
1046 | + $ns = ''; |
|
1047 | + $uqType = $type; |
|
1048 | + } |
|
1049 | 1049 | |
1050 | - // get the type information |
|
1051 | - if (!$typeDef = $this->getTypeDef($uqType, $ns)) { |
|
1052 | - $this->debug("in parametersMatchWrapped: $type ($uqType) is not a supported type."); |
|
1053 | - return false; |
|
1054 | - } |
|
1055 | - $this->debug("in parametersMatchWrapped: found typeDef="); |
|
1056 | - $this->appendDebug($this->varDump($typeDef)); |
|
1057 | - if (substr($uqType, -1) == '^') { |
|
1058 | - $uqType = substr($uqType, 0, -1); |
|
1059 | - } |
|
1060 | - $phpType = $typeDef['phpType']; |
|
1061 | - $arrayType = (isset($typeDef['arrayType']) ? $typeDef['arrayType'] : ''); |
|
1062 | - $this->debug("in parametersMatchWrapped: uqType: $uqType, ns: $ns, phptype: $phpType, arrayType: $arrayType"); |
|
1050 | + // get the type information |
|
1051 | + if (!$typeDef = $this->getTypeDef($uqType, $ns)) { |
|
1052 | + $this->debug("in parametersMatchWrapped: $type ($uqType) is not a supported type."); |
|
1053 | + return false; |
|
1054 | + } |
|
1055 | + $this->debug("in parametersMatchWrapped: found typeDef="); |
|
1056 | + $this->appendDebug($this->varDump($typeDef)); |
|
1057 | + if (substr($uqType, -1) == '^') { |
|
1058 | + $uqType = substr($uqType, 0, -1); |
|
1059 | + } |
|
1060 | + $phpType = $typeDef['phpType']; |
|
1061 | + $arrayType = (isset($typeDef['arrayType']) ? $typeDef['arrayType'] : ''); |
|
1062 | + $this->debug("in parametersMatchWrapped: uqType: $uqType, ns: $ns, phptype: $phpType, arrayType: $arrayType"); |
|
1063 | 1063 | |
1064 | - // we expect a complexType or element of complexType |
|
1065 | - if ($phpType != 'struct') { |
|
1066 | - $this->debug("in parametersMatchWrapped: not a struct"); |
|
1067 | - return false; |
|
1068 | - } |
|
1064 | + // we expect a complexType or element of complexType |
|
1065 | + if ($phpType != 'struct') { |
|
1066 | + $this->debug("in parametersMatchWrapped: not a struct"); |
|
1067 | + return false; |
|
1068 | + } |
|
1069 | 1069 | |
1070 | - // see whether the parameter names match the elements |
|
1071 | - if (isset($typeDef['elements']) && is_array($typeDef['elements'])) { |
|
1072 | - $elements = 0; |
|
1073 | - $matches = 0; |
|
1074 | - foreach ($typeDef['elements'] as $name => $attrs) { |
|
1075 | - if (isset($parameters[$name])) { |
|
1076 | - $this->debug("in parametersMatchWrapped: have parameter named $name"); |
|
1077 | - $matches++; |
|
1078 | - } else { |
|
1079 | - $this->debug("in parametersMatchWrapped: do not have parameter named $name"); |
|
1080 | - } |
|
1081 | - $elements++; |
|
1082 | - } |
|
1070 | + // see whether the parameter names match the elements |
|
1071 | + if (isset($typeDef['elements']) && is_array($typeDef['elements'])) { |
|
1072 | + $elements = 0; |
|
1073 | + $matches = 0; |
|
1074 | + foreach ($typeDef['elements'] as $name => $attrs) { |
|
1075 | + if (isset($parameters[$name])) { |
|
1076 | + $this->debug("in parametersMatchWrapped: have parameter named $name"); |
|
1077 | + $matches++; |
|
1078 | + } else { |
|
1079 | + $this->debug("in parametersMatchWrapped: do not have parameter named $name"); |
|
1080 | + } |
|
1081 | + $elements++; |
|
1082 | + } |
|
1083 | 1083 | |
1084 | - $this->debug("in parametersMatchWrapped: $matches parameter names match $elements wrapped parameter names"); |
|
1085 | - if ($matches == 0) { |
|
1086 | - return false; |
|
1087 | - } |
|
1088 | - return true; |
|
1089 | - } |
|
1084 | + $this->debug("in parametersMatchWrapped: $matches parameter names match $elements wrapped parameter names"); |
|
1085 | + if ($matches == 0) { |
|
1086 | + return false; |
|
1087 | + } |
|
1088 | + return true; |
|
1089 | + } |
|
1090 | 1090 | |
1091 | - // since there are no elements for the type, if the user passed no |
|
1092 | - // parameters, the parameters match wrapped. |
|
1093 | - $this->debug("in parametersMatchWrapped: no elements type $ns:$uqType"); |
|
1094 | - return count($parameters) == 0; |
|
1095 | - } |
|
1091 | + // since there are no elements for the type, if the user passed no |
|
1092 | + // parameters, the parameters match wrapped. |
|
1093 | + $this->debug("in parametersMatchWrapped: no elements type $ns:$uqType"); |
|
1094 | + return count($parameters) == 0; |
|
1095 | + } |
|
1096 | 1096 | |
1097 | - /** |
|
1098 | - * serialize PHP values according to a WSDL message definition |
|
1099 | - * contrary to the method name, this is not limited to RPC |
|
1100 | - * |
|
1101 | - * TODO |
|
1102 | - * - multi-ref serialization |
|
1103 | - * - validate PHP values against type definitions, return errors if invalid |
|
1104 | - * |
|
1105 | - * @param string $operation operation name |
|
1106 | - * @param string $direction (input|output) |
|
1107 | - * @param mixed $parameters parameter value(s) |
|
1108 | - * @param string $bindingType (soap|soap12) |
|
1109 | - * @return mixed parameters serialized as XML or false on error (e.g. operation not found) |
|
1110 | - * @access public |
|
1111 | - */ |
|
1112 | - function serializeRPCParameters($operation, $direction, $parameters, $bindingType = 'soap') { |
|
1113 | - $this->debug("in serializeRPCParameters: operation=$operation, direction=$direction, XMLSchemaVersion=$this->XMLSchemaVersion, bindingType=$bindingType"); |
|
1114 | - $this->appendDebug('parameters=' . $this->varDump($parameters)); |
|
1097 | + /** |
|
1098 | + * serialize PHP values according to a WSDL message definition |
|
1099 | + * contrary to the method name, this is not limited to RPC |
|
1100 | + * |
|
1101 | + * TODO |
|
1102 | + * - multi-ref serialization |
|
1103 | + * - validate PHP values against type definitions, return errors if invalid |
|
1104 | + * |
|
1105 | + * @param string $operation operation name |
|
1106 | + * @param string $direction (input|output) |
|
1107 | + * @param mixed $parameters parameter value(s) |
|
1108 | + * @param string $bindingType (soap|soap12) |
|
1109 | + * @return mixed parameters serialized as XML or false on error (e.g. operation not found) |
|
1110 | + * @access public |
|
1111 | + */ |
|
1112 | + function serializeRPCParameters($operation, $direction, $parameters, $bindingType = 'soap') { |
|
1113 | + $this->debug("in serializeRPCParameters: operation=$operation, direction=$direction, XMLSchemaVersion=$this->XMLSchemaVersion, bindingType=$bindingType"); |
|
1114 | + $this->appendDebug('parameters=' . $this->varDump($parameters)); |
|
1115 | 1115 | |
1116 | - if ($direction != 'input' && $direction != 'output') { |
|
1117 | - $this->debug('The value of the \$direction argument needs to be either "input" or "output"'); |
|
1118 | - $this->setError('The value of the \$direction argument needs to be either "input" or "output"'); |
|
1119 | - return false; |
|
1120 | - } |
|
1121 | - if (!$opData = $this->getOperationData($operation, $bindingType)) { |
|
1122 | - $this->debug('Unable to retrieve WSDL data for operation: ' . $operation . ' bindingType: ' . $bindingType); |
|
1123 | - $this->setError('Unable to retrieve WSDL data for operation: ' . $operation . ' bindingType: ' . $bindingType); |
|
1124 | - return false; |
|
1125 | - } |
|
1126 | - $this->debug('in serializeRPCParameters: opData:'); |
|
1127 | - $this->appendDebug($this->varDump($opData)); |
|
1116 | + if ($direction != 'input' && $direction != 'output') { |
|
1117 | + $this->debug('The value of the \$direction argument needs to be either "input" or "output"'); |
|
1118 | + $this->setError('The value of the \$direction argument needs to be either "input" or "output"'); |
|
1119 | + return false; |
|
1120 | + } |
|
1121 | + if (!$opData = $this->getOperationData($operation, $bindingType)) { |
|
1122 | + $this->debug('Unable to retrieve WSDL data for operation: ' . $operation . ' bindingType: ' . $bindingType); |
|
1123 | + $this->setError('Unable to retrieve WSDL data for operation: ' . $operation . ' bindingType: ' . $bindingType); |
|
1124 | + return false; |
|
1125 | + } |
|
1126 | + $this->debug('in serializeRPCParameters: opData:'); |
|
1127 | + $this->appendDebug($this->varDump($opData)); |
|
1128 | 1128 | |
1129 | - // Get encoding style for output and set to current |
|
1130 | - $encodingStyle = 'http://schemas.xmlsoap.org/soap/encoding/'; |
|
1131 | - if(($direction == 'input') && isset($opData['output']['encodingStyle']) && ($opData['output']['encodingStyle'] != $encodingStyle)) { |
|
1132 | - $encodingStyle = $opData['output']['encodingStyle']; |
|
1133 | - $enc_style = $encodingStyle; |
|
1134 | - } |
|
1129 | + // Get encoding style for output and set to current |
|
1130 | + $encodingStyle = 'http://schemas.xmlsoap.org/soap/encoding/'; |
|
1131 | + if(($direction == 'input') && isset($opData['output']['encodingStyle']) && ($opData['output']['encodingStyle'] != $encodingStyle)) { |
|
1132 | + $encodingStyle = $opData['output']['encodingStyle']; |
|
1133 | + $enc_style = $encodingStyle; |
|
1134 | + } |
|
1135 | 1135 | |
1136 | - // set input params |
|
1137 | - $xml = ''; |
|
1138 | - if (isset($opData[$direction]['parts']) && sizeof($opData[$direction]['parts']) > 0) { |
|
1139 | - $parts = &$opData[$direction]['parts']; |
|
1140 | - $part_count = sizeof($parts); |
|
1141 | - $style = $opData['style']; |
|
1142 | - $use = $opData[$direction]['use']; |
|
1143 | - $this->debug("have $part_count part(s) to serialize using $style/$use"); |
|
1144 | - if (is_array($parameters)) { |
|
1145 | - $parametersArrayType = $this->isArraySimpleOrStruct($parameters); |
|
1146 | - $parameter_count = count($parameters); |
|
1147 | - $this->debug("have $parameter_count parameter(s) provided as $parametersArrayType to serialize"); |
|
1148 | - // check for Microsoft-style wrapped parameters |
|
1149 | - if ($style == 'document' && $use == 'literal' && $part_count == 1 && isset($parts['parameters'])) { |
|
1150 | - $this->debug('check whether the caller has wrapped the parameters'); |
|
1151 | - if ($direction == 'output' && $parametersArrayType == 'arraySimple' && $parameter_count == 1) { |
|
1152 | - // TODO: consider checking here for double-wrapping, when |
|
1153 | - // service function wraps, then NuSOAP wraps again |
|
1154 | - $this->debug("change simple array to associative with 'parameters' element"); |
|
1155 | - $parameters['parameters'] = $parameters[0]; |
|
1156 | - unset($parameters[0]); |
|
1157 | - } |
|
1158 | - if (($parametersArrayType == 'arrayStruct' || $parameter_count == 0) && !isset($parameters['parameters'])) { |
|
1159 | - $this->debug('check whether caller\'s parameters match the wrapped ones'); |
|
1160 | - if ($this->parametersMatchWrapped($parts['parameters'], $parameters)) { |
|
1161 | - $this->debug('wrap the parameters for the caller'); |
|
1162 | - $parameters = array('parameters' => $parameters); |
|
1163 | - $parameter_count = 1; |
|
1164 | - } |
|
1165 | - } |
|
1166 | - } |
|
1167 | - foreach ($parts as $name => $type) { |
|
1168 | - $this->debug("serializing part $name of type $type"); |
|
1169 | - // Track encoding style |
|
1170 | - if (isset($opData[$direction]['encodingStyle']) && $encodingStyle != $opData[$direction]['encodingStyle']) { |
|
1171 | - $encodingStyle = $opData[$direction]['encodingStyle']; |
|
1172 | - $enc_style = $encodingStyle; |
|
1173 | - } else { |
|
1174 | - $enc_style = false; |
|
1175 | - } |
|
1176 | - // NOTE: add error handling here |
|
1177 | - // if serializeType returns false, then catch global error and fault |
|
1178 | - if ($parametersArrayType == 'arraySimple') { |
|
1179 | - $p = array_shift($parameters); |
|
1180 | - $this->debug('calling serializeType w/indexed param'); |
|
1181 | - $xml .= $this->serializeType($name, $type, $p, $use, $enc_style); |
|
1182 | - } elseif (isset($parameters[$name])) { |
|
1183 | - $this->debug('calling serializeType w/named param'); |
|
1184 | - $xml .= $this->serializeType($name, $type, $parameters[$name], $use, $enc_style); |
|
1185 | - } else { |
|
1186 | - // TODO: only send nillable |
|
1187 | - $this->debug('calling serializeType w/null param'); |
|
1188 | - $xml .= $this->serializeType($name, $type, null, $use, $enc_style); |
|
1189 | - } |
|
1190 | - } |
|
1191 | - } else { |
|
1192 | - $this->debug('no parameters passed.'); |
|
1193 | - } |
|
1194 | - } |
|
1195 | - $this->debug("serializeRPCParameters returning: $xml"); |
|
1196 | - return $xml; |
|
1197 | - } |
|
1136 | + // set input params |
|
1137 | + $xml = ''; |
|
1138 | + if (isset($opData[$direction]['parts']) && sizeof($opData[$direction]['parts']) > 0) { |
|
1139 | + $parts = &$opData[$direction]['parts']; |
|
1140 | + $part_count = sizeof($parts); |
|
1141 | + $style = $opData['style']; |
|
1142 | + $use = $opData[$direction]['use']; |
|
1143 | + $this->debug("have $part_count part(s) to serialize using $style/$use"); |
|
1144 | + if (is_array($parameters)) { |
|
1145 | + $parametersArrayType = $this->isArraySimpleOrStruct($parameters); |
|
1146 | + $parameter_count = count($parameters); |
|
1147 | + $this->debug("have $parameter_count parameter(s) provided as $parametersArrayType to serialize"); |
|
1148 | + // check for Microsoft-style wrapped parameters |
|
1149 | + if ($style == 'document' && $use == 'literal' && $part_count == 1 && isset($parts['parameters'])) { |
|
1150 | + $this->debug('check whether the caller has wrapped the parameters'); |
|
1151 | + if ($direction == 'output' && $parametersArrayType == 'arraySimple' && $parameter_count == 1) { |
|
1152 | + // TODO: consider checking here for double-wrapping, when |
|
1153 | + // service function wraps, then NuSOAP wraps again |
|
1154 | + $this->debug("change simple array to associative with 'parameters' element"); |
|
1155 | + $parameters['parameters'] = $parameters[0]; |
|
1156 | + unset($parameters[0]); |
|
1157 | + } |
|
1158 | + if (($parametersArrayType == 'arrayStruct' || $parameter_count == 0) && !isset($parameters['parameters'])) { |
|
1159 | + $this->debug('check whether caller\'s parameters match the wrapped ones'); |
|
1160 | + if ($this->parametersMatchWrapped($parts['parameters'], $parameters)) { |
|
1161 | + $this->debug('wrap the parameters for the caller'); |
|
1162 | + $parameters = array('parameters' => $parameters); |
|
1163 | + $parameter_count = 1; |
|
1164 | + } |
|
1165 | + } |
|
1166 | + } |
|
1167 | + foreach ($parts as $name => $type) { |
|
1168 | + $this->debug("serializing part $name of type $type"); |
|
1169 | + // Track encoding style |
|
1170 | + if (isset($opData[$direction]['encodingStyle']) && $encodingStyle != $opData[$direction]['encodingStyle']) { |
|
1171 | + $encodingStyle = $opData[$direction]['encodingStyle']; |
|
1172 | + $enc_style = $encodingStyle; |
|
1173 | + } else { |
|
1174 | + $enc_style = false; |
|
1175 | + } |
|
1176 | + // NOTE: add error handling here |
|
1177 | + // if serializeType returns false, then catch global error and fault |
|
1178 | + if ($parametersArrayType == 'arraySimple') { |
|
1179 | + $p = array_shift($parameters); |
|
1180 | + $this->debug('calling serializeType w/indexed param'); |
|
1181 | + $xml .= $this->serializeType($name, $type, $p, $use, $enc_style); |
|
1182 | + } elseif (isset($parameters[$name])) { |
|
1183 | + $this->debug('calling serializeType w/named param'); |
|
1184 | + $xml .= $this->serializeType($name, $type, $parameters[$name], $use, $enc_style); |
|
1185 | + } else { |
|
1186 | + // TODO: only send nillable |
|
1187 | + $this->debug('calling serializeType w/null param'); |
|
1188 | + $xml .= $this->serializeType($name, $type, null, $use, $enc_style); |
|
1189 | + } |
|
1190 | + } |
|
1191 | + } else { |
|
1192 | + $this->debug('no parameters passed.'); |
|
1193 | + } |
|
1194 | + } |
|
1195 | + $this->debug("serializeRPCParameters returning: $xml"); |
|
1196 | + return $xml; |
|
1197 | + } |
|
1198 | 1198 | |
1199 | - /** |
|
1200 | - * serialize a PHP value according to a WSDL message definition |
|
1201 | - * |
|
1202 | - * TODO |
|
1203 | - * - multi-ref serialization |
|
1204 | - * - validate PHP values against type definitions, return errors if invalid |
|
1205 | - * |
|
1206 | - * @param string $operation operation name |
|
1207 | - * @param string $direction (input|output) |
|
1208 | - * @param mixed $parameters parameter value(s) |
|
1209 | - * @return mixed parameters serialized as XML or false on error (e.g. operation not found) |
|
1210 | - * @access public |
|
1211 | - * @deprecated |
|
1212 | - */ |
|
1213 | - function serializeParameters($operation, $direction, $parameters) |
|
1214 | - { |
|
1215 | - $this->debug("in serializeParameters: operation=$operation, direction=$direction, XMLSchemaVersion=$this->XMLSchemaVersion"); |
|
1216 | - $this->appendDebug('parameters=' . $this->varDump($parameters)); |
|
1199 | + /** |
|
1200 | + * serialize a PHP value according to a WSDL message definition |
|
1201 | + * |
|
1202 | + * TODO |
|
1203 | + * - multi-ref serialization |
|
1204 | + * - validate PHP values against type definitions, return errors if invalid |
|
1205 | + * |
|
1206 | + * @param string $operation operation name |
|
1207 | + * @param string $direction (input|output) |
|
1208 | + * @param mixed $parameters parameter value(s) |
|
1209 | + * @return mixed parameters serialized as XML or false on error (e.g. operation not found) |
|
1210 | + * @access public |
|
1211 | + * @deprecated |
|
1212 | + */ |
|
1213 | + function serializeParameters($operation, $direction, $parameters) |
|
1214 | + { |
|
1215 | + $this->debug("in serializeParameters: operation=$operation, direction=$direction, XMLSchemaVersion=$this->XMLSchemaVersion"); |
|
1216 | + $this->appendDebug('parameters=' . $this->varDump($parameters)); |
|
1217 | 1217 | |
1218 | - if ($direction != 'input' && $direction != 'output') { |
|
1219 | - $this->debug('The value of the \$direction argument needs to be either "input" or "output"'); |
|
1220 | - $this->setError('The value of the \$direction argument needs to be either "input" or "output"'); |
|
1221 | - return false; |
|
1222 | - } |
|
1223 | - if (!$opData = $this->getOperationData($operation)) { |
|
1224 | - $this->debug('Unable to retrieve WSDL data for operation: ' . $operation); |
|
1225 | - $this->setError('Unable to retrieve WSDL data for operation: ' . $operation); |
|
1226 | - return false; |
|
1227 | - } |
|
1228 | - $this->debug('opData:'); |
|
1229 | - $this->appendDebug($this->varDump($opData)); |
|
1218 | + if ($direction != 'input' && $direction != 'output') { |
|
1219 | + $this->debug('The value of the \$direction argument needs to be either "input" or "output"'); |
|
1220 | + $this->setError('The value of the \$direction argument needs to be either "input" or "output"'); |
|
1221 | + return false; |
|
1222 | + } |
|
1223 | + if (!$opData = $this->getOperationData($operation)) { |
|
1224 | + $this->debug('Unable to retrieve WSDL data for operation: ' . $operation); |
|
1225 | + $this->setError('Unable to retrieve WSDL data for operation: ' . $operation); |
|
1226 | + return false; |
|
1227 | + } |
|
1228 | + $this->debug('opData:'); |
|
1229 | + $this->appendDebug($this->varDump($opData)); |
|
1230 | 1230 | |
1231 | - // Get encoding style for output and set to current |
|
1232 | - $encodingStyle = 'http://schemas.xmlsoap.org/soap/encoding/'; |
|
1233 | - if(($direction == 'input') && isset($opData['output']['encodingStyle']) && ($opData['output']['encodingStyle'] != $encodingStyle)) { |
|
1234 | - $encodingStyle = $opData['output']['encodingStyle']; |
|
1235 | - $enc_style = $encodingStyle; |
|
1236 | - } |
|
1231 | + // Get encoding style for output and set to current |
|
1232 | + $encodingStyle = 'http://schemas.xmlsoap.org/soap/encoding/'; |
|
1233 | + if(($direction == 'input') && isset($opData['output']['encodingStyle']) && ($opData['output']['encodingStyle'] != $encodingStyle)) { |
|
1234 | + $encodingStyle = $opData['output']['encodingStyle']; |
|
1235 | + $enc_style = $encodingStyle; |
|
1236 | + } |
|
1237 | 1237 | |
1238 | - // set input params |
|
1239 | - $xml = ''; |
|
1240 | - if (isset($opData[$direction]['parts']) && sizeof($opData[$direction]['parts']) > 0) { |
|
1238 | + // set input params |
|
1239 | + $xml = ''; |
|
1240 | + if (isset($opData[$direction]['parts']) && sizeof($opData[$direction]['parts']) > 0) { |
|
1241 | 1241 | |
1242 | - $use = $opData[$direction]['use']; |
|
1243 | - $this->debug("use=$use"); |
|
1244 | - $this->debug('got ' . count($opData[$direction]['parts']) . ' part(s)'); |
|
1245 | - if (is_array($parameters)) { |
|
1246 | - $parametersArrayType = $this->isArraySimpleOrStruct($parameters); |
|
1247 | - $this->debug('have ' . $parametersArrayType . ' parameters'); |
|
1248 | - foreach($opData[$direction]['parts'] as $name => $type) { |
|
1249 | - $this->debug('serializing part "'.$name.'" of type "'.$type.'"'); |
|
1250 | - // Track encoding style |
|
1251 | - if(isset($opData[$direction]['encodingStyle']) && $encodingStyle != $opData[$direction]['encodingStyle']) { |
|
1252 | - $encodingStyle = $opData[$direction]['encodingStyle']; |
|
1253 | - $enc_style = $encodingStyle; |
|
1254 | - } else { |
|
1255 | - $enc_style = false; |
|
1256 | - } |
|
1257 | - // NOTE: add error handling here |
|
1258 | - // if serializeType returns false, then catch global error and fault |
|
1259 | - if ($parametersArrayType == 'arraySimple') { |
|
1260 | - $p = array_shift($parameters); |
|
1261 | - $this->debug('calling serializeType w/indexed param'); |
|
1262 | - $xml .= $this->serializeType($name, $type, $p, $use, $enc_style); |
|
1263 | - } elseif (isset($parameters[$name])) { |
|
1264 | - $this->debug('calling serializeType w/named param'); |
|
1265 | - $xml .= $this->serializeType($name, $type, $parameters[$name], $use, $enc_style); |
|
1266 | - } else { |
|
1267 | - // TODO: only send nillable |
|
1268 | - $this->debug('calling serializeType w/null param'); |
|
1269 | - $xml .= $this->serializeType($name, $type, null, $use, $enc_style); |
|
1270 | - } |
|
1271 | - } |
|
1272 | - } else { |
|
1273 | - $this->debug('no parameters passed.'); |
|
1274 | - } |
|
1275 | - } |
|
1276 | - $this->debug("serializeParameters returning: $xml"); |
|
1277 | - return $xml; |
|
1278 | - } |
|
1242 | + $use = $opData[$direction]['use']; |
|
1243 | + $this->debug("use=$use"); |
|
1244 | + $this->debug('got ' . count($opData[$direction]['parts']) . ' part(s)'); |
|
1245 | + if (is_array($parameters)) { |
|
1246 | + $parametersArrayType = $this->isArraySimpleOrStruct($parameters); |
|
1247 | + $this->debug('have ' . $parametersArrayType . ' parameters'); |
|
1248 | + foreach($opData[$direction]['parts'] as $name => $type) { |
|
1249 | + $this->debug('serializing part "'.$name.'" of type "'.$type.'"'); |
|
1250 | + // Track encoding style |
|
1251 | + if(isset($opData[$direction]['encodingStyle']) && $encodingStyle != $opData[$direction]['encodingStyle']) { |
|
1252 | + $encodingStyle = $opData[$direction]['encodingStyle']; |
|
1253 | + $enc_style = $encodingStyle; |
|
1254 | + } else { |
|
1255 | + $enc_style = false; |
|
1256 | + } |
|
1257 | + // NOTE: add error handling here |
|
1258 | + // if serializeType returns false, then catch global error and fault |
|
1259 | + if ($parametersArrayType == 'arraySimple') { |
|
1260 | + $p = array_shift($parameters); |
|
1261 | + $this->debug('calling serializeType w/indexed param'); |
|
1262 | + $xml .= $this->serializeType($name, $type, $p, $use, $enc_style); |
|
1263 | + } elseif (isset($parameters[$name])) { |
|
1264 | + $this->debug('calling serializeType w/named param'); |
|
1265 | + $xml .= $this->serializeType($name, $type, $parameters[$name], $use, $enc_style); |
|
1266 | + } else { |
|
1267 | + // TODO: only send nillable |
|
1268 | + $this->debug('calling serializeType w/null param'); |
|
1269 | + $xml .= $this->serializeType($name, $type, null, $use, $enc_style); |
|
1270 | + } |
|
1271 | + } |
|
1272 | + } else { |
|
1273 | + $this->debug('no parameters passed.'); |
|
1274 | + } |
|
1275 | + } |
|
1276 | + $this->debug("serializeParameters returning: $xml"); |
|
1277 | + return $xml; |
|
1278 | + } |
|
1279 | 1279 | |
1280 | - /** |
|
1281 | - * serializes a PHP value according a given type definition |
|
1282 | - * |
|
1283 | - * @param string $name name of value (part or element) |
|
1284 | - * @param string $type XML schema type of value (type or element) |
|
1285 | - * @param mixed $value a native PHP value (parameter value) |
|
1286 | - * @param string $use use for part (encoded|literal) |
|
1287 | - * @param string $encodingStyle SOAP encoding style for the value (if different than the enclosing style) |
|
1288 | - * @param boolean $unqualified a kludge for what should be XML namespace form handling |
|
1289 | - * @return string value serialized as an XML string |
|
1290 | - * @access private |
|
1291 | - */ |
|
1292 | - function serializeType($name, $type, $value, $use='encoded', $encodingStyle=false, $unqualified=false) |
|
1293 | - { |
|
1294 | - $this->debug("in serializeType: name=$name, type=$type, use=$use, encodingStyle=$encodingStyle, unqualified=" . ($unqualified ? "unqualified" : "qualified")); |
|
1295 | - $this->appendDebug("value=" . $this->varDump($value)); |
|
1296 | - if($use == 'encoded' && $encodingStyle) { |
|
1297 | - $encodingStyle = ' SOAP-ENV:encodingStyle="' . $encodingStyle . '"'; |
|
1298 | - } |
|
1280 | + /** |
|
1281 | + * serializes a PHP value according a given type definition |
|
1282 | + * |
|
1283 | + * @param string $name name of value (part or element) |
|
1284 | + * @param string $type XML schema type of value (type or element) |
|
1285 | + * @param mixed $value a native PHP value (parameter value) |
|
1286 | + * @param string $use use for part (encoded|literal) |
|
1287 | + * @param string $encodingStyle SOAP encoding style for the value (if different than the enclosing style) |
|
1288 | + * @param boolean $unqualified a kludge for what should be XML namespace form handling |
|
1289 | + * @return string value serialized as an XML string |
|
1290 | + * @access private |
|
1291 | + */ |
|
1292 | + function serializeType($name, $type, $value, $use='encoded', $encodingStyle=false, $unqualified=false) |
|
1293 | + { |
|
1294 | + $this->debug("in serializeType: name=$name, type=$type, use=$use, encodingStyle=$encodingStyle, unqualified=" . ($unqualified ? "unqualified" : "qualified")); |
|
1295 | + $this->appendDebug("value=" . $this->varDump($value)); |
|
1296 | + if($use == 'encoded' && $encodingStyle) { |
|
1297 | + $encodingStyle = ' SOAP-ENV:encodingStyle="' . $encodingStyle . '"'; |
|
1298 | + } |
|
1299 | 1299 | |
1300 | - // if a soapval has been supplied, let its type override the WSDL |
|
1301 | - if (is_object($value) && get_class($value) == 'soapval') { |
|
1302 | - if ($value->type_ns) { |
|
1303 | - $type = $value->type_ns . ':' . $value->type; |
|
1304 | - $forceType = true; |
|
1305 | - $this->debug("in serializeType: soapval overrides type to $type"); |
|
1306 | - } elseif ($value->type) { |
|
1307 | - $type = $value->type; |
|
1308 | - $forceType = true; |
|
1309 | - $this->debug("in serializeType: soapval overrides type to $type"); |
|
1310 | - } else { |
|
1311 | - $forceType = false; |
|
1312 | - $this->debug("in serializeType: soapval does not override type"); |
|
1313 | - } |
|
1314 | - $attrs = $value->attributes; |
|
1315 | - $value = $value->value; |
|
1316 | - $this->debug("in serializeType: soapval overrides value to $value"); |
|
1317 | - if ($attrs) { |
|
1318 | - if (!is_array($value)) { |
|
1319 | - $value['!'] = $value; |
|
1320 | - } |
|
1321 | - foreach ($attrs as $n => $v) { |
|
1322 | - $value['!' . $n] = $v; |
|
1323 | - } |
|
1324 | - $this->debug("in serializeType: soapval provides attributes"); |
|
1325 | - } |
|
1300 | + // if a soapval has been supplied, let its type override the WSDL |
|
1301 | + if (is_object($value) && get_class($value) == 'soapval') { |
|
1302 | + if ($value->type_ns) { |
|
1303 | + $type = $value->type_ns . ':' . $value->type; |
|
1304 | + $forceType = true; |
|
1305 | + $this->debug("in serializeType: soapval overrides type to $type"); |
|
1306 | + } elseif ($value->type) { |
|
1307 | + $type = $value->type; |
|
1308 | + $forceType = true; |
|
1309 | + $this->debug("in serializeType: soapval overrides type to $type"); |
|
1310 | + } else { |
|
1311 | + $forceType = false; |
|
1312 | + $this->debug("in serializeType: soapval does not override type"); |
|
1313 | + } |
|
1314 | + $attrs = $value->attributes; |
|
1315 | + $value = $value->value; |
|
1316 | + $this->debug("in serializeType: soapval overrides value to $value"); |
|
1317 | + if ($attrs) { |
|
1318 | + if (!is_array($value)) { |
|
1319 | + $value['!'] = $value; |
|
1320 | + } |
|
1321 | + foreach ($attrs as $n => $v) { |
|
1322 | + $value['!' . $n] = $v; |
|
1323 | + } |
|
1324 | + $this->debug("in serializeType: soapval provides attributes"); |
|
1325 | + } |
|
1326 | 1326 | } else { |
1327 | - $forceType = false; |
|
1327 | + $forceType = false; |
|
1328 | 1328 | } |
1329 | 1329 | |
1330 | - $xml = ''; |
|
1331 | - if (strpos($type, ':')) { |
|
1332 | - $uqType = substr($type, strrpos($type, ':') + 1); |
|
1333 | - $ns = substr($type, 0, strrpos($type, ':')); |
|
1334 | - $this->debug("in serializeType: got a prefixed type: $uqType, $ns"); |
|
1335 | - if ($this->getNamespaceFromPrefix($ns)) { |
|
1336 | - $ns = $this->getNamespaceFromPrefix($ns); |
|
1337 | - $this->debug("in serializeType: expanded prefixed type: $uqType, $ns"); |
|
1338 | - } |
|
1330 | + $xml = ''; |
|
1331 | + if (strpos($type, ':')) { |
|
1332 | + $uqType = substr($type, strrpos($type, ':') + 1); |
|
1333 | + $ns = substr($type, 0, strrpos($type, ':')); |
|
1334 | + $this->debug("in serializeType: got a prefixed type: $uqType, $ns"); |
|
1335 | + if ($this->getNamespaceFromPrefix($ns)) { |
|
1336 | + $ns = $this->getNamespaceFromPrefix($ns); |
|
1337 | + $this->debug("in serializeType: expanded prefixed type: $uqType, $ns"); |
|
1338 | + } |
|
1339 | 1339 | |
1340 | - if($ns == $this->XMLSchemaVersion || $ns == 'http://schemas.xmlsoap.org/soap/encoding/'){ |
|
1341 | - $this->debug('in serializeType: type namespace indicates XML Schema or SOAP Encoding type'); |
|
1342 | - if ($unqualified && $use == 'literal') { |
|
1343 | - $elementNS = " xmlns=\"\""; |
|
1344 | - } else { |
|
1345 | - $elementNS = ''; |
|
1346 | - } |
|
1347 | - if (is_null($value)) { |
|
1348 | - if ($use == 'literal') { |
|
1349 | - // TODO: depends on minOccurs |
|
1350 | - $xml = "<$name$elementNS/>"; |
|
1351 | - } else { |
|
1352 | - // TODO: depends on nillable, which should be checked before calling this method |
|
1353 | - $xml = "<$name$elementNS xsi:nil=\"true\" xsi:type=\"" . $this->getPrefixFromNamespace($ns) . ":$uqType\"/>"; |
|
1354 | - } |
|
1355 | - $this->debug("in serializeType: returning: $xml"); |
|
1356 | - return $xml; |
|
1357 | - } |
|
1358 | - if ($uqType == 'Array') { |
|
1359 | - // JBoss/Axis does this sometimes |
|
1360 | - return $this->serialize_val($value, $name, false, false, false, false, $use); |
|
1361 | - } |
|
1362 | - if ($uqType == 'boolean') { |
|
1363 | - if ((is_string($value) && $value == 'false') || (! $value)) { |
|
1364 | - $value = 'false'; |
|
1365 | - } else { |
|
1366 | - $value = 'true'; |
|
1367 | - } |
|
1368 | - } |
|
1369 | - if ($uqType == 'string' && gettype($value) == 'string') { |
|
1370 | - $value = $this->expandEntities($value); |
|
1371 | - } |
|
1372 | - if (($uqType == 'long' || $uqType == 'unsignedLong') && gettype($value) == 'double') { |
|
1373 | - $value = sprintf("%.0lf", $value); |
|
1374 | - } |
|
1375 | - // it's a scalar |
|
1376 | - // TODO: what about null/nil values? |
|
1377 | - // check type isn't a custom type extending xmlschema namespace |
|
1378 | - if (!$this->getTypeDef($uqType, $ns)) { |
|
1379 | - if ($use == 'literal') { |
|
1380 | - if ($forceType) { |
|
1381 | - $xml = "<$name$elementNS xsi:type=\"" . $this->getPrefixFromNamespace($ns) . ":$uqType\">$value</$name>"; |
|
1382 | - } else { |
|
1383 | - $xml = "<$name$elementNS>$value</$name>"; |
|
1384 | - } |
|
1385 | - } else { |
|
1386 | - $xml = "<$name$elementNS xsi:type=\"" . $this->getPrefixFromNamespace($ns) . ":$uqType\"$encodingStyle>$value</$name>"; |
|
1387 | - } |
|
1388 | - $this->debug("in serializeType: returning: $xml"); |
|
1389 | - return $xml; |
|
1390 | - } |
|
1391 | - $this->debug('custom type extends XML Schema or SOAP Encoding namespace (yuck)'); |
|
1392 | - } else if ($ns == 'http://xml.apache.org/xml-soap') { |
|
1393 | - $this->debug('in serializeType: appears to be Apache SOAP type'); |
|
1394 | - if ($uqType == 'Map') { |
|
1395 | - $tt_prefix = $this->getPrefixFromNamespace('http://xml.apache.org/xml-soap'); |
|
1396 | - if (! $tt_prefix) { |
|
1397 | - $this->debug('in serializeType: Add namespace for Apache SOAP type'); |
|
1398 | - $tt_prefix = 'ns' . rand(1000, 9999); |
|
1399 | - $this->namespaces[$tt_prefix] = 'http://xml.apache.org/xml-soap'; |
|
1400 | - // force this to be added to usedNamespaces |
|
1401 | - $tt_prefix = $this->getPrefixFromNamespace('http://xml.apache.org/xml-soap'); |
|
1402 | - } |
|
1403 | - $contents = ''; |
|
1404 | - foreach($value as $k => $v) { |
|
1405 | - $this->debug("serializing map element: key $k, value $v"); |
|
1406 | - $contents .= '<item>'; |
|
1407 | - $contents .= $this->serialize_val($k,'key',false,false,false,false,$use); |
|
1408 | - $contents .= $this->serialize_val($v,'value',false,false,false,false,$use); |
|
1409 | - $contents .= '</item>'; |
|
1410 | - } |
|
1411 | - if ($use == 'literal') { |
|
1412 | - if ($forceType) { |
|
1413 | - $xml = "<$name xsi:type=\"" . $tt_prefix . ":$uqType\">$contents</$name>"; |
|
1414 | - } else { |
|
1415 | - $xml = "<$name>$contents</$name>"; |
|
1416 | - } |
|
1417 | - } else { |
|
1418 | - $xml = "<$name xsi:type=\"" . $tt_prefix . ":$uqType\"$encodingStyle>$contents</$name>"; |
|
1419 | - } |
|
1420 | - $this->debug("in serializeType: returning: $xml"); |
|
1421 | - return $xml; |
|
1422 | - } |
|
1423 | - $this->debug('in serializeType: Apache SOAP type, but only support Map'); |
|
1424 | - } |
|
1425 | - } else { |
|
1426 | - // TODO: should the type be compared to types in XSD, and the namespace |
|
1427 | - // set to XSD if the type matches? |
|
1428 | - $this->debug("in serializeType: No namespace for type $type"); |
|
1429 | - $ns = ''; |
|
1430 | - $uqType = $type; |
|
1431 | - } |
|
1432 | - if(!$typeDef = $this->getTypeDef($uqType, $ns)){ |
|
1433 | - $this->setError("$type ($uqType) is not a supported type."); |
|
1434 | - $this->debug("in serializeType: $type ($uqType) is not a supported type."); |
|
1435 | - return false; |
|
1436 | - } else { |
|
1437 | - $this->debug("in serializeType: found typeDef"); |
|
1438 | - $this->appendDebug('typeDef=' . $this->varDump($typeDef)); |
|
1439 | - if (substr($uqType, -1) == '^') { |
|
1440 | - $uqType = substr($uqType, 0, -1); |
|
1441 | - } |
|
1442 | - } |
|
1443 | - if (!isset($typeDef['phpType'])) { |
|
1444 | - $this->setError("$type ($uqType) has no phpType."); |
|
1445 | - $this->debug("in serializeType: $type ($uqType) has no phpType."); |
|
1446 | - return false; |
|
1447 | - } |
|
1448 | - $phpType = $typeDef['phpType']; |
|
1449 | - $this->debug("in serializeType: uqType: $uqType, ns: $ns, phptype: $phpType, arrayType: " . (isset($typeDef['arrayType']) ? $typeDef['arrayType'] : '') ); |
|
1450 | - // if php type == struct, map value to the <all> element names |
|
1451 | - if ($phpType == 'struct') { |
|
1452 | - if (isset($typeDef['typeClass']) && $typeDef['typeClass'] == 'element') { |
|
1453 | - $elementName = $uqType; |
|
1454 | - if (isset($typeDef['form']) && ($typeDef['form'] == 'qualified')) { |
|
1455 | - $elementNS = " xmlns=\"$ns\""; |
|
1456 | - } else { |
|
1457 | - $elementNS = " xmlns=\"\""; |
|
1458 | - } |
|
1459 | - } else { |
|
1460 | - $elementName = $name; |
|
1461 | - if ($unqualified) { |
|
1462 | - $elementNS = " xmlns=\"\""; |
|
1463 | - } else { |
|
1464 | - $elementNS = ''; |
|
1465 | - } |
|
1466 | - } |
|
1467 | - if (is_null($value)) { |
|
1468 | - if ($use == 'literal') { |
|
1469 | - // TODO: depends on minOccurs and nillable |
|
1470 | - $xml = "<$elementName$elementNS/>"; |
|
1471 | - } else { |
|
1472 | - $xml = "<$elementName$elementNS xsi:nil=\"true\" xsi:type=\"" . $this->getPrefixFromNamespace($ns) . ":$uqType\"/>"; |
|
1473 | - } |
|
1474 | - $this->debug("in serializeType: returning: $xml"); |
|
1475 | - return $xml; |
|
1476 | - } |
|
1477 | - if (is_object($value)) { |
|
1478 | - $value = get_object_vars($value); |
|
1479 | - } |
|
1480 | - if (is_array($value)) { |
|
1481 | - $elementAttrs = $this->serializeComplexTypeAttributes($typeDef, $value, $ns, $uqType); |
|
1482 | - if ($use == 'literal') { |
|
1483 | - if ($forceType) { |
|
1484 | - $xml = "<$elementName$elementNS$elementAttrs xsi:type=\"" . $this->getPrefixFromNamespace($ns) . ":$uqType\">"; |
|
1485 | - } else { |
|
1486 | - $xml = "<$elementName$elementNS$elementAttrs>"; |
|
1487 | - } |
|
1488 | - } else { |
|
1489 | - $xml = "<$elementName$elementNS$elementAttrs xsi:type=\"" . $this->getPrefixFromNamespace($ns) . ":$uqType\"$encodingStyle>"; |
|
1490 | - } |
|
1340 | + if($ns == $this->XMLSchemaVersion || $ns == 'http://schemas.xmlsoap.org/soap/encoding/'){ |
|
1341 | + $this->debug('in serializeType: type namespace indicates XML Schema or SOAP Encoding type'); |
|
1342 | + if ($unqualified && $use == 'literal') { |
|
1343 | + $elementNS = " xmlns=\"\""; |
|
1344 | + } else { |
|
1345 | + $elementNS = ''; |
|
1346 | + } |
|
1347 | + if (is_null($value)) { |
|
1348 | + if ($use == 'literal') { |
|
1349 | + // TODO: depends on minOccurs |
|
1350 | + $xml = "<$name$elementNS/>"; |
|
1351 | + } else { |
|
1352 | + // TODO: depends on nillable, which should be checked before calling this method |
|
1353 | + $xml = "<$name$elementNS xsi:nil=\"true\" xsi:type=\"" . $this->getPrefixFromNamespace($ns) . ":$uqType\"/>"; |
|
1354 | + } |
|
1355 | + $this->debug("in serializeType: returning: $xml"); |
|
1356 | + return $xml; |
|
1357 | + } |
|
1358 | + if ($uqType == 'Array') { |
|
1359 | + // JBoss/Axis does this sometimes |
|
1360 | + return $this->serialize_val($value, $name, false, false, false, false, $use); |
|
1361 | + } |
|
1362 | + if ($uqType == 'boolean') { |
|
1363 | + if ((is_string($value) && $value == 'false') || (! $value)) { |
|
1364 | + $value = 'false'; |
|
1365 | + } else { |
|
1366 | + $value = 'true'; |
|
1367 | + } |
|
1368 | + } |
|
1369 | + if ($uqType == 'string' && gettype($value) == 'string') { |
|
1370 | + $value = $this->expandEntities($value); |
|
1371 | + } |
|
1372 | + if (($uqType == 'long' || $uqType == 'unsignedLong') && gettype($value) == 'double') { |
|
1373 | + $value = sprintf("%.0lf", $value); |
|
1374 | + } |
|
1375 | + // it's a scalar |
|
1376 | + // TODO: what about null/nil values? |
|
1377 | + // check type isn't a custom type extending xmlschema namespace |
|
1378 | + if (!$this->getTypeDef($uqType, $ns)) { |
|
1379 | + if ($use == 'literal') { |
|
1380 | + if ($forceType) { |
|
1381 | + $xml = "<$name$elementNS xsi:type=\"" . $this->getPrefixFromNamespace($ns) . ":$uqType\">$value</$name>"; |
|
1382 | + } else { |
|
1383 | + $xml = "<$name$elementNS>$value</$name>"; |
|
1384 | + } |
|
1385 | + } else { |
|
1386 | + $xml = "<$name$elementNS xsi:type=\"" . $this->getPrefixFromNamespace($ns) . ":$uqType\"$encodingStyle>$value</$name>"; |
|
1387 | + } |
|
1388 | + $this->debug("in serializeType: returning: $xml"); |
|
1389 | + return $xml; |
|
1390 | + } |
|
1391 | + $this->debug('custom type extends XML Schema or SOAP Encoding namespace (yuck)'); |
|
1392 | + } else if ($ns == 'http://xml.apache.org/xml-soap') { |
|
1393 | + $this->debug('in serializeType: appears to be Apache SOAP type'); |
|
1394 | + if ($uqType == 'Map') { |
|
1395 | + $tt_prefix = $this->getPrefixFromNamespace('http://xml.apache.org/xml-soap'); |
|
1396 | + if (! $tt_prefix) { |
|
1397 | + $this->debug('in serializeType: Add namespace for Apache SOAP type'); |
|
1398 | + $tt_prefix = 'ns' . rand(1000, 9999); |
|
1399 | + $this->namespaces[$tt_prefix] = 'http://xml.apache.org/xml-soap'; |
|
1400 | + // force this to be added to usedNamespaces |
|
1401 | + $tt_prefix = $this->getPrefixFromNamespace('http://xml.apache.org/xml-soap'); |
|
1402 | + } |
|
1403 | + $contents = ''; |
|
1404 | + foreach($value as $k => $v) { |
|
1405 | + $this->debug("serializing map element: key $k, value $v"); |
|
1406 | + $contents .= '<item>'; |
|
1407 | + $contents .= $this->serialize_val($k,'key',false,false,false,false,$use); |
|
1408 | + $contents .= $this->serialize_val($v,'value',false,false,false,false,$use); |
|
1409 | + $contents .= '</item>'; |
|
1410 | + } |
|
1411 | + if ($use == 'literal') { |
|
1412 | + if ($forceType) { |
|
1413 | + $xml = "<$name xsi:type=\"" . $tt_prefix . ":$uqType\">$contents</$name>"; |
|
1414 | + } else { |
|
1415 | + $xml = "<$name>$contents</$name>"; |
|
1416 | + } |
|
1417 | + } else { |
|
1418 | + $xml = "<$name xsi:type=\"" . $tt_prefix . ":$uqType\"$encodingStyle>$contents</$name>"; |
|
1419 | + } |
|
1420 | + $this->debug("in serializeType: returning: $xml"); |
|
1421 | + return $xml; |
|
1422 | + } |
|
1423 | + $this->debug('in serializeType: Apache SOAP type, but only support Map'); |
|
1424 | + } |
|
1425 | + } else { |
|
1426 | + // TODO: should the type be compared to types in XSD, and the namespace |
|
1427 | + // set to XSD if the type matches? |
|
1428 | + $this->debug("in serializeType: No namespace for type $type"); |
|
1429 | + $ns = ''; |
|
1430 | + $uqType = $type; |
|
1431 | + } |
|
1432 | + if(!$typeDef = $this->getTypeDef($uqType, $ns)){ |
|
1433 | + $this->setError("$type ($uqType) is not a supported type."); |
|
1434 | + $this->debug("in serializeType: $type ($uqType) is not a supported type."); |
|
1435 | + return false; |
|
1436 | + } else { |
|
1437 | + $this->debug("in serializeType: found typeDef"); |
|
1438 | + $this->appendDebug('typeDef=' . $this->varDump($typeDef)); |
|
1439 | + if (substr($uqType, -1) == '^') { |
|
1440 | + $uqType = substr($uqType, 0, -1); |
|
1441 | + } |
|
1442 | + } |
|
1443 | + if (!isset($typeDef['phpType'])) { |
|
1444 | + $this->setError("$type ($uqType) has no phpType."); |
|
1445 | + $this->debug("in serializeType: $type ($uqType) has no phpType."); |
|
1446 | + return false; |
|
1447 | + } |
|
1448 | + $phpType = $typeDef['phpType']; |
|
1449 | + $this->debug("in serializeType: uqType: $uqType, ns: $ns, phptype: $phpType, arrayType: " . (isset($typeDef['arrayType']) ? $typeDef['arrayType'] : '') ); |
|
1450 | + // if php type == struct, map value to the <all> element names |
|
1451 | + if ($phpType == 'struct') { |
|
1452 | + if (isset($typeDef['typeClass']) && $typeDef['typeClass'] == 'element') { |
|
1453 | + $elementName = $uqType; |
|
1454 | + if (isset($typeDef['form']) && ($typeDef['form'] == 'qualified')) { |
|
1455 | + $elementNS = " xmlns=\"$ns\""; |
|
1456 | + } else { |
|
1457 | + $elementNS = " xmlns=\"\""; |
|
1458 | + } |
|
1459 | + } else { |
|
1460 | + $elementName = $name; |
|
1461 | + if ($unqualified) { |
|
1462 | + $elementNS = " xmlns=\"\""; |
|
1463 | + } else { |
|
1464 | + $elementNS = ''; |
|
1465 | + } |
|
1466 | + } |
|
1467 | + if (is_null($value)) { |
|
1468 | + if ($use == 'literal') { |
|
1469 | + // TODO: depends on minOccurs and nillable |
|
1470 | + $xml = "<$elementName$elementNS/>"; |
|
1471 | + } else { |
|
1472 | + $xml = "<$elementName$elementNS xsi:nil=\"true\" xsi:type=\"" . $this->getPrefixFromNamespace($ns) . ":$uqType\"/>"; |
|
1473 | + } |
|
1474 | + $this->debug("in serializeType: returning: $xml"); |
|
1475 | + return $xml; |
|
1476 | + } |
|
1477 | + if (is_object($value)) { |
|
1478 | + $value = get_object_vars($value); |
|
1479 | + } |
|
1480 | + if (is_array($value)) { |
|
1481 | + $elementAttrs = $this->serializeComplexTypeAttributes($typeDef, $value, $ns, $uqType); |
|
1482 | + if ($use == 'literal') { |
|
1483 | + if ($forceType) { |
|
1484 | + $xml = "<$elementName$elementNS$elementAttrs xsi:type=\"" . $this->getPrefixFromNamespace($ns) . ":$uqType\">"; |
|
1485 | + } else { |
|
1486 | + $xml = "<$elementName$elementNS$elementAttrs>"; |
|
1487 | + } |
|
1488 | + } else { |
|
1489 | + $xml = "<$elementName$elementNS$elementAttrs xsi:type=\"" . $this->getPrefixFromNamespace($ns) . ":$uqType\"$encodingStyle>"; |
|
1490 | + } |
|
1491 | 1491 | |
1492 | - if (isset($typeDef['simpleContent']) && $typeDef['simpleContent'] == 'true') { |
|
1493 | - if (isset($value['!'])) { |
|
1494 | - $xml .= $value['!']; |
|
1495 | - $this->debug("in serializeType: serialized simpleContent for type $type"); |
|
1496 | - } else { |
|
1497 | - $this->debug("in serializeType: no simpleContent to serialize for type $type"); |
|
1498 | - } |
|
1499 | - } else { |
|
1500 | - // complexContent |
|
1501 | - $xml .= $this->serializeComplexTypeElements($typeDef, $value, $ns, $uqType, $use, $encodingStyle); |
|
1502 | - } |
|
1503 | - $xml .= "</$elementName>"; |
|
1504 | - } else { |
|
1505 | - $this->debug("in serializeType: phpType is struct, but value is not an array"); |
|
1506 | - $this->setError("phpType is struct, but value is not an array: see debug output for details"); |
|
1507 | - $xml = ''; |
|
1508 | - } |
|
1509 | - } elseif ($phpType == 'array') { |
|
1510 | - if (isset($typeDef['form']) && ($typeDef['form'] == 'qualified')) { |
|
1511 | - $elementNS = " xmlns=\"$ns\""; |
|
1512 | - } else { |
|
1513 | - if ($unqualified) { |
|
1514 | - $elementNS = " xmlns=\"\""; |
|
1515 | - } else { |
|
1516 | - $elementNS = ''; |
|
1517 | - } |
|
1518 | - } |
|
1519 | - if (is_null($value)) { |
|
1520 | - if ($use == 'literal') { |
|
1521 | - // TODO: depends on minOccurs |
|
1522 | - $xml = "<$name$elementNS/>"; |
|
1523 | - } else { |
|
1524 | - $xml = "<$name$elementNS xsi:nil=\"true\" xsi:type=\"" . |
|
1525 | - $this->getPrefixFromNamespace('http://schemas.xmlsoap.org/soap/encoding/') . |
|
1526 | - ":Array\" " . |
|
1527 | - $this->getPrefixFromNamespace('http://schemas.xmlsoap.org/soap/encoding/') . |
|
1528 | - ':arrayType="' . |
|
1529 | - $this->getPrefixFromNamespace($this->getPrefix($typeDef['arrayType'])) . |
|
1530 | - ':' . |
|
1531 | - $this->getLocalPart($typeDef['arrayType'])."[0]\"/>"; |
|
1532 | - } |
|
1533 | - $this->debug("in serializeType: returning: $xml"); |
|
1534 | - return $xml; |
|
1535 | - } |
|
1536 | - if (isset($typeDef['multidimensional'])) { |
|
1537 | - $nv = array(); |
|
1538 | - foreach($value as $v) { |
|
1539 | - $cols = ',' . sizeof($v); |
|
1540 | - $nv = array_merge($nv, $v); |
|
1541 | - } |
|
1542 | - $value = $nv; |
|
1543 | - } else { |
|
1544 | - $cols = ''; |
|
1545 | - } |
|
1546 | - if (is_array($value) && sizeof($value) >= 1) { |
|
1547 | - $rows = sizeof($value); |
|
1548 | - $contents = ''; |
|
1549 | - foreach($value as $k => $v) { |
|
1550 | - //$this->debug("serializing array element: $k, $v of type: $typeDef[arrayType]"); |
|
1551 | - //if (strpos($typeDef['arrayType'], ':') ) { |
|
1552 | - if (!in_array($typeDef['arrayType'],$this->typemap['http://www.w3.org/2001/XMLSchema'])) { |
|
1553 | - $contents .= $this->serializeType('item', $typeDef['arrayType'], $v, $use); |
|
1554 | - } else { |
|
1555 | - $contents .= $this->serialize_val($v, 'item', $typeDef['arrayType'], null, $this->XMLSchemaVersion, false, $use); |
|
1556 | - } |
|
1557 | - } |
|
1558 | - } else { |
|
1559 | - $rows = 0; |
|
1560 | - $contents = null; |
|
1561 | - } |
|
1562 | - // TODO: for now, an empty value will be serialized as a zero element |
|
1563 | - // array. Revisit this when coding the handling of null/nil values. |
|
1564 | - if ($use == 'literal') { |
|
1565 | - $xml = "<$name$elementNS>" |
|
1566 | - .$contents |
|
1567 | - ."</$name>"; |
|
1568 | - } else { |
|
1569 | - $xml = "<$name$elementNS xsi:type=\"".$this->getPrefixFromNamespace('http://schemas.xmlsoap.org/soap/encoding/').':Array" '. |
|
1570 | - $this->getPrefixFromNamespace('http://schemas.xmlsoap.org/soap/encoding/') |
|
1571 | - .':arrayType="' |
|
1572 | - .$this->getPrefixFromNamespace($this->getPrefix($typeDef['arrayType'])) |
|
1573 | - .":".$this->getLocalPart($typeDef['arrayType'])."[$rows$cols]\">" |
|
1574 | - .$contents |
|
1575 | - ."</$name>"; |
|
1576 | - } |
|
1577 | - } elseif ($phpType == 'scalar') { |
|
1578 | - if (isset($typeDef['form']) && ($typeDef['form'] == 'qualified')) { |
|
1579 | - $elementNS = " xmlns=\"$ns\""; |
|
1580 | - } else { |
|
1581 | - if ($unqualified) { |
|
1582 | - $elementNS = " xmlns=\"\""; |
|
1583 | - } else { |
|
1584 | - $elementNS = ''; |
|
1585 | - } |
|
1586 | - } |
|
1587 | - if ($use == 'literal') { |
|
1588 | - if ($forceType) { |
|
1589 | - $xml = "<$name$elementNS xsi:type=\"" . $this->getPrefixFromNamespace($ns) . ":$uqType\">$value</$name>"; |
|
1590 | - } else { |
|
1591 | - $xml = "<$name$elementNS>$value</$name>"; |
|
1592 | - } |
|
1593 | - } else { |
|
1594 | - $xml = "<$name$elementNS xsi:type=\"" . $this->getPrefixFromNamespace($ns) . ":$uqType\"$encodingStyle>$value</$name>"; |
|
1595 | - } |
|
1596 | - } |
|
1597 | - $this->debug("in serializeType: returning: $xml"); |
|
1598 | - return $xml; |
|
1599 | - } |
|
1492 | + if (isset($typeDef['simpleContent']) && $typeDef['simpleContent'] == 'true') { |
|
1493 | + if (isset($value['!'])) { |
|
1494 | + $xml .= $value['!']; |
|
1495 | + $this->debug("in serializeType: serialized simpleContent for type $type"); |
|
1496 | + } else { |
|
1497 | + $this->debug("in serializeType: no simpleContent to serialize for type $type"); |
|
1498 | + } |
|
1499 | + } else { |
|
1500 | + // complexContent |
|
1501 | + $xml .= $this->serializeComplexTypeElements($typeDef, $value, $ns, $uqType, $use, $encodingStyle); |
|
1502 | + } |
|
1503 | + $xml .= "</$elementName>"; |
|
1504 | + } else { |
|
1505 | + $this->debug("in serializeType: phpType is struct, but value is not an array"); |
|
1506 | + $this->setError("phpType is struct, but value is not an array: see debug output for details"); |
|
1507 | + $xml = ''; |
|
1508 | + } |
|
1509 | + } elseif ($phpType == 'array') { |
|
1510 | + if (isset($typeDef['form']) && ($typeDef['form'] == 'qualified')) { |
|
1511 | + $elementNS = " xmlns=\"$ns\""; |
|
1512 | + } else { |
|
1513 | + if ($unqualified) { |
|
1514 | + $elementNS = " xmlns=\"\""; |
|
1515 | + } else { |
|
1516 | + $elementNS = ''; |
|
1517 | + } |
|
1518 | + } |
|
1519 | + if (is_null($value)) { |
|
1520 | + if ($use == 'literal') { |
|
1521 | + // TODO: depends on minOccurs |
|
1522 | + $xml = "<$name$elementNS/>"; |
|
1523 | + } else { |
|
1524 | + $xml = "<$name$elementNS xsi:nil=\"true\" xsi:type=\"" . |
|
1525 | + $this->getPrefixFromNamespace('http://schemas.xmlsoap.org/soap/encoding/') . |
|
1526 | + ":Array\" " . |
|
1527 | + $this->getPrefixFromNamespace('http://schemas.xmlsoap.org/soap/encoding/') . |
|
1528 | + ':arrayType="' . |
|
1529 | + $this->getPrefixFromNamespace($this->getPrefix($typeDef['arrayType'])) . |
|
1530 | + ':' . |
|
1531 | + $this->getLocalPart($typeDef['arrayType'])."[0]\"/>"; |
|
1532 | + } |
|
1533 | + $this->debug("in serializeType: returning: $xml"); |
|
1534 | + return $xml; |
|
1535 | + } |
|
1536 | + if (isset($typeDef['multidimensional'])) { |
|
1537 | + $nv = array(); |
|
1538 | + foreach($value as $v) { |
|
1539 | + $cols = ',' . sizeof($v); |
|
1540 | + $nv = array_merge($nv, $v); |
|
1541 | + } |
|
1542 | + $value = $nv; |
|
1543 | + } else { |
|
1544 | + $cols = ''; |
|
1545 | + } |
|
1546 | + if (is_array($value) && sizeof($value) >= 1) { |
|
1547 | + $rows = sizeof($value); |
|
1548 | + $contents = ''; |
|
1549 | + foreach($value as $k => $v) { |
|
1550 | + //$this->debug("serializing array element: $k, $v of type: $typeDef[arrayType]"); |
|
1551 | + //if (strpos($typeDef['arrayType'], ':') ) { |
|
1552 | + if (!in_array($typeDef['arrayType'],$this->typemap['http://www.w3.org/2001/XMLSchema'])) { |
|
1553 | + $contents .= $this->serializeType('item', $typeDef['arrayType'], $v, $use); |
|
1554 | + } else { |
|
1555 | + $contents .= $this->serialize_val($v, 'item', $typeDef['arrayType'], null, $this->XMLSchemaVersion, false, $use); |
|
1556 | + } |
|
1557 | + } |
|
1558 | + } else { |
|
1559 | + $rows = 0; |
|
1560 | + $contents = null; |
|
1561 | + } |
|
1562 | + // TODO: for now, an empty value will be serialized as a zero element |
|
1563 | + // array. Revisit this when coding the handling of null/nil values. |
|
1564 | + if ($use == 'literal') { |
|
1565 | + $xml = "<$name$elementNS>" |
|
1566 | + .$contents |
|
1567 | + ."</$name>"; |
|
1568 | + } else { |
|
1569 | + $xml = "<$name$elementNS xsi:type=\"".$this->getPrefixFromNamespace('http://schemas.xmlsoap.org/soap/encoding/').':Array" '. |
|
1570 | + $this->getPrefixFromNamespace('http://schemas.xmlsoap.org/soap/encoding/') |
|
1571 | + .':arrayType="' |
|
1572 | + .$this->getPrefixFromNamespace($this->getPrefix($typeDef['arrayType'])) |
|
1573 | + .":".$this->getLocalPart($typeDef['arrayType'])."[$rows$cols]\">" |
|
1574 | + .$contents |
|
1575 | + ."</$name>"; |
|
1576 | + } |
|
1577 | + } elseif ($phpType == 'scalar') { |
|
1578 | + if (isset($typeDef['form']) && ($typeDef['form'] == 'qualified')) { |
|
1579 | + $elementNS = " xmlns=\"$ns\""; |
|
1580 | + } else { |
|
1581 | + if ($unqualified) { |
|
1582 | + $elementNS = " xmlns=\"\""; |
|
1583 | + } else { |
|
1584 | + $elementNS = ''; |
|
1585 | + } |
|
1586 | + } |
|
1587 | + if ($use == 'literal') { |
|
1588 | + if ($forceType) { |
|
1589 | + $xml = "<$name$elementNS xsi:type=\"" . $this->getPrefixFromNamespace($ns) . ":$uqType\">$value</$name>"; |
|
1590 | + } else { |
|
1591 | + $xml = "<$name$elementNS>$value</$name>"; |
|
1592 | + } |
|
1593 | + } else { |
|
1594 | + $xml = "<$name$elementNS xsi:type=\"" . $this->getPrefixFromNamespace($ns) . ":$uqType\"$encodingStyle>$value</$name>"; |
|
1595 | + } |
|
1596 | + } |
|
1597 | + $this->debug("in serializeType: returning: $xml"); |
|
1598 | + return $xml; |
|
1599 | + } |
|
1600 | 1600 | |
1601 | - /** |
|
1602 | - * serializes the attributes for a complexType |
|
1603 | - * |
|
1604 | - * @param array $typeDef our internal representation of an XML schema type (or element) |
|
1605 | - * @param mixed $value a native PHP value (parameter value) |
|
1606 | - * @param string $ns the namespace of the type |
|
1607 | - * @param string $uqType the local part of the type |
|
1608 | - * @return string value serialized as an XML string |
|
1609 | - * @access private |
|
1610 | - */ |
|
1611 | - function serializeComplexTypeAttributes($typeDef, $value, $ns, $uqType) { |
|
1612 | - $this->debug("serializeComplexTypeAttributes for XML Schema type $ns:$uqType"); |
|
1613 | - $xml = ''; |
|
1614 | - if (isset($typeDef['extensionBase'])) { |
|
1615 | - $nsx = $this->getPrefix($typeDef['extensionBase']); |
|
1616 | - $uqTypex = $this->getLocalPart($typeDef['extensionBase']); |
|
1617 | - if ($this->getNamespaceFromPrefix($nsx)) { |
|
1618 | - $nsx = $this->getNamespaceFromPrefix($nsx); |
|
1619 | - } |
|
1620 | - if ($typeDefx = $this->getTypeDef($uqTypex, $nsx)) { |
|
1621 | - $this->debug("serialize attributes for extension base $nsx:$uqTypex"); |
|
1622 | - $xml .= $this->serializeComplexTypeAttributes($typeDefx, $value, $nsx, $uqTypex); |
|
1623 | - } else { |
|
1624 | - $this->debug("extension base $nsx:$uqTypex is not a supported type"); |
|
1625 | - } |
|
1626 | - } |
|
1627 | - if (isset($typeDef['attrs']) && is_array($typeDef['attrs'])) { |
|
1628 | - $this->debug("serialize attributes for XML Schema type $ns:$uqType"); |
|
1629 | - if (is_array($value)) { |
|
1630 | - $xvalue = $value; |
|
1631 | - } elseif (is_object($value)) { |
|
1632 | - $xvalue = get_object_vars($value); |
|
1633 | - } else { |
|
1634 | - $this->debug("value is neither an array nor an object for XML Schema type $ns:$uqType"); |
|
1635 | - $xvalue = array(); |
|
1636 | - } |
|
1637 | - foreach ($typeDef['attrs'] as $aName => $attrs) { |
|
1638 | - if (isset($xvalue['!' . $aName])) { |
|
1639 | - $xname = '!' . $aName; |
|
1640 | - $this->debug("value provided for attribute $aName with key $xname"); |
|
1641 | - } elseif (isset($xvalue[$aName])) { |
|
1642 | - $xname = $aName; |
|
1643 | - $this->debug("value provided for attribute $aName with key $xname"); |
|
1644 | - } elseif (isset($attrs['default'])) { |
|
1645 | - $xname = '!' . $aName; |
|
1646 | - $xvalue[$xname] = $attrs['default']; |
|
1647 | - $this->debug('use default value of ' . $xvalue[$aName] . ' for attribute ' . $aName); |
|
1648 | - } else { |
|
1649 | - $xname = ''; |
|
1650 | - $this->debug("no value provided for attribute $aName"); |
|
1651 | - } |
|
1652 | - if ($xname) { |
|
1653 | - $xml .= " $aName=\"" . $this->expandEntities($xvalue[$xname]) . "\""; |
|
1654 | - } |
|
1655 | - } |
|
1656 | - } else { |
|
1657 | - $this->debug("no attributes to serialize for XML Schema type $ns:$uqType"); |
|
1658 | - } |
|
1659 | - return $xml; |
|
1660 | - } |
|
1601 | + /** |
|
1602 | + * serializes the attributes for a complexType |
|
1603 | + * |
|
1604 | + * @param array $typeDef our internal representation of an XML schema type (or element) |
|
1605 | + * @param mixed $value a native PHP value (parameter value) |
|
1606 | + * @param string $ns the namespace of the type |
|
1607 | + * @param string $uqType the local part of the type |
|
1608 | + * @return string value serialized as an XML string |
|
1609 | + * @access private |
|
1610 | + */ |
|
1611 | + function serializeComplexTypeAttributes($typeDef, $value, $ns, $uqType) { |
|
1612 | + $this->debug("serializeComplexTypeAttributes for XML Schema type $ns:$uqType"); |
|
1613 | + $xml = ''; |
|
1614 | + if (isset($typeDef['extensionBase'])) { |
|
1615 | + $nsx = $this->getPrefix($typeDef['extensionBase']); |
|
1616 | + $uqTypex = $this->getLocalPart($typeDef['extensionBase']); |
|
1617 | + if ($this->getNamespaceFromPrefix($nsx)) { |
|
1618 | + $nsx = $this->getNamespaceFromPrefix($nsx); |
|
1619 | + } |
|
1620 | + if ($typeDefx = $this->getTypeDef($uqTypex, $nsx)) { |
|
1621 | + $this->debug("serialize attributes for extension base $nsx:$uqTypex"); |
|
1622 | + $xml .= $this->serializeComplexTypeAttributes($typeDefx, $value, $nsx, $uqTypex); |
|
1623 | + } else { |
|
1624 | + $this->debug("extension base $nsx:$uqTypex is not a supported type"); |
|
1625 | + } |
|
1626 | + } |
|
1627 | + if (isset($typeDef['attrs']) && is_array($typeDef['attrs'])) { |
|
1628 | + $this->debug("serialize attributes for XML Schema type $ns:$uqType"); |
|
1629 | + if (is_array($value)) { |
|
1630 | + $xvalue = $value; |
|
1631 | + } elseif (is_object($value)) { |
|
1632 | + $xvalue = get_object_vars($value); |
|
1633 | + } else { |
|
1634 | + $this->debug("value is neither an array nor an object for XML Schema type $ns:$uqType"); |
|
1635 | + $xvalue = array(); |
|
1636 | + } |
|
1637 | + foreach ($typeDef['attrs'] as $aName => $attrs) { |
|
1638 | + if (isset($xvalue['!' . $aName])) { |
|
1639 | + $xname = '!' . $aName; |
|
1640 | + $this->debug("value provided for attribute $aName with key $xname"); |
|
1641 | + } elseif (isset($xvalue[$aName])) { |
|
1642 | + $xname = $aName; |
|
1643 | + $this->debug("value provided for attribute $aName with key $xname"); |
|
1644 | + } elseif (isset($attrs['default'])) { |
|
1645 | + $xname = '!' . $aName; |
|
1646 | + $xvalue[$xname] = $attrs['default']; |
|
1647 | + $this->debug('use default value of ' . $xvalue[$aName] . ' for attribute ' . $aName); |
|
1648 | + } else { |
|
1649 | + $xname = ''; |
|
1650 | + $this->debug("no value provided for attribute $aName"); |
|
1651 | + } |
|
1652 | + if ($xname) { |
|
1653 | + $xml .= " $aName=\"" . $this->expandEntities($xvalue[$xname]) . "\""; |
|
1654 | + } |
|
1655 | + } |
|
1656 | + } else { |
|
1657 | + $this->debug("no attributes to serialize for XML Schema type $ns:$uqType"); |
|
1658 | + } |
|
1659 | + return $xml; |
|
1660 | + } |
|
1661 | 1661 | |
1662 | - /** |
|
1663 | - * serializes the elements for a complexType |
|
1664 | - * |
|
1665 | - * @param array $typeDef our internal representation of an XML schema type (or element) |
|
1666 | - * @param mixed $value a native PHP value (parameter value) |
|
1667 | - * @param string $ns the namespace of the type |
|
1668 | - * @param string $uqType the local part of the type |
|
1669 | - * @param string $use use for part (encoded|literal) |
|
1670 | - * @param string $encodingStyle SOAP encoding style for the value (if different than the enclosing style) |
|
1671 | - * @return string value serialized as an XML string |
|
1672 | - * @access private |
|
1673 | - */ |
|
1674 | - function serializeComplexTypeElements($typeDef, $value, $ns, $uqType, $use='encoded', $encodingStyle=false) { |
|
1675 | - $this->debug("in serializeComplexTypeElements for XML Schema type $ns:$uqType"); |
|
1676 | - $xml = ''; |
|
1677 | - if (isset($typeDef['extensionBase'])) { |
|
1678 | - $nsx = $this->getPrefix($typeDef['extensionBase']); |
|
1679 | - $uqTypex = $this->getLocalPart($typeDef['extensionBase']); |
|
1680 | - if ($this->getNamespaceFromPrefix($nsx)) { |
|
1681 | - $nsx = $this->getNamespaceFromPrefix($nsx); |
|
1682 | - } |
|
1683 | - if ($typeDefx = $this->getTypeDef($uqTypex, $nsx)) { |
|
1684 | - $this->debug("serialize elements for extension base $nsx:$uqTypex"); |
|
1685 | - $xml .= $this->serializeComplexTypeElements($typeDefx, $value, $nsx, $uqTypex, $use, $encodingStyle); |
|
1686 | - } else { |
|
1687 | - $this->debug("extension base $nsx:$uqTypex is not a supported type"); |
|
1688 | - } |
|
1689 | - } |
|
1690 | - if (isset($typeDef['elements']) && is_array($typeDef['elements'])) { |
|
1691 | - $this->debug("in serializeComplexTypeElements, serialize elements for XML Schema type $ns:$uqType"); |
|
1692 | - if (is_array($value)) { |
|
1693 | - $xvalue = $value; |
|
1694 | - } elseif (is_object($value)) { |
|
1695 | - $xvalue = get_object_vars($value); |
|
1696 | - } else { |
|
1697 | - $this->debug("value is neither an array nor an object for XML Schema type $ns:$uqType"); |
|
1698 | - $xvalue = array(); |
|
1699 | - } |
|
1700 | - // toggle whether all elements are present - ideally should validate against schema |
|
1701 | - if (count($typeDef['elements']) != count($xvalue)){ |
|
1702 | - $optionals = true; |
|
1703 | - } |
|
1704 | - foreach ($typeDef['elements'] as $eName => $attrs) { |
|
1705 | - if (!isset($xvalue[$eName])) { |
|
1706 | - if (isset($attrs['default'])) { |
|
1707 | - $xvalue[$eName] = $attrs['default']; |
|
1708 | - $this->debug('use default value of ' . $xvalue[$eName] . ' for element ' . $eName); |
|
1709 | - } |
|
1710 | - } |
|
1711 | - // if user took advantage of a minOccurs=0, then only serialize named parameters |
|
1712 | - if (isset($optionals) |
|
1713 | - && (!isset($xvalue[$eName])) |
|
1714 | - && ( (!isset($attrs['nillable'])) || $attrs['nillable'] != 'true') |
|
1715 | - ){ |
|
1716 | - if (isset($attrs['minOccurs']) && $attrs['minOccurs'] <> '0') { |
|
1717 | - $this->debug("apparent error: no value provided for element $eName with minOccurs=" . $attrs['minOccurs']); |
|
1718 | - } |
|
1719 | - // do nothing |
|
1720 | - $this->debug("no value provided for complexType element $eName and element is not nillable, so serialize nothing"); |
|
1721 | - } else { |
|
1722 | - // get value |
|
1723 | - if (isset($xvalue[$eName])) { |
|
1724 | - $v = $xvalue[$eName]; |
|
1725 | - } else { |
|
1726 | - $v = null; |
|
1727 | - } |
|
1728 | - if (isset($attrs['form'])) { |
|
1729 | - $unqualified = ($attrs['form'] == 'unqualified'); |
|
1730 | - } else { |
|
1731 | - $unqualified = false; |
|
1732 | - } |
|
1733 | - if (isset($attrs['maxOccurs']) && ($attrs['maxOccurs'] == 'unbounded' || $attrs['maxOccurs'] > 1) && isset($v) && is_array($v) && $this->isArraySimpleOrStruct($v) == 'arraySimple') { |
|
1734 | - $vv = $v; |
|
1735 | - foreach ($vv as $k => $v) { |
|
1736 | - if (isset($attrs['type']) || isset($attrs['ref'])) { |
|
1737 | - // serialize schema-defined type |
|
1738 | - $xml .= $this->serializeType($eName, isset($attrs['type']) ? $attrs['type'] : $attrs['ref'], $v, $use, $encodingStyle, $unqualified); |
|
1739 | - } else { |
|
1740 | - // serialize generic type (can this ever really happen?) |
|
1741 | - $this->debug("calling serialize_val() for $v, $eName, false, false, false, false, $use"); |
|
1742 | - $xml .= $this->serialize_val($v, $eName, false, false, false, false, $use); |
|
1743 | - } |
|
1744 | - } |
|
1745 | - } else { |
|
1746 | - if (is_null($v) && isset($attrs['minOccurs']) && $attrs['minOccurs'] == '0') { |
|
1747 | - // do nothing |
|
1748 | - } elseif (is_null($v) && isset($attrs['nillable']) && $attrs['nillable'] == 'true') { |
|
1749 | - // TODO: serialize a nil correctly, but for now serialize schema-defined type |
|
1750 | - $xml .= $this->serializeType($eName, isset($attrs['type']) ? $attrs['type'] : $attrs['ref'], $v, $use, $encodingStyle, $unqualified); |
|
1751 | - } elseif (isset($attrs['type']) || isset($attrs['ref'])) { |
|
1752 | - // serialize schema-defined type |
|
1753 | - $xml .= $this->serializeType($eName, isset($attrs['type']) ? $attrs['type'] : $attrs['ref'], $v, $use, $encodingStyle, $unqualified); |
|
1754 | - } else { |
|
1755 | - // serialize generic type (can this ever really happen?) |
|
1756 | - $this->debug("calling serialize_val() for $v, $eName, false, false, false, false, $use"); |
|
1757 | - $xml .= $this->serialize_val($v, $eName, false, false, false, false, $use); |
|
1758 | - } |
|
1759 | - } |
|
1760 | - } |
|
1761 | - } |
|
1762 | - } else { |
|
1763 | - $this->debug("no elements to serialize for XML Schema type $ns:$uqType"); |
|
1764 | - } |
|
1765 | - return $xml; |
|
1766 | - } |
|
1662 | + /** |
|
1663 | + * serializes the elements for a complexType |
|
1664 | + * |
|
1665 | + * @param array $typeDef our internal representation of an XML schema type (or element) |
|
1666 | + * @param mixed $value a native PHP value (parameter value) |
|
1667 | + * @param string $ns the namespace of the type |
|
1668 | + * @param string $uqType the local part of the type |
|
1669 | + * @param string $use use for part (encoded|literal) |
|
1670 | + * @param string $encodingStyle SOAP encoding style for the value (if different than the enclosing style) |
|
1671 | + * @return string value serialized as an XML string |
|
1672 | + * @access private |
|
1673 | + */ |
|
1674 | + function serializeComplexTypeElements($typeDef, $value, $ns, $uqType, $use='encoded', $encodingStyle=false) { |
|
1675 | + $this->debug("in serializeComplexTypeElements for XML Schema type $ns:$uqType"); |
|
1676 | + $xml = ''; |
|
1677 | + if (isset($typeDef['extensionBase'])) { |
|
1678 | + $nsx = $this->getPrefix($typeDef['extensionBase']); |
|
1679 | + $uqTypex = $this->getLocalPart($typeDef['extensionBase']); |
|
1680 | + if ($this->getNamespaceFromPrefix($nsx)) { |
|
1681 | + $nsx = $this->getNamespaceFromPrefix($nsx); |
|
1682 | + } |
|
1683 | + if ($typeDefx = $this->getTypeDef($uqTypex, $nsx)) { |
|
1684 | + $this->debug("serialize elements for extension base $nsx:$uqTypex"); |
|
1685 | + $xml .= $this->serializeComplexTypeElements($typeDefx, $value, $nsx, $uqTypex, $use, $encodingStyle); |
|
1686 | + } else { |
|
1687 | + $this->debug("extension base $nsx:$uqTypex is not a supported type"); |
|
1688 | + } |
|
1689 | + } |
|
1690 | + if (isset($typeDef['elements']) && is_array($typeDef['elements'])) { |
|
1691 | + $this->debug("in serializeComplexTypeElements, serialize elements for XML Schema type $ns:$uqType"); |
|
1692 | + if (is_array($value)) { |
|
1693 | + $xvalue = $value; |
|
1694 | + } elseif (is_object($value)) { |
|
1695 | + $xvalue = get_object_vars($value); |
|
1696 | + } else { |
|
1697 | + $this->debug("value is neither an array nor an object for XML Schema type $ns:$uqType"); |
|
1698 | + $xvalue = array(); |
|
1699 | + } |
|
1700 | + // toggle whether all elements are present - ideally should validate against schema |
|
1701 | + if (count($typeDef['elements']) != count($xvalue)){ |
|
1702 | + $optionals = true; |
|
1703 | + } |
|
1704 | + foreach ($typeDef['elements'] as $eName => $attrs) { |
|
1705 | + if (!isset($xvalue[$eName])) { |
|
1706 | + if (isset($attrs['default'])) { |
|
1707 | + $xvalue[$eName] = $attrs['default']; |
|
1708 | + $this->debug('use default value of ' . $xvalue[$eName] . ' for element ' . $eName); |
|
1709 | + } |
|
1710 | + } |
|
1711 | + // if user took advantage of a minOccurs=0, then only serialize named parameters |
|
1712 | + if (isset($optionals) |
|
1713 | + && (!isset($xvalue[$eName])) |
|
1714 | + && ( (!isset($attrs['nillable'])) || $attrs['nillable'] != 'true') |
|
1715 | + ){ |
|
1716 | + if (isset($attrs['minOccurs']) && $attrs['minOccurs'] <> '0') { |
|
1717 | + $this->debug("apparent error: no value provided for element $eName with minOccurs=" . $attrs['minOccurs']); |
|
1718 | + } |
|
1719 | + // do nothing |
|
1720 | + $this->debug("no value provided for complexType element $eName and element is not nillable, so serialize nothing"); |
|
1721 | + } else { |
|
1722 | + // get value |
|
1723 | + if (isset($xvalue[$eName])) { |
|
1724 | + $v = $xvalue[$eName]; |
|
1725 | + } else { |
|
1726 | + $v = null; |
|
1727 | + } |
|
1728 | + if (isset($attrs['form'])) { |
|
1729 | + $unqualified = ($attrs['form'] == 'unqualified'); |
|
1730 | + } else { |
|
1731 | + $unqualified = false; |
|
1732 | + } |
|
1733 | + if (isset($attrs['maxOccurs']) && ($attrs['maxOccurs'] == 'unbounded' || $attrs['maxOccurs'] > 1) && isset($v) && is_array($v) && $this->isArraySimpleOrStruct($v) == 'arraySimple') { |
|
1734 | + $vv = $v; |
|
1735 | + foreach ($vv as $k => $v) { |
|
1736 | + if (isset($attrs['type']) || isset($attrs['ref'])) { |
|
1737 | + // serialize schema-defined type |
|
1738 | + $xml .= $this->serializeType($eName, isset($attrs['type']) ? $attrs['type'] : $attrs['ref'], $v, $use, $encodingStyle, $unqualified); |
|
1739 | + } else { |
|
1740 | + // serialize generic type (can this ever really happen?) |
|
1741 | + $this->debug("calling serialize_val() for $v, $eName, false, false, false, false, $use"); |
|
1742 | + $xml .= $this->serialize_val($v, $eName, false, false, false, false, $use); |
|
1743 | + } |
|
1744 | + } |
|
1745 | + } else { |
|
1746 | + if (is_null($v) && isset($attrs['minOccurs']) && $attrs['minOccurs'] == '0') { |
|
1747 | + // do nothing |
|
1748 | + } elseif (is_null($v) && isset($attrs['nillable']) && $attrs['nillable'] == 'true') { |
|
1749 | + // TODO: serialize a nil correctly, but for now serialize schema-defined type |
|
1750 | + $xml .= $this->serializeType($eName, isset($attrs['type']) ? $attrs['type'] : $attrs['ref'], $v, $use, $encodingStyle, $unqualified); |
|
1751 | + } elseif (isset($attrs['type']) || isset($attrs['ref'])) { |
|
1752 | + // serialize schema-defined type |
|
1753 | + $xml .= $this->serializeType($eName, isset($attrs['type']) ? $attrs['type'] : $attrs['ref'], $v, $use, $encodingStyle, $unqualified); |
|
1754 | + } else { |
|
1755 | + // serialize generic type (can this ever really happen?) |
|
1756 | + $this->debug("calling serialize_val() for $v, $eName, false, false, false, false, $use"); |
|
1757 | + $xml .= $this->serialize_val($v, $eName, false, false, false, false, $use); |
|
1758 | + } |
|
1759 | + } |
|
1760 | + } |
|
1761 | + } |
|
1762 | + } else { |
|
1763 | + $this->debug("no elements to serialize for XML Schema type $ns:$uqType"); |
|
1764 | + } |
|
1765 | + return $xml; |
|
1766 | + } |
|
1767 | 1767 | |
1768 | - /** |
|
1769 | - * adds an XML Schema complex type to the WSDL types |
|
1770 | - * |
|
1771 | - * @param string $name |
|
1772 | - * @param string $typeClass (complexType|simpleType|attribute) |
|
1773 | - * @param string $phpType currently supported are array and struct (php assoc array) |
|
1774 | - * @param string $compositor (all|sequence|choice) |
|
1775 | - * @param string $restrictionBase namespace:name (http://schemas.xmlsoap.org/soap/encoding/:Array) |
|
1776 | - * @param array $elements e.g. array ( name => array(name=>'',type=>'') ) |
|
1777 | - * @param array $attrs e.g. array(array('ref'=>'SOAP-ENC:arrayType','wsdl:arrayType'=>'xsd:string[]')) |
|
1778 | - * @param string $arrayType as namespace:name (xsd:string) |
|
1779 | - * @see nusoap_xmlschema |
|
1780 | - * @access public |
|
1781 | - */ |
|
1782 | - function addComplexType($name,$typeClass='complexType',$phpType='array',$compositor='',$restrictionBase='',$elements=array(),$attrs=array(),$arrayType='') { |
|
1783 | - if (count($elements) > 0) { |
|
1784 | - $eElements = array(); |
|
1785 | - foreach($elements as $n => $e){ |
|
1786 | - // expand each element |
|
1787 | - $ee = array(); |
|
1788 | - foreach ($e as $k => $v) { |
|
1789 | - $k = strpos($k,':') ? $this->expandQname($k) : $k; |
|
1790 | - $v = strpos($v,':') ? $this->expandQname($v) : $v; |
|
1791 | - $ee[$k] = $v; |
|
1792 | - } |
|
1793 | - $eElements[$n] = $ee; |
|
1794 | - } |
|
1795 | - $elements = $eElements; |
|
1796 | - } |
|
1768 | + /** |
|
1769 | + * adds an XML Schema complex type to the WSDL types |
|
1770 | + * |
|
1771 | + * @param string $name |
|
1772 | + * @param string $typeClass (complexType|simpleType|attribute) |
|
1773 | + * @param string $phpType currently supported are array and struct (php assoc array) |
|
1774 | + * @param string $compositor (all|sequence|choice) |
|
1775 | + * @param string $restrictionBase namespace:name (http://schemas.xmlsoap.org/soap/encoding/:Array) |
|
1776 | + * @param array $elements e.g. array ( name => array(name=>'',type=>'') ) |
|
1777 | + * @param array $attrs e.g. array(array('ref'=>'SOAP-ENC:arrayType','wsdl:arrayType'=>'xsd:string[]')) |
|
1778 | + * @param string $arrayType as namespace:name (xsd:string) |
|
1779 | + * @see nusoap_xmlschema |
|
1780 | + * @access public |
|
1781 | + */ |
|
1782 | + function addComplexType($name,$typeClass='complexType',$phpType='array',$compositor='',$restrictionBase='',$elements=array(),$attrs=array(),$arrayType='') { |
|
1783 | + if (count($elements) > 0) { |
|
1784 | + $eElements = array(); |
|
1785 | + foreach($elements as $n => $e){ |
|
1786 | + // expand each element |
|
1787 | + $ee = array(); |
|
1788 | + foreach ($e as $k => $v) { |
|
1789 | + $k = strpos($k,':') ? $this->expandQname($k) : $k; |
|
1790 | + $v = strpos($v,':') ? $this->expandQname($v) : $v; |
|
1791 | + $ee[$k] = $v; |
|
1792 | + } |
|
1793 | + $eElements[$n] = $ee; |
|
1794 | + } |
|
1795 | + $elements = $eElements; |
|
1796 | + } |
|
1797 | 1797 | |
1798 | - if (count($attrs) > 0) { |
|
1799 | - foreach($attrs as $n => $a){ |
|
1800 | - // expand each attribute |
|
1801 | - foreach ($a as $k => $v) { |
|
1802 | - $k = strpos($k,':') ? $this->expandQname($k) : $k; |
|
1803 | - $v = strpos($v,':') ? $this->expandQname($v) : $v; |
|
1804 | - $aa[$k] = $v; |
|
1805 | - } |
|
1806 | - $eAttrs[$n] = $aa; |
|
1807 | - } |
|
1808 | - $attrs = $eAttrs; |
|
1809 | - } |
|
1798 | + if (count($attrs) > 0) { |
|
1799 | + foreach($attrs as $n => $a){ |
|
1800 | + // expand each attribute |
|
1801 | + foreach ($a as $k => $v) { |
|
1802 | + $k = strpos($k,':') ? $this->expandQname($k) : $k; |
|
1803 | + $v = strpos($v,':') ? $this->expandQname($v) : $v; |
|
1804 | + $aa[$k] = $v; |
|
1805 | + } |
|
1806 | + $eAttrs[$n] = $aa; |
|
1807 | + } |
|
1808 | + $attrs = $eAttrs; |
|
1809 | + } |
|
1810 | 1810 | |
1811 | - $restrictionBase = strpos($restrictionBase,':') ? $this->expandQname($restrictionBase) : $restrictionBase; |
|
1812 | - $arrayType = strpos($arrayType,':') ? $this->expandQname($arrayType) : $arrayType; |
|
1811 | + $restrictionBase = strpos($restrictionBase,':') ? $this->expandQname($restrictionBase) : $restrictionBase; |
|
1812 | + $arrayType = strpos($arrayType,':') ? $this->expandQname($arrayType) : $arrayType; |
|
1813 | 1813 | |
1814 | - $typens = isset($this->namespaces['types']) ? $this->namespaces['types'] : $this->namespaces['tns']; |
|
1815 | - $this->schemas[$typens][0]->addComplexType($name,$typeClass,$phpType,$compositor,$restrictionBase,$elements,$attrs,$arrayType); |
|
1816 | - } |
|
1814 | + $typens = isset($this->namespaces['types']) ? $this->namespaces['types'] : $this->namespaces['tns']; |
|
1815 | + $this->schemas[$typens][0]->addComplexType($name,$typeClass,$phpType,$compositor,$restrictionBase,$elements,$attrs,$arrayType); |
|
1816 | + } |
|
1817 | 1817 | |
1818 | - /** |
|
1819 | - * adds an XML Schema simple type to the WSDL types |
|
1820 | - * |
|
1821 | - * @param string $name |
|
1822 | - * @param string $restrictionBase namespace:name (http://schemas.xmlsoap.org/soap/encoding/:Array) |
|
1823 | - * @param string $typeClass (should always be simpleType) |
|
1824 | - * @param string $phpType (should always be scalar) |
|
1825 | - * @param array $enumeration array of values |
|
1826 | - * @see nusoap_xmlschema |
|
1827 | - * @access public |
|
1828 | - */ |
|
1829 | - function addSimpleType($name, $restrictionBase='', $typeClass='simpleType', $phpType='scalar', $enumeration=array()) { |
|
1830 | - $restrictionBase = strpos($restrictionBase,':') ? $this->expandQname($restrictionBase) : $restrictionBase; |
|
1818 | + /** |
|
1819 | + * adds an XML Schema simple type to the WSDL types |
|
1820 | + * |
|
1821 | + * @param string $name |
|
1822 | + * @param string $restrictionBase namespace:name (http://schemas.xmlsoap.org/soap/encoding/:Array) |
|
1823 | + * @param string $typeClass (should always be simpleType) |
|
1824 | + * @param string $phpType (should always be scalar) |
|
1825 | + * @param array $enumeration array of values |
|
1826 | + * @see nusoap_xmlschema |
|
1827 | + * @access public |
|
1828 | + */ |
|
1829 | + function addSimpleType($name, $restrictionBase='', $typeClass='simpleType', $phpType='scalar', $enumeration=array()) { |
|
1830 | + $restrictionBase = strpos($restrictionBase,':') ? $this->expandQname($restrictionBase) : $restrictionBase; |
|
1831 | 1831 | |
1832 | - $typens = isset($this->namespaces['types']) ? $this->namespaces['types'] : $this->namespaces['tns']; |
|
1833 | - $this->schemas[$typens][0]->addSimpleType($name, $restrictionBase, $typeClass, $phpType, $enumeration); |
|
1834 | - } |
|
1832 | + $typens = isset($this->namespaces['types']) ? $this->namespaces['types'] : $this->namespaces['tns']; |
|
1833 | + $this->schemas[$typens][0]->addSimpleType($name, $restrictionBase, $typeClass, $phpType, $enumeration); |
|
1834 | + } |
|
1835 | 1835 | |
1836 | - /** |
|
1837 | - * adds an element to the WSDL types |
|
1838 | - * |
|
1839 | - * @param array $attrs attributes that must include name and type |
|
1840 | - * @see nusoap_xmlschema |
|
1841 | - * @access public |
|
1842 | - */ |
|
1843 | - function addElement($attrs) { |
|
1844 | - $typens = isset($this->namespaces['types']) ? $this->namespaces['types'] : $this->namespaces['tns']; |
|
1845 | - $this->schemas[$typens][0]->addElement($attrs); |
|
1846 | - } |
|
1836 | + /** |
|
1837 | + * adds an element to the WSDL types |
|
1838 | + * |
|
1839 | + * @param array $attrs attributes that must include name and type |
|
1840 | + * @see nusoap_xmlschema |
|
1841 | + * @access public |
|
1842 | + */ |
|
1843 | + function addElement($attrs) { |
|
1844 | + $typens = isset($this->namespaces['types']) ? $this->namespaces['types'] : $this->namespaces['tns']; |
|
1845 | + $this->schemas[$typens][0]->addElement($attrs); |
|
1846 | + } |
|
1847 | 1847 | |
1848 | - /** |
|
1849 | - * register an operation with the server |
|
1850 | - * |
|
1851 | - * @param string $name operation (method) name |
|
1852 | - * @param array $in assoc array of input values: key = param name, value = param type |
|
1853 | - * @param array $out assoc array of output values: key = param name, value = param type |
|
1854 | - * @param string $namespace optional The namespace for the operation |
|
1855 | - * @param string $soapaction optional The soapaction for the operation |
|
1856 | - * @param string $style (rpc|document) optional The style for the operation Note: when 'document' is specified, parameter and return wrappers are created for you automatically |
|
1857 | - * @param string $use (encoded|literal) optional The use for the parameters (cannot mix right now) |
|
1858 | - * @param string $documentation optional The description to include in the WSDL |
|
1859 | - * @param string $encodingStyle optional (usually 'http://schemas.xmlsoap.org/soap/encoding/' for encoded) |
|
1860 | - * @access public |
|
1861 | - */ |
|
1862 | - function addOperation($name, $in = false, $out = false, $namespace = false, $soapaction = false, $style = 'rpc', $use = 'encoded', $documentation = '', $encodingStyle = ''){ |
|
1863 | - if ($use == 'encoded' && $encodingStyle == '') { |
|
1864 | - $encodingStyle = 'http://schemas.xmlsoap.org/soap/encoding/'; |
|
1865 | - } |
|
1848 | + /** |
|
1849 | + * register an operation with the server |
|
1850 | + * |
|
1851 | + * @param string $name operation (method) name |
|
1852 | + * @param array $in assoc array of input values: key = param name, value = param type |
|
1853 | + * @param array $out assoc array of output values: key = param name, value = param type |
|
1854 | + * @param string $namespace optional The namespace for the operation |
|
1855 | + * @param string $soapaction optional The soapaction for the operation |
|
1856 | + * @param string $style (rpc|document) optional The style for the operation Note: when 'document' is specified, parameter and return wrappers are created for you automatically |
|
1857 | + * @param string $use (encoded|literal) optional The use for the parameters (cannot mix right now) |
|
1858 | + * @param string $documentation optional The description to include in the WSDL |
|
1859 | + * @param string $encodingStyle optional (usually 'http://schemas.xmlsoap.org/soap/encoding/' for encoded) |
|
1860 | + * @access public |
|
1861 | + */ |
|
1862 | + function addOperation($name, $in = false, $out = false, $namespace = false, $soapaction = false, $style = 'rpc', $use = 'encoded', $documentation = '', $encodingStyle = ''){ |
|
1863 | + if ($use == 'encoded' && $encodingStyle == '') { |
|
1864 | + $encodingStyle = 'http://schemas.xmlsoap.org/soap/encoding/'; |
|
1865 | + } |
|
1866 | 1866 | |
1867 | - if ($style == 'document') { |
|
1868 | - $elements = array(); |
|
1869 | - foreach ($in as $n => $t) { |
|
1870 | - $elements[$n] = array('name' => $n, 'type' => $t, 'form' => 'unqualified'); |
|
1871 | - } |
|
1872 | - $this->addComplexType($name . 'RequestType', 'complexType', 'struct', 'all', '', $elements); |
|
1873 | - $this->addElement(array('name' => $name, 'type' => $name . 'RequestType')); |
|
1874 | - $in = array('parameters' => 'tns:' . $name . '^'); |
|
1867 | + if ($style == 'document') { |
|
1868 | + $elements = array(); |
|
1869 | + foreach ($in as $n => $t) { |
|
1870 | + $elements[$n] = array('name' => $n, 'type' => $t, 'form' => 'unqualified'); |
|
1871 | + } |
|
1872 | + $this->addComplexType($name . 'RequestType', 'complexType', 'struct', 'all', '', $elements); |
|
1873 | + $this->addElement(array('name' => $name, 'type' => $name . 'RequestType')); |
|
1874 | + $in = array('parameters' => 'tns:' . $name . '^'); |
|
1875 | 1875 | |
1876 | - $elements = array(); |
|
1877 | - foreach ($out as $n => $t) { |
|
1878 | - $elements[$n] = array('name' => $n, 'type' => $t, 'form' => 'unqualified'); |
|
1879 | - } |
|
1880 | - $this->addComplexType($name . 'ResponseType', 'complexType', 'struct', 'all', '', $elements); |
|
1881 | - $this->addElement(array('name' => $name . 'Response', 'type' => $name . 'ResponseType', 'form' => 'qualified')); |
|
1882 | - $out = array('parameters' => 'tns:' . $name . 'Response' . '^'); |
|
1883 | - } |
|
1876 | + $elements = array(); |
|
1877 | + foreach ($out as $n => $t) { |
|
1878 | + $elements[$n] = array('name' => $n, 'type' => $t, 'form' => 'unqualified'); |
|
1879 | + } |
|
1880 | + $this->addComplexType($name . 'ResponseType', 'complexType', 'struct', 'all', '', $elements); |
|
1881 | + $this->addElement(array('name' => $name . 'Response', 'type' => $name . 'ResponseType', 'form' => 'qualified')); |
|
1882 | + $out = array('parameters' => 'tns:' . $name . 'Response' . '^'); |
|
1883 | + } |
|
1884 | 1884 | |
1885 | - // get binding |
|
1886 | - $this->bindings[ $this->serviceName . 'Binding' ]['operations'][$name] = |
|
1887 | - array( |
|
1888 | - 'name' => $name, |
|
1889 | - 'binding' => $this->serviceName . 'Binding', |
|
1890 | - 'endpoint' => $this->endpoint, |
|
1891 | - 'soapAction' => $soapaction, |
|
1892 | - 'style' => $style, |
|
1893 | - 'input' => array( |
|
1894 | - 'use' => $use, |
|
1895 | - 'namespace' => $namespace, |
|
1896 | - 'encodingStyle' => $encodingStyle, |
|
1897 | - 'message' => $name . 'Request', |
|
1898 | - 'parts' => $in), |
|
1899 | - 'output' => array( |
|
1900 | - 'use' => $use, |
|
1901 | - 'namespace' => $namespace, |
|
1902 | - 'encodingStyle' => $encodingStyle, |
|
1903 | - 'message' => $name . 'Response', |
|
1904 | - 'parts' => $out), |
|
1905 | - 'namespace' => $namespace, |
|
1906 | - 'transport' => 'http://schemas.xmlsoap.org/soap/http', |
|
1907 | - 'documentation' => $documentation); |
|
1908 | - // add portTypes |
|
1909 | - // add messages |
|
1910 | - if($in) |
|
1911 | - { |
|
1912 | - foreach($in as $pName => $pType) |
|
1913 | - { |
|
1914 | - if(strpos($pType,':')) { |
|
1915 | - $pType = $this->getNamespaceFromPrefix($this->getPrefix($pType)).":".$this->getLocalPart($pType); |
|
1916 | - } |
|
1917 | - $this->messages[$name.'Request'][$pName] = $pType; |
|
1918 | - } |
|
1919 | - } else { |
|
1885 | + // get binding |
|
1886 | + $this->bindings[ $this->serviceName . 'Binding' ]['operations'][$name] = |
|
1887 | + array( |
|
1888 | + 'name' => $name, |
|
1889 | + 'binding' => $this->serviceName . 'Binding', |
|
1890 | + 'endpoint' => $this->endpoint, |
|
1891 | + 'soapAction' => $soapaction, |
|
1892 | + 'style' => $style, |
|
1893 | + 'input' => array( |
|
1894 | + 'use' => $use, |
|
1895 | + 'namespace' => $namespace, |
|
1896 | + 'encodingStyle' => $encodingStyle, |
|
1897 | + 'message' => $name . 'Request', |
|
1898 | + 'parts' => $in), |
|
1899 | + 'output' => array( |
|
1900 | + 'use' => $use, |
|
1901 | + 'namespace' => $namespace, |
|
1902 | + 'encodingStyle' => $encodingStyle, |
|
1903 | + 'message' => $name . 'Response', |
|
1904 | + 'parts' => $out), |
|
1905 | + 'namespace' => $namespace, |
|
1906 | + 'transport' => 'http://schemas.xmlsoap.org/soap/http', |
|
1907 | + 'documentation' => $documentation); |
|
1908 | + // add portTypes |
|
1909 | + // add messages |
|
1910 | + if($in) |
|
1911 | + { |
|
1912 | + foreach($in as $pName => $pType) |
|
1913 | + { |
|
1914 | + if(strpos($pType,':')) { |
|
1915 | + $pType = $this->getNamespaceFromPrefix($this->getPrefix($pType)).":".$this->getLocalPart($pType); |
|
1916 | + } |
|
1917 | + $this->messages[$name.'Request'][$pName] = $pType; |
|
1918 | + } |
|
1919 | + } else { |
|
1920 | 1920 | $this->messages[$name.'Request']= '0'; |
1921 | 1921 | } |
1922 | - if($out) |
|
1923 | - { |
|
1924 | - foreach($out as $pName => $pType) |
|
1925 | - { |
|
1926 | - if(strpos($pType,':')) { |
|
1927 | - $pType = $this->getNamespaceFromPrefix($this->getPrefix($pType)).":".$this->getLocalPart($pType); |
|
1928 | - } |
|
1929 | - $this->messages[$name.'Response'][$pName] = $pType; |
|
1930 | - } |
|
1931 | - } else { |
|
1922 | + if($out) |
|
1923 | + { |
|
1924 | + foreach($out as $pName => $pType) |
|
1925 | + { |
|
1926 | + if(strpos($pType,':')) { |
|
1927 | + $pType = $this->getNamespaceFromPrefix($this->getPrefix($pType)).":".$this->getLocalPart($pType); |
|
1928 | + } |
|
1929 | + $this->messages[$name.'Response'][$pName] = $pType; |
|
1930 | + } |
|
1931 | + } else { |
|
1932 | 1932 | $this->messages[$name.'Response']= '0'; |
1933 | 1933 | } |
1934 | - return true; |
|
1935 | - } |
|
1934 | + return true; |
|
1935 | + } |
|
1936 | 1936 | } |
1937 | 1937 | |
1938 | 1938 | ?> |
@@ -47,13 +47,13 @@ discard block |
||
47 | 47 | var $proxypassword = ''; |
48 | 48 | var $timeout = 0; |
49 | 49 | var $response_timeout = 30; |
50 | - var $curl_options = array(); // User-specified cURL options |
|
51 | - var $use_curl = false; // whether to always try to use cURL |
|
50 | + var $curl_options = array(); // User-specified cURL options |
|
51 | + var $use_curl = false; // whether to always try to use cURL |
|
52 | 52 | // for HTTP authentication |
53 | - var $username = ''; // Username for HTTP authentication |
|
54 | - var $password = ''; // Password for HTTP authentication |
|
55 | - var $authtype = ''; // Type of HTTP authentication |
|
56 | - var $certRequest = array(); // Certificate for HTTP SSL authentication |
|
53 | + var $username = ''; // Username for HTTP authentication |
|
54 | + var $password = ''; // Password for HTTP authentication |
|
55 | + var $authtype = ''; // Type of HTTP authentication |
|
56 | + var $certRequest = array(); // Certificate for HTTP SSL authentication |
|
57 | 57 | |
58 | 58 | /** |
59 | 59 | * constructor |
@@ -69,7 +69,7 @@ discard block |
||
69 | 69 | * @param boolean $use_curl try to use cURL |
70 | 70 | * @access public |
71 | 71 | */ |
72 | - function wsdl($wsdl = '',$proxyhost=false,$proxyport=false,$proxyusername=false,$proxypassword=false,$timeout=0,$response_timeout=30,$curl_options=null,$use_curl=false){ |
|
72 | + function wsdl($wsdl = '', $proxyhost = false, $proxyport = false, $proxyusername = false, $proxypassword = false, $timeout = 0, $response_timeout = 30, $curl_options = null, $use_curl = false) { |
|
73 | 73 | parent::nusoap_base(); |
74 | 74 | $this->debug("ctor wsdl=$wsdl timeout=$timeout response_timeout=$response_timeout"); |
75 | 75 | $this->proxyhost = $proxyhost; |
@@ -105,19 +105,19 @@ discard block |
||
105 | 105 | // Schema imports |
106 | 106 | foreach ($this->schemas as $ns => $list) { |
107 | 107 | foreach ($list as $xs) { |
108 | - $wsdlparts = parse_url($this->wsdl); // this is bogusly simple! |
|
108 | + $wsdlparts = parse_url($this->wsdl); // this is bogusly simple! |
|
109 | 109 | foreach ($xs->imports as $ns2 => $list2) { |
110 | 110 | for ($ii = 0; $ii < count($list2); $ii++) { |
111 | - if (! $list2[$ii]['loaded']) { |
|
111 | + if (!$list2[$ii]['loaded']) { |
|
112 | 112 | $this->schemas[$ns]->imports[$ns2][$ii]['loaded'] = true; |
113 | 113 | $url = $list2[$ii]['location']; |
114 | 114 | if ($url != '') { |
115 | 115 | $urlparts = parse_url($url); |
116 | 116 | if (!isset($urlparts['host'])) { |
117 | - $url = $wsdlparts['scheme'] . '://' . $wsdlparts['host'] . (isset($wsdlparts['port']) ? ':' .$wsdlparts['port'] : '') . |
|
118 | - substr($wsdlparts['path'],0,strrpos($wsdlparts['path'],'/') + 1) .$urlparts['path']; |
|
117 | + $url = $wsdlparts['scheme'].'://'.$wsdlparts['host'].(isset($wsdlparts['port']) ? ':'.$wsdlparts['port'] : ''). |
|
118 | + substr($wsdlparts['path'], 0, strrpos($wsdlparts['path'], '/') + 1).$urlparts['path']; |
|
119 | 119 | } |
120 | - if (! in_array($url, $imported_urls)) { |
|
120 | + if (!in_array($url, $imported_urls)) { |
|
121 | 121 | $this->parseWSDL($url); |
122 | 122 | $imported++; |
123 | 123 | $imported_urls[] = $url; |
@@ -131,19 +131,19 @@ discard block |
||
131 | 131 | } |
132 | 132 | } |
133 | 133 | // WSDL imports |
134 | - $wsdlparts = parse_url($this->wsdl); // this is bogusly simple! |
|
134 | + $wsdlparts = parse_url($this->wsdl); // this is bogusly simple! |
|
135 | 135 | foreach ($this->import as $ns => $list) { |
136 | 136 | for ($ii = 0; $ii < count($list); $ii++) { |
137 | - if (! $list[$ii]['loaded']) { |
|
137 | + if (!$list[$ii]['loaded']) { |
|
138 | 138 | $this->import[$ns][$ii]['loaded'] = true; |
139 | 139 | $url = $list[$ii]['location']; |
140 | 140 | if ($url != '') { |
141 | 141 | $urlparts = parse_url($url); |
142 | 142 | if (!isset($urlparts['host'])) { |
143 | - $url = $wsdlparts['scheme'] . '://' . $wsdlparts['host'] . (isset($wsdlparts['port']) ? ':' . $wsdlparts['port'] : '') . |
|
144 | - substr($wsdlparts['path'],0,strrpos($wsdlparts['path'],'/') + 1) .$urlparts['path']; |
|
143 | + $url = $wsdlparts['scheme'].'://'.$wsdlparts['host'].(isset($wsdlparts['port']) ? ':'.$wsdlparts['port'] : ''). |
|
144 | + substr($wsdlparts['path'], 0, strrpos($wsdlparts['path'], '/') + 1).$urlparts['path']; |
|
145 | 145 | } |
146 | - if (! in_array($url, $imported_urls)) { |
|
146 | + if (!in_array($url, $imported_urls)) { |
|
147 | 147 | $this->parseWSDL($url); |
148 | 148 | $imported++; |
149 | 149 | $imported_urls[] = $url; |
@@ -156,30 +156,28 @@ discard block |
||
156 | 156 | } |
157 | 157 | } |
158 | 158 | // add new data to operation data |
159 | - foreach($this->bindings as $binding => $bindingData) { |
|
159 | + foreach ($this->bindings as $binding => $bindingData) { |
|
160 | 160 | if (isset($bindingData['operations']) && is_array($bindingData['operations'])) { |
161 | - foreach($bindingData['operations'] as $operation => $data) { |
|
162 | - $this->debug('post-parse data gathering for ' . $operation); |
|
161 | + foreach ($bindingData['operations'] as $operation => $data) { |
|
162 | + $this->debug('post-parse data gathering for '.$operation); |
|
163 | 163 | $this->bindings[$binding]['operations'][$operation]['input'] = |
164 | 164 | isset($this->bindings[$binding]['operations'][$operation]['input']) ? |
165 | - array_merge($this->bindings[$binding]['operations'][$operation]['input'], $this->portTypes[ $bindingData['portType'] ][$operation]['input']) : |
|
166 | - $this->portTypes[ $bindingData['portType'] ][$operation]['input']; |
|
165 | + array_merge($this->bindings[$binding]['operations'][$operation]['input'], $this->portTypes[$bindingData['portType']][$operation]['input']) : $this->portTypes[$bindingData['portType']][$operation]['input']; |
|
167 | 166 | $this->bindings[$binding]['operations'][$operation]['output'] = |
168 | 167 | isset($this->bindings[$binding]['operations'][$operation]['output']) ? |
169 | - array_merge($this->bindings[$binding]['operations'][$operation]['output'], $this->portTypes[ $bindingData['portType'] ][$operation]['output']) : |
|
170 | - $this->portTypes[ $bindingData['portType'] ][$operation]['output']; |
|
171 | - if(isset($this->messages[ $this->bindings[$binding]['operations'][$operation]['input']['message'] ])){ |
|
172 | - $this->bindings[$binding]['operations'][$operation]['input']['parts'] = $this->messages[ $this->bindings[$binding]['operations'][$operation]['input']['message'] ]; |
|
168 | + array_merge($this->bindings[$binding]['operations'][$operation]['output'], $this->portTypes[$bindingData['portType']][$operation]['output']) : $this->portTypes[$bindingData['portType']][$operation]['output']; |
|
169 | + if (isset($this->messages[$this->bindings[$binding]['operations'][$operation]['input']['message']])) { |
|
170 | + $this->bindings[$binding]['operations'][$operation]['input']['parts'] = $this->messages[$this->bindings[$binding]['operations'][$operation]['input']['message']]; |
|
173 | 171 | } |
174 | - if(isset($this->messages[ $this->bindings[$binding]['operations'][$operation]['output']['message'] ])){ |
|
175 | - $this->bindings[$binding]['operations'][$operation]['output']['parts'] = $this->messages[ $this->bindings[$binding]['operations'][$operation]['output']['message'] ]; |
|
172 | + if (isset($this->messages[$this->bindings[$binding]['operations'][$operation]['output']['message']])) { |
|
173 | + $this->bindings[$binding]['operations'][$operation]['output']['parts'] = $this->messages[$this->bindings[$binding]['operations'][$operation]['output']['message']]; |
|
176 | 174 | } |
177 | 175 | // Set operation style if necessary, but do not override one already provided |
178 | 176 | if (isset($bindingData['style']) && !isset($this->bindings[$binding]['operations'][$operation]['style'])) { |
179 | 177 | $this->bindings[$binding]['operations'][$operation]['style'] = $bindingData['style']; |
180 | 178 | } |
181 | 179 | $this->bindings[$binding]['operations'][$operation]['transport'] = isset($bindingData['transport']) ? $bindingData['transport'] : ''; |
182 | - $this->bindings[$binding]['operations'][$operation]['documentation'] = isset($this->portTypes[ $bindingData['portType'] ][$operation]['documentation']) ? $this->portTypes[ $bindingData['portType'] ][$operation]['documentation'] : ''; |
|
180 | + $this->bindings[$binding]['operations'][$operation]['documentation'] = isset($this->portTypes[$bindingData['portType']][$operation]['documentation']) ? $this->portTypes[$bindingData['portType']][$operation]['documentation'] : ''; |
|
183 | 181 | $this->bindings[$binding]['operations'][$operation]['endpoint'] = isset($bindingData['endpoint']) ? $bindingData['endpoint'] : ''; |
184 | 182 | } |
185 | 183 | } |
@@ -205,13 +203,13 @@ discard block |
||
205 | 203 | $wsdl_props = parse_url($wsdl); |
206 | 204 | |
207 | 205 | if (isset($wsdl_props['scheme']) && ($wsdl_props['scheme'] == 'http' || $wsdl_props['scheme'] == 'https')) { |
208 | - $this->debug('getting WSDL http(s) URL ' . $wsdl); |
|
206 | + $this->debug('getting WSDL http(s) URL '.$wsdl); |
|
209 | 207 | // get wsdl |
210 | 208 | $tr = new soap_transport_http($wsdl, $this->curl_options, $this->use_curl); |
211 | 209 | $tr->request_method = 'GET'; |
212 | 210 | $tr->useSOAPAction = false; |
213 | - if($this->proxyhost && $this->proxyport){ |
|
214 | - $tr->setProxy($this->proxyhost,$this->proxyport,$this->proxyusername,$this->proxypassword); |
|
211 | + if ($this->proxyhost && $this->proxyport) { |
|
212 | + $tr->setProxy($this->proxyhost, $this->proxyport, $this->proxyusername, $this->proxypassword); |
|
215 | 213 | } |
216 | 214 | if ($this->authtype != '') { |
217 | 215 | $tr->setCredentials($this->username, $this->password, $this->authtype, array(), $this->certRequest); |
@@ -222,8 +220,8 @@ discard block |
||
222 | 220 | //$this->debug("WSDL response\n" . $tr->incoming_payload); |
223 | 221 | $this->appendDebug($tr->getDebug()); |
224 | 222 | // catch errors |
225 | - if($err = $tr->getError() ){ |
|
226 | - $errstr = 'Getting ' . $wsdl . ' - HTTP ERROR: '.$err; |
|
223 | + if ($err = $tr->getError()) { |
|
224 | + $errstr = 'Getting '.$wsdl.' - HTTP ERROR: '.$err; |
|
227 | 225 | $this->debug($errstr); |
228 | 226 | $this->setError($errstr); |
229 | 227 | unset($tr); |
@@ -234,11 +232,11 @@ discard block |
||
234 | 232 | } else { |
235 | 233 | // $wsdl is not http(s), so treat it as a file URL or plain file path |
236 | 234 | if (isset($wsdl_props['scheme']) && ($wsdl_props['scheme'] == 'file') && isset($wsdl_props['path'])) { |
237 | - $path = isset($wsdl_props['host']) ? ($wsdl_props['host'] . ':' . $wsdl_props['path']) : $wsdl_props['path']; |
|
235 | + $path = isset($wsdl_props['host']) ? ($wsdl_props['host'].':'.$wsdl_props['path']) : $wsdl_props['path']; |
|
238 | 236 | } else { |
239 | 237 | $path = $wsdl; |
240 | 238 | } |
241 | - $this->debug('getting WSDL file ' . $path); |
|
239 | + $this->debug('getting WSDL file '.$path); |
|
242 | 240 | if ($fp = @fopen($path, 'r')) { |
243 | 241 | $wsdl_string = ''; |
244 | 242 | while ($data = fread($fp, 32768)) { |
@@ -274,7 +272,7 @@ discard block |
||
274 | 272 | xml_error_string(xml_get_error_code($this->parser)) |
275 | 273 | ); |
276 | 274 | $this->debug($errstr); |
277 | - $this->debug("XML payload:\n" . $wsdl_string); |
|
275 | + $this->debug("XML payload:\n".$wsdl_string); |
|
278 | 276 | $this->setError($errstr); |
279 | 277 | return false; |
280 | 278 | } |
@@ -282,7 +280,7 @@ discard block |
||
282 | 280 | xml_parser_free($this->parser); |
283 | 281 | $this->debug('Parsing WSDL done'); |
284 | 282 | // catch wsdl parse errors |
285 | - if($this->getError()){ |
|
283 | + if ($this->getError()) { |
|
286 | 284 | return false; |
287 | 285 | } |
288 | 286 | return true; |
@@ -320,21 +318,21 @@ discard block |
||
320 | 318 | // process attributes |
321 | 319 | if (count($attrs) > 0) { |
322 | 320 | // register namespace declarations |
323 | - foreach($attrs as $k => $v) { |
|
324 | - if (preg_match('/^xmlns/',$k)) { |
|
321 | + foreach ($attrs as $k => $v) { |
|
322 | + if (preg_match('/^xmlns/', $k)) { |
|
325 | 323 | if ($ns_prefix = substr(strrchr($k, ':'), 1)) { |
326 | 324 | $this->namespaces[$ns_prefix] = $v; |
327 | 325 | } else { |
328 | - $this->namespaces['ns' . (count($this->namespaces) + 1)] = $v; |
|
326 | + $this->namespaces['ns'.(count($this->namespaces) + 1)] = $v; |
|
329 | 327 | } |
330 | 328 | if ($v == 'http://www.w3.org/2001/XMLSchema' || $v == 'http://www.w3.org/1999/XMLSchema' || $v == 'http://www.w3.org/2000/10/XMLSchema') { |
331 | 329 | $this->XMLSchemaVersion = $v; |
332 | - $this->namespaces['xsi'] = $v . '-instance'; |
|
330 | + $this->namespaces['xsi'] = $v.'-instance'; |
|
333 | 331 | } |
334 | 332 | } |
335 | 333 | } |
336 | 334 | // expand each attribute prefix to its namespace |
337 | - foreach($attrs as $k => $v) { |
|
335 | + foreach ($attrs as $k => $v) { |
|
338 | 336 | $k = strpos($k, ':') ? $this->expandQname($k) : $k; |
339 | 337 | if ($k != 'location' && $k != 'soapAction' && $k != 'namespace') { |
340 | 338 | $v = strpos($v, ':') ? $this->expandQname($v) : $v; |
@@ -360,12 +358,12 @@ discard block |
||
360 | 358 | case 'message': |
361 | 359 | if ($name == 'part') { |
362 | 360 | if (isset($attrs['type'])) { |
363 | - $this->debug("msg " . $this->currentMessage . ": found part (with type) $attrs[name]: " . implode(',', $attrs)); |
|
361 | + $this->debug("msg ".$this->currentMessage.": found part (with type) $attrs[name]: ".implode(',', $attrs)); |
|
364 | 362 | $this->messages[$this->currentMessage][$attrs['name']] = $attrs['type']; |
365 | 363 | } |
366 | 364 | if (isset($attrs['element'])) { |
367 | - $this->debug("msg " . $this->currentMessage . ": found part (with element) $attrs[name]: " . implode(',', $attrs)); |
|
368 | - $this->messages[$this->currentMessage][$attrs['name']] = $attrs['element'] . '^'; |
|
365 | + $this->debug("msg ".$this->currentMessage.": found part (with element) $attrs[name]: ".implode(',', $attrs)); |
|
366 | + $this->messages[$this->currentMessage][$attrs['name']] = $attrs['element'].'^'; |
|
369 | 367 | } |
370 | 368 | } |
371 | 369 | break; |
@@ -434,15 +432,15 @@ discard block |
||
434 | 432 | switch ($name) { |
435 | 433 | case 'port': |
436 | 434 | $this->currentPort = $attrs['name']; |
437 | - $this->debug('current port: ' . $this->currentPort); |
|
435 | + $this->debug('current port: '.$this->currentPort); |
|
438 | 436 | $this->ports[$this->currentPort]['binding'] = $this->getLocalPart($attrs['binding']); |
439 | 437 | |
440 | 438 | break; |
441 | 439 | case 'address': |
442 | 440 | $this->ports[$this->currentPort]['location'] = $attrs['location']; |
443 | 441 | $this->ports[$this->currentPort]['bindingType'] = $namespace; |
444 | - $this->bindings[ $this->ports[$this->currentPort]['binding'] ]['bindingType'] = $namespace; |
|
445 | - $this->bindings[ $this->ports[$this->currentPort]['binding'] ]['endpoint'] = $attrs['location']; |
|
442 | + $this->bindings[$this->ports[$this->currentPort]['binding']]['bindingType'] = $namespace; |
|
443 | + $this->bindings[$this->ports[$this->currentPort]['binding']]['endpoint'] = $attrs['location']; |
|
446 | 444 | break; |
447 | 445 | } |
448 | 446 | break; |
@@ -452,13 +450,13 @@ discard block |
||
452 | 450 | case 'import': |
453 | 451 | if (isset($attrs['location'])) { |
454 | 452 | $this->import[$attrs['namespace']][] = array('location' => $attrs['location'], 'loaded' => false); |
455 | - $this->debug('parsing import ' . $attrs['namespace']. ' - ' . $attrs['location'] . ' (' . count($this->import[$attrs['namespace']]).')'); |
|
453 | + $this->debug('parsing import '.$attrs['namespace'].' - '.$attrs['location'].' ('.count($this->import[$attrs['namespace']]).')'); |
|
456 | 454 | } else { |
457 | 455 | $this->import[$attrs['namespace']][] = array('location' => '', 'loaded' => true); |
458 | - if (! $this->getPrefixFromNamespace($attrs['namespace'])) { |
|
459 | - $this->namespaces['ns'.(count($this->namespaces)+1)] = $attrs['namespace']; |
|
456 | + if (!$this->getPrefixFromNamespace($attrs['namespace'])) { |
|
457 | + $this->namespaces['ns'.(count($this->namespaces) + 1)] = $attrs['namespace']; |
|
460 | 458 | } |
461 | - $this->debug('parsing import ' . $attrs['namespace']. ' - [no location] (' . count($this->import[$attrs['namespace']]).')'); |
|
459 | + $this->debug('parsing import '.$attrs['namespace'].' - [no location] ('.count($this->import[$attrs['namespace']]).')'); |
|
462 | 460 | } |
463 | 461 | break; |
464 | 462 | //wait for schema |
@@ -485,13 +483,13 @@ discard block |
||
485 | 483 | } |
486 | 484 | $this->status = 'binding'; |
487 | 485 | $this->bindings[$this->currentBinding]['portType'] = $this->getLocalPart($attrs['type']); |
488 | - $this->debug("current binding: $this->currentBinding of portType: " . $attrs['type']); |
|
486 | + $this->debug("current binding: $this->currentBinding of portType: ".$attrs['type']); |
|
489 | 487 | } |
490 | 488 | break; |
491 | 489 | case 'service': |
492 | 490 | $this->serviceName = $attrs['name']; |
493 | 491 | $this->status = 'service'; |
494 | - $this->debug('current service: ' . $this->serviceName); |
|
492 | + $this->debug('current service: '.$this->serviceName); |
|
495 | 493 | break; |
496 | 494 | case 'definitions': |
497 | 495 | foreach ($attrs as $name => $value) { |
@@ -509,7 +507,7 @@ discard block |
||
509 | 507 | * @param string $name element name |
510 | 508 | * @access private |
511 | 509 | */ |
512 | - function end_element($parser, $name){ |
|
510 | + function end_element($parser, $name) { |
|
513 | 511 | // unset schema status |
514 | 512 | if (/*preg_match('/types$/', $name) ||*/ preg_match('/schema$/', $name)) { |
515 | 513 | $this->status = ""; |
@@ -594,8 +592,8 @@ discard block |
||
594 | 592 | } |
595 | 593 | $this->debug("getOperations for port '$portName' bindingType $bindingType"); |
596 | 594 | // loop thru ports |
597 | - foreach($this->ports as $port => $portData) { |
|
598 | - $this->debug("getOperations checking port $port bindingType " . $portData['bindingType']); |
|
595 | + foreach ($this->ports as $port => $portData) { |
|
596 | + $this->debug("getOperations checking port $port bindingType ".$portData['bindingType']); |
|
599 | 597 | if ($portName == '' || $port == $portName) { |
600 | 598 | // binding type of port matches parameter |
601 | 599 | if ($portData['bindingType'] == $bindingType) { |
@@ -603,8 +601,8 @@ discard block |
||
603 | 601 | //$this->debug("port data: " . $this->varDump($portData)); |
604 | 602 | //$this->debug("bindings: " . $this->varDump($this->bindings[ $portData['binding'] ])); |
605 | 603 | // merge bindings |
606 | - if (isset($this->bindings[ $portData['binding'] ]['operations'])) { |
|
607 | - $ops = array_merge ($ops, $this->bindings[ $portData['binding'] ]['operations']); |
|
604 | + if (isset($this->bindings[$portData['binding']]['operations'])) { |
|
605 | + $ops = array_merge($ops, $this->bindings[$portData['binding']]['operations']); |
|
608 | 606 | } |
609 | 607 | } |
610 | 608 | } |
@@ -631,15 +629,15 @@ discard block |
||
631 | 629 | $bindingType = 'http://schemas.xmlsoap.org/wsdl/soap12/'; |
632 | 630 | } |
633 | 631 | // loop thru ports |
634 | - foreach($this->ports as $port => $portData) { |
|
632 | + foreach ($this->ports as $port => $portData) { |
|
635 | 633 | // binding type of port matches parameter |
636 | 634 | if ($portData['bindingType'] == $bindingType) { |
637 | 635 | // get binding |
638 | 636 | //foreach($this->bindings[ $portData['binding'] ]['operations'] as $bOperation => $opData) { |
639 | - foreach(array_keys($this->bindings[ $portData['binding'] ]['operations']) as $bOperation) { |
|
637 | + foreach (array_keys($this->bindings[$portData['binding']]['operations']) as $bOperation) { |
|
640 | 638 | // note that we could/should also check the namespace here |
641 | 639 | if ($operation == $bOperation) { |
642 | - $opData = $this->bindings[ $portData['binding'] ]['operations'][$operation]; |
|
640 | + $opData = $this->bindings[$portData['binding']]['operations'][$operation]; |
|
643 | 641 | return $opData; |
644 | 642 | } |
645 | 643 | } |
@@ -662,11 +660,11 @@ discard block |
||
662 | 660 | $bindingType = 'http://schemas.xmlsoap.org/wsdl/soap12/'; |
663 | 661 | } |
664 | 662 | // loop thru ports |
665 | - foreach($this->ports as $port => $portData) { |
|
663 | + foreach ($this->ports as $port => $portData) { |
|
666 | 664 | // binding type of port matches parameter |
667 | 665 | if ($portData['bindingType'] == $bindingType) { |
668 | 666 | // loop through operations for the binding |
669 | - foreach ($this->bindings[ $portData['binding'] ]['operations'] as $bOperation => $opData) { |
|
667 | + foreach ($this->bindings[$portData['binding']]['operations'] as $bOperation => $opData) { |
|
670 | 668 | if ($opData['soapAction'] == $soapAction) { |
671 | 669 | return $opData; |
672 | 670 | } |
@@ -695,7 +693,7 @@ discard block |
||
695 | 693 | */ |
696 | 694 | function getTypeDef($type, $ns) { |
697 | 695 | $this->debug("in getTypeDef: type=$type, ns=$ns"); |
698 | - if ((! $ns) && isset($this->namespaces['tns'])) { |
|
696 | + if ((!$ns) && isset($this->namespaces['tns'])) { |
|
699 | 697 | $ns = $this->namespaces['tns']; |
700 | 698 | $this->debug("in getTypeDef: type namespace forced to $ns"); |
701 | 699 | } |
@@ -753,7 +751,7 @@ discard block |
||
753 | 751 | * |
754 | 752 | * @access private |
755 | 753 | */ |
756 | - function webDescription(){ |
|
754 | + function webDescription() { |
|
757 | 755 | global $HTTP_SERVER_VARS; |
758 | 756 | |
759 | 757 | if (isset($_SERVER)) { |
@@ -847,19 +845,19 @@ discard block |
||
847 | 845 | <p>View the <a href="'.$PHP_SELF.'?wsdl">WSDL</a> for the service. |
848 | 846 | Click on an operation name to view it's details.</p> |
849 | 847 | <ul>'; |
850 | - foreach($this->getOperations() as $op => $data){ |
|
848 | + foreach ($this->getOperations() as $op => $data) { |
|
851 | 849 | $b .= "<li><a href='#' onclick=\"popout();popup('$op')\">$op</a></li>"; |
852 | 850 | // create hidden div |
853 | 851 | $b .= "<div id='$op' class='hidden'> |
854 | 852 | <a href='#' onclick='popout()'><font color='#ffffff'>Close</font></a><br><br>"; |
855 | - foreach($data as $donnie => $marie){ // loop through opdata |
|
856 | - if($donnie == 'input' || $donnie == 'output'){ // show input/output data |
|
853 | + foreach ($data as $donnie => $marie) { // loop through opdata |
|
854 | + if ($donnie == 'input' || $donnie == 'output') { // show input/output data |
|
857 | 855 | $b .= "<font color='white'>".ucfirst($donnie).':</font><br>'; |
858 | - foreach($marie as $captain => $tenille){ // loop through data |
|
859 | - if($captain == 'parts'){ // loop thru parts |
|
856 | + foreach ($marie as $captain => $tenille) { // loop through data |
|
857 | + if ($captain == 'parts') { // loop thru parts |
|
860 | 858 | $b .= " $captain:<br>"; |
861 | 859 | //if(is_array($tenille)){ |
862 | - foreach($tenille as $joanie => $chachi){ |
|
860 | + foreach ($tenille as $joanie => $chachi) { |
|
863 | 861 | $b .= " $joanie: $chachi<br>"; |
864 | 862 | } |
865 | 863 | //} |
@@ -891,31 +889,31 @@ discard block |
||
891 | 889 | { |
892 | 890 | $xml = '<?xml version="1.0" encoding="ISO-8859-1"?>'; |
893 | 891 | $xml .= "\n<definitions"; |
894 | - foreach($this->namespaces as $k => $v) { |
|
892 | + foreach ($this->namespaces as $k => $v) { |
|
895 | 893 | $xml .= " xmlns:$k=\"$v\""; |
896 | 894 | } |
897 | 895 | // 10.9.02 - add poulter fix for wsdl and tns declarations |
898 | 896 | if (isset($this->namespaces['wsdl'])) { |
899 | - $xml .= " xmlns=\"" . $this->namespaces['wsdl'] . "\""; |
|
897 | + $xml .= " xmlns=\"".$this->namespaces['wsdl']."\""; |
|
900 | 898 | } |
901 | 899 | if (isset($this->namespaces['tns'])) { |
902 | - $xml .= " targetNamespace=\"" . $this->namespaces['tns'] . "\""; |
|
900 | + $xml .= " targetNamespace=\"".$this->namespaces['tns']."\""; |
|
903 | 901 | } |
904 | 902 | $xml .= '>'; |
905 | 903 | // imports |
906 | 904 | if (sizeof($this->import) > 0) { |
907 | - foreach($this->import as $ns => $list) { |
|
905 | + foreach ($this->import as $ns => $list) { |
|
908 | 906 | foreach ($list as $ii) { |
909 | 907 | if ($ii['location'] != '') { |
910 | - $xml .= '<import location="' . $ii['location'] . '" namespace="' . $ns . '" />'; |
|
908 | + $xml .= '<import location="'.$ii['location'].'" namespace="'.$ns.'" />'; |
|
911 | 909 | } else { |
912 | - $xml .= '<import namespace="' . $ns . '" />'; |
|
910 | + $xml .= '<import namespace="'.$ns.'" />'; |
|
913 | 911 | } |
914 | 912 | } |
915 | 913 | } |
916 | 914 | } |
917 | 915 | // types |
918 | - if (count($this->schemas)>=1) { |
|
916 | + if (count($this->schemas) >= 1) { |
|
919 | 917 | $xml .= "\n<types>\n"; |
920 | 918 | foreach ($this->schemas as $ns => $list) { |
921 | 919 | foreach ($list as $xs) { |
@@ -926,10 +924,10 @@ discard block |
||
926 | 924 | } |
927 | 925 | // messages |
928 | 926 | if (count($this->messages) >= 1) { |
929 | - foreach($this->messages as $msgName => $msgParts) { |
|
930 | - $xml .= "\n<message name=\"" . $msgName . '">'; |
|
931 | - if(is_array($msgParts)){ |
|
932 | - foreach($msgParts as $partName => $partType) { |
|
927 | + foreach ($this->messages as $msgName => $msgParts) { |
|
928 | + $xml .= "\n<message name=\"".$msgName.'">'; |
|
929 | + if (is_array($msgParts)) { |
|
930 | + foreach ($msgParts as $partName => $partType) { |
|
933 | 931 | // print 'serializing '.$partType.', sv: '.$this->XMLSchemaVersion.'<br>'; |
934 | 932 | if (strpos($partType, ':')) { |
935 | 933 | $typePrefix = $this->getPrefixFromNamespace($this->getPrefix($partType)); |
@@ -937,7 +935,7 @@ discard block |
||
937 | 935 | // print 'checking typemap: '.$this->XMLSchemaVersion.'<br>'; |
938 | 936 | $typePrefix = 'xsd'; |
939 | 937 | } else { |
940 | - foreach($this->typemap as $ns => $types) { |
|
938 | + foreach ($this->typemap as $ns => $types) { |
|
941 | 939 | if (isset($types[$partType])) { |
942 | 940 | $typePrefix = $this->getPrefixFromNamespace($ns); |
943 | 941 | } |
@@ -957,7 +955,7 @@ discard block |
||
957 | 955 | } else { |
958 | 956 | $elementortype = 'type'; |
959 | 957 | } |
960 | - $xml .= "\n" . ' <part name="' . $partName . '" ' . $elementortype . '="' . $typePrefix . ':' . $localPart . '" />'; |
|
958 | + $xml .= "\n".' <part name="'.$partName.'" '.$elementortype.'="'.$typePrefix.':'.$localPart.'" />'; |
|
961 | 959 | } |
962 | 960 | } |
963 | 961 | $xml .= '</message>'; |
@@ -967,54 +965,54 @@ discard block |
||
967 | 965 | if (count($this->bindings) >= 1) { |
968 | 966 | $binding_xml = ''; |
969 | 967 | $portType_xml = ''; |
970 | - foreach($this->bindings as $bindingName => $attrs) { |
|
971 | - $binding_xml .= "\n<binding name=\"" . $bindingName . '" type="tns:' . $attrs['portType'] . '">'; |
|
972 | - $binding_xml .= "\n" . ' <soap:binding style="' . $attrs['style'] . '" transport="' . $attrs['transport'] . '"/>'; |
|
973 | - $portType_xml .= "\n<portType name=\"" . $attrs['portType'] . '">'; |
|
974 | - foreach($attrs['operations'] as $opName => $opParts) { |
|
975 | - $binding_xml .= "\n" . ' <operation name="' . $opName . '">'; |
|
976 | - $binding_xml .= "\n" . ' <soap:operation soapAction="' . $opParts['soapAction'] . '" style="'. $opParts['style'] . '"/>'; |
|
968 | + foreach ($this->bindings as $bindingName => $attrs) { |
|
969 | + $binding_xml .= "\n<binding name=\"".$bindingName.'" type="tns:'.$attrs['portType'].'">'; |
|
970 | + $binding_xml .= "\n".' <soap:binding style="'.$attrs['style'].'" transport="'.$attrs['transport'].'"/>'; |
|
971 | + $portType_xml .= "\n<portType name=\"".$attrs['portType'].'">'; |
|
972 | + foreach ($attrs['operations'] as $opName => $opParts) { |
|
973 | + $binding_xml .= "\n".' <operation name="'.$opName.'">'; |
|
974 | + $binding_xml .= "\n".' <soap:operation soapAction="'.$opParts['soapAction'].'" style="'.$opParts['style'].'"/>'; |
|
977 | 975 | if (isset($opParts['input']['encodingStyle']) && $opParts['input']['encodingStyle'] != '') { |
978 | - $enc_style = ' encodingStyle="' . $opParts['input']['encodingStyle'] . '"'; |
|
976 | + $enc_style = ' encodingStyle="'.$opParts['input']['encodingStyle'].'"'; |
|
979 | 977 | } else { |
980 | 978 | $enc_style = ''; |
981 | 979 | } |
982 | - $binding_xml .= "\n" . ' <input><soap:body use="' . $opParts['input']['use'] . '" namespace="' . $opParts['input']['namespace'] . '"' . $enc_style . '/></input>'; |
|
980 | + $binding_xml .= "\n".' <input><soap:body use="'.$opParts['input']['use'].'" namespace="'.$opParts['input']['namespace'].'"'.$enc_style.'/></input>'; |
|
983 | 981 | if (isset($opParts['output']['encodingStyle']) && $opParts['output']['encodingStyle'] != '') { |
984 | - $enc_style = ' encodingStyle="' . $opParts['output']['encodingStyle'] . '"'; |
|
982 | + $enc_style = ' encodingStyle="'.$opParts['output']['encodingStyle'].'"'; |
|
985 | 983 | } else { |
986 | 984 | $enc_style = ''; |
987 | 985 | } |
988 | - $binding_xml .= "\n" . ' <output><soap:body use="' . $opParts['output']['use'] . '" namespace="' . $opParts['output']['namespace'] . '"' . $enc_style . '/></output>'; |
|
989 | - $binding_xml .= "\n" . ' </operation>'; |
|
990 | - $portType_xml .= "\n" . ' <operation name="' . $opParts['name'] . '"'; |
|
986 | + $binding_xml .= "\n".' <output><soap:body use="'.$opParts['output']['use'].'" namespace="'.$opParts['output']['namespace'].'"'.$enc_style.'/></output>'; |
|
987 | + $binding_xml .= "\n".' </operation>'; |
|
988 | + $portType_xml .= "\n".' <operation name="'.$opParts['name'].'"'; |
|
991 | 989 | if (isset($opParts['parameterOrder'])) { |
992 | - $portType_xml .= ' parameterOrder="' . $opParts['parameterOrder'] . '"'; |
|
990 | + $portType_xml .= ' parameterOrder="'.$opParts['parameterOrder'].'"'; |
|
993 | 991 | } |
994 | 992 | $portType_xml .= '>'; |
995 | - if(isset($opParts['documentation']) && $opParts['documentation'] != '') { |
|
996 | - $portType_xml .= "\n" . ' <documentation>' . htmlspecialchars($opParts['documentation']) . '</documentation>'; |
|
993 | + if (isset($opParts['documentation']) && $opParts['documentation'] != '') { |
|
994 | + $portType_xml .= "\n".' <documentation>'.htmlspecialchars($opParts['documentation']).'</documentation>'; |
|
997 | 995 | } |
998 | - $portType_xml .= "\n" . ' <input message="tns:' . $opParts['input']['message'] . '"/>'; |
|
999 | - $portType_xml .= "\n" . ' <output message="tns:' . $opParts['output']['message'] . '"/>'; |
|
1000 | - $portType_xml .= "\n" . ' </operation>'; |
|
996 | + $portType_xml .= "\n".' <input message="tns:'.$opParts['input']['message'].'"/>'; |
|
997 | + $portType_xml .= "\n".' <output message="tns:'.$opParts['output']['message'].'"/>'; |
|
998 | + $portType_xml .= "\n".' </operation>'; |
|
1001 | 999 | } |
1002 | - $portType_xml .= "\n" . '</portType>'; |
|
1003 | - $binding_xml .= "\n" . '</binding>'; |
|
1000 | + $portType_xml .= "\n".'</portType>'; |
|
1001 | + $binding_xml .= "\n".'</binding>'; |
|
1004 | 1002 | } |
1005 | - $xml .= $portType_xml . $binding_xml; |
|
1003 | + $xml .= $portType_xml.$binding_xml; |
|
1006 | 1004 | } |
1007 | 1005 | // services |
1008 | - $xml .= "\n<service name=\"" . $this->serviceName . '">'; |
|
1006 | + $xml .= "\n<service name=\"".$this->serviceName.'">'; |
|
1009 | 1007 | if (count($this->ports) >= 1) { |
1010 | - foreach($this->ports as $pName => $attrs) { |
|
1011 | - $xml .= "\n" . ' <port name="' . $pName . '" binding="tns:' . $attrs['binding'] . '">'; |
|
1012 | - $xml .= "\n" . ' <soap:address location="' . $attrs['location'] . ($debug ? '?debug=1' : '') . '"/>'; |
|
1013 | - $xml .= "\n" . ' </port>'; |
|
1008 | + foreach ($this->ports as $pName => $attrs) { |
|
1009 | + $xml .= "\n".' <port name="'.$pName.'" binding="tns:'.$attrs['binding'].'">'; |
|
1010 | + $xml .= "\n".' <soap:address location="'.$attrs['location'].($debug ? '?debug=1' : '').'"/>'; |
|
1011 | + $xml .= "\n".' </port>'; |
|
1014 | 1012 | } |
1015 | 1013 | } |
1016 | - $xml .= "\n" . '</service>'; |
|
1017 | - return $xml . "\n</definitions>"; |
|
1014 | + $xml .= "\n".'</service>'; |
|
1015 | + return $xml."\n</definitions>"; |
|
1018 | 1016 | } |
1019 | 1017 | |
1020 | 1018 | /** |
@@ -1111,7 +1109,7 @@ discard block |
||
1111 | 1109 | */ |
1112 | 1110 | function serializeRPCParameters($operation, $direction, $parameters, $bindingType = 'soap') { |
1113 | 1111 | $this->debug("in serializeRPCParameters: operation=$operation, direction=$direction, XMLSchemaVersion=$this->XMLSchemaVersion, bindingType=$bindingType"); |
1114 | - $this->appendDebug('parameters=' . $this->varDump($parameters)); |
|
1112 | + $this->appendDebug('parameters='.$this->varDump($parameters)); |
|
1115 | 1113 | |
1116 | 1114 | if ($direction != 'input' && $direction != 'output') { |
1117 | 1115 | $this->debug('The value of the \$direction argument needs to be either "input" or "output"'); |
@@ -1119,8 +1117,8 @@ discard block |
||
1119 | 1117 | return false; |
1120 | 1118 | } |
1121 | 1119 | if (!$opData = $this->getOperationData($operation, $bindingType)) { |
1122 | - $this->debug('Unable to retrieve WSDL data for operation: ' . $operation . ' bindingType: ' . $bindingType); |
|
1123 | - $this->setError('Unable to retrieve WSDL data for operation: ' . $operation . ' bindingType: ' . $bindingType); |
|
1120 | + $this->debug('Unable to retrieve WSDL data for operation: '.$operation.' bindingType: '.$bindingType); |
|
1121 | + $this->setError('Unable to retrieve WSDL data for operation: '.$operation.' bindingType: '.$bindingType); |
|
1124 | 1122 | return false; |
1125 | 1123 | } |
1126 | 1124 | $this->debug('in serializeRPCParameters: opData:'); |
@@ -1128,7 +1126,7 @@ discard block |
||
1128 | 1126 | |
1129 | 1127 | // Get encoding style for output and set to current |
1130 | 1128 | $encodingStyle = 'http://schemas.xmlsoap.org/soap/encoding/'; |
1131 | - if(($direction == 'input') && isset($opData['output']['encodingStyle']) && ($opData['output']['encodingStyle'] != $encodingStyle)) { |
|
1129 | + if (($direction == 'input') && isset($opData['output']['encodingStyle']) && ($opData['output']['encodingStyle'] != $encodingStyle)) { |
|
1132 | 1130 | $encodingStyle = $opData['output']['encodingStyle']; |
1133 | 1131 | $enc_style = $encodingStyle; |
1134 | 1132 | } |
@@ -1213,7 +1211,7 @@ discard block |
||
1213 | 1211 | function serializeParameters($operation, $direction, $parameters) |
1214 | 1212 | { |
1215 | 1213 | $this->debug("in serializeParameters: operation=$operation, direction=$direction, XMLSchemaVersion=$this->XMLSchemaVersion"); |
1216 | - $this->appendDebug('parameters=' . $this->varDump($parameters)); |
|
1214 | + $this->appendDebug('parameters='.$this->varDump($parameters)); |
|
1217 | 1215 | |
1218 | 1216 | if ($direction != 'input' && $direction != 'output') { |
1219 | 1217 | $this->debug('The value of the \$direction argument needs to be either "input" or "output"'); |
@@ -1221,8 +1219,8 @@ discard block |
||
1221 | 1219 | return false; |
1222 | 1220 | } |
1223 | 1221 | if (!$opData = $this->getOperationData($operation)) { |
1224 | - $this->debug('Unable to retrieve WSDL data for operation: ' . $operation); |
|
1225 | - $this->setError('Unable to retrieve WSDL data for operation: ' . $operation); |
|
1222 | + $this->debug('Unable to retrieve WSDL data for operation: '.$operation); |
|
1223 | + $this->setError('Unable to retrieve WSDL data for operation: '.$operation); |
|
1226 | 1224 | return false; |
1227 | 1225 | } |
1228 | 1226 | $this->debug('opData:'); |
@@ -1230,7 +1228,7 @@ discard block |
||
1230 | 1228 | |
1231 | 1229 | // Get encoding style for output and set to current |
1232 | 1230 | $encodingStyle = 'http://schemas.xmlsoap.org/soap/encoding/'; |
1233 | - if(($direction == 'input') && isset($opData['output']['encodingStyle']) && ($opData['output']['encodingStyle'] != $encodingStyle)) { |
|
1231 | + if (($direction == 'input') && isset($opData['output']['encodingStyle']) && ($opData['output']['encodingStyle'] != $encodingStyle)) { |
|
1234 | 1232 | $encodingStyle = $opData['output']['encodingStyle']; |
1235 | 1233 | $enc_style = $encodingStyle; |
1236 | 1234 | } |
@@ -1241,14 +1239,14 @@ discard block |
||
1241 | 1239 | |
1242 | 1240 | $use = $opData[$direction]['use']; |
1243 | 1241 | $this->debug("use=$use"); |
1244 | - $this->debug('got ' . count($opData[$direction]['parts']) . ' part(s)'); |
|
1242 | + $this->debug('got '.count($opData[$direction]['parts']).' part(s)'); |
|
1245 | 1243 | if (is_array($parameters)) { |
1246 | 1244 | $parametersArrayType = $this->isArraySimpleOrStruct($parameters); |
1247 | - $this->debug('have ' . $parametersArrayType . ' parameters'); |
|
1248 | - foreach($opData[$direction]['parts'] as $name => $type) { |
|
1245 | + $this->debug('have '.$parametersArrayType.' parameters'); |
|
1246 | + foreach ($opData[$direction]['parts'] as $name => $type) { |
|
1249 | 1247 | $this->debug('serializing part "'.$name.'" of type "'.$type.'"'); |
1250 | 1248 | // Track encoding style |
1251 | - if(isset($opData[$direction]['encodingStyle']) && $encodingStyle != $opData[$direction]['encodingStyle']) { |
|
1249 | + if (isset($opData[$direction]['encodingStyle']) && $encodingStyle != $opData[$direction]['encodingStyle']) { |
|
1252 | 1250 | $encodingStyle = $opData[$direction]['encodingStyle']; |
1253 | 1251 | $enc_style = $encodingStyle; |
1254 | 1252 | } else { |
@@ -1289,18 +1287,18 @@ discard block |
||
1289 | 1287 | * @return string value serialized as an XML string |
1290 | 1288 | * @access private |
1291 | 1289 | */ |
1292 | - function serializeType($name, $type, $value, $use='encoded', $encodingStyle=false, $unqualified=false) |
|
1290 | + function serializeType($name, $type, $value, $use = 'encoded', $encodingStyle = false, $unqualified = false) |
|
1293 | 1291 | { |
1294 | - $this->debug("in serializeType: name=$name, type=$type, use=$use, encodingStyle=$encodingStyle, unqualified=" . ($unqualified ? "unqualified" : "qualified")); |
|
1295 | - $this->appendDebug("value=" . $this->varDump($value)); |
|
1296 | - if($use == 'encoded' && $encodingStyle) { |
|
1297 | - $encodingStyle = ' SOAP-ENV:encodingStyle="' . $encodingStyle . '"'; |
|
1292 | + $this->debug("in serializeType: name=$name, type=$type, use=$use, encodingStyle=$encodingStyle, unqualified=".($unqualified ? "unqualified" : "qualified")); |
|
1293 | + $this->appendDebug("value=".$this->varDump($value)); |
|
1294 | + if ($use == 'encoded' && $encodingStyle) { |
|
1295 | + $encodingStyle = ' SOAP-ENV:encodingStyle="'.$encodingStyle.'"'; |
|
1298 | 1296 | } |
1299 | 1297 | |
1300 | 1298 | // if a soapval has been supplied, let its type override the WSDL |
1301 | 1299 | if (is_object($value) && get_class($value) == 'soapval') { |
1302 | 1300 | if ($value->type_ns) { |
1303 | - $type = $value->type_ns . ':' . $value->type; |
|
1301 | + $type = $value->type_ns.':'.$value->type; |
|
1304 | 1302 | $forceType = true; |
1305 | 1303 | $this->debug("in serializeType: soapval overrides type to $type"); |
1306 | 1304 | } elseif ($value->type) { |
@@ -1319,7 +1317,7 @@ discard block |
||
1319 | 1317 | $value['!'] = $value; |
1320 | 1318 | } |
1321 | 1319 | foreach ($attrs as $n => $v) { |
1322 | - $value['!' . $n] = $v; |
|
1320 | + $value['!'.$n] = $v; |
|
1323 | 1321 | } |
1324 | 1322 | $this->debug("in serializeType: soapval provides attributes"); |
1325 | 1323 | } |
@@ -1337,7 +1335,7 @@ discard block |
||
1337 | 1335 | $this->debug("in serializeType: expanded prefixed type: $uqType, $ns"); |
1338 | 1336 | } |
1339 | 1337 | |
1340 | - if($ns == $this->XMLSchemaVersion || $ns == 'http://schemas.xmlsoap.org/soap/encoding/'){ |
|
1338 | + if ($ns == $this->XMLSchemaVersion || $ns == 'http://schemas.xmlsoap.org/soap/encoding/') { |
|
1341 | 1339 | $this->debug('in serializeType: type namespace indicates XML Schema or SOAP Encoding type'); |
1342 | 1340 | if ($unqualified && $use == 'literal') { |
1343 | 1341 | $elementNS = " xmlns=\"\""; |
@@ -1350,7 +1348,7 @@ discard block |
||
1350 | 1348 | $xml = "<$name$elementNS/>"; |
1351 | 1349 | } else { |
1352 | 1350 | // TODO: depends on nillable, which should be checked before calling this method |
1353 | - $xml = "<$name$elementNS xsi:nil=\"true\" xsi:type=\"" . $this->getPrefixFromNamespace($ns) . ":$uqType\"/>"; |
|
1351 | + $xml = "<$name$elementNS xsi:nil=\"true\" xsi:type=\"".$this->getPrefixFromNamespace($ns).":$uqType\"/>"; |
|
1354 | 1352 | } |
1355 | 1353 | $this->debug("in serializeType: returning: $xml"); |
1356 | 1354 | return $xml; |
@@ -1360,7 +1358,7 @@ discard block |
||
1360 | 1358 | return $this->serialize_val($value, $name, false, false, false, false, $use); |
1361 | 1359 | } |
1362 | 1360 | if ($uqType == 'boolean') { |
1363 | - if ((is_string($value) && $value == 'false') || (! $value)) { |
|
1361 | + if ((is_string($value) && $value == 'false') || (!$value)) { |
|
1364 | 1362 | $value = 'false'; |
1365 | 1363 | } else { |
1366 | 1364 | $value = 'true'; |
@@ -1378,12 +1376,12 @@ discard block |
||
1378 | 1376 | if (!$this->getTypeDef($uqType, $ns)) { |
1379 | 1377 | if ($use == 'literal') { |
1380 | 1378 | if ($forceType) { |
1381 | - $xml = "<$name$elementNS xsi:type=\"" . $this->getPrefixFromNamespace($ns) . ":$uqType\">$value</$name>"; |
|
1379 | + $xml = "<$name$elementNS xsi:type=\"".$this->getPrefixFromNamespace($ns).":$uqType\">$value</$name>"; |
|
1382 | 1380 | } else { |
1383 | 1381 | $xml = "<$name$elementNS>$value</$name>"; |
1384 | 1382 | } |
1385 | 1383 | } else { |
1386 | - $xml = "<$name$elementNS xsi:type=\"" . $this->getPrefixFromNamespace($ns) . ":$uqType\"$encodingStyle>$value</$name>"; |
|
1384 | + $xml = "<$name$elementNS xsi:type=\"".$this->getPrefixFromNamespace($ns).":$uqType\"$encodingStyle>$value</$name>"; |
|
1387 | 1385 | } |
1388 | 1386 | $this->debug("in serializeType: returning: $xml"); |
1389 | 1387 | return $xml; |
@@ -1393,29 +1391,29 @@ discard block |
||
1393 | 1391 | $this->debug('in serializeType: appears to be Apache SOAP type'); |
1394 | 1392 | if ($uqType == 'Map') { |
1395 | 1393 | $tt_prefix = $this->getPrefixFromNamespace('http://xml.apache.org/xml-soap'); |
1396 | - if (! $tt_prefix) { |
|
1394 | + if (!$tt_prefix) { |
|
1397 | 1395 | $this->debug('in serializeType: Add namespace for Apache SOAP type'); |
1398 | - $tt_prefix = 'ns' . rand(1000, 9999); |
|
1396 | + $tt_prefix = 'ns'.rand(1000, 9999); |
|
1399 | 1397 | $this->namespaces[$tt_prefix] = 'http://xml.apache.org/xml-soap'; |
1400 | 1398 | // force this to be added to usedNamespaces |
1401 | 1399 | $tt_prefix = $this->getPrefixFromNamespace('http://xml.apache.org/xml-soap'); |
1402 | 1400 | } |
1403 | 1401 | $contents = ''; |
1404 | - foreach($value as $k => $v) { |
|
1402 | + foreach ($value as $k => $v) { |
|
1405 | 1403 | $this->debug("serializing map element: key $k, value $v"); |
1406 | 1404 | $contents .= '<item>'; |
1407 | - $contents .= $this->serialize_val($k,'key',false,false,false,false,$use); |
|
1408 | - $contents .= $this->serialize_val($v,'value',false,false,false,false,$use); |
|
1405 | + $contents .= $this->serialize_val($k, 'key', false, false, false, false, $use); |
|
1406 | + $contents .= $this->serialize_val($v, 'value', false, false, false, false, $use); |
|
1409 | 1407 | $contents .= '</item>'; |
1410 | 1408 | } |
1411 | 1409 | if ($use == 'literal') { |
1412 | 1410 | if ($forceType) { |
1413 | - $xml = "<$name xsi:type=\"" . $tt_prefix . ":$uqType\">$contents</$name>"; |
|
1411 | + $xml = "<$name xsi:type=\"".$tt_prefix.":$uqType\">$contents</$name>"; |
|
1414 | 1412 | } else { |
1415 | 1413 | $xml = "<$name>$contents</$name>"; |
1416 | 1414 | } |
1417 | 1415 | } else { |
1418 | - $xml = "<$name xsi:type=\"" . $tt_prefix . ":$uqType\"$encodingStyle>$contents</$name>"; |
|
1416 | + $xml = "<$name xsi:type=\"".$tt_prefix.":$uqType\"$encodingStyle>$contents</$name>"; |
|
1419 | 1417 | } |
1420 | 1418 | $this->debug("in serializeType: returning: $xml"); |
1421 | 1419 | return $xml; |
@@ -1429,13 +1427,13 @@ discard block |
||
1429 | 1427 | $ns = ''; |
1430 | 1428 | $uqType = $type; |
1431 | 1429 | } |
1432 | - if(!$typeDef = $this->getTypeDef($uqType, $ns)){ |
|
1430 | + if (!$typeDef = $this->getTypeDef($uqType, $ns)) { |
|
1433 | 1431 | $this->setError("$type ($uqType) is not a supported type."); |
1434 | 1432 | $this->debug("in serializeType: $type ($uqType) is not a supported type."); |
1435 | 1433 | return false; |
1436 | 1434 | } else { |
1437 | 1435 | $this->debug("in serializeType: found typeDef"); |
1438 | - $this->appendDebug('typeDef=' . $this->varDump($typeDef)); |
|
1436 | + $this->appendDebug('typeDef='.$this->varDump($typeDef)); |
|
1439 | 1437 | if (substr($uqType, -1) == '^') { |
1440 | 1438 | $uqType = substr($uqType, 0, -1); |
1441 | 1439 | } |
@@ -1446,7 +1444,7 @@ discard block |
||
1446 | 1444 | return false; |
1447 | 1445 | } |
1448 | 1446 | $phpType = $typeDef['phpType']; |
1449 | - $this->debug("in serializeType: uqType: $uqType, ns: $ns, phptype: $phpType, arrayType: " . (isset($typeDef['arrayType']) ? $typeDef['arrayType'] : '') ); |
|
1447 | + $this->debug("in serializeType: uqType: $uqType, ns: $ns, phptype: $phpType, arrayType: ".(isset($typeDef['arrayType']) ? $typeDef['arrayType'] : '')); |
|
1450 | 1448 | // if php type == struct, map value to the <all> element names |
1451 | 1449 | if ($phpType == 'struct') { |
1452 | 1450 | if (isset($typeDef['typeClass']) && $typeDef['typeClass'] == 'element') { |
@@ -1469,7 +1467,7 @@ discard block |
||
1469 | 1467 | // TODO: depends on minOccurs and nillable |
1470 | 1468 | $xml = "<$elementName$elementNS/>"; |
1471 | 1469 | } else { |
1472 | - $xml = "<$elementName$elementNS xsi:nil=\"true\" xsi:type=\"" . $this->getPrefixFromNamespace($ns) . ":$uqType\"/>"; |
|
1470 | + $xml = "<$elementName$elementNS xsi:nil=\"true\" xsi:type=\"".$this->getPrefixFromNamespace($ns).":$uqType\"/>"; |
|
1473 | 1471 | } |
1474 | 1472 | $this->debug("in serializeType: returning: $xml"); |
1475 | 1473 | return $xml; |
@@ -1481,12 +1479,12 @@ discard block |
||
1481 | 1479 | $elementAttrs = $this->serializeComplexTypeAttributes($typeDef, $value, $ns, $uqType); |
1482 | 1480 | if ($use == 'literal') { |
1483 | 1481 | if ($forceType) { |
1484 | - $xml = "<$elementName$elementNS$elementAttrs xsi:type=\"" . $this->getPrefixFromNamespace($ns) . ":$uqType\">"; |
|
1482 | + $xml = "<$elementName$elementNS$elementAttrs xsi:type=\"".$this->getPrefixFromNamespace($ns).":$uqType\">"; |
|
1485 | 1483 | } else { |
1486 | 1484 | $xml = "<$elementName$elementNS$elementAttrs>"; |
1487 | 1485 | } |
1488 | 1486 | } else { |
1489 | - $xml = "<$elementName$elementNS$elementAttrs xsi:type=\"" . $this->getPrefixFromNamespace($ns) . ":$uqType\"$encodingStyle>"; |
|
1487 | + $xml = "<$elementName$elementNS$elementAttrs xsi:type=\"".$this->getPrefixFromNamespace($ns).":$uqType\"$encodingStyle>"; |
|
1490 | 1488 | } |
1491 | 1489 | |
1492 | 1490 | if (isset($typeDef['simpleContent']) && $typeDef['simpleContent'] == 'true') { |
@@ -1521,13 +1519,13 @@ discard block |
||
1521 | 1519 | // TODO: depends on minOccurs |
1522 | 1520 | $xml = "<$name$elementNS/>"; |
1523 | 1521 | } else { |
1524 | - $xml = "<$name$elementNS xsi:nil=\"true\" xsi:type=\"" . |
|
1525 | - $this->getPrefixFromNamespace('http://schemas.xmlsoap.org/soap/encoding/') . |
|
1526 | - ":Array\" " . |
|
1527 | - $this->getPrefixFromNamespace('http://schemas.xmlsoap.org/soap/encoding/') . |
|
1528 | - ':arrayType="' . |
|
1529 | - $this->getPrefixFromNamespace($this->getPrefix($typeDef['arrayType'])) . |
|
1530 | - ':' . |
|
1522 | + $xml = "<$name$elementNS xsi:nil=\"true\" xsi:type=\"". |
|
1523 | + $this->getPrefixFromNamespace('http://schemas.xmlsoap.org/soap/encoding/'). |
|
1524 | + ":Array\" ". |
|
1525 | + $this->getPrefixFromNamespace('http://schemas.xmlsoap.org/soap/encoding/'). |
|
1526 | + ':arrayType="'. |
|
1527 | + $this->getPrefixFromNamespace($this->getPrefix($typeDef['arrayType'])). |
|
1528 | + ':'. |
|
1531 | 1529 | $this->getLocalPart($typeDef['arrayType'])."[0]\"/>"; |
1532 | 1530 | } |
1533 | 1531 | $this->debug("in serializeType: returning: $xml"); |
@@ -1535,8 +1533,8 @@ discard block |
||
1535 | 1533 | } |
1536 | 1534 | if (isset($typeDef['multidimensional'])) { |
1537 | 1535 | $nv = array(); |
1538 | - foreach($value as $v) { |
|
1539 | - $cols = ',' . sizeof($v); |
|
1536 | + foreach ($value as $v) { |
|
1537 | + $cols = ','.sizeof($v); |
|
1540 | 1538 | $nv = array_merge($nv, $v); |
1541 | 1539 | } |
1542 | 1540 | $value = $nv; |
@@ -1546,10 +1544,10 @@ discard block |
||
1546 | 1544 | if (is_array($value) && sizeof($value) >= 1) { |
1547 | 1545 | $rows = sizeof($value); |
1548 | 1546 | $contents = ''; |
1549 | - foreach($value as $k => $v) { |
|
1547 | + foreach ($value as $k => $v) { |
|
1550 | 1548 | //$this->debug("serializing array element: $k, $v of type: $typeDef[arrayType]"); |
1551 | 1549 | //if (strpos($typeDef['arrayType'], ':') ) { |
1552 | - if (!in_array($typeDef['arrayType'],$this->typemap['http://www.w3.org/2001/XMLSchema'])) { |
|
1550 | + if (!in_array($typeDef['arrayType'], $this->typemap['http://www.w3.org/2001/XMLSchema'])) { |
|
1553 | 1551 | $contents .= $this->serializeType('item', $typeDef['arrayType'], $v, $use); |
1554 | 1552 | } else { |
1555 | 1553 | $contents .= $this->serialize_val($v, 'item', $typeDef['arrayType'], null, $this->XMLSchemaVersion, false, $use); |
@@ -1586,12 +1584,12 @@ discard block |
||
1586 | 1584 | } |
1587 | 1585 | if ($use == 'literal') { |
1588 | 1586 | if ($forceType) { |
1589 | - $xml = "<$name$elementNS xsi:type=\"" . $this->getPrefixFromNamespace($ns) . ":$uqType\">$value</$name>"; |
|
1587 | + $xml = "<$name$elementNS xsi:type=\"".$this->getPrefixFromNamespace($ns).":$uqType\">$value</$name>"; |
|
1590 | 1588 | } else { |
1591 | 1589 | $xml = "<$name$elementNS>$value</$name>"; |
1592 | 1590 | } |
1593 | 1591 | } else { |
1594 | - $xml = "<$name$elementNS xsi:type=\"" . $this->getPrefixFromNamespace($ns) . ":$uqType\"$encodingStyle>$value</$name>"; |
|
1592 | + $xml = "<$name$elementNS xsi:type=\"".$this->getPrefixFromNamespace($ns).":$uqType\"$encodingStyle>$value</$name>"; |
|
1595 | 1593 | } |
1596 | 1594 | } |
1597 | 1595 | $this->debug("in serializeType: returning: $xml"); |
@@ -1635,22 +1633,22 @@ discard block |
||
1635 | 1633 | $xvalue = array(); |
1636 | 1634 | } |
1637 | 1635 | foreach ($typeDef['attrs'] as $aName => $attrs) { |
1638 | - if (isset($xvalue['!' . $aName])) { |
|
1639 | - $xname = '!' . $aName; |
|
1636 | + if (isset($xvalue['!'.$aName])) { |
|
1637 | + $xname = '!'.$aName; |
|
1640 | 1638 | $this->debug("value provided for attribute $aName with key $xname"); |
1641 | 1639 | } elseif (isset($xvalue[$aName])) { |
1642 | 1640 | $xname = $aName; |
1643 | 1641 | $this->debug("value provided for attribute $aName with key $xname"); |
1644 | 1642 | } elseif (isset($attrs['default'])) { |
1645 | - $xname = '!' . $aName; |
|
1643 | + $xname = '!'.$aName; |
|
1646 | 1644 | $xvalue[$xname] = $attrs['default']; |
1647 | - $this->debug('use default value of ' . $xvalue[$aName] . ' for attribute ' . $aName); |
|
1645 | + $this->debug('use default value of '.$xvalue[$aName].' for attribute '.$aName); |
|
1648 | 1646 | } else { |
1649 | 1647 | $xname = ''; |
1650 | 1648 | $this->debug("no value provided for attribute $aName"); |
1651 | 1649 | } |
1652 | 1650 | if ($xname) { |
1653 | - $xml .= " $aName=\"" . $this->expandEntities($xvalue[$xname]) . "\""; |
|
1651 | + $xml .= " $aName=\"".$this->expandEntities($xvalue[$xname])."\""; |
|
1654 | 1652 | } |
1655 | 1653 | } |
1656 | 1654 | } else { |
@@ -1671,7 +1669,7 @@ discard block |
||
1671 | 1669 | * @return string value serialized as an XML string |
1672 | 1670 | * @access private |
1673 | 1671 | */ |
1674 | - function serializeComplexTypeElements($typeDef, $value, $ns, $uqType, $use='encoded', $encodingStyle=false) { |
|
1672 | + function serializeComplexTypeElements($typeDef, $value, $ns, $uqType, $use = 'encoded', $encodingStyle = false) { |
|
1675 | 1673 | $this->debug("in serializeComplexTypeElements for XML Schema type $ns:$uqType"); |
1676 | 1674 | $xml = ''; |
1677 | 1675 | if (isset($typeDef['extensionBase'])) { |
@@ -1698,23 +1696,23 @@ discard block |
||
1698 | 1696 | $xvalue = array(); |
1699 | 1697 | } |
1700 | 1698 | // toggle whether all elements are present - ideally should validate against schema |
1701 | - if (count($typeDef['elements']) != count($xvalue)){ |
|
1699 | + if (count($typeDef['elements']) != count($xvalue)) { |
|
1702 | 1700 | $optionals = true; |
1703 | 1701 | } |
1704 | 1702 | foreach ($typeDef['elements'] as $eName => $attrs) { |
1705 | 1703 | if (!isset($xvalue[$eName])) { |
1706 | 1704 | if (isset($attrs['default'])) { |
1707 | 1705 | $xvalue[$eName] = $attrs['default']; |
1708 | - $this->debug('use default value of ' . $xvalue[$eName] . ' for element ' . $eName); |
|
1706 | + $this->debug('use default value of '.$xvalue[$eName].' for element '.$eName); |
|
1709 | 1707 | } |
1710 | 1708 | } |
1711 | 1709 | // if user took advantage of a minOccurs=0, then only serialize named parameters |
1712 | 1710 | if (isset($optionals) |
1713 | 1711 | && (!isset($xvalue[$eName])) |
1714 | - && ( (!isset($attrs['nillable'])) || $attrs['nillable'] != 'true') |
|
1715 | - ){ |
|
1712 | + && ((!isset($attrs['nillable'])) || $attrs['nillable'] != 'true') |
|
1713 | + ) { |
|
1716 | 1714 | if (isset($attrs['minOccurs']) && $attrs['minOccurs'] <> '0') { |
1717 | - $this->debug("apparent error: no value provided for element $eName with minOccurs=" . $attrs['minOccurs']); |
|
1715 | + $this->debug("apparent error: no value provided for element $eName with minOccurs=".$attrs['minOccurs']); |
|
1718 | 1716 | } |
1719 | 1717 | // do nothing |
1720 | 1718 | $this->debug("no value provided for complexType element $eName and element is not nillable, so serialize nothing"); |
@@ -1779,15 +1777,15 @@ discard block |
||
1779 | 1777 | * @see nusoap_xmlschema |
1780 | 1778 | * @access public |
1781 | 1779 | */ |
1782 | - function addComplexType($name,$typeClass='complexType',$phpType='array',$compositor='',$restrictionBase='',$elements=array(),$attrs=array(),$arrayType='') { |
|
1780 | + function addComplexType($name, $typeClass = 'complexType', $phpType = 'array', $compositor = '', $restrictionBase = '', $elements = array(), $attrs = array(), $arrayType = '') { |
|
1783 | 1781 | if (count($elements) > 0) { |
1784 | 1782 | $eElements = array(); |
1785 | - foreach($elements as $n => $e){ |
|
1783 | + foreach ($elements as $n => $e) { |
|
1786 | 1784 | // expand each element |
1787 | 1785 | $ee = array(); |
1788 | 1786 | foreach ($e as $k => $v) { |
1789 | - $k = strpos($k,':') ? $this->expandQname($k) : $k; |
|
1790 | - $v = strpos($v,':') ? $this->expandQname($v) : $v; |
|
1787 | + $k = strpos($k, ':') ? $this->expandQname($k) : $k; |
|
1788 | + $v = strpos($v, ':') ? $this->expandQname($v) : $v; |
|
1791 | 1789 | $ee[$k] = $v; |
1792 | 1790 | } |
1793 | 1791 | $eElements[$n] = $ee; |
@@ -1796,11 +1794,11 @@ discard block |
||
1796 | 1794 | } |
1797 | 1795 | |
1798 | 1796 | if (count($attrs) > 0) { |
1799 | - foreach($attrs as $n => $a){ |
|
1797 | + foreach ($attrs as $n => $a) { |
|
1800 | 1798 | // expand each attribute |
1801 | 1799 | foreach ($a as $k => $v) { |
1802 | - $k = strpos($k,':') ? $this->expandQname($k) : $k; |
|
1803 | - $v = strpos($v,':') ? $this->expandQname($v) : $v; |
|
1800 | + $k = strpos($k, ':') ? $this->expandQname($k) : $k; |
|
1801 | + $v = strpos($v, ':') ? $this->expandQname($v) : $v; |
|
1804 | 1802 | $aa[$k] = $v; |
1805 | 1803 | } |
1806 | 1804 | $eAttrs[$n] = $aa; |
@@ -1808,11 +1806,11 @@ discard block |
||
1808 | 1806 | $attrs = $eAttrs; |
1809 | 1807 | } |
1810 | 1808 | |
1811 | - $restrictionBase = strpos($restrictionBase,':') ? $this->expandQname($restrictionBase) : $restrictionBase; |
|
1812 | - $arrayType = strpos($arrayType,':') ? $this->expandQname($arrayType) : $arrayType; |
|
1809 | + $restrictionBase = strpos($restrictionBase, ':') ? $this->expandQname($restrictionBase) : $restrictionBase; |
|
1810 | + $arrayType = strpos($arrayType, ':') ? $this->expandQname($arrayType) : $arrayType; |
|
1813 | 1811 | |
1814 | 1812 | $typens = isset($this->namespaces['types']) ? $this->namespaces['types'] : $this->namespaces['tns']; |
1815 | - $this->schemas[$typens][0]->addComplexType($name,$typeClass,$phpType,$compositor,$restrictionBase,$elements,$attrs,$arrayType); |
|
1813 | + $this->schemas[$typens][0]->addComplexType($name, $typeClass, $phpType, $compositor, $restrictionBase, $elements, $attrs, $arrayType); |
|
1816 | 1814 | } |
1817 | 1815 | |
1818 | 1816 | /** |
@@ -1826,8 +1824,8 @@ discard block |
||
1826 | 1824 | * @see nusoap_xmlschema |
1827 | 1825 | * @access public |
1828 | 1826 | */ |
1829 | - function addSimpleType($name, $restrictionBase='', $typeClass='simpleType', $phpType='scalar', $enumeration=array()) { |
|
1830 | - $restrictionBase = strpos($restrictionBase,':') ? $this->expandQname($restrictionBase) : $restrictionBase; |
|
1827 | + function addSimpleType($name, $restrictionBase = '', $typeClass = 'simpleType', $phpType = 'scalar', $enumeration = array()) { |
|
1828 | + $restrictionBase = strpos($restrictionBase, ':') ? $this->expandQname($restrictionBase) : $restrictionBase; |
|
1831 | 1829 | |
1832 | 1830 | $typens = isset($this->namespaces['types']) ? $this->namespaces['types'] : $this->namespaces['tns']; |
1833 | 1831 | $this->schemas[$typens][0]->addSimpleType($name, $restrictionBase, $typeClass, $phpType, $enumeration); |
@@ -1859,7 +1857,7 @@ discard block |
||
1859 | 1857 | * @param string $encodingStyle optional (usually 'http://schemas.xmlsoap.org/soap/encoding/' for encoded) |
1860 | 1858 | * @access public |
1861 | 1859 | */ |
1862 | - function addOperation($name, $in = false, $out = false, $namespace = false, $soapaction = false, $style = 'rpc', $use = 'encoded', $documentation = '', $encodingStyle = ''){ |
|
1860 | + function addOperation($name, $in = false, $out = false, $namespace = false, $soapaction = false, $style = 'rpc', $use = 'encoded', $documentation = '', $encodingStyle = '') { |
|
1863 | 1861 | if ($use == 'encoded' && $encodingStyle == '') { |
1864 | 1862 | $encodingStyle = 'http://schemas.xmlsoap.org/soap/encoding/'; |
1865 | 1863 | } |
@@ -1869,24 +1867,24 @@ discard block |
||
1869 | 1867 | foreach ($in as $n => $t) { |
1870 | 1868 | $elements[$n] = array('name' => $n, 'type' => $t, 'form' => 'unqualified'); |
1871 | 1869 | } |
1872 | - $this->addComplexType($name . 'RequestType', 'complexType', 'struct', 'all', '', $elements); |
|
1873 | - $this->addElement(array('name' => $name, 'type' => $name . 'RequestType')); |
|
1874 | - $in = array('parameters' => 'tns:' . $name . '^'); |
|
1870 | + $this->addComplexType($name.'RequestType', 'complexType', 'struct', 'all', '', $elements); |
|
1871 | + $this->addElement(array('name' => $name, 'type' => $name.'RequestType')); |
|
1872 | + $in = array('parameters' => 'tns:'.$name.'^'); |
|
1875 | 1873 | |
1876 | 1874 | $elements = array(); |
1877 | 1875 | foreach ($out as $n => $t) { |
1878 | 1876 | $elements[$n] = array('name' => $n, 'type' => $t, 'form' => 'unqualified'); |
1879 | 1877 | } |
1880 | - $this->addComplexType($name . 'ResponseType', 'complexType', 'struct', 'all', '', $elements); |
|
1881 | - $this->addElement(array('name' => $name . 'Response', 'type' => $name . 'ResponseType', 'form' => 'qualified')); |
|
1882 | - $out = array('parameters' => 'tns:' . $name . 'Response' . '^'); |
|
1878 | + $this->addComplexType($name.'ResponseType', 'complexType', 'struct', 'all', '', $elements); |
|
1879 | + $this->addElement(array('name' => $name.'Response', 'type' => $name.'ResponseType', 'form' => 'qualified')); |
|
1880 | + $out = array('parameters' => 'tns:'.$name.'Response'.'^'); |
|
1883 | 1881 | } |
1884 | 1882 | |
1885 | 1883 | // get binding |
1886 | - $this->bindings[ $this->serviceName . 'Binding' ]['operations'][$name] = |
|
1884 | + $this->bindings[$this->serviceName.'Binding']['operations'][$name] = |
|
1887 | 1885 | array( |
1888 | 1886 | 'name' => $name, |
1889 | - 'binding' => $this->serviceName . 'Binding', |
|
1887 | + 'binding' => $this->serviceName.'Binding', |
|
1890 | 1888 | 'endpoint' => $this->endpoint, |
1891 | 1889 | 'soapAction' => $soapaction, |
1892 | 1890 | 'style' => $style, |
@@ -1894,42 +1892,42 @@ discard block |
||
1894 | 1892 | 'use' => $use, |
1895 | 1893 | 'namespace' => $namespace, |
1896 | 1894 | 'encodingStyle' => $encodingStyle, |
1897 | - 'message' => $name . 'Request', |
|
1895 | + 'message' => $name.'Request', |
|
1898 | 1896 | 'parts' => $in), |
1899 | 1897 | 'output' => array( |
1900 | 1898 | 'use' => $use, |
1901 | 1899 | 'namespace' => $namespace, |
1902 | 1900 | 'encodingStyle' => $encodingStyle, |
1903 | - 'message' => $name . 'Response', |
|
1901 | + 'message' => $name.'Response', |
|
1904 | 1902 | 'parts' => $out), |
1905 | 1903 | 'namespace' => $namespace, |
1906 | 1904 | 'transport' => 'http://schemas.xmlsoap.org/soap/http', |
1907 | 1905 | 'documentation' => $documentation); |
1908 | 1906 | // add portTypes |
1909 | 1907 | // add messages |
1910 | - if($in) |
|
1908 | + if ($in) |
|
1911 | 1909 | { |
1912 | - foreach($in as $pName => $pType) |
|
1910 | + foreach ($in as $pName => $pType) |
|
1913 | 1911 | { |
1914 | - if(strpos($pType,':')) { |
|
1912 | + if (strpos($pType, ':')) { |
|
1915 | 1913 | $pType = $this->getNamespaceFromPrefix($this->getPrefix($pType)).":".$this->getLocalPart($pType); |
1916 | 1914 | } |
1917 | 1915 | $this->messages[$name.'Request'][$pName] = $pType; |
1918 | 1916 | } |
1919 | 1917 | } else { |
1920 | - $this->messages[$name.'Request']= '0'; |
|
1918 | + $this->messages[$name.'Request'] = '0'; |
|
1921 | 1919 | } |
1922 | - if($out) |
|
1920 | + if ($out) |
|
1923 | 1921 | { |
1924 | - foreach($out as $pName => $pType) |
|
1922 | + foreach ($out as $pName => $pType) |
|
1925 | 1923 | { |
1926 | - if(strpos($pType,':')) { |
|
1924 | + if (strpos($pType, ':')) { |
|
1927 | 1925 | $pType = $this->getNamespaceFromPrefix($this->getPrefix($pType)).":".$this->getLocalPart($pType); |
1928 | 1926 | } |
1929 | 1927 | $this->messages[$name.'Response'][$pName] = $pType; |
1930 | 1928 | } |
1931 | 1929 | } else { |
1932 | - $this->messages[$name.'Response']= '0'; |
|
1930 | + $this->messages[$name.'Response'] = '0'; |
|
1933 | 1931 | } |
1934 | 1932 | return true; |
1935 | 1933 | } |
@@ -78,8 +78,9 @@ |
||
78 | 78 | $this->proxypassword = $proxypassword; |
79 | 79 | $this->timeout = $timeout; |
80 | 80 | $this->response_timeout = $response_timeout; |
81 | - if (is_array($curl_options)) |
|
82 | - $this->curl_options = $curl_options; |
|
81 | + if (is_array($curl_options)) { |
|
82 | + $this->curl_options = $curl_options; |
|
83 | + } |
|
83 | 84 | $this->use_curl = $use_curl; |
84 | 85 | $this->fetchWSDL($wsdl); |
85 | 86 | } |
@@ -791,7 +791,7 @@ |
||
791 | 791 | * returns a sample serialization of a given type, or false if no type by the given name |
792 | 792 | * |
793 | 793 | * @param string $type name of type |
794 | - * @return mixed |
|
794 | + * @return string|false |
|
795 | 795 | * @access public |
796 | 796 | * @deprecated |
797 | 797 | */ |
@@ -14,275 +14,275 @@ discard block |
||
14 | 14 | */ |
15 | 15 | class nusoap_xmlschema extends nusoap_base { |
16 | 16 | |
17 | - // files |
|
18 | - var $schema = ''; |
|
19 | - var $xml = ''; |
|
20 | - // namespaces |
|
21 | - var $enclosingNamespaces; |
|
22 | - // schema info |
|
23 | - var $schemaInfo = array(); |
|
24 | - var $schemaTargetNamespace = ''; |
|
25 | - // types, elements, attributes defined by the schema |
|
26 | - var $attributes = array(); |
|
27 | - var $complexTypes = array(); |
|
28 | - var $complexTypeStack = array(); |
|
29 | - var $currentComplexType = null; |
|
30 | - var $elements = array(); |
|
31 | - var $elementStack = array(); |
|
32 | - var $currentElement = null; |
|
33 | - var $simpleTypes = array(); |
|
34 | - var $simpleTypeStack = array(); |
|
35 | - var $currentSimpleType = null; |
|
36 | - // imports |
|
37 | - var $imports = array(); |
|
38 | - // parser vars |
|
39 | - var $parser; |
|
40 | - var $position = 0; |
|
41 | - var $depth = 0; |
|
42 | - var $depth_array = array(); |
|
43 | - var $message = array(); |
|
44 | - var $defaultNamespace = array(); |
|
17 | + // files |
|
18 | + var $schema = ''; |
|
19 | + var $xml = ''; |
|
20 | + // namespaces |
|
21 | + var $enclosingNamespaces; |
|
22 | + // schema info |
|
23 | + var $schemaInfo = array(); |
|
24 | + var $schemaTargetNamespace = ''; |
|
25 | + // types, elements, attributes defined by the schema |
|
26 | + var $attributes = array(); |
|
27 | + var $complexTypes = array(); |
|
28 | + var $complexTypeStack = array(); |
|
29 | + var $currentComplexType = null; |
|
30 | + var $elements = array(); |
|
31 | + var $elementStack = array(); |
|
32 | + var $currentElement = null; |
|
33 | + var $simpleTypes = array(); |
|
34 | + var $simpleTypeStack = array(); |
|
35 | + var $currentSimpleType = null; |
|
36 | + // imports |
|
37 | + var $imports = array(); |
|
38 | + // parser vars |
|
39 | + var $parser; |
|
40 | + var $position = 0; |
|
41 | + var $depth = 0; |
|
42 | + var $depth_array = array(); |
|
43 | + var $message = array(); |
|
44 | + var $defaultNamespace = array(); |
|
45 | 45 | |
46 | - /** |
|
47 | - * constructor |
|
48 | - * |
|
49 | - * @param string $schema schema document URI |
|
50 | - * @param string $xml xml document URI |
|
51 | - * @param string $namespaces namespaces defined in enclosing XML |
|
52 | - * @access public |
|
53 | - */ |
|
54 | - function nusoap_xmlschema($schema='',$xml='',$namespaces=array()){ |
|
55 | - parent::nusoap_base(); |
|
56 | - $this->debug('nusoap_xmlschema class instantiated, inside constructor'); |
|
57 | - // files |
|
58 | - $this->schema = $schema; |
|
59 | - $this->xml = $xml; |
|
46 | + /** |
|
47 | + * constructor |
|
48 | + * |
|
49 | + * @param string $schema schema document URI |
|
50 | + * @param string $xml xml document URI |
|
51 | + * @param string $namespaces namespaces defined in enclosing XML |
|
52 | + * @access public |
|
53 | + */ |
|
54 | + function nusoap_xmlschema($schema='',$xml='',$namespaces=array()){ |
|
55 | + parent::nusoap_base(); |
|
56 | + $this->debug('nusoap_xmlschema class instantiated, inside constructor'); |
|
57 | + // files |
|
58 | + $this->schema = $schema; |
|
59 | + $this->xml = $xml; |
|
60 | 60 | |
61 | - // namespaces |
|
62 | - $this->enclosingNamespaces = $namespaces; |
|
63 | - $this->namespaces = array_merge($this->namespaces, $namespaces); |
|
61 | + // namespaces |
|
62 | + $this->enclosingNamespaces = $namespaces; |
|
63 | + $this->namespaces = array_merge($this->namespaces, $namespaces); |
|
64 | 64 | |
65 | - // parse schema file |
|
66 | - if($schema != ''){ |
|
67 | - $this->debug('initial schema file: '.$schema); |
|
68 | - $this->parseFile($schema, 'schema'); |
|
69 | - } |
|
65 | + // parse schema file |
|
66 | + if($schema != ''){ |
|
67 | + $this->debug('initial schema file: '.$schema); |
|
68 | + $this->parseFile($schema, 'schema'); |
|
69 | + } |
|
70 | 70 | |
71 | - // parse xml file |
|
72 | - if($xml != ''){ |
|
73 | - $this->debug('initial xml file: '.$xml); |
|
74 | - $this->parseFile($xml, 'xml'); |
|
75 | - } |
|
71 | + // parse xml file |
|
72 | + if($xml != ''){ |
|
73 | + $this->debug('initial xml file: '.$xml); |
|
74 | + $this->parseFile($xml, 'xml'); |
|
75 | + } |
|
76 | 76 | |
77 | - } |
|
77 | + } |
|
78 | 78 | |
79 | 79 | /** |
80 | - * parse an XML file |
|
81 | - * |
|
82 | - * @param string $xml path/URL to XML file |
|
83 | - * @param string $type (schema | xml) |
|
84 | - * @return boolean |
|
85 | - * @access public |
|
86 | - */ |
|
87 | - function parseFile($xml,$type){ |
|
88 | - // parse xml file |
|
89 | - if($xml != ""){ |
|
90 | - $xmlStr = @join("",@file($xml)); |
|
91 | - if($xmlStr == ""){ |
|
92 | - $msg = 'Error reading XML from '.$xml; |
|
93 | - $this->setError($msg); |
|
94 | - $this->debug($msg); |
|
95 | - return false; |
|
96 | - } else { |
|
97 | - $this->debug("parsing $xml"); |
|
98 | - $this->parseString($xmlStr,$type); |
|
99 | - $this->debug("done parsing $xml"); |
|
100 | - return true; |
|
101 | - } |
|
102 | - } |
|
103 | - return false; |
|
104 | - } |
|
80 | + * parse an XML file |
|
81 | + * |
|
82 | + * @param string $xml path/URL to XML file |
|
83 | + * @param string $type (schema | xml) |
|
84 | + * @return boolean |
|
85 | + * @access public |
|
86 | + */ |
|
87 | + function parseFile($xml,$type){ |
|
88 | + // parse xml file |
|
89 | + if($xml != ""){ |
|
90 | + $xmlStr = @join("",@file($xml)); |
|
91 | + if($xmlStr == ""){ |
|
92 | + $msg = 'Error reading XML from '.$xml; |
|
93 | + $this->setError($msg); |
|
94 | + $this->debug($msg); |
|
95 | + return false; |
|
96 | + } else { |
|
97 | + $this->debug("parsing $xml"); |
|
98 | + $this->parseString($xmlStr,$type); |
|
99 | + $this->debug("done parsing $xml"); |
|
100 | + return true; |
|
101 | + } |
|
102 | + } |
|
103 | + return false; |
|
104 | + } |
|
105 | 105 | |
106 | - /** |
|
107 | - * parse an XML string |
|
108 | - * |
|
109 | - * @param string $xml path or URL |
|
110 | - * @param string $type (schema|xml) |
|
111 | - * @access private |
|
112 | - */ |
|
113 | - function parseString($xml,$type){ |
|
114 | - // parse xml string |
|
115 | - if($xml != ""){ |
|
106 | + /** |
|
107 | + * parse an XML string |
|
108 | + * |
|
109 | + * @param string $xml path or URL |
|
110 | + * @param string $type (schema|xml) |
|
111 | + * @access private |
|
112 | + */ |
|
113 | + function parseString($xml,$type){ |
|
114 | + // parse xml string |
|
115 | + if($xml != ""){ |
|
116 | 116 | |
117 | - // Create an XML parser. |
|
118 | - $this->parser = xml_parser_create(); |
|
119 | - // Set the options for parsing the XML data. |
|
120 | - xml_parser_set_option($this->parser, XML_OPTION_CASE_FOLDING, 0); |
|
117 | + // Create an XML parser. |
|
118 | + $this->parser = xml_parser_create(); |
|
119 | + // Set the options for parsing the XML data. |
|
120 | + xml_parser_set_option($this->parser, XML_OPTION_CASE_FOLDING, 0); |
|
121 | 121 | |
122 | - // Set the object for the parser. |
|
123 | - xml_set_object($this->parser, $this); |
|
122 | + // Set the object for the parser. |
|
123 | + xml_set_object($this->parser, $this); |
|
124 | 124 | |
125 | - // Set the element handlers for the parser. |
|
126 | - if($type == "schema"){ |
|
127 | - xml_set_element_handler($this->parser, 'schemaStartElement','schemaEndElement'); |
|
128 | - xml_set_character_data_handler($this->parser,'schemaCharacterData'); |
|
129 | - } elseif($type == "xml"){ |
|
130 | - xml_set_element_handler($this->parser, 'xmlStartElement','xmlEndElement'); |
|
131 | - xml_set_character_data_handler($this->parser,'xmlCharacterData'); |
|
132 | - } |
|
125 | + // Set the element handlers for the parser. |
|
126 | + if($type == "schema"){ |
|
127 | + xml_set_element_handler($this->parser, 'schemaStartElement','schemaEndElement'); |
|
128 | + xml_set_character_data_handler($this->parser,'schemaCharacterData'); |
|
129 | + } elseif($type == "xml"){ |
|
130 | + xml_set_element_handler($this->parser, 'xmlStartElement','xmlEndElement'); |
|
131 | + xml_set_character_data_handler($this->parser,'xmlCharacterData'); |
|
132 | + } |
|
133 | 133 | |
134 | - // Parse the XML file. |
|
135 | - if(!xml_parse($this->parser,$xml,true)){ |
|
136 | - // Display an error message. |
|
137 | - $errstr = sprintf('XML error parsing XML schema on line %d: %s', |
|
138 | - xml_get_current_line_number($this->parser), |
|
139 | - xml_error_string(xml_get_error_code($this->parser)) |
|
140 | - ); |
|
141 | - $this->debug($errstr); |
|
142 | - $this->debug("XML payload:\n" . $xml); |
|
143 | - $this->setError($errstr); |
|
144 | - } |
|
134 | + // Parse the XML file. |
|
135 | + if(!xml_parse($this->parser,$xml,true)){ |
|
136 | + // Display an error message. |
|
137 | + $errstr = sprintf('XML error parsing XML schema on line %d: %s', |
|
138 | + xml_get_current_line_number($this->parser), |
|
139 | + xml_error_string(xml_get_error_code($this->parser)) |
|
140 | + ); |
|
141 | + $this->debug($errstr); |
|
142 | + $this->debug("XML payload:\n" . $xml); |
|
143 | + $this->setError($errstr); |
|
144 | + } |
|
145 | 145 | |
146 | - xml_parser_free($this->parser); |
|
147 | - } else{ |
|
148 | - $this->debug('no xml passed to parseString()!!'); |
|
149 | - $this->setError('no xml passed to parseString()!!'); |
|
150 | - } |
|
151 | - } |
|
146 | + xml_parser_free($this->parser); |
|
147 | + } else{ |
|
148 | + $this->debug('no xml passed to parseString()!!'); |
|
149 | + $this->setError('no xml passed to parseString()!!'); |
|
150 | + } |
|
151 | + } |
|
152 | 152 | |
153 | - /** |
|
154 | - * gets a type name for an unnamed type |
|
155 | - * |
|
156 | - * @param string Element name |
|
157 | - * @return string A type name for an unnamed type |
|
158 | - * @access private |
|
159 | - */ |
|
160 | - function CreateTypeName($ename) { |
|
161 | - $scope = ''; |
|
162 | - for ($i = 0; $i < count($this->complexTypeStack); $i++) { |
|
163 | - $scope .= $this->complexTypeStack[$i] . '_'; |
|
164 | - } |
|
165 | - return $scope . $ename . '_ContainedType'; |
|
166 | - } |
|
153 | + /** |
|
154 | + * gets a type name for an unnamed type |
|
155 | + * |
|
156 | + * @param string Element name |
|
157 | + * @return string A type name for an unnamed type |
|
158 | + * @access private |
|
159 | + */ |
|
160 | + function CreateTypeName($ename) { |
|
161 | + $scope = ''; |
|
162 | + for ($i = 0; $i < count($this->complexTypeStack); $i++) { |
|
163 | + $scope .= $this->complexTypeStack[$i] . '_'; |
|
164 | + } |
|
165 | + return $scope . $ename . '_ContainedType'; |
|
166 | + } |
|
167 | 167 | |
168 | - /** |
|
169 | - * start-element handler |
|
170 | - * |
|
171 | - * @param string $parser XML parser object |
|
172 | - * @param string $name element name |
|
173 | - * @param string $attrs associative array of attributes |
|
174 | - * @access private |
|
175 | - */ |
|
176 | - function schemaStartElement($parser, $name, $attrs) { |
|
168 | + /** |
|
169 | + * start-element handler |
|
170 | + * |
|
171 | + * @param string $parser XML parser object |
|
172 | + * @param string $name element name |
|
173 | + * @param string $attrs associative array of attributes |
|
174 | + * @access private |
|
175 | + */ |
|
176 | + function schemaStartElement($parser, $name, $attrs) { |
|
177 | 177 | |
178 | - // position in the total number of elements, starting from 0 |
|
179 | - $pos = $this->position++; |
|
180 | - $depth = $this->depth++; |
|
181 | - // set self as current value for this depth |
|
182 | - $this->depth_array[$depth] = $pos; |
|
183 | - $this->message[$pos] = array('cdata' => ''); |
|
184 | - if ($depth > 0) { |
|
185 | - $this->defaultNamespace[$pos] = $this->defaultNamespace[$this->depth_array[$depth - 1]]; |
|
186 | - } else { |
|
187 | - $this->defaultNamespace[$pos] = false; |
|
188 | - } |
|
178 | + // position in the total number of elements, starting from 0 |
|
179 | + $pos = $this->position++; |
|
180 | + $depth = $this->depth++; |
|
181 | + // set self as current value for this depth |
|
182 | + $this->depth_array[$depth] = $pos; |
|
183 | + $this->message[$pos] = array('cdata' => ''); |
|
184 | + if ($depth > 0) { |
|
185 | + $this->defaultNamespace[$pos] = $this->defaultNamespace[$this->depth_array[$depth - 1]]; |
|
186 | + } else { |
|
187 | + $this->defaultNamespace[$pos] = false; |
|
188 | + } |
|
189 | 189 | |
190 | - // get element prefix |
|
191 | - if($prefix = $this->getPrefix($name)){ |
|
192 | - // get unqualified name |
|
193 | - $name = $this->getLocalPart($name); |
|
194 | - } else { |
|
195 | - $prefix = ''; |
|
190 | + // get element prefix |
|
191 | + if($prefix = $this->getPrefix($name)){ |
|
192 | + // get unqualified name |
|
193 | + $name = $this->getLocalPart($name); |
|
194 | + } else { |
|
195 | + $prefix = ''; |
|
196 | 196 | } |
197 | 197 | |
198 | 198 | // loop thru attributes, expanding, and registering namespace declarations |
199 | 199 | if(count($attrs) > 0){ |
200 | - foreach($attrs as $k => $v){ |
|
200 | + foreach($attrs as $k => $v){ |
|
201 | 201 | // if ns declarations, add to class level array of valid namespaces |
202 | - if(preg_match('/^xmlns/',$k)){ |
|
203 | - //$this->xdebug("$k: $v"); |
|
204 | - //$this->xdebug('ns_prefix: '.$this->getPrefix($k)); |
|
205 | - if($ns_prefix = substr(strrchr($k,':'),1)){ |
|
206 | - //$this->xdebug("Add namespace[$ns_prefix] = $v"); |
|
207 | - $this->namespaces[$ns_prefix] = $v; |
|
208 | - } else { |
|
209 | - $this->defaultNamespace[$pos] = $v; |
|
210 | - if (! $this->getPrefixFromNamespace($v)) { |
|
211 | - $this->namespaces['ns'.(count($this->namespaces)+1)] = $v; |
|
212 | - } |
|
213 | - } |
|
214 | - if($v == 'http://www.w3.org/2001/XMLSchema' || $v == 'http://www.w3.org/1999/XMLSchema' || $v == 'http://www.w3.org/2000/10/XMLSchema'){ |
|
215 | - $this->XMLSchemaVersion = $v; |
|
216 | - $this->namespaces['xsi'] = $v.'-instance'; |
|
217 | - } |
|
218 | - } |
|
219 | - } |
|
220 | - foreach($attrs as $k => $v){ |
|
202 | + if(preg_match('/^xmlns/',$k)){ |
|
203 | + //$this->xdebug("$k: $v"); |
|
204 | + //$this->xdebug('ns_prefix: '.$this->getPrefix($k)); |
|
205 | + if($ns_prefix = substr(strrchr($k,':'),1)){ |
|
206 | + //$this->xdebug("Add namespace[$ns_prefix] = $v"); |
|
207 | + $this->namespaces[$ns_prefix] = $v; |
|
208 | + } else { |
|
209 | + $this->defaultNamespace[$pos] = $v; |
|
210 | + if (! $this->getPrefixFromNamespace($v)) { |
|
211 | + $this->namespaces['ns'.(count($this->namespaces)+1)] = $v; |
|
212 | + } |
|
213 | + } |
|
214 | + if($v == 'http://www.w3.org/2001/XMLSchema' || $v == 'http://www.w3.org/1999/XMLSchema' || $v == 'http://www.w3.org/2000/10/XMLSchema'){ |
|
215 | + $this->XMLSchemaVersion = $v; |
|
216 | + $this->namespaces['xsi'] = $v.'-instance'; |
|
217 | + } |
|
218 | + } |
|
219 | + } |
|
220 | + foreach($attrs as $k => $v){ |
|
221 | 221 | // expand each attribute |
222 | 222 | $k = strpos($k,':') ? $this->expandQname($k) : $k; |
223 | 223 | $v = strpos($v,':') ? $this->expandQname($v) : $v; |
224 | - $eAttrs[$k] = $v; |
|
225 | - } |
|
226 | - $attrs = $eAttrs; |
|
224 | + $eAttrs[$k] = $v; |
|
225 | + } |
|
226 | + $attrs = $eAttrs; |
|
227 | 227 | } else { |
228 | - $attrs = array(); |
|
228 | + $attrs = array(); |
|
229 | 229 | } |
230 | - // find status, register data |
|
231 | - switch($name){ |
|
232 | - case 'all': // (optional) compositor content for a complexType |
|
233 | - case 'choice': |
|
234 | - case 'group': |
|
235 | - case 'sequence': |
|
236 | - //$this->xdebug("compositor $name for currentComplexType: $this->currentComplexType and currentElement: $this->currentElement"); |
|
237 | - $this->complexTypes[$this->currentComplexType]['compositor'] = $name; |
|
238 | - //if($name == 'all' || $name == 'sequence'){ |
|
239 | - // $this->complexTypes[$this->currentComplexType]['phpType'] = 'struct'; |
|
240 | - //} |
|
241 | - break; |
|
242 | - case 'attribute': // complexType attribute |
|
243 | - //$this->xdebug("parsing attribute $attrs[name] $attrs[ref] of value: ".$attrs['http://schemas.xmlsoap.org/wsdl/:arrayType']); |
|
244 | - $this->xdebug("parsing attribute:"); |
|
245 | - $this->appendDebug($this->varDump($attrs)); |
|
246 | - if (!isset($attrs['form'])) { |
|
247 | - // TODO: handle globals |
|
248 | - $attrs['form'] = $this->schemaInfo['attributeFormDefault']; |
|
249 | - } |
|
250 | - if (isset($attrs['http://schemas.xmlsoap.org/wsdl/:arrayType'])) { |
|
251 | - $v = $attrs['http://schemas.xmlsoap.org/wsdl/:arrayType']; |
|
252 | - if (!strpos($v, ':')) { |
|
253 | - // no namespace in arrayType attribute value... |
|
254 | - if ($this->defaultNamespace[$pos]) { |
|
255 | - // ...so use the default |
|
256 | - $attrs['http://schemas.xmlsoap.org/wsdl/:arrayType'] = $this->defaultNamespace[$pos] . ':' . $attrs['http://schemas.xmlsoap.org/wsdl/:arrayType']; |
|
257 | - } |
|
258 | - } |
|
259 | - } |
|
230 | + // find status, register data |
|
231 | + switch($name){ |
|
232 | + case 'all': // (optional) compositor content for a complexType |
|
233 | + case 'choice': |
|
234 | + case 'group': |
|
235 | + case 'sequence': |
|
236 | + //$this->xdebug("compositor $name for currentComplexType: $this->currentComplexType and currentElement: $this->currentElement"); |
|
237 | + $this->complexTypes[$this->currentComplexType]['compositor'] = $name; |
|
238 | + //if($name == 'all' || $name == 'sequence'){ |
|
239 | + // $this->complexTypes[$this->currentComplexType]['phpType'] = 'struct'; |
|
240 | + //} |
|
241 | + break; |
|
242 | + case 'attribute': // complexType attribute |
|
243 | + //$this->xdebug("parsing attribute $attrs[name] $attrs[ref] of value: ".$attrs['http://schemas.xmlsoap.org/wsdl/:arrayType']); |
|
244 | + $this->xdebug("parsing attribute:"); |
|
245 | + $this->appendDebug($this->varDump($attrs)); |
|
246 | + if (!isset($attrs['form'])) { |
|
247 | + // TODO: handle globals |
|
248 | + $attrs['form'] = $this->schemaInfo['attributeFormDefault']; |
|
249 | + } |
|
250 | + if (isset($attrs['http://schemas.xmlsoap.org/wsdl/:arrayType'])) { |
|
251 | + $v = $attrs['http://schemas.xmlsoap.org/wsdl/:arrayType']; |
|
252 | + if (!strpos($v, ':')) { |
|
253 | + // no namespace in arrayType attribute value... |
|
254 | + if ($this->defaultNamespace[$pos]) { |
|
255 | + // ...so use the default |
|
256 | + $attrs['http://schemas.xmlsoap.org/wsdl/:arrayType'] = $this->defaultNamespace[$pos] . ':' . $attrs['http://schemas.xmlsoap.org/wsdl/:arrayType']; |
|
257 | + } |
|
258 | + } |
|
259 | + } |
|
260 | 260 | if(isset($attrs['name'])){ |
261 | - $this->attributes[$attrs['name']] = $attrs; |
|
262 | - $aname = $attrs['name']; |
|
263 | - } elseif(isset($attrs['ref']) && $attrs['ref'] == 'http://schemas.xmlsoap.org/soap/encoding/:arrayType'){ |
|
264 | - if (isset($attrs['http://schemas.xmlsoap.org/wsdl/:arrayType'])) { |
|
265 | - $aname = $attrs['http://schemas.xmlsoap.org/wsdl/:arrayType']; |
|
266 | - } else { |
|
267 | - $aname = ''; |
|
268 | - } |
|
269 | - } elseif(isset($attrs['ref'])){ |
|
270 | - $aname = $attrs['ref']; |
|
261 | + $this->attributes[$attrs['name']] = $attrs; |
|
262 | + $aname = $attrs['name']; |
|
263 | + } elseif(isset($attrs['ref']) && $attrs['ref'] == 'http://schemas.xmlsoap.org/soap/encoding/:arrayType'){ |
|
264 | + if (isset($attrs['http://schemas.xmlsoap.org/wsdl/:arrayType'])) { |
|
265 | + $aname = $attrs['http://schemas.xmlsoap.org/wsdl/:arrayType']; |
|
266 | + } else { |
|
267 | + $aname = ''; |
|
268 | + } |
|
269 | + } elseif(isset($attrs['ref'])){ |
|
270 | + $aname = $attrs['ref']; |
|
271 | 271 | $this->attributes[$attrs['ref']] = $attrs; |
272 | - } |
|
272 | + } |
|
273 | 273 | |
274 | - if($this->currentComplexType){ // This should *always* be |
|
275 | - $this->complexTypes[$this->currentComplexType]['attrs'][$aname] = $attrs; |
|
276 | - } |
|
277 | - // arrayType attribute |
|
278 | - if(isset($attrs['http://schemas.xmlsoap.org/wsdl/:arrayType']) || $this->getLocalPart($aname) == 'arrayType'){ |
|
279 | - $this->complexTypes[$this->currentComplexType]['phpType'] = 'array'; |
|
280 | - $prefix = $this->getPrefix($aname); |
|
281 | - if(isset($attrs['http://schemas.xmlsoap.org/wsdl/:arrayType'])){ |
|
282 | - $v = $attrs['http://schemas.xmlsoap.org/wsdl/:arrayType']; |
|
283 | - } else { |
|
284 | - $v = ''; |
|
285 | - } |
|
274 | + if($this->currentComplexType){ // This should *always* be |
|
275 | + $this->complexTypes[$this->currentComplexType]['attrs'][$aname] = $attrs; |
|
276 | + } |
|
277 | + // arrayType attribute |
|
278 | + if(isset($attrs['http://schemas.xmlsoap.org/wsdl/:arrayType']) || $this->getLocalPart($aname) == 'arrayType'){ |
|
279 | + $this->complexTypes[$this->currentComplexType]['phpType'] = 'array'; |
|
280 | + $prefix = $this->getPrefix($aname); |
|
281 | + if(isset($attrs['http://schemas.xmlsoap.org/wsdl/:arrayType'])){ |
|
282 | + $v = $attrs['http://schemas.xmlsoap.org/wsdl/:arrayType']; |
|
283 | + } else { |
|
284 | + $v = ''; |
|
285 | + } |
|
286 | 286 | if(strpos($v,'[,]')){ |
287 | 287 | $this->complexTypes[$this->currentComplexType]['multidimensional'] = true; |
288 | 288 | } |
@@ -291,676 +291,676 @@ discard block |
||
291 | 291 | $v = $this->XMLSchemaVersion.':'.$v; |
292 | 292 | } |
293 | 293 | $this->complexTypes[$this->currentComplexType]['arrayType'] = $v; |
294 | - } |
|
295 | - break; |
|
296 | - case 'complexContent': // (optional) content for a complexType |
|
297 | - $this->xdebug("do nothing for element $name"); |
|
298 | - break; |
|
299 | - case 'complexType': |
|
300 | - array_push($this->complexTypeStack, $this->currentComplexType); |
|
301 | - if(isset($attrs['name'])){ |
|
302 | - // TODO: what is the scope of named complexTypes that appear |
|
303 | - // nested within other c complexTypes? |
|
304 | - $this->xdebug('processing named complexType '.$attrs['name']); |
|
305 | - //$this->currentElement = false; |
|
306 | - $this->currentComplexType = $attrs['name']; |
|
307 | - $this->complexTypes[$this->currentComplexType] = $attrs; |
|
308 | - $this->complexTypes[$this->currentComplexType]['typeClass'] = 'complexType'; |
|
309 | - // This is for constructs like |
|
310 | - // <complexType name="ListOfString" base="soap:Array"> |
|
311 | - // <sequence> |
|
312 | - // <element name="string" type="xsd:string" |
|
313 | - // minOccurs="0" maxOccurs="unbounded" /> |
|
314 | - // </sequence> |
|
315 | - // </complexType> |
|
316 | - if(isset($attrs['base']) && preg_match('/:Array$/',$attrs['base'])){ |
|
317 | - $this->xdebug('complexType is unusual array'); |
|
318 | - $this->complexTypes[$this->currentComplexType]['phpType'] = 'array'; |
|
319 | - } else { |
|
320 | - $this->complexTypes[$this->currentComplexType]['phpType'] = 'struct'; |
|
321 | - } |
|
322 | - } else { |
|
323 | - $name = $this->CreateTypeName($this->currentElement); |
|
324 | - $this->xdebug('processing unnamed complexType for element ' . $this->currentElement . ' named ' . $name); |
|
325 | - $this->currentComplexType = $name; |
|
326 | - //$this->currentElement = false; |
|
327 | - $this->complexTypes[$this->currentComplexType] = $attrs; |
|
328 | - $this->complexTypes[$this->currentComplexType]['typeClass'] = 'complexType'; |
|
329 | - // This is for constructs like |
|
330 | - // <complexType name="ListOfString" base="soap:Array"> |
|
331 | - // <sequence> |
|
332 | - // <element name="string" type="xsd:string" |
|
333 | - // minOccurs="0" maxOccurs="unbounded" /> |
|
334 | - // </sequence> |
|
335 | - // </complexType> |
|
336 | - if(isset($attrs['base']) && preg_match('/:Array$/',$attrs['base'])){ |
|
337 | - $this->xdebug('complexType is unusual array'); |
|
338 | - $this->complexTypes[$this->currentComplexType]['phpType'] = 'array'; |
|
339 | - } else { |
|
340 | - $this->complexTypes[$this->currentComplexType]['phpType'] = 'struct'; |
|
341 | - } |
|
342 | - } |
|
343 | - $this->complexTypes[$this->currentComplexType]['simpleContent'] = 'false'; |
|
344 | - break; |
|
345 | - case 'element': |
|
346 | - array_push($this->elementStack, $this->currentElement); |
|
347 | - if (!isset($attrs['form'])) { |
|
348 | - if ($this->currentComplexType) { |
|
349 | - $attrs['form'] = $this->schemaInfo['elementFormDefault']; |
|
350 | - } else { |
|
351 | - // global |
|
352 | - $attrs['form'] = 'qualified'; |
|
353 | - } |
|
354 | - } |
|
355 | - if(isset($attrs['type'])){ |
|
356 | - $this->xdebug("processing typed element ".$attrs['name']." of type ".$attrs['type']); |
|
357 | - if (! $this->getPrefix($attrs['type'])) { |
|
358 | - if ($this->defaultNamespace[$pos]) { |
|
359 | - $attrs['type'] = $this->defaultNamespace[$pos] . ':' . $attrs['type']; |
|
360 | - $this->xdebug('used default namespace to make type ' . $attrs['type']); |
|
361 | - } |
|
362 | - } |
|
363 | - // This is for constructs like |
|
364 | - // <complexType name="ListOfString" base="soap:Array"> |
|
365 | - // <sequence> |
|
366 | - // <element name="string" type="xsd:string" |
|
367 | - // minOccurs="0" maxOccurs="unbounded" /> |
|
368 | - // </sequence> |
|
369 | - // </complexType> |
|
370 | - if ($this->currentComplexType && $this->complexTypes[$this->currentComplexType]['phpType'] == 'array') { |
|
371 | - $this->xdebug('arrayType for unusual array is ' . $attrs['type']); |
|
372 | - $this->complexTypes[$this->currentComplexType]['arrayType'] = $attrs['type']; |
|
373 | - } |
|
374 | - $this->currentElement = $attrs['name']; |
|
375 | - $ename = $attrs['name']; |
|
376 | - } elseif(isset($attrs['ref'])){ |
|
377 | - $this->xdebug("processing element as ref to ".$attrs['ref']); |
|
378 | - $this->currentElement = "ref to ".$attrs['ref']; |
|
379 | - $ename = $this->getLocalPart($attrs['ref']); |
|
380 | - } else { |
|
381 | - $type = $this->CreateTypeName($this->currentComplexType . '_' . $attrs['name']); |
|
382 | - $this->xdebug("processing untyped element " . $attrs['name'] . ' type ' . $type); |
|
383 | - $this->currentElement = $attrs['name']; |
|
384 | - $attrs['type'] = $this->schemaTargetNamespace . ':' . $type; |
|
385 | - $ename = $attrs['name']; |
|
386 | - } |
|
387 | - if (isset($ename) && $this->currentComplexType) { |
|
388 | - $this->xdebug("add element $ename to complexType $this->currentComplexType"); |
|
389 | - $this->complexTypes[$this->currentComplexType]['elements'][$ename] = $attrs; |
|
390 | - } elseif (!isset($attrs['ref'])) { |
|
391 | - $this->xdebug("add element $ename to elements array"); |
|
392 | - $this->elements[ $attrs['name'] ] = $attrs; |
|
393 | - $this->elements[ $attrs['name'] ]['typeClass'] = 'element'; |
|
394 | - } |
|
395 | - break; |
|
396 | - case 'enumeration': // restriction value list member |
|
397 | - $this->xdebug('enumeration ' . $attrs['value']); |
|
398 | - if ($this->currentSimpleType) { |
|
399 | - $this->simpleTypes[$this->currentSimpleType]['enumeration'][] = $attrs['value']; |
|
400 | - } elseif ($this->currentComplexType) { |
|
401 | - $this->complexTypes[$this->currentComplexType]['enumeration'][] = $attrs['value']; |
|
402 | - } |
|
403 | - break; |
|
404 | - case 'extension': // simpleContent or complexContent type extension |
|
405 | - $this->xdebug('extension ' . $attrs['base']); |
|
406 | - if ($this->currentComplexType) { |
|
407 | - $ns = $this->getPrefix($attrs['base']); |
|
408 | - if ($ns == '') { |
|
409 | - $this->complexTypes[$this->currentComplexType]['extensionBase'] = $this->schemaTargetNamespace . ':' . $attrs['base']; |
|
410 | - } else { |
|
411 | - $this->complexTypes[$this->currentComplexType]['extensionBase'] = $attrs['base']; |
|
412 | - } |
|
413 | - } else { |
|
414 | - $this->xdebug('no current complexType to set extensionBase'); |
|
415 | - } |
|
416 | - break; |
|
417 | - case 'import': |
|
418 | - if (isset($attrs['schemaLocation'])) { |
|
419 | - $this->xdebug('import namespace ' . $attrs['namespace'] . ' from ' . $attrs['schemaLocation']); |
|
294 | + } |
|
295 | + break; |
|
296 | + case 'complexContent': // (optional) content for a complexType |
|
297 | + $this->xdebug("do nothing for element $name"); |
|
298 | + break; |
|
299 | + case 'complexType': |
|
300 | + array_push($this->complexTypeStack, $this->currentComplexType); |
|
301 | + if(isset($attrs['name'])){ |
|
302 | + // TODO: what is the scope of named complexTypes that appear |
|
303 | + // nested within other c complexTypes? |
|
304 | + $this->xdebug('processing named complexType '.$attrs['name']); |
|
305 | + //$this->currentElement = false; |
|
306 | + $this->currentComplexType = $attrs['name']; |
|
307 | + $this->complexTypes[$this->currentComplexType] = $attrs; |
|
308 | + $this->complexTypes[$this->currentComplexType]['typeClass'] = 'complexType'; |
|
309 | + // This is for constructs like |
|
310 | + // <complexType name="ListOfString" base="soap:Array"> |
|
311 | + // <sequence> |
|
312 | + // <element name="string" type="xsd:string" |
|
313 | + // minOccurs="0" maxOccurs="unbounded" /> |
|
314 | + // </sequence> |
|
315 | + // </complexType> |
|
316 | + if(isset($attrs['base']) && preg_match('/:Array$/',$attrs['base'])){ |
|
317 | + $this->xdebug('complexType is unusual array'); |
|
318 | + $this->complexTypes[$this->currentComplexType]['phpType'] = 'array'; |
|
319 | + } else { |
|
320 | + $this->complexTypes[$this->currentComplexType]['phpType'] = 'struct'; |
|
321 | + } |
|
322 | + } else { |
|
323 | + $name = $this->CreateTypeName($this->currentElement); |
|
324 | + $this->xdebug('processing unnamed complexType for element ' . $this->currentElement . ' named ' . $name); |
|
325 | + $this->currentComplexType = $name; |
|
326 | + //$this->currentElement = false; |
|
327 | + $this->complexTypes[$this->currentComplexType] = $attrs; |
|
328 | + $this->complexTypes[$this->currentComplexType]['typeClass'] = 'complexType'; |
|
329 | + // This is for constructs like |
|
330 | + // <complexType name="ListOfString" base="soap:Array"> |
|
331 | + // <sequence> |
|
332 | + // <element name="string" type="xsd:string" |
|
333 | + // minOccurs="0" maxOccurs="unbounded" /> |
|
334 | + // </sequence> |
|
335 | + // </complexType> |
|
336 | + if(isset($attrs['base']) && preg_match('/:Array$/',$attrs['base'])){ |
|
337 | + $this->xdebug('complexType is unusual array'); |
|
338 | + $this->complexTypes[$this->currentComplexType]['phpType'] = 'array'; |
|
339 | + } else { |
|
340 | + $this->complexTypes[$this->currentComplexType]['phpType'] = 'struct'; |
|
341 | + } |
|
342 | + } |
|
343 | + $this->complexTypes[$this->currentComplexType]['simpleContent'] = 'false'; |
|
344 | + break; |
|
345 | + case 'element': |
|
346 | + array_push($this->elementStack, $this->currentElement); |
|
347 | + if (!isset($attrs['form'])) { |
|
348 | + if ($this->currentComplexType) { |
|
349 | + $attrs['form'] = $this->schemaInfo['elementFormDefault']; |
|
350 | + } else { |
|
351 | + // global |
|
352 | + $attrs['form'] = 'qualified'; |
|
353 | + } |
|
354 | + } |
|
355 | + if(isset($attrs['type'])){ |
|
356 | + $this->xdebug("processing typed element ".$attrs['name']." of type ".$attrs['type']); |
|
357 | + if (! $this->getPrefix($attrs['type'])) { |
|
358 | + if ($this->defaultNamespace[$pos]) { |
|
359 | + $attrs['type'] = $this->defaultNamespace[$pos] . ':' . $attrs['type']; |
|
360 | + $this->xdebug('used default namespace to make type ' . $attrs['type']); |
|
361 | + } |
|
362 | + } |
|
363 | + // This is for constructs like |
|
364 | + // <complexType name="ListOfString" base="soap:Array"> |
|
365 | + // <sequence> |
|
366 | + // <element name="string" type="xsd:string" |
|
367 | + // minOccurs="0" maxOccurs="unbounded" /> |
|
368 | + // </sequence> |
|
369 | + // </complexType> |
|
370 | + if ($this->currentComplexType && $this->complexTypes[$this->currentComplexType]['phpType'] == 'array') { |
|
371 | + $this->xdebug('arrayType for unusual array is ' . $attrs['type']); |
|
372 | + $this->complexTypes[$this->currentComplexType]['arrayType'] = $attrs['type']; |
|
373 | + } |
|
374 | + $this->currentElement = $attrs['name']; |
|
375 | + $ename = $attrs['name']; |
|
376 | + } elseif(isset($attrs['ref'])){ |
|
377 | + $this->xdebug("processing element as ref to ".$attrs['ref']); |
|
378 | + $this->currentElement = "ref to ".$attrs['ref']; |
|
379 | + $ename = $this->getLocalPart($attrs['ref']); |
|
380 | + } else { |
|
381 | + $type = $this->CreateTypeName($this->currentComplexType . '_' . $attrs['name']); |
|
382 | + $this->xdebug("processing untyped element " . $attrs['name'] . ' type ' . $type); |
|
383 | + $this->currentElement = $attrs['name']; |
|
384 | + $attrs['type'] = $this->schemaTargetNamespace . ':' . $type; |
|
385 | + $ename = $attrs['name']; |
|
386 | + } |
|
387 | + if (isset($ename) && $this->currentComplexType) { |
|
388 | + $this->xdebug("add element $ename to complexType $this->currentComplexType"); |
|
389 | + $this->complexTypes[$this->currentComplexType]['elements'][$ename] = $attrs; |
|
390 | + } elseif (!isset($attrs['ref'])) { |
|
391 | + $this->xdebug("add element $ename to elements array"); |
|
392 | + $this->elements[ $attrs['name'] ] = $attrs; |
|
393 | + $this->elements[ $attrs['name'] ]['typeClass'] = 'element'; |
|
394 | + } |
|
395 | + break; |
|
396 | + case 'enumeration': // restriction value list member |
|
397 | + $this->xdebug('enumeration ' . $attrs['value']); |
|
398 | + if ($this->currentSimpleType) { |
|
399 | + $this->simpleTypes[$this->currentSimpleType]['enumeration'][] = $attrs['value']; |
|
400 | + } elseif ($this->currentComplexType) { |
|
401 | + $this->complexTypes[$this->currentComplexType]['enumeration'][] = $attrs['value']; |
|
402 | + } |
|
403 | + break; |
|
404 | + case 'extension': // simpleContent or complexContent type extension |
|
405 | + $this->xdebug('extension ' . $attrs['base']); |
|
406 | + if ($this->currentComplexType) { |
|
407 | + $ns = $this->getPrefix($attrs['base']); |
|
408 | + if ($ns == '') { |
|
409 | + $this->complexTypes[$this->currentComplexType]['extensionBase'] = $this->schemaTargetNamespace . ':' . $attrs['base']; |
|
410 | + } else { |
|
411 | + $this->complexTypes[$this->currentComplexType]['extensionBase'] = $attrs['base']; |
|
412 | + } |
|
413 | + } else { |
|
414 | + $this->xdebug('no current complexType to set extensionBase'); |
|
415 | + } |
|
416 | + break; |
|
417 | + case 'import': |
|
418 | + if (isset($attrs['schemaLocation'])) { |
|
419 | + $this->xdebug('import namespace ' . $attrs['namespace'] . ' from ' . $attrs['schemaLocation']); |
|
420 | 420 | $this->imports[$attrs['namespace']][] = array('location' => $attrs['schemaLocation'], 'loaded' => false); |
421 | - } else { |
|
422 | - $this->xdebug('import namespace ' . $attrs['namespace']); |
|
421 | + } else { |
|
422 | + $this->xdebug('import namespace ' . $attrs['namespace']); |
|
423 | 423 | $this->imports[$attrs['namespace']][] = array('location' => '', 'loaded' => true); |
424 | - if (! $this->getPrefixFromNamespace($attrs['namespace'])) { |
|
425 | - $this->namespaces['ns'.(count($this->namespaces)+1)] = $attrs['namespace']; |
|
426 | - } |
|
427 | - } |
|
428 | - break; |
|
429 | - case 'include': |
|
430 | - if (isset($attrs['schemaLocation'])) { |
|
431 | - $this->xdebug('include into namespace ' . $this->schemaTargetNamespace . ' from ' . $attrs['schemaLocation']); |
|
424 | + if (! $this->getPrefixFromNamespace($attrs['namespace'])) { |
|
425 | + $this->namespaces['ns'.(count($this->namespaces)+1)] = $attrs['namespace']; |
|
426 | + } |
|
427 | + } |
|
428 | + break; |
|
429 | + case 'include': |
|
430 | + if (isset($attrs['schemaLocation'])) { |
|
431 | + $this->xdebug('include into namespace ' . $this->schemaTargetNamespace . ' from ' . $attrs['schemaLocation']); |
|
432 | 432 | $this->imports[$this->schemaTargetNamespace][] = array('location' => $attrs['schemaLocation'], 'loaded' => false); |
433 | - } else { |
|
434 | - $this->xdebug('ignoring invalid XML Schema construct: include without schemaLocation attribute'); |
|
435 | - } |
|
436 | - break; |
|
437 | - case 'list': // simpleType value list |
|
438 | - $this->xdebug("do nothing for element $name"); |
|
439 | - break; |
|
440 | - case 'restriction': // simpleType, simpleContent or complexContent value restriction |
|
441 | - $this->xdebug('restriction ' . $attrs['base']); |
|
442 | - if($this->currentSimpleType){ |
|
443 | - $this->simpleTypes[$this->currentSimpleType]['type'] = $attrs['base']; |
|
444 | - } elseif($this->currentComplexType){ |
|
445 | - $this->complexTypes[$this->currentComplexType]['restrictionBase'] = $attrs['base']; |
|
446 | - if(strstr($attrs['base'],':') == ':Array'){ |
|
447 | - $this->complexTypes[$this->currentComplexType]['phpType'] = 'array'; |
|
448 | - } |
|
449 | - } |
|
450 | - break; |
|
451 | - case 'schema': |
|
452 | - $this->schemaInfo = $attrs; |
|
453 | - $this->schemaInfo['schemaVersion'] = $this->getNamespaceFromPrefix($prefix); |
|
454 | - if (isset($attrs['targetNamespace'])) { |
|
455 | - $this->schemaTargetNamespace = $attrs['targetNamespace']; |
|
456 | - } |
|
457 | - if (!isset($attrs['elementFormDefault'])) { |
|
458 | - $this->schemaInfo['elementFormDefault'] = 'unqualified'; |
|
459 | - } |
|
460 | - if (!isset($attrs['attributeFormDefault'])) { |
|
461 | - $this->schemaInfo['attributeFormDefault'] = 'unqualified'; |
|
462 | - } |
|
463 | - break; |
|
464 | - case 'simpleContent': // (optional) content for a complexType |
|
465 | - if ($this->currentComplexType) { // This should *always* be |
|
466 | - $this->complexTypes[$this->currentComplexType]['simpleContent'] = 'true'; |
|
467 | - } else { |
|
468 | - $this->xdebug("do nothing for element $name because there is no current complexType"); |
|
469 | - } |
|
470 | - break; |
|
471 | - case 'simpleType': |
|
472 | - array_push($this->simpleTypeStack, $this->currentSimpleType); |
|
473 | - if(isset($attrs['name'])){ |
|
474 | - $this->xdebug("processing simpleType for name " . $attrs['name']); |
|
475 | - $this->currentSimpleType = $attrs['name']; |
|
476 | - $this->simpleTypes[ $attrs['name'] ] = $attrs; |
|
477 | - $this->simpleTypes[ $attrs['name'] ]['typeClass'] = 'simpleType'; |
|
478 | - $this->simpleTypes[ $attrs['name'] ]['phpType'] = 'scalar'; |
|
479 | - } else { |
|
480 | - $name = $this->CreateTypeName($this->currentComplexType . '_' . $this->currentElement); |
|
481 | - $this->xdebug('processing unnamed simpleType for element ' . $this->currentElement . ' named ' . $name); |
|
482 | - $this->currentSimpleType = $name; |
|
483 | - //$this->currentElement = false; |
|
484 | - $this->simpleTypes[$this->currentSimpleType] = $attrs; |
|
485 | - $this->simpleTypes[$this->currentSimpleType]['phpType'] = 'scalar'; |
|
486 | - } |
|
487 | - break; |
|
488 | - case 'union': // simpleType type list |
|
489 | - $this->xdebug("do nothing for element $name"); |
|
490 | - break; |
|
491 | - default: |
|
492 | - $this->xdebug("do not have any logic to process element $name"); |
|
493 | - } |
|
494 | - } |
|
433 | + } else { |
|
434 | + $this->xdebug('ignoring invalid XML Schema construct: include without schemaLocation attribute'); |
|
435 | + } |
|
436 | + break; |
|
437 | + case 'list': // simpleType value list |
|
438 | + $this->xdebug("do nothing for element $name"); |
|
439 | + break; |
|
440 | + case 'restriction': // simpleType, simpleContent or complexContent value restriction |
|
441 | + $this->xdebug('restriction ' . $attrs['base']); |
|
442 | + if($this->currentSimpleType){ |
|
443 | + $this->simpleTypes[$this->currentSimpleType]['type'] = $attrs['base']; |
|
444 | + } elseif($this->currentComplexType){ |
|
445 | + $this->complexTypes[$this->currentComplexType]['restrictionBase'] = $attrs['base']; |
|
446 | + if(strstr($attrs['base'],':') == ':Array'){ |
|
447 | + $this->complexTypes[$this->currentComplexType]['phpType'] = 'array'; |
|
448 | + } |
|
449 | + } |
|
450 | + break; |
|
451 | + case 'schema': |
|
452 | + $this->schemaInfo = $attrs; |
|
453 | + $this->schemaInfo['schemaVersion'] = $this->getNamespaceFromPrefix($prefix); |
|
454 | + if (isset($attrs['targetNamespace'])) { |
|
455 | + $this->schemaTargetNamespace = $attrs['targetNamespace']; |
|
456 | + } |
|
457 | + if (!isset($attrs['elementFormDefault'])) { |
|
458 | + $this->schemaInfo['elementFormDefault'] = 'unqualified'; |
|
459 | + } |
|
460 | + if (!isset($attrs['attributeFormDefault'])) { |
|
461 | + $this->schemaInfo['attributeFormDefault'] = 'unqualified'; |
|
462 | + } |
|
463 | + break; |
|
464 | + case 'simpleContent': // (optional) content for a complexType |
|
465 | + if ($this->currentComplexType) { // This should *always* be |
|
466 | + $this->complexTypes[$this->currentComplexType]['simpleContent'] = 'true'; |
|
467 | + } else { |
|
468 | + $this->xdebug("do nothing for element $name because there is no current complexType"); |
|
469 | + } |
|
470 | + break; |
|
471 | + case 'simpleType': |
|
472 | + array_push($this->simpleTypeStack, $this->currentSimpleType); |
|
473 | + if(isset($attrs['name'])){ |
|
474 | + $this->xdebug("processing simpleType for name " . $attrs['name']); |
|
475 | + $this->currentSimpleType = $attrs['name']; |
|
476 | + $this->simpleTypes[ $attrs['name'] ] = $attrs; |
|
477 | + $this->simpleTypes[ $attrs['name'] ]['typeClass'] = 'simpleType'; |
|
478 | + $this->simpleTypes[ $attrs['name'] ]['phpType'] = 'scalar'; |
|
479 | + } else { |
|
480 | + $name = $this->CreateTypeName($this->currentComplexType . '_' . $this->currentElement); |
|
481 | + $this->xdebug('processing unnamed simpleType for element ' . $this->currentElement . ' named ' . $name); |
|
482 | + $this->currentSimpleType = $name; |
|
483 | + //$this->currentElement = false; |
|
484 | + $this->simpleTypes[$this->currentSimpleType] = $attrs; |
|
485 | + $this->simpleTypes[$this->currentSimpleType]['phpType'] = 'scalar'; |
|
486 | + } |
|
487 | + break; |
|
488 | + case 'union': // simpleType type list |
|
489 | + $this->xdebug("do nothing for element $name"); |
|
490 | + break; |
|
491 | + default: |
|
492 | + $this->xdebug("do not have any logic to process element $name"); |
|
493 | + } |
|
494 | + } |
|
495 | 495 | |
496 | - /** |
|
497 | - * end-element handler |
|
498 | - * |
|
499 | - * @param string $parser XML parser object |
|
500 | - * @param string $name element name |
|
501 | - * @access private |
|
502 | - */ |
|
503 | - function schemaEndElement($parser, $name) { |
|
504 | - // bring depth down a notch |
|
505 | - $this->depth--; |
|
506 | - // position of current element is equal to the last value left in depth_array for my depth |
|
507 | - if(isset($this->depth_array[$this->depth])){ |
|
508 | - $pos = $this->depth_array[$this->depth]; |
|
496 | + /** |
|
497 | + * end-element handler |
|
498 | + * |
|
499 | + * @param string $parser XML parser object |
|
500 | + * @param string $name element name |
|
501 | + * @access private |
|
502 | + */ |
|
503 | + function schemaEndElement($parser, $name) { |
|
504 | + // bring depth down a notch |
|
505 | + $this->depth--; |
|
506 | + // position of current element is equal to the last value left in depth_array for my depth |
|
507 | + if(isset($this->depth_array[$this->depth])){ |
|
508 | + $pos = $this->depth_array[$this->depth]; |
|
509 | + } |
|
510 | + // get element prefix |
|
511 | + if ($prefix = $this->getPrefix($name)){ |
|
512 | + // get unqualified name |
|
513 | + $name = $this->getLocalPart($name); |
|
514 | + } else { |
|
515 | + $prefix = ''; |
|
516 | + } |
|
517 | + // move on... |
|
518 | + if($name == 'complexType'){ |
|
519 | + $this->xdebug('done processing complexType ' . ($this->currentComplexType ? $this->currentComplexType : '(unknown)')); |
|
520 | + $this->xdebug($this->varDump($this->complexTypes[$this->currentComplexType])); |
|
521 | + $this->currentComplexType = array_pop($this->complexTypeStack); |
|
522 | + //$this->currentElement = false; |
|
509 | 523 | } |
510 | - // get element prefix |
|
511 | - if ($prefix = $this->getPrefix($name)){ |
|
512 | - // get unqualified name |
|
513 | - $name = $this->getLocalPart($name); |
|
514 | - } else { |
|
515 | - $prefix = ''; |
|
524 | + if($name == 'element'){ |
|
525 | + $this->xdebug('done processing element ' . ($this->currentElement ? $this->currentElement : '(unknown)')); |
|
526 | + $this->currentElement = array_pop($this->elementStack); |
|
516 | 527 | } |
517 | - // move on... |
|
518 | - if($name == 'complexType'){ |
|
519 | - $this->xdebug('done processing complexType ' . ($this->currentComplexType ? $this->currentComplexType : '(unknown)')); |
|
520 | - $this->xdebug($this->varDump($this->complexTypes[$this->currentComplexType])); |
|
521 | - $this->currentComplexType = array_pop($this->complexTypeStack); |
|
522 | - //$this->currentElement = false; |
|
523 | - } |
|
524 | - if($name == 'element'){ |
|
525 | - $this->xdebug('done processing element ' . ($this->currentElement ? $this->currentElement : '(unknown)')); |
|
526 | - $this->currentElement = array_pop($this->elementStack); |
|
527 | - } |
|
528 | - if($name == 'simpleType'){ |
|
529 | - $this->xdebug('done processing simpleType ' . ($this->currentSimpleType ? $this->currentSimpleType : '(unknown)')); |
|
530 | - $this->xdebug($this->varDump($this->simpleTypes[$this->currentSimpleType])); |
|
531 | - $this->currentSimpleType = array_pop($this->simpleTypeStack); |
|
532 | - } |
|
533 | - } |
|
528 | + if($name == 'simpleType'){ |
|
529 | + $this->xdebug('done processing simpleType ' . ($this->currentSimpleType ? $this->currentSimpleType : '(unknown)')); |
|
530 | + $this->xdebug($this->varDump($this->simpleTypes[$this->currentSimpleType])); |
|
531 | + $this->currentSimpleType = array_pop($this->simpleTypeStack); |
|
532 | + } |
|
533 | + } |
|
534 | 534 | |
535 | - /** |
|
536 | - * element content handler |
|
537 | - * |
|
538 | - * @param string $parser XML parser object |
|
539 | - * @param string $data element content |
|
540 | - * @access private |
|
541 | - */ |
|
542 | - function schemaCharacterData($parser, $data){ |
|
543 | - $pos = $this->depth_array[$this->depth - 1]; |
|
544 | - $this->message[$pos]['cdata'] .= $data; |
|
545 | - } |
|
535 | + /** |
|
536 | + * element content handler |
|
537 | + * |
|
538 | + * @param string $parser XML parser object |
|
539 | + * @param string $data element content |
|
540 | + * @access private |
|
541 | + */ |
|
542 | + function schemaCharacterData($parser, $data){ |
|
543 | + $pos = $this->depth_array[$this->depth - 1]; |
|
544 | + $this->message[$pos]['cdata'] .= $data; |
|
545 | + } |
|
546 | 546 | |
547 | - /** |
|
548 | - * serialize the schema |
|
549 | - * |
|
550 | - * @access public |
|
551 | - */ |
|
552 | - function serializeSchema(){ |
|
547 | + /** |
|
548 | + * serialize the schema |
|
549 | + * |
|
550 | + * @access public |
|
551 | + */ |
|
552 | + function serializeSchema(){ |
|
553 | 553 | |
554 | - $schemaPrefix = $this->getPrefixFromNamespace($this->XMLSchemaVersion); |
|
555 | - $xml = ''; |
|
556 | - // imports |
|
557 | - if (sizeof($this->imports) > 0) { |
|
558 | - foreach($this->imports as $ns => $list) { |
|
559 | - foreach ($list as $ii) { |
|
560 | - if ($ii['location'] != '') { |
|
561 | - $xml .= " <$schemaPrefix:import location=\"" . $ii['location'] . '" namespace="' . $ns . "\" />\n"; |
|
562 | - } else { |
|
563 | - $xml .= " <$schemaPrefix:import namespace=\"" . $ns . "\" />\n"; |
|
564 | - } |
|
565 | - } |
|
566 | - } |
|
567 | - } |
|
568 | - // complex types |
|
569 | - foreach($this->complexTypes as $typeName => $attrs){ |
|
570 | - $contentStr = ''; |
|
571 | - // serialize child elements |
|
572 | - if(isset($attrs['elements']) && (count($attrs['elements']) > 0)){ |
|
573 | - foreach($attrs['elements'] as $element => $eParts){ |
|
574 | - if(isset($eParts['ref'])){ |
|
575 | - $contentStr .= " <$schemaPrefix:element ref=\"$element\"/>\n"; |
|
576 | - } else { |
|
577 | - $contentStr .= " <$schemaPrefix:element name=\"$element\" type=\"" . $this->contractQName($eParts['type']) . "\""; |
|
578 | - foreach ($eParts as $aName => $aValue) { |
|
579 | - // handle, e.g., abstract, default, form, minOccurs, maxOccurs, nillable |
|
580 | - if ($aName != 'name' && $aName != 'type') { |
|
581 | - $contentStr .= " $aName=\"$aValue\""; |
|
582 | - } |
|
583 | - } |
|
584 | - $contentStr .= "/>\n"; |
|
585 | - } |
|
586 | - } |
|
587 | - // compositor wraps elements |
|
588 | - if (isset($attrs['compositor']) && ($attrs['compositor'] != '')) { |
|
589 | - $contentStr = " <$schemaPrefix:$attrs[compositor]>\n".$contentStr." </$schemaPrefix:$attrs[compositor]>\n"; |
|
590 | - } |
|
591 | - } |
|
592 | - // attributes |
|
593 | - if(isset($attrs['attrs']) && (count($attrs['attrs']) >= 1)){ |
|
594 | - foreach($attrs['attrs'] as $attr => $aParts){ |
|
595 | - $contentStr .= " <$schemaPrefix:attribute"; |
|
596 | - foreach ($aParts as $a => $v) { |
|
597 | - if ($a == 'ref' || $a == 'type') { |
|
598 | - $contentStr .= " $a=\"".$this->contractQName($v).'"'; |
|
599 | - } elseif ($a == 'http://schemas.xmlsoap.org/wsdl/:arrayType') { |
|
600 | - $this->usedNamespaces['wsdl'] = $this->namespaces['wsdl']; |
|
601 | - $contentStr .= ' wsdl:arrayType="'.$this->contractQName($v).'"'; |
|
602 | - } else { |
|
603 | - $contentStr .= " $a=\"$v\""; |
|
604 | - } |
|
605 | - } |
|
606 | - $contentStr .= "/>\n"; |
|
607 | - } |
|
608 | - } |
|
609 | - // if restriction |
|
610 | - if (isset($attrs['restrictionBase']) && $attrs['restrictionBase'] != ''){ |
|
611 | - $contentStr = " <$schemaPrefix:restriction base=\"".$this->contractQName($attrs['restrictionBase'])."\">\n".$contentStr." </$schemaPrefix:restriction>\n"; |
|
612 | - // complex or simple content |
|
613 | - if ((isset($attrs['elements']) && count($attrs['elements']) > 0) || (isset($attrs['attrs']) && count($attrs['attrs']) > 0)){ |
|
614 | - $contentStr = " <$schemaPrefix:complexContent>\n".$contentStr." </$schemaPrefix:complexContent>\n"; |
|
615 | - } |
|
616 | - } |
|
617 | - // finalize complex type |
|
618 | - if($contentStr != ''){ |
|
619 | - $contentStr = " <$schemaPrefix:complexType name=\"$typeName\">\n".$contentStr." </$schemaPrefix:complexType>\n"; |
|
620 | - } else { |
|
621 | - $contentStr = " <$schemaPrefix:complexType name=\"$typeName\"/>\n"; |
|
622 | - } |
|
623 | - $xml .= $contentStr; |
|
624 | - } |
|
625 | - // simple types |
|
626 | - if(isset($this->simpleTypes) && count($this->simpleTypes) > 0){ |
|
627 | - foreach($this->simpleTypes as $typeName => $eParts){ |
|
628 | - $xml .= " <$schemaPrefix:simpleType name=\"$typeName\">\n <$schemaPrefix:restriction base=\"".$this->contractQName($eParts['type'])."\">\n"; |
|
629 | - if (isset($eParts['enumeration'])) { |
|
630 | - foreach ($eParts['enumeration'] as $e) { |
|
631 | - $xml .= " <$schemaPrefix:enumeration value=\"$e\"/>\n"; |
|
632 | - } |
|
633 | - } |
|
634 | - $xml .= " </$schemaPrefix:restriction>\n </$schemaPrefix:simpleType>"; |
|
635 | - } |
|
636 | - } |
|
637 | - // elements |
|
638 | - if(isset($this->elements) && count($this->elements) > 0){ |
|
639 | - foreach($this->elements as $element => $eParts){ |
|
640 | - $xml .= " <$schemaPrefix:element name=\"$element\" type=\"".$this->contractQName($eParts['type'])."\"/>\n"; |
|
641 | - } |
|
642 | - } |
|
643 | - // attributes |
|
644 | - if(isset($this->attributes) && count($this->attributes) > 0){ |
|
645 | - foreach($this->attributes as $attr => $aParts){ |
|
646 | - $xml .= " <$schemaPrefix:attribute name=\"$attr\" type=\"".$this->contractQName($aParts['type'])."\"\n/>"; |
|
647 | - } |
|
648 | - } |
|
649 | - // finish 'er up |
|
650 | - $attr = ''; |
|
651 | - foreach ($this->schemaInfo as $k => $v) { |
|
652 | - if ($k == 'elementFormDefault' || $k == 'attributeFormDefault') { |
|
653 | - $attr .= " $k=\"$v\""; |
|
654 | - } |
|
655 | - } |
|
656 | - $el = "<$schemaPrefix:schema$attr targetNamespace=\"$this->schemaTargetNamespace\"\n"; |
|
657 | - foreach (array_diff($this->usedNamespaces, $this->enclosingNamespaces) as $nsp => $ns) { |
|
658 | - $el .= " xmlns:$nsp=\"$ns\""; |
|
659 | - } |
|
660 | - $xml = $el . ">\n".$xml."</$schemaPrefix:schema>\n"; |
|
661 | - return $xml; |
|
662 | - } |
|
554 | + $schemaPrefix = $this->getPrefixFromNamespace($this->XMLSchemaVersion); |
|
555 | + $xml = ''; |
|
556 | + // imports |
|
557 | + if (sizeof($this->imports) > 0) { |
|
558 | + foreach($this->imports as $ns => $list) { |
|
559 | + foreach ($list as $ii) { |
|
560 | + if ($ii['location'] != '') { |
|
561 | + $xml .= " <$schemaPrefix:import location=\"" . $ii['location'] . '" namespace="' . $ns . "\" />\n"; |
|
562 | + } else { |
|
563 | + $xml .= " <$schemaPrefix:import namespace=\"" . $ns . "\" />\n"; |
|
564 | + } |
|
565 | + } |
|
566 | + } |
|
567 | + } |
|
568 | + // complex types |
|
569 | + foreach($this->complexTypes as $typeName => $attrs){ |
|
570 | + $contentStr = ''; |
|
571 | + // serialize child elements |
|
572 | + if(isset($attrs['elements']) && (count($attrs['elements']) > 0)){ |
|
573 | + foreach($attrs['elements'] as $element => $eParts){ |
|
574 | + if(isset($eParts['ref'])){ |
|
575 | + $contentStr .= " <$schemaPrefix:element ref=\"$element\"/>\n"; |
|
576 | + } else { |
|
577 | + $contentStr .= " <$schemaPrefix:element name=\"$element\" type=\"" . $this->contractQName($eParts['type']) . "\""; |
|
578 | + foreach ($eParts as $aName => $aValue) { |
|
579 | + // handle, e.g., abstract, default, form, minOccurs, maxOccurs, nillable |
|
580 | + if ($aName != 'name' && $aName != 'type') { |
|
581 | + $contentStr .= " $aName=\"$aValue\""; |
|
582 | + } |
|
583 | + } |
|
584 | + $contentStr .= "/>\n"; |
|
585 | + } |
|
586 | + } |
|
587 | + // compositor wraps elements |
|
588 | + if (isset($attrs['compositor']) && ($attrs['compositor'] != '')) { |
|
589 | + $contentStr = " <$schemaPrefix:$attrs[compositor]>\n".$contentStr." </$schemaPrefix:$attrs[compositor]>\n"; |
|
590 | + } |
|
591 | + } |
|
592 | + // attributes |
|
593 | + if(isset($attrs['attrs']) && (count($attrs['attrs']) >= 1)){ |
|
594 | + foreach($attrs['attrs'] as $attr => $aParts){ |
|
595 | + $contentStr .= " <$schemaPrefix:attribute"; |
|
596 | + foreach ($aParts as $a => $v) { |
|
597 | + if ($a == 'ref' || $a == 'type') { |
|
598 | + $contentStr .= " $a=\"".$this->contractQName($v).'"'; |
|
599 | + } elseif ($a == 'http://schemas.xmlsoap.org/wsdl/:arrayType') { |
|
600 | + $this->usedNamespaces['wsdl'] = $this->namespaces['wsdl']; |
|
601 | + $contentStr .= ' wsdl:arrayType="'.$this->contractQName($v).'"'; |
|
602 | + } else { |
|
603 | + $contentStr .= " $a=\"$v\""; |
|
604 | + } |
|
605 | + } |
|
606 | + $contentStr .= "/>\n"; |
|
607 | + } |
|
608 | + } |
|
609 | + // if restriction |
|
610 | + if (isset($attrs['restrictionBase']) && $attrs['restrictionBase'] != ''){ |
|
611 | + $contentStr = " <$schemaPrefix:restriction base=\"".$this->contractQName($attrs['restrictionBase'])."\">\n".$contentStr." </$schemaPrefix:restriction>\n"; |
|
612 | + // complex or simple content |
|
613 | + if ((isset($attrs['elements']) && count($attrs['elements']) > 0) || (isset($attrs['attrs']) && count($attrs['attrs']) > 0)){ |
|
614 | + $contentStr = " <$schemaPrefix:complexContent>\n".$contentStr." </$schemaPrefix:complexContent>\n"; |
|
615 | + } |
|
616 | + } |
|
617 | + // finalize complex type |
|
618 | + if($contentStr != ''){ |
|
619 | + $contentStr = " <$schemaPrefix:complexType name=\"$typeName\">\n".$contentStr." </$schemaPrefix:complexType>\n"; |
|
620 | + } else { |
|
621 | + $contentStr = " <$schemaPrefix:complexType name=\"$typeName\"/>\n"; |
|
622 | + } |
|
623 | + $xml .= $contentStr; |
|
624 | + } |
|
625 | + // simple types |
|
626 | + if(isset($this->simpleTypes) && count($this->simpleTypes) > 0){ |
|
627 | + foreach($this->simpleTypes as $typeName => $eParts){ |
|
628 | + $xml .= " <$schemaPrefix:simpleType name=\"$typeName\">\n <$schemaPrefix:restriction base=\"".$this->contractQName($eParts['type'])."\">\n"; |
|
629 | + if (isset($eParts['enumeration'])) { |
|
630 | + foreach ($eParts['enumeration'] as $e) { |
|
631 | + $xml .= " <$schemaPrefix:enumeration value=\"$e\"/>\n"; |
|
632 | + } |
|
633 | + } |
|
634 | + $xml .= " </$schemaPrefix:restriction>\n </$schemaPrefix:simpleType>"; |
|
635 | + } |
|
636 | + } |
|
637 | + // elements |
|
638 | + if(isset($this->elements) && count($this->elements) > 0){ |
|
639 | + foreach($this->elements as $element => $eParts){ |
|
640 | + $xml .= " <$schemaPrefix:element name=\"$element\" type=\"".$this->contractQName($eParts['type'])."\"/>\n"; |
|
641 | + } |
|
642 | + } |
|
643 | + // attributes |
|
644 | + if(isset($this->attributes) && count($this->attributes) > 0){ |
|
645 | + foreach($this->attributes as $attr => $aParts){ |
|
646 | + $xml .= " <$schemaPrefix:attribute name=\"$attr\" type=\"".$this->contractQName($aParts['type'])."\"\n/>"; |
|
647 | + } |
|
648 | + } |
|
649 | + // finish 'er up |
|
650 | + $attr = ''; |
|
651 | + foreach ($this->schemaInfo as $k => $v) { |
|
652 | + if ($k == 'elementFormDefault' || $k == 'attributeFormDefault') { |
|
653 | + $attr .= " $k=\"$v\""; |
|
654 | + } |
|
655 | + } |
|
656 | + $el = "<$schemaPrefix:schema$attr targetNamespace=\"$this->schemaTargetNamespace\"\n"; |
|
657 | + foreach (array_diff($this->usedNamespaces, $this->enclosingNamespaces) as $nsp => $ns) { |
|
658 | + $el .= " xmlns:$nsp=\"$ns\""; |
|
659 | + } |
|
660 | + $xml = $el . ">\n".$xml."</$schemaPrefix:schema>\n"; |
|
661 | + return $xml; |
|
662 | + } |
|
663 | 663 | |
664 | - /** |
|
665 | - * adds debug data to the clas level debug string |
|
666 | - * |
|
667 | - * @param string $string debug data |
|
668 | - * @access private |
|
669 | - */ |
|
670 | - function xdebug($string){ |
|
671 | - $this->debug('<' . $this->schemaTargetNamespace . '> '.$string); |
|
672 | - } |
|
664 | + /** |
|
665 | + * adds debug data to the clas level debug string |
|
666 | + * |
|
667 | + * @param string $string debug data |
|
668 | + * @access private |
|
669 | + */ |
|
670 | + function xdebug($string){ |
|
671 | + $this->debug('<' . $this->schemaTargetNamespace . '> '.$string); |
|
672 | + } |
|
673 | 673 | |
674 | 674 | /** |
675 | - * get the PHP type of a user defined type in the schema |
|
676 | - * PHP type is kind of a misnomer since it actually returns 'struct' for assoc. arrays |
|
677 | - * returns false if no type exists, or not w/ the given namespace |
|
678 | - * else returns a string that is either a native php type, or 'struct' |
|
679 | - * |
|
680 | - * @param string $type name of defined type |
|
681 | - * @param string $ns namespace of type |
|
682 | - * @return mixed |
|
683 | - * @access public |
|
684 | - * @deprecated |
|
685 | - */ |
|
686 | - function getPHPType($type,$ns){ |
|
687 | - if(isset($this->typemap[$ns][$type])){ |
|
688 | - //print "found type '$type' and ns $ns in typemap<br>"; |
|
689 | - return $this->typemap[$ns][$type]; |
|
690 | - } elseif(isset($this->complexTypes[$type])){ |
|
691 | - //print "getting type '$type' and ns $ns from complexTypes array<br>"; |
|
692 | - return $this->complexTypes[$type]['phpType']; |
|
693 | - } |
|
694 | - return false; |
|
695 | - } |
|
675 | + * get the PHP type of a user defined type in the schema |
|
676 | + * PHP type is kind of a misnomer since it actually returns 'struct' for assoc. arrays |
|
677 | + * returns false if no type exists, or not w/ the given namespace |
|
678 | + * else returns a string that is either a native php type, or 'struct' |
|
679 | + * |
|
680 | + * @param string $type name of defined type |
|
681 | + * @param string $ns namespace of type |
|
682 | + * @return mixed |
|
683 | + * @access public |
|
684 | + * @deprecated |
|
685 | + */ |
|
686 | + function getPHPType($type,$ns){ |
|
687 | + if(isset($this->typemap[$ns][$type])){ |
|
688 | + //print "found type '$type' and ns $ns in typemap<br>"; |
|
689 | + return $this->typemap[$ns][$type]; |
|
690 | + } elseif(isset($this->complexTypes[$type])){ |
|
691 | + //print "getting type '$type' and ns $ns from complexTypes array<br>"; |
|
692 | + return $this->complexTypes[$type]['phpType']; |
|
693 | + } |
|
694 | + return false; |
|
695 | + } |
|
696 | 696 | |
697 | - /** |
|
698 | - * returns an associative array of information about a given type |
|
699 | - * returns false if no type exists by the given name |
|
700 | - * |
|
701 | - * For a complexType typeDef = array( |
|
702 | - * 'restrictionBase' => '', |
|
703 | - * 'phpType' => '', |
|
704 | - * 'compositor' => '(sequence|all)', |
|
705 | - * 'elements' => array(), // refs to elements array |
|
706 | - * 'attrs' => array() // refs to attributes array |
|
707 | - * ... and so on (see addComplexType) |
|
708 | - * ) |
|
709 | - * |
|
710 | - * For simpleType or element, the array has different keys. |
|
711 | - * |
|
712 | - * @param string $type |
|
713 | - * @return mixed |
|
714 | - * @access public |
|
715 | - * @see addComplexType |
|
716 | - * @see addSimpleType |
|
717 | - * @see addElement |
|
718 | - */ |
|
719 | - function getTypeDef($type){ |
|
720 | - //$this->debug("in getTypeDef for type $type"); |
|
721 | - if (substr($type, -1) == '^') { |
|
722 | - $is_element = 1; |
|
723 | - $type = substr($type, 0, -1); |
|
724 | - } else { |
|
725 | - $is_element = 0; |
|
726 | - } |
|
697 | + /** |
|
698 | + * returns an associative array of information about a given type |
|
699 | + * returns false if no type exists by the given name |
|
700 | + * |
|
701 | + * For a complexType typeDef = array( |
|
702 | + * 'restrictionBase' => '', |
|
703 | + * 'phpType' => '', |
|
704 | + * 'compositor' => '(sequence|all)', |
|
705 | + * 'elements' => array(), // refs to elements array |
|
706 | + * 'attrs' => array() // refs to attributes array |
|
707 | + * ... and so on (see addComplexType) |
|
708 | + * ) |
|
709 | + * |
|
710 | + * For simpleType or element, the array has different keys. |
|
711 | + * |
|
712 | + * @param string $type |
|
713 | + * @return mixed |
|
714 | + * @access public |
|
715 | + * @see addComplexType |
|
716 | + * @see addSimpleType |
|
717 | + * @see addElement |
|
718 | + */ |
|
719 | + function getTypeDef($type){ |
|
720 | + //$this->debug("in getTypeDef for type $type"); |
|
721 | + if (substr($type, -1) == '^') { |
|
722 | + $is_element = 1; |
|
723 | + $type = substr($type, 0, -1); |
|
724 | + } else { |
|
725 | + $is_element = 0; |
|
726 | + } |
|
727 | 727 | |
728 | - if((! $is_element) && isset($this->complexTypes[$type])){ |
|
729 | - $this->xdebug("in getTypeDef, found complexType $type"); |
|
730 | - return $this->complexTypes[$type]; |
|
731 | - } elseif((! $is_element) && isset($this->simpleTypes[$type])){ |
|
732 | - $this->xdebug("in getTypeDef, found simpleType $type"); |
|
733 | - if (!isset($this->simpleTypes[$type]['phpType'])) { |
|
734 | - // get info for type to tack onto the simple type |
|
735 | - // TODO: can this ever really apply (i.e. what is a simpleType really?) |
|
736 | - $uqType = substr($this->simpleTypes[$type]['type'], strrpos($this->simpleTypes[$type]['type'], ':') + 1); |
|
737 | - $ns = substr($this->simpleTypes[$type]['type'], 0, strrpos($this->simpleTypes[$type]['type'], ':')); |
|
738 | - $etype = $this->getTypeDef($uqType); |
|
739 | - if ($etype) { |
|
740 | - $this->xdebug("in getTypeDef, found type for simpleType $type:"); |
|
741 | - $this->xdebug($this->varDump($etype)); |
|
742 | - if (isset($etype['phpType'])) { |
|
743 | - $this->simpleTypes[$type]['phpType'] = $etype['phpType']; |
|
744 | - } |
|
745 | - if (isset($etype['elements'])) { |
|
746 | - $this->simpleTypes[$type]['elements'] = $etype['elements']; |
|
747 | - } |
|
748 | - } |
|
749 | - } |
|
750 | - return $this->simpleTypes[$type]; |
|
751 | - } elseif(isset($this->elements[$type])){ |
|
752 | - $this->xdebug("in getTypeDef, found element $type"); |
|
753 | - if (!isset($this->elements[$type]['phpType'])) { |
|
754 | - // get info for type to tack onto the element |
|
755 | - $uqType = substr($this->elements[$type]['type'], strrpos($this->elements[$type]['type'], ':') + 1); |
|
756 | - $ns = substr($this->elements[$type]['type'], 0, strrpos($this->elements[$type]['type'], ':')); |
|
757 | - $etype = $this->getTypeDef($uqType); |
|
758 | - if ($etype) { |
|
759 | - $this->xdebug("in getTypeDef, found type for element $type:"); |
|
760 | - $this->xdebug($this->varDump($etype)); |
|
761 | - if (isset($etype['phpType'])) { |
|
762 | - $this->elements[$type]['phpType'] = $etype['phpType']; |
|
763 | - } |
|
764 | - if (isset($etype['elements'])) { |
|
765 | - $this->elements[$type]['elements'] = $etype['elements']; |
|
766 | - } |
|
767 | - if (isset($etype['extensionBase'])) { |
|
768 | - $this->elements[$type]['extensionBase'] = $etype['extensionBase']; |
|
769 | - } |
|
770 | - } elseif ($ns == 'http://www.w3.org/2001/XMLSchema') { |
|
771 | - $this->xdebug("in getTypeDef, element $type is an XSD type"); |
|
772 | - $this->elements[$type]['phpType'] = 'scalar'; |
|
773 | - } |
|
774 | - } |
|
775 | - return $this->elements[$type]; |
|
776 | - } elseif(isset($this->attributes[$type])){ |
|
777 | - $this->xdebug("in getTypeDef, found attribute $type"); |
|
778 | - return $this->attributes[$type]; |
|
779 | - } elseif (preg_match('/_ContainedType$/', $type)) { |
|
780 | - $this->xdebug("in getTypeDef, have an untyped element $type"); |
|
781 | - $typeDef['typeClass'] = 'simpleType'; |
|
782 | - $typeDef['phpType'] = 'scalar'; |
|
783 | - $typeDef['type'] = 'http://www.w3.org/2001/XMLSchema:string'; |
|
784 | - return $typeDef; |
|
785 | - } |
|
786 | - $this->xdebug("in getTypeDef, did not find $type"); |
|
787 | - return false; |
|
788 | - } |
|
728 | + if((! $is_element) && isset($this->complexTypes[$type])){ |
|
729 | + $this->xdebug("in getTypeDef, found complexType $type"); |
|
730 | + return $this->complexTypes[$type]; |
|
731 | + } elseif((! $is_element) && isset($this->simpleTypes[$type])){ |
|
732 | + $this->xdebug("in getTypeDef, found simpleType $type"); |
|
733 | + if (!isset($this->simpleTypes[$type]['phpType'])) { |
|
734 | + // get info for type to tack onto the simple type |
|
735 | + // TODO: can this ever really apply (i.e. what is a simpleType really?) |
|
736 | + $uqType = substr($this->simpleTypes[$type]['type'], strrpos($this->simpleTypes[$type]['type'], ':') + 1); |
|
737 | + $ns = substr($this->simpleTypes[$type]['type'], 0, strrpos($this->simpleTypes[$type]['type'], ':')); |
|
738 | + $etype = $this->getTypeDef($uqType); |
|
739 | + if ($etype) { |
|
740 | + $this->xdebug("in getTypeDef, found type for simpleType $type:"); |
|
741 | + $this->xdebug($this->varDump($etype)); |
|
742 | + if (isset($etype['phpType'])) { |
|
743 | + $this->simpleTypes[$type]['phpType'] = $etype['phpType']; |
|
744 | + } |
|
745 | + if (isset($etype['elements'])) { |
|
746 | + $this->simpleTypes[$type]['elements'] = $etype['elements']; |
|
747 | + } |
|
748 | + } |
|
749 | + } |
|
750 | + return $this->simpleTypes[$type]; |
|
751 | + } elseif(isset($this->elements[$type])){ |
|
752 | + $this->xdebug("in getTypeDef, found element $type"); |
|
753 | + if (!isset($this->elements[$type]['phpType'])) { |
|
754 | + // get info for type to tack onto the element |
|
755 | + $uqType = substr($this->elements[$type]['type'], strrpos($this->elements[$type]['type'], ':') + 1); |
|
756 | + $ns = substr($this->elements[$type]['type'], 0, strrpos($this->elements[$type]['type'], ':')); |
|
757 | + $etype = $this->getTypeDef($uqType); |
|
758 | + if ($etype) { |
|
759 | + $this->xdebug("in getTypeDef, found type for element $type:"); |
|
760 | + $this->xdebug($this->varDump($etype)); |
|
761 | + if (isset($etype['phpType'])) { |
|
762 | + $this->elements[$type]['phpType'] = $etype['phpType']; |
|
763 | + } |
|
764 | + if (isset($etype['elements'])) { |
|
765 | + $this->elements[$type]['elements'] = $etype['elements']; |
|
766 | + } |
|
767 | + if (isset($etype['extensionBase'])) { |
|
768 | + $this->elements[$type]['extensionBase'] = $etype['extensionBase']; |
|
769 | + } |
|
770 | + } elseif ($ns == 'http://www.w3.org/2001/XMLSchema') { |
|
771 | + $this->xdebug("in getTypeDef, element $type is an XSD type"); |
|
772 | + $this->elements[$type]['phpType'] = 'scalar'; |
|
773 | + } |
|
774 | + } |
|
775 | + return $this->elements[$type]; |
|
776 | + } elseif(isset($this->attributes[$type])){ |
|
777 | + $this->xdebug("in getTypeDef, found attribute $type"); |
|
778 | + return $this->attributes[$type]; |
|
779 | + } elseif (preg_match('/_ContainedType$/', $type)) { |
|
780 | + $this->xdebug("in getTypeDef, have an untyped element $type"); |
|
781 | + $typeDef['typeClass'] = 'simpleType'; |
|
782 | + $typeDef['phpType'] = 'scalar'; |
|
783 | + $typeDef['type'] = 'http://www.w3.org/2001/XMLSchema:string'; |
|
784 | + return $typeDef; |
|
785 | + } |
|
786 | + $this->xdebug("in getTypeDef, did not find $type"); |
|
787 | + return false; |
|
788 | + } |
|
789 | 789 | |
790 | - /** |
|
791 | - * returns a sample serialization of a given type, or false if no type by the given name |
|
792 | - * |
|
793 | - * @param string $type name of type |
|
794 | - * @return mixed |
|
795 | - * @access public |
|
796 | - * @deprecated |
|
797 | - */ |
|
790 | + /** |
|
791 | + * returns a sample serialization of a given type, or false if no type by the given name |
|
792 | + * |
|
793 | + * @param string $type name of type |
|
794 | + * @return mixed |
|
795 | + * @access public |
|
796 | + * @deprecated |
|
797 | + */ |
|
798 | 798 | function serializeTypeDef($type){ |
799 | - //print "in sTD() for type $type<br>"; |
|
800 | - if($typeDef = $this->getTypeDef($type)){ |
|
801 | - $str .= '<'.$type; |
|
802 | - if(is_array($typeDef['attrs'])){ |
|
803 | - foreach($typeDef['attrs'] as $attName => $data){ |
|
804 | - $str .= " $attName=\"{type = ".$data['type']."}\""; |
|
805 | - } |
|
806 | - } |
|
807 | - $str .= " xmlns=\"".$this->schema['targetNamespace']."\""; |
|
808 | - if(count($typeDef['elements']) > 0){ |
|
809 | - $str .= ">"; |
|
810 | - foreach($typeDef['elements'] as $element => $eData){ |
|
811 | - $str .= $this->serializeTypeDef($element); |
|
812 | - } |
|
813 | - $str .= "</$type>"; |
|
814 | - } elseif($typeDef['typeClass'] == 'element') { |
|
815 | - $str .= "></$type>"; |
|
816 | - } else { |
|
817 | - $str .= "/>"; |
|
818 | - } |
|
819 | - return $str; |
|
820 | - } |
|
821 | - return false; |
|
799 | + //print "in sTD() for type $type<br>"; |
|
800 | + if($typeDef = $this->getTypeDef($type)){ |
|
801 | + $str .= '<'.$type; |
|
802 | + if(is_array($typeDef['attrs'])){ |
|
803 | + foreach($typeDef['attrs'] as $attName => $data){ |
|
804 | + $str .= " $attName=\"{type = ".$data['type']."}\""; |
|
805 | + } |
|
806 | + } |
|
807 | + $str .= " xmlns=\"".$this->schema['targetNamespace']."\""; |
|
808 | + if(count($typeDef['elements']) > 0){ |
|
809 | + $str .= ">"; |
|
810 | + foreach($typeDef['elements'] as $element => $eData){ |
|
811 | + $str .= $this->serializeTypeDef($element); |
|
812 | + } |
|
813 | + $str .= "</$type>"; |
|
814 | + } elseif($typeDef['typeClass'] == 'element') { |
|
815 | + $str .= "></$type>"; |
|
816 | + } else { |
|
817 | + $str .= "/>"; |
|
818 | + } |
|
819 | + return $str; |
|
820 | + } |
|
821 | + return false; |
|
822 | 822 | } |
823 | 823 | |
824 | 824 | /** |
825 | - * returns HTML form elements that allow a user |
|
826 | - * to enter values for creating an instance of the given type. |
|
827 | - * |
|
828 | - * @param string $name name for type instance |
|
829 | - * @param string $type name of type |
|
830 | - * @return string |
|
831 | - * @access public |
|
832 | - * @deprecated |
|
833 | - */ |
|
834 | - function typeToForm($name,$type){ |
|
835 | - // get typedef |
|
836 | - if($typeDef = $this->getTypeDef($type)){ |
|
837 | - // if struct |
|
838 | - if($typeDef['phpType'] == 'struct'){ |
|
839 | - $buffer .= '<table>'; |
|
840 | - foreach($typeDef['elements'] as $child => $childDef){ |
|
841 | - $buffer .= " |
|
825 | + * returns HTML form elements that allow a user |
|
826 | + * to enter values for creating an instance of the given type. |
|
827 | + * |
|
828 | + * @param string $name name for type instance |
|
829 | + * @param string $type name of type |
|
830 | + * @return string |
|
831 | + * @access public |
|
832 | + * @deprecated |
|
833 | + */ |
|
834 | + function typeToForm($name,$type){ |
|
835 | + // get typedef |
|
836 | + if($typeDef = $this->getTypeDef($type)){ |
|
837 | + // if struct |
|
838 | + if($typeDef['phpType'] == 'struct'){ |
|
839 | + $buffer .= '<table>'; |
|
840 | + foreach($typeDef['elements'] as $child => $childDef){ |
|
841 | + $buffer .= " |
|
842 | 842 | <tr><td align='right'>$childDef[name] (type: ".$this->getLocalPart($childDef['type'])."):</td> |
843 | 843 | <td><input type='text' name='parameters[".$name."][$childDef[name]]'></td></tr>"; |
844 | - } |
|
845 | - $buffer .= '</table>'; |
|
846 | - // if array |
|
847 | - } elseif($typeDef['phpType'] == 'array'){ |
|
848 | - $buffer .= '<table>'; |
|
849 | - for($i=0;$i < 3; $i++){ |
|
850 | - $buffer .= " |
|
844 | + } |
|
845 | + $buffer .= '</table>'; |
|
846 | + // if array |
|
847 | + } elseif($typeDef['phpType'] == 'array'){ |
|
848 | + $buffer .= '<table>'; |
|
849 | + for($i=0;$i < 3; $i++){ |
|
850 | + $buffer .= " |
|
851 | 851 | <tr><td align='right'>array item (type: $typeDef[arrayType]):</td> |
852 | 852 | <td><input type='text' name='parameters[".$name."][]'></td></tr>"; |
853 | - } |
|
854 | - $buffer .= '</table>'; |
|
855 | - // if scalar |
|
856 | - } else { |
|
857 | - $buffer .= "<input type='text' name='parameters[$name]'>"; |
|
858 | - } |
|
859 | - } else { |
|
860 | - $buffer .= "<input type='text' name='parameters[$name]'>"; |
|
861 | - } |
|
862 | - return $buffer; |
|
863 | - } |
|
853 | + } |
|
854 | + $buffer .= '</table>'; |
|
855 | + // if scalar |
|
856 | + } else { |
|
857 | + $buffer .= "<input type='text' name='parameters[$name]'>"; |
|
858 | + } |
|
859 | + } else { |
|
860 | + $buffer .= "<input type='text' name='parameters[$name]'>"; |
|
861 | + } |
|
862 | + return $buffer; |
|
863 | + } |
|
864 | 864 | |
865 | - /** |
|
866 | - * adds a complex type to the schema |
|
867 | - * |
|
868 | - * example: array |
|
869 | - * |
|
870 | - * addType( |
|
871 | - * 'ArrayOfstring', |
|
872 | - * 'complexType', |
|
873 | - * 'array', |
|
874 | - * '', |
|
875 | - * 'SOAP-ENC:Array', |
|
876 | - * array('ref'=>'SOAP-ENC:arrayType','wsdl:arrayType'=>'string[]'), |
|
877 | - * 'xsd:string' |
|
878 | - * ); |
|
879 | - * |
|
880 | - * example: PHP associative array ( SOAP Struct ) |
|
881 | - * |
|
882 | - * addType( |
|
883 | - * 'SOAPStruct', |
|
884 | - * 'complexType', |
|
885 | - * 'struct', |
|
886 | - * 'all', |
|
887 | - * array('myVar'=> array('name'=>'myVar','type'=>'string') |
|
888 | - * ); |
|
889 | - * |
|
890 | - * @param name |
|
891 | - * @param typeClass (complexType|simpleType|attribute) |
|
892 | - * @param phpType: currently supported are array and struct (php assoc array) |
|
893 | - * @param compositor (all|sequence|choice) |
|
894 | - * @param restrictionBase namespace:name (http://schemas.xmlsoap.org/soap/encoding/:Array) |
|
895 | - * @param elements = array ( name = array(name=>'',type=>'') ) |
|
896 | - * @param attrs = array( |
|
897 | - * array( |
|
898 | - * 'ref' => "http://schemas.xmlsoap.org/soap/encoding/:arrayType", |
|
899 | - * "http://schemas.xmlsoap.org/wsdl/:arrayType" => "string[]" |
|
900 | - * ) |
|
901 | - * ) |
|
902 | - * @param arrayType: namespace:name (http://www.w3.org/2001/XMLSchema:string) |
|
903 | - * @access public |
|
904 | - * @see getTypeDef |
|
905 | - */ |
|
906 | - function addComplexType($name,$typeClass='complexType',$phpType='array',$compositor='',$restrictionBase='',$elements=array(),$attrs=array(),$arrayType=''){ |
|
907 | - $this->complexTypes[$name] = array( |
|
908 | - 'name' => $name, |
|
909 | - 'typeClass' => $typeClass, |
|
910 | - 'phpType' => $phpType, |
|
911 | - 'compositor'=> $compositor, |
|
912 | - 'restrictionBase' => $restrictionBase, |
|
913 | - 'elements' => $elements, |
|
914 | - 'attrs' => $attrs, |
|
915 | - 'arrayType' => $arrayType |
|
916 | - ); |
|
865 | + /** |
|
866 | + * adds a complex type to the schema |
|
867 | + * |
|
868 | + * example: array |
|
869 | + * |
|
870 | + * addType( |
|
871 | + * 'ArrayOfstring', |
|
872 | + * 'complexType', |
|
873 | + * 'array', |
|
874 | + * '', |
|
875 | + * 'SOAP-ENC:Array', |
|
876 | + * array('ref'=>'SOAP-ENC:arrayType','wsdl:arrayType'=>'string[]'), |
|
877 | + * 'xsd:string' |
|
878 | + * ); |
|
879 | + * |
|
880 | + * example: PHP associative array ( SOAP Struct ) |
|
881 | + * |
|
882 | + * addType( |
|
883 | + * 'SOAPStruct', |
|
884 | + * 'complexType', |
|
885 | + * 'struct', |
|
886 | + * 'all', |
|
887 | + * array('myVar'=> array('name'=>'myVar','type'=>'string') |
|
888 | + * ); |
|
889 | + * |
|
890 | + * @param name |
|
891 | + * @param typeClass (complexType|simpleType|attribute) |
|
892 | + * @param phpType: currently supported are array and struct (php assoc array) |
|
893 | + * @param compositor (all|sequence|choice) |
|
894 | + * @param restrictionBase namespace:name (http://schemas.xmlsoap.org/soap/encoding/:Array) |
|
895 | + * @param elements = array ( name = array(name=>'',type=>'') ) |
|
896 | + * @param attrs = array( |
|
897 | + * array( |
|
898 | + * 'ref' => "http://schemas.xmlsoap.org/soap/encoding/:arrayType", |
|
899 | + * "http://schemas.xmlsoap.org/wsdl/:arrayType" => "string[]" |
|
900 | + * ) |
|
901 | + * ) |
|
902 | + * @param arrayType: namespace:name (http://www.w3.org/2001/XMLSchema:string) |
|
903 | + * @access public |
|
904 | + * @see getTypeDef |
|
905 | + */ |
|
906 | + function addComplexType($name,$typeClass='complexType',$phpType='array',$compositor='',$restrictionBase='',$elements=array(),$attrs=array(),$arrayType=''){ |
|
907 | + $this->complexTypes[$name] = array( |
|
908 | + 'name' => $name, |
|
909 | + 'typeClass' => $typeClass, |
|
910 | + 'phpType' => $phpType, |
|
911 | + 'compositor'=> $compositor, |
|
912 | + 'restrictionBase' => $restrictionBase, |
|
913 | + 'elements' => $elements, |
|
914 | + 'attrs' => $attrs, |
|
915 | + 'arrayType' => $arrayType |
|
916 | + ); |
|
917 | 917 | |
918 | - $this->xdebug("addComplexType $name:"); |
|
919 | - $this->appendDebug($this->varDump($this->complexTypes[$name])); |
|
920 | - } |
|
918 | + $this->xdebug("addComplexType $name:"); |
|
919 | + $this->appendDebug($this->varDump($this->complexTypes[$name])); |
|
920 | + } |
|
921 | 921 | |
922 | - /** |
|
923 | - * adds a simple type to the schema |
|
924 | - * |
|
925 | - * @param string $name |
|
926 | - * @param string $restrictionBase namespace:name (http://schemas.xmlsoap.org/soap/encoding/:Array) |
|
927 | - * @param string $typeClass (should always be simpleType) |
|
928 | - * @param string $phpType (should always be scalar) |
|
929 | - * @param array $enumeration array of values |
|
930 | - * @access public |
|
931 | - * @see nusoap_xmlschema |
|
932 | - * @see getTypeDef |
|
933 | - */ |
|
934 | - function addSimpleType($name, $restrictionBase='', $typeClass='simpleType', $phpType='scalar', $enumeration=array()) { |
|
935 | - $this->simpleTypes[$name] = array( |
|
936 | - 'name' => $name, |
|
937 | - 'typeClass' => $typeClass, |
|
938 | - 'phpType' => $phpType, |
|
939 | - 'type' => $restrictionBase, |
|
940 | - 'enumeration' => $enumeration |
|
941 | - ); |
|
922 | + /** |
|
923 | + * adds a simple type to the schema |
|
924 | + * |
|
925 | + * @param string $name |
|
926 | + * @param string $restrictionBase namespace:name (http://schemas.xmlsoap.org/soap/encoding/:Array) |
|
927 | + * @param string $typeClass (should always be simpleType) |
|
928 | + * @param string $phpType (should always be scalar) |
|
929 | + * @param array $enumeration array of values |
|
930 | + * @access public |
|
931 | + * @see nusoap_xmlschema |
|
932 | + * @see getTypeDef |
|
933 | + */ |
|
934 | + function addSimpleType($name, $restrictionBase='', $typeClass='simpleType', $phpType='scalar', $enumeration=array()) { |
|
935 | + $this->simpleTypes[$name] = array( |
|
936 | + 'name' => $name, |
|
937 | + 'typeClass' => $typeClass, |
|
938 | + 'phpType' => $phpType, |
|
939 | + 'type' => $restrictionBase, |
|
940 | + 'enumeration' => $enumeration |
|
941 | + ); |
|
942 | 942 | |
943 | - $this->xdebug("addSimpleType $name:"); |
|
944 | - $this->appendDebug($this->varDump($this->simpleTypes[$name])); |
|
945 | - } |
|
943 | + $this->xdebug("addSimpleType $name:"); |
|
944 | + $this->appendDebug($this->varDump($this->simpleTypes[$name])); |
|
945 | + } |
|
946 | 946 | |
947 | - /** |
|
948 | - * adds an element to the schema |
|
949 | - * |
|
950 | - * @param array $attrs attributes that must include name and type |
|
951 | - * @see nusoap_xmlschema |
|
952 | - * @access public |
|
953 | - */ |
|
954 | - function addElement($attrs) { |
|
955 | - if (! $this->getPrefix($attrs['type'])) { |
|
956 | - $attrs['type'] = $this->schemaTargetNamespace . ':' . $attrs['type']; |
|
957 | - } |
|
958 | - $this->elements[ $attrs['name'] ] = $attrs; |
|
959 | - $this->elements[ $attrs['name'] ]['typeClass'] = 'element'; |
|
947 | + /** |
|
948 | + * adds an element to the schema |
|
949 | + * |
|
950 | + * @param array $attrs attributes that must include name and type |
|
951 | + * @see nusoap_xmlschema |
|
952 | + * @access public |
|
953 | + */ |
|
954 | + function addElement($attrs) { |
|
955 | + if (! $this->getPrefix($attrs['type'])) { |
|
956 | + $attrs['type'] = $this->schemaTargetNamespace . ':' . $attrs['type']; |
|
957 | + } |
|
958 | + $this->elements[ $attrs['name'] ] = $attrs; |
|
959 | + $this->elements[ $attrs['name'] ]['typeClass'] = 'element'; |
|
960 | 960 | |
961 | - $this->xdebug("addElement " . $attrs['name']); |
|
962 | - $this->appendDebug($this->varDump($this->elements[ $attrs['name'] ])); |
|
963 | - } |
|
961 | + $this->xdebug("addElement " . $attrs['name']); |
|
962 | + $this->appendDebug($this->varDump($this->elements[ $attrs['name'] ])); |
|
963 | + } |
|
964 | 964 | } |
965 | 965 | |
966 | 966 | /** |
@@ -12,7 +12,7 @@ discard block |
||
12 | 12 | * @version $Id: class.xmlschema.php,v 1.53 2010/04/26 20:15:08 snichol Exp $ |
13 | 13 | * @access public |
14 | 14 | */ |
15 | -class nusoap_xmlschema extends nusoap_base { |
|
15 | +class nusoap_xmlschema extends nusoap_base { |
|
16 | 16 | |
17 | 17 | // files |
18 | 18 | var $schema = ''; |
@@ -51,7 +51,7 @@ discard block |
||
51 | 51 | * @param string $namespaces namespaces defined in enclosing XML |
52 | 52 | * @access public |
53 | 53 | */ |
54 | - function nusoap_xmlschema($schema='',$xml='',$namespaces=array()){ |
|
54 | + function nusoap_xmlschema($schema = '', $xml = '', $namespaces = array()) { |
|
55 | 55 | parent::nusoap_base(); |
56 | 56 | $this->debug('nusoap_xmlschema class instantiated, inside constructor'); |
57 | 57 | // files |
@@ -63,13 +63,13 @@ discard block |
||
63 | 63 | $this->namespaces = array_merge($this->namespaces, $namespaces); |
64 | 64 | |
65 | 65 | // parse schema file |
66 | - if($schema != ''){ |
|
66 | + if ($schema != '') { |
|
67 | 67 | $this->debug('initial schema file: '.$schema); |
68 | 68 | $this->parseFile($schema, 'schema'); |
69 | 69 | } |
70 | 70 | |
71 | 71 | // parse xml file |
72 | - if($xml != ''){ |
|
72 | + if ($xml != '') { |
|
73 | 73 | $this->debug('initial xml file: '.$xml); |
74 | 74 | $this->parseFile($xml, 'xml'); |
75 | 75 | } |
@@ -84,18 +84,18 @@ discard block |
||
84 | 84 | * @return boolean |
85 | 85 | * @access public |
86 | 86 | */ |
87 | - function parseFile($xml,$type){ |
|
87 | + function parseFile($xml, $type) { |
|
88 | 88 | // parse xml file |
89 | - if($xml != ""){ |
|
90 | - $xmlStr = @join("",@file($xml)); |
|
91 | - if($xmlStr == ""){ |
|
89 | + if ($xml != "") { |
|
90 | + $xmlStr = @join("", @file($xml)); |
|
91 | + if ($xmlStr == "") { |
|
92 | 92 | $msg = 'Error reading XML from '.$xml; |
93 | 93 | $this->setError($msg); |
94 | 94 | $this->debug($msg); |
95 | 95 | return false; |
96 | 96 | } else { |
97 | 97 | $this->debug("parsing $xml"); |
98 | - $this->parseString($xmlStr,$type); |
|
98 | + $this->parseString($xmlStr, $type); |
|
99 | 99 | $this->debug("done parsing $xml"); |
100 | 100 | return true; |
101 | 101 | } |
@@ -110,9 +110,9 @@ discard block |
||
110 | 110 | * @param string $type (schema|xml) |
111 | 111 | * @access private |
112 | 112 | */ |
113 | - function parseString($xml,$type){ |
|
113 | + function parseString($xml, $type) { |
|
114 | 114 | // parse xml string |
115 | - if($xml != ""){ |
|
115 | + if ($xml != "") { |
|
116 | 116 | |
117 | 117 | // Create an XML parser. |
118 | 118 | $this->parser = xml_parser_create(); |
@@ -123,28 +123,28 @@ discard block |
||
123 | 123 | xml_set_object($this->parser, $this); |
124 | 124 | |
125 | 125 | // Set the element handlers for the parser. |
126 | - if($type == "schema"){ |
|
127 | - xml_set_element_handler($this->parser, 'schemaStartElement','schemaEndElement'); |
|
128 | - xml_set_character_data_handler($this->parser,'schemaCharacterData'); |
|
129 | - } elseif($type == "xml"){ |
|
130 | - xml_set_element_handler($this->parser, 'xmlStartElement','xmlEndElement'); |
|
131 | - xml_set_character_data_handler($this->parser,'xmlCharacterData'); |
|
126 | + if ($type == "schema") { |
|
127 | + xml_set_element_handler($this->parser, 'schemaStartElement', 'schemaEndElement'); |
|
128 | + xml_set_character_data_handler($this->parser, 'schemaCharacterData'); |
|
129 | + } elseif ($type == "xml") { |
|
130 | + xml_set_element_handler($this->parser, 'xmlStartElement', 'xmlEndElement'); |
|
131 | + xml_set_character_data_handler($this->parser, 'xmlCharacterData'); |
|
132 | 132 | } |
133 | 133 | |
134 | 134 | // Parse the XML file. |
135 | - if(!xml_parse($this->parser,$xml,true)){ |
|
135 | + if (!xml_parse($this->parser, $xml, true)) { |
|
136 | 136 | // Display an error message. |
137 | 137 | $errstr = sprintf('XML error parsing XML schema on line %d: %s', |
138 | 138 | xml_get_current_line_number($this->parser), |
139 | 139 | xml_error_string(xml_get_error_code($this->parser)) |
140 | 140 | ); |
141 | 141 | $this->debug($errstr); |
142 | - $this->debug("XML payload:\n" . $xml); |
|
142 | + $this->debug("XML payload:\n".$xml); |
|
143 | 143 | $this->setError($errstr); |
144 | 144 | } |
145 | 145 | |
146 | 146 | xml_parser_free($this->parser); |
147 | - } else{ |
|
147 | + } else { |
|
148 | 148 | $this->debug('no xml passed to parseString()!!'); |
149 | 149 | $this->setError('no xml passed to parseString()!!'); |
150 | 150 | } |
@@ -160,9 +160,9 @@ discard block |
||
160 | 160 | function CreateTypeName($ename) { |
161 | 161 | $scope = ''; |
162 | 162 | for ($i = 0; $i < count($this->complexTypeStack); $i++) { |
163 | - $scope .= $this->complexTypeStack[$i] . '_'; |
|
163 | + $scope .= $this->complexTypeStack[$i].'_'; |
|
164 | 164 | } |
165 | - return $scope . $ename . '_ContainedType'; |
|
165 | + return $scope.$ename.'_ContainedType'; |
|
166 | 166 | } |
167 | 167 | |
168 | 168 | /** |
@@ -188,7 +188,7 @@ discard block |
||
188 | 188 | } |
189 | 189 | |
190 | 190 | // get element prefix |
191 | - if($prefix = $this->getPrefix($name)){ |
|
191 | + if ($prefix = $this->getPrefix($name)) { |
|
192 | 192 | // get unqualified name |
193 | 193 | $name = $this->getLocalPart($name); |
194 | 194 | } else { |
@@ -196,31 +196,31 @@ discard block |
||
196 | 196 | } |
197 | 197 | |
198 | 198 | // loop thru attributes, expanding, and registering namespace declarations |
199 | - if(count($attrs) > 0){ |
|
200 | - foreach($attrs as $k => $v){ |
|
199 | + if (count($attrs) > 0) { |
|
200 | + foreach ($attrs as $k => $v) { |
|
201 | 201 | // if ns declarations, add to class level array of valid namespaces |
202 | - if(preg_match('/^xmlns/',$k)){ |
|
202 | + if (preg_match('/^xmlns/', $k)) { |
|
203 | 203 | //$this->xdebug("$k: $v"); |
204 | 204 | //$this->xdebug('ns_prefix: '.$this->getPrefix($k)); |
205 | - if($ns_prefix = substr(strrchr($k,':'),1)){ |
|
205 | + if ($ns_prefix = substr(strrchr($k, ':'), 1)) { |
|
206 | 206 | //$this->xdebug("Add namespace[$ns_prefix] = $v"); |
207 | 207 | $this->namespaces[$ns_prefix] = $v; |
208 | 208 | } else { |
209 | 209 | $this->defaultNamespace[$pos] = $v; |
210 | - if (! $this->getPrefixFromNamespace($v)) { |
|
211 | - $this->namespaces['ns'.(count($this->namespaces)+1)] = $v; |
|
210 | + if (!$this->getPrefixFromNamespace($v)) { |
|
211 | + $this->namespaces['ns'.(count($this->namespaces) + 1)] = $v; |
|
212 | 212 | } |
213 | 213 | } |
214 | - if($v == 'http://www.w3.org/2001/XMLSchema' || $v == 'http://www.w3.org/1999/XMLSchema' || $v == 'http://www.w3.org/2000/10/XMLSchema'){ |
|
214 | + if ($v == 'http://www.w3.org/2001/XMLSchema' || $v == 'http://www.w3.org/1999/XMLSchema' || $v == 'http://www.w3.org/2000/10/XMLSchema') { |
|
215 | 215 | $this->XMLSchemaVersion = $v; |
216 | 216 | $this->namespaces['xsi'] = $v.'-instance'; |
217 | 217 | } |
218 | 218 | } |
219 | 219 | } |
220 | - foreach($attrs as $k => $v){ |
|
220 | + foreach ($attrs as $k => $v) { |
|
221 | 221 | // expand each attribute |
222 | - $k = strpos($k,':') ? $this->expandQname($k) : $k; |
|
223 | - $v = strpos($v,':') ? $this->expandQname($v) : $v; |
|
222 | + $k = strpos($k, ':') ? $this->expandQname($k) : $k; |
|
223 | + $v = strpos($v, ':') ? $this->expandQname($v) : $v; |
|
224 | 224 | $eAttrs[$k] = $v; |
225 | 225 | } |
226 | 226 | $attrs = $eAttrs; |
@@ -228,7 +228,7 @@ discard block |
||
228 | 228 | $attrs = array(); |
229 | 229 | } |
230 | 230 | // find status, register data |
231 | - switch($name){ |
|
231 | + switch ($name) { |
|
232 | 232 | case 'all': // (optional) compositor content for a complexType |
233 | 233 | case 'choice': |
234 | 234 | case 'group': |
@@ -253,41 +253,41 @@ discard block |
||
253 | 253 | // no namespace in arrayType attribute value... |
254 | 254 | if ($this->defaultNamespace[$pos]) { |
255 | 255 | // ...so use the default |
256 | - $attrs['http://schemas.xmlsoap.org/wsdl/:arrayType'] = $this->defaultNamespace[$pos] . ':' . $attrs['http://schemas.xmlsoap.org/wsdl/:arrayType']; |
|
256 | + $attrs['http://schemas.xmlsoap.org/wsdl/:arrayType'] = $this->defaultNamespace[$pos].':'.$attrs['http://schemas.xmlsoap.org/wsdl/:arrayType']; |
|
257 | 257 | } |
258 | 258 | } |
259 | 259 | } |
260 | - if(isset($attrs['name'])){ |
|
260 | + if (isset($attrs['name'])) { |
|
261 | 261 | $this->attributes[$attrs['name']] = $attrs; |
262 | 262 | $aname = $attrs['name']; |
263 | - } elseif(isset($attrs['ref']) && $attrs['ref'] == 'http://schemas.xmlsoap.org/soap/encoding/:arrayType'){ |
|
263 | + } elseif (isset($attrs['ref']) && $attrs['ref'] == 'http://schemas.xmlsoap.org/soap/encoding/:arrayType') { |
|
264 | 264 | if (isset($attrs['http://schemas.xmlsoap.org/wsdl/:arrayType'])) { |
265 | 265 | $aname = $attrs['http://schemas.xmlsoap.org/wsdl/:arrayType']; |
266 | 266 | } else { |
267 | 267 | $aname = ''; |
268 | 268 | } |
269 | - } elseif(isset($attrs['ref'])){ |
|
269 | + } elseif (isset($attrs['ref'])) { |
|
270 | 270 | $aname = $attrs['ref']; |
271 | 271 | $this->attributes[$attrs['ref']] = $attrs; |
272 | 272 | } |
273 | 273 | |
274 | - if($this->currentComplexType){ // This should *always* be |
|
274 | + if ($this->currentComplexType) { // This should *always* be |
|
275 | 275 | $this->complexTypes[$this->currentComplexType]['attrs'][$aname] = $attrs; |
276 | 276 | } |
277 | 277 | // arrayType attribute |
278 | - if(isset($attrs['http://schemas.xmlsoap.org/wsdl/:arrayType']) || $this->getLocalPart($aname) == 'arrayType'){ |
|
278 | + if (isset($attrs['http://schemas.xmlsoap.org/wsdl/:arrayType']) || $this->getLocalPart($aname) == 'arrayType') { |
|
279 | 279 | $this->complexTypes[$this->currentComplexType]['phpType'] = 'array'; |
280 | 280 | $prefix = $this->getPrefix($aname); |
281 | - if(isset($attrs['http://schemas.xmlsoap.org/wsdl/:arrayType'])){ |
|
281 | + if (isset($attrs['http://schemas.xmlsoap.org/wsdl/:arrayType'])) { |
|
282 | 282 | $v = $attrs['http://schemas.xmlsoap.org/wsdl/:arrayType']; |
283 | 283 | } else { |
284 | 284 | $v = ''; |
285 | 285 | } |
286 | - if(strpos($v,'[,]')){ |
|
286 | + if (strpos($v, '[,]')) { |
|
287 | 287 | $this->complexTypes[$this->currentComplexType]['multidimensional'] = true; |
288 | 288 | } |
289 | - $v = substr($v,0,strpos($v,'[')); // clip the [] |
|
290 | - if(!strpos($v,':') && isset($this->typemap[$this->XMLSchemaVersion][$v])){ |
|
289 | + $v = substr($v, 0, strpos($v, '[')); // clip the [] |
|
290 | + if (!strpos($v, ':') && isset($this->typemap[$this->XMLSchemaVersion][$v])) { |
|
291 | 291 | $v = $this->XMLSchemaVersion.':'.$v; |
292 | 292 | } |
293 | 293 | $this->complexTypes[$this->currentComplexType]['arrayType'] = $v; |
@@ -298,7 +298,7 @@ discard block |
||
298 | 298 | break; |
299 | 299 | case 'complexType': |
300 | 300 | array_push($this->complexTypeStack, $this->currentComplexType); |
301 | - if(isset($attrs['name'])){ |
|
301 | + if (isset($attrs['name'])) { |
|
302 | 302 | // TODO: what is the scope of named complexTypes that appear |
303 | 303 | // nested within other c complexTypes? |
304 | 304 | $this->xdebug('processing named complexType '.$attrs['name']); |
@@ -313,7 +313,7 @@ discard block |
||
313 | 313 | // minOccurs="0" maxOccurs="unbounded" /> |
314 | 314 | // </sequence> |
315 | 315 | // </complexType> |
316 | - if(isset($attrs['base']) && preg_match('/:Array$/',$attrs['base'])){ |
|
316 | + if (isset($attrs['base']) && preg_match('/:Array$/', $attrs['base'])) { |
|
317 | 317 | $this->xdebug('complexType is unusual array'); |
318 | 318 | $this->complexTypes[$this->currentComplexType]['phpType'] = 'array'; |
319 | 319 | } else { |
@@ -321,7 +321,7 @@ discard block |
||
321 | 321 | } |
322 | 322 | } else { |
323 | 323 | $name = $this->CreateTypeName($this->currentElement); |
324 | - $this->xdebug('processing unnamed complexType for element ' . $this->currentElement . ' named ' . $name); |
|
324 | + $this->xdebug('processing unnamed complexType for element '.$this->currentElement.' named '.$name); |
|
325 | 325 | $this->currentComplexType = $name; |
326 | 326 | //$this->currentElement = false; |
327 | 327 | $this->complexTypes[$this->currentComplexType] = $attrs; |
@@ -333,7 +333,7 @@ discard block |
||
333 | 333 | // minOccurs="0" maxOccurs="unbounded" /> |
334 | 334 | // </sequence> |
335 | 335 | // </complexType> |
336 | - if(isset($attrs['base']) && preg_match('/:Array$/',$attrs['base'])){ |
|
336 | + if (isset($attrs['base']) && preg_match('/:Array$/', $attrs['base'])) { |
|
337 | 337 | $this->xdebug('complexType is unusual array'); |
338 | 338 | $this->complexTypes[$this->currentComplexType]['phpType'] = 'array'; |
339 | 339 | } else { |
@@ -352,12 +352,12 @@ discard block |
||
352 | 352 | $attrs['form'] = 'qualified'; |
353 | 353 | } |
354 | 354 | } |
355 | - if(isset($attrs['type'])){ |
|
355 | + if (isset($attrs['type'])) { |
|
356 | 356 | $this->xdebug("processing typed element ".$attrs['name']." of type ".$attrs['type']); |
357 | - if (! $this->getPrefix($attrs['type'])) { |
|
357 | + if (!$this->getPrefix($attrs['type'])) { |
|
358 | 358 | if ($this->defaultNamespace[$pos]) { |
359 | - $attrs['type'] = $this->defaultNamespace[$pos] . ':' . $attrs['type']; |
|
360 | - $this->xdebug('used default namespace to make type ' . $attrs['type']); |
|
359 | + $attrs['type'] = $this->defaultNamespace[$pos].':'.$attrs['type']; |
|
360 | + $this->xdebug('used default namespace to make type '.$attrs['type']); |
|
361 | 361 | } |
362 | 362 | } |
363 | 363 | // This is for constructs like |
@@ -368,20 +368,20 @@ discard block |
||
368 | 368 | // </sequence> |
369 | 369 | // </complexType> |
370 | 370 | if ($this->currentComplexType && $this->complexTypes[$this->currentComplexType]['phpType'] == 'array') { |
371 | - $this->xdebug('arrayType for unusual array is ' . $attrs['type']); |
|
371 | + $this->xdebug('arrayType for unusual array is '.$attrs['type']); |
|
372 | 372 | $this->complexTypes[$this->currentComplexType]['arrayType'] = $attrs['type']; |
373 | 373 | } |
374 | 374 | $this->currentElement = $attrs['name']; |
375 | 375 | $ename = $attrs['name']; |
376 | - } elseif(isset($attrs['ref'])){ |
|
376 | + } elseif (isset($attrs['ref'])) { |
|
377 | 377 | $this->xdebug("processing element as ref to ".$attrs['ref']); |
378 | 378 | $this->currentElement = "ref to ".$attrs['ref']; |
379 | 379 | $ename = $this->getLocalPart($attrs['ref']); |
380 | 380 | } else { |
381 | - $type = $this->CreateTypeName($this->currentComplexType . '_' . $attrs['name']); |
|
382 | - $this->xdebug("processing untyped element " . $attrs['name'] . ' type ' . $type); |
|
381 | + $type = $this->CreateTypeName($this->currentComplexType.'_'.$attrs['name']); |
|
382 | + $this->xdebug("processing untyped element ".$attrs['name'].' type '.$type); |
|
383 | 383 | $this->currentElement = $attrs['name']; |
384 | - $attrs['type'] = $this->schemaTargetNamespace . ':' . $type; |
|
384 | + $attrs['type'] = $this->schemaTargetNamespace.':'.$type; |
|
385 | 385 | $ename = $attrs['name']; |
386 | 386 | } |
387 | 387 | if (isset($ename) && $this->currentComplexType) { |
@@ -389,12 +389,12 @@ discard block |
||
389 | 389 | $this->complexTypes[$this->currentComplexType]['elements'][$ename] = $attrs; |
390 | 390 | } elseif (!isset($attrs['ref'])) { |
391 | 391 | $this->xdebug("add element $ename to elements array"); |
392 | - $this->elements[ $attrs['name'] ] = $attrs; |
|
393 | - $this->elements[ $attrs['name'] ]['typeClass'] = 'element'; |
|
392 | + $this->elements[$attrs['name']] = $attrs; |
|
393 | + $this->elements[$attrs['name']]['typeClass'] = 'element'; |
|
394 | 394 | } |
395 | 395 | break; |
396 | 396 | case 'enumeration': // restriction value list member |
397 | - $this->xdebug('enumeration ' . $attrs['value']); |
|
397 | + $this->xdebug('enumeration '.$attrs['value']); |
|
398 | 398 | if ($this->currentSimpleType) { |
399 | 399 | $this->simpleTypes[$this->currentSimpleType]['enumeration'][] = $attrs['value']; |
400 | 400 | } elseif ($this->currentComplexType) { |
@@ -402,11 +402,11 @@ discard block |
||
402 | 402 | } |
403 | 403 | break; |
404 | 404 | case 'extension': // simpleContent or complexContent type extension |
405 | - $this->xdebug('extension ' . $attrs['base']); |
|
405 | + $this->xdebug('extension '.$attrs['base']); |
|
406 | 406 | if ($this->currentComplexType) { |
407 | 407 | $ns = $this->getPrefix($attrs['base']); |
408 | 408 | if ($ns == '') { |
409 | - $this->complexTypes[$this->currentComplexType]['extensionBase'] = $this->schemaTargetNamespace . ':' . $attrs['base']; |
|
409 | + $this->complexTypes[$this->currentComplexType]['extensionBase'] = $this->schemaTargetNamespace.':'.$attrs['base']; |
|
410 | 410 | } else { |
411 | 411 | $this->complexTypes[$this->currentComplexType]['extensionBase'] = $attrs['base']; |
412 | 412 | } |
@@ -416,19 +416,19 @@ discard block |
||
416 | 416 | break; |
417 | 417 | case 'import': |
418 | 418 | if (isset($attrs['schemaLocation'])) { |
419 | - $this->xdebug('import namespace ' . $attrs['namespace'] . ' from ' . $attrs['schemaLocation']); |
|
419 | + $this->xdebug('import namespace '.$attrs['namespace'].' from '.$attrs['schemaLocation']); |
|
420 | 420 | $this->imports[$attrs['namespace']][] = array('location' => $attrs['schemaLocation'], 'loaded' => false); |
421 | 421 | } else { |
422 | - $this->xdebug('import namespace ' . $attrs['namespace']); |
|
422 | + $this->xdebug('import namespace '.$attrs['namespace']); |
|
423 | 423 | $this->imports[$attrs['namespace']][] = array('location' => '', 'loaded' => true); |
424 | - if (! $this->getPrefixFromNamespace($attrs['namespace'])) { |
|
425 | - $this->namespaces['ns'.(count($this->namespaces)+1)] = $attrs['namespace']; |
|
424 | + if (!$this->getPrefixFromNamespace($attrs['namespace'])) { |
|
425 | + $this->namespaces['ns'.(count($this->namespaces) + 1)] = $attrs['namespace']; |
|
426 | 426 | } |
427 | 427 | } |
428 | 428 | break; |
429 | 429 | case 'include': |
430 | 430 | if (isset($attrs['schemaLocation'])) { |
431 | - $this->xdebug('include into namespace ' . $this->schemaTargetNamespace . ' from ' . $attrs['schemaLocation']); |
|
431 | + $this->xdebug('include into namespace '.$this->schemaTargetNamespace.' from '.$attrs['schemaLocation']); |
|
432 | 432 | $this->imports[$this->schemaTargetNamespace][] = array('location' => $attrs['schemaLocation'], 'loaded' => false); |
433 | 433 | } else { |
434 | 434 | $this->xdebug('ignoring invalid XML Schema construct: include without schemaLocation attribute'); |
@@ -438,12 +438,12 @@ discard block |
||
438 | 438 | $this->xdebug("do nothing for element $name"); |
439 | 439 | break; |
440 | 440 | case 'restriction': // simpleType, simpleContent or complexContent value restriction |
441 | - $this->xdebug('restriction ' . $attrs['base']); |
|
442 | - if($this->currentSimpleType){ |
|
441 | + $this->xdebug('restriction '.$attrs['base']); |
|
442 | + if ($this->currentSimpleType) { |
|
443 | 443 | $this->simpleTypes[$this->currentSimpleType]['type'] = $attrs['base']; |
444 | - } elseif($this->currentComplexType){ |
|
444 | + } elseif ($this->currentComplexType) { |
|
445 | 445 | $this->complexTypes[$this->currentComplexType]['restrictionBase'] = $attrs['base']; |
446 | - if(strstr($attrs['base'],':') == ':Array'){ |
|
446 | + if (strstr($attrs['base'], ':') == ':Array') { |
|
447 | 447 | $this->complexTypes[$this->currentComplexType]['phpType'] = 'array'; |
448 | 448 | } |
449 | 449 | } |
@@ -470,15 +470,15 @@ discard block |
||
470 | 470 | break; |
471 | 471 | case 'simpleType': |
472 | 472 | array_push($this->simpleTypeStack, $this->currentSimpleType); |
473 | - if(isset($attrs['name'])){ |
|
474 | - $this->xdebug("processing simpleType for name " . $attrs['name']); |
|
473 | + if (isset($attrs['name'])) { |
|
474 | + $this->xdebug("processing simpleType for name ".$attrs['name']); |
|
475 | 475 | $this->currentSimpleType = $attrs['name']; |
476 | - $this->simpleTypes[ $attrs['name'] ] = $attrs; |
|
477 | - $this->simpleTypes[ $attrs['name'] ]['typeClass'] = 'simpleType'; |
|
478 | - $this->simpleTypes[ $attrs['name'] ]['phpType'] = 'scalar'; |
|
476 | + $this->simpleTypes[$attrs['name']] = $attrs; |
|
477 | + $this->simpleTypes[$attrs['name']]['typeClass'] = 'simpleType'; |
|
478 | + $this->simpleTypes[$attrs['name']]['phpType'] = 'scalar'; |
|
479 | 479 | } else { |
480 | - $name = $this->CreateTypeName($this->currentComplexType . '_' . $this->currentElement); |
|
481 | - $this->xdebug('processing unnamed simpleType for element ' . $this->currentElement . ' named ' . $name); |
|
480 | + $name = $this->CreateTypeName($this->currentComplexType.'_'.$this->currentElement); |
|
481 | + $this->xdebug('processing unnamed simpleType for element '.$this->currentElement.' named '.$name); |
|
482 | 482 | $this->currentSimpleType = $name; |
483 | 483 | //$this->currentElement = false; |
484 | 484 | $this->simpleTypes[$this->currentSimpleType] = $attrs; |
@@ -504,29 +504,29 @@ discard block |
||
504 | 504 | // bring depth down a notch |
505 | 505 | $this->depth--; |
506 | 506 | // position of current element is equal to the last value left in depth_array for my depth |
507 | - if(isset($this->depth_array[$this->depth])){ |
|
507 | + if (isset($this->depth_array[$this->depth])) { |
|
508 | 508 | $pos = $this->depth_array[$this->depth]; |
509 | 509 | } |
510 | 510 | // get element prefix |
511 | - if ($prefix = $this->getPrefix($name)){ |
|
511 | + if ($prefix = $this->getPrefix($name)) { |
|
512 | 512 | // get unqualified name |
513 | 513 | $name = $this->getLocalPart($name); |
514 | 514 | } else { |
515 | 515 | $prefix = ''; |
516 | 516 | } |
517 | 517 | // move on... |
518 | - if($name == 'complexType'){ |
|
519 | - $this->xdebug('done processing complexType ' . ($this->currentComplexType ? $this->currentComplexType : '(unknown)')); |
|
518 | + if ($name == 'complexType') { |
|
519 | + $this->xdebug('done processing complexType '.($this->currentComplexType ? $this->currentComplexType : '(unknown)')); |
|
520 | 520 | $this->xdebug($this->varDump($this->complexTypes[$this->currentComplexType])); |
521 | 521 | $this->currentComplexType = array_pop($this->complexTypeStack); |
522 | 522 | //$this->currentElement = false; |
523 | 523 | } |
524 | - if($name == 'element'){ |
|
525 | - $this->xdebug('done processing element ' . ($this->currentElement ? $this->currentElement : '(unknown)')); |
|
524 | + if ($name == 'element') { |
|
525 | + $this->xdebug('done processing element '.($this->currentElement ? $this->currentElement : '(unknown)')); |
|
526 | 526 | $this->currentElement = array_pop($this->elementStack); |
527 | 527 | } |
528 | - if($name == 'simpleType'){ |
|
529 | - $this->xdebug('done processing simpleType ' . ($this->currentSimpleType ? $this->currentSimpleType : '(unknown)')); |
|
528 | + if ($name == 'simpleType') { |
|
529 | + $this->xdebug('done processing simpleType '.($this->currentSimpleType ? $this->currentSimpleType : '(unknown)')); |
|
530 | 530 | $this->xdebug($this->varDump($this->simpleTypes[$this->currentSimpleType])); |
531 | 531 | $this->currentSimpleType = array_pop($this->simpleTypeStack); |
532 | 532 | } |
@@ -539,7 +539,7 @@ discard block |
||
539 | 539 | * @param string $data element content |
540 | 540 | * @access private |
541 | 541 | */ |
542 | - function schemaCharacterData($parser, $data){ |
|
542 | + function schemaCharacterData($parser, $data) { |
|
543 | 543 | $pos = $this->depth_array[$this->depth - 1]; |
544 | 544 | $this->message[$pos]['cdata'] .= $data; |
545 | 545 | } |
@@ -549,32 +549,32 @@ discard block |
||
549 | 549 | * |
550 | 550 | * @access public |
551 | 551 | */ |
552 | - function serializeSchema(){ |
|
552 | + function serializeSchema() { |
|
553 | 553 | |
554 | 554 | $schemaPrefix = $this->getPrefixFromNamespace($this->XMLSchemaVersion); |
555 | 555 | $xml = ''; |
556 | 556 | // imports |
557 | 557 | if (sizeof($this->imports) > 0) { |
558 | - foreach($this->imports as $ns => $list) { |
|
558 | + foreach ($this->imports as $ns => $list) { |
|
559 | 559 | foreach ($list as $ii) { |
560 | 560 | if ($ii['location'] != '') { |
561 | - $xml .= " <$schemaPrefix:import location=\"" . $ii['location'] . '" namespace="' . $ns . "\" />\n"; |
|
561 | + $xml .= " <$schemaPrefix:import location=\"".$ii['location'].'" namespace="'.$ns."\" />\n"; |
|
562 | 562 | } else { |
563 | - $xml .= " <$schemaPrefix:import namespace=\"" . $ns . "\" />\n"; |
|
563 | + $xml .= " <$schemaPrefix:import namespace=\"".$ns."\" />\n"; |
|
564 | 564 | } |
565 | 565 | } |
566 | 566 | } |
567 | 567 | } |
568 | 568 | // complex types |
569 | - foreach($this->complexTypes as $typeName => $attrs){ |
|
569 | + foreach ($this->complexTypes as $typeName => $attrs) { |
|
570 | 570 | $contentStr = ''; |
571 | 571 | // serialize child elements |
572 | - if(isset($attrs['elements']) && (count($attrs['elements']) > 0)){ |
|
573 | - foreach($attrs['elements'] as $element => $eParts){ |
|
574 | - if(isset($eParts['ref'])){ |
|
572 | + if (isset($attrs['elements']) && (count($attrs['elements']) > 0)) { |
|
573 | + foreach ($attrs['elements'] as $element => $eParts) { |
|
574 | + if (isset($eParts['ref'])) { |
|
575 | 575 | $contentStr .= " <$schemaPrefix:element ref=\"$element\"/>\n"; |
576 | 576 | } else { |
577 | - $contentStr .= " <$schemaPrefix:element name=\"$element\" type=\"" . $this->contractQName($eParts['type']) . "\""; |
|
577 | + $contentStr .= " <$schemaPrefix:element name=\"$element\" type=\"".$this->contractQName($eParts['type'])."\""; |
|
578 | 578 | foreach ($eParts as $aName => $aValue) { |
579 | 579 | // handle, e.g., abstract, default, form, minOccurs, maxOccurs, nillable |
580 | 580 | if ($aName != 'name' && $aName != 'type') { |
@@ -590,8 +590,8 @@ discard block |
||
590 | 590 | } |
591 | 591 | } |
592 | 592 | // attributes |
593 | - if(isset($attrs['attrs']) && (count($attrs['attrs']) >= 1)){ |
|
594 | - foreach($attrs['attrs'] as $attr => $aParts){ |
|
593 | + if (isset($attrs['attrs']) && (count($attrs['attrs']) >= 1)) { |
|
594 | + foreach ($attrs['attrs'] as $attr => $aParts) { |
|
595 | 595 | $contentStr .= " <$schemaPrefix:attribute"; |
596 | 596 | foreach ($aParts as $a => $v) { |
597 | 597 | if ($a == 'ref' || $a == 'type') { |
@@ -607,15 +607,15 @@ discard block |
||
607 | 607 | } |
608 | 608 | } |
609 | 609 | // if restriction |
610 | - if (isset($attrs['restrictionBase']) && $attrs['restrictionBase'] != ''){ |
|
610 | + if (isset($attrs['restrictionBase']) && $attrs['restrictionBase'] != '') { |
|
611 | 611 | $contentStr = " <$schemaPrefix:restriction base=\"".$this->contractQName($attrs['restrictionBase'])."\">\n".$contentStr." </$schemaPrefix:restriction>\n"; |
612 | 612 | // complex or simple content |
613 | - if ((isset($attrs['elements']) && count($attrs['elements']) > 0) || (isset($attrs['attrs']) && count($attrs['attrs']) > 0)){ |
|
613 | + if ((isset($attrs['elements']) && count($attrs['elements']) > 0) || (isset($attrs['attrs']) && count($attrs['attrs']) > 0)) { |
|
614 | 614 | $contentStr = " <$schemaPrefix:complexContent>\n".$contentStr." </$schemaPrefix:complexContent>\n"; |
615 | 615 | } |
616 | 616 | } |
617 | 617 | // finalize complex type |
618 | - if($contentStr != ''){ |
|
618 | + if ($contentStr != '') { |
|
619 | 619 | $contentStr = " <$schemaPrefix:complexType name=\"$typeName\">\n".$contentStr." </$schemaPrefix:complexType>\n"; |
620 | 620 | } else { |
621 | 621 | $contentStr = " <$schemaPrefix:complexType name=\"$typeName\"/>\n"; |
@@ -623,8 +623,8 @@ discard block |
||
623 | 623 | $xml .= $contentStr; |
624 | 624 | } |
625 | 625 | // simple types |
626 | - if(isset($this->simpleTypes) && count($this->simpleTypes) > 0){ |
|
627 | - foreach($this->simpleTypes as $typeName => $eParts){ |
|
626 | + if (isset($this->simpleTypes) && count($this->simpleTypes) > 0) { |
|
627 | + foreach ($this->simpleTypes as $typeName => $eParts) { |
|
628 | 628 | $xml .= " <$schemaPrefix:simpleType name=\"$typeName\">\n <$schemaPrefix:restriction base=\"".$this->contractQName($eParts['type'])."\">\n"; |
629 | 629 | if (isset($eParts['enumeration'])) { |
630 | 630 | foreach ($eParts['enumeration'] as $e) { |
@@ -635,14 +635,14 @@ discard block |
||
635 | 635 | } |
636 | 636 | } |
637 | 637 | // elements |
638 | - if(isset($this->elements) && count($this->elements) > 0){ |
|
639 | - foreach($this->elements as $element => $eParts){ |
|
638 | + if (isset($this->elements) && count($this->elements) > 0) { |
|
639 | + foreach ($this->elements as $element => $eParts) { |
|
640 | 640 | $xml .= " <$schemaPrefix:element name=\"$element\" type=\"".$this->contractQName($eParts['type'])."\"/>\n"; |
641 | 641 | } |
642 | 642 | } |
643 | 643 | // attributes |
644 | - if(isset($this->attributes) && count($this->attributes) > 0){ |
|
645 | - foreach($this->attributes as $attr => $aParts){ |
|
644 | + if (isset($this->attributes) && count($this->attributes) > 0) { |
|
645 | + foreach ($this->attributes as $attr => $aParts) { |
|
646 | 646 | $xml .= " <$schemaPrefix:attribute name=\"$attr\" type=\"".$this->contractQName($aParts['type'])."\"\n/>"; |
647 | 647 | } |
648 | 648 | } |
@@ -657,7 +657,7 @@ discard block |
||
657 | 657 | foreach (array_diff($this->usedNamespaces, $this->enclosingNamespaces) as $nsp => $ns) { |
658 | 658 | $el .= " xmlns:$nsp=\"$ns\""; |
659 | 659 | } |
660 | - $xml = $el . ">\n".$xml."</$schemaPrefix:schema>\n"; |
|
660 | + $xml = $el.">\n".$xml."</$schemaPrefix:schema>\n"; |
|
661 | 661 | return $xml; |
662 | 662 | } |
663 | 663 | |
@@ -667,8 +667,8 @@ discard block |
||
667 | 667 | * @param string $string debug data |
668 | 668 | * @access private |
669 | 669 | */ |
670 | - function xdebug($string){ |
|
671 | - $this->debug('<' . $this->schemaTargetNamespace . '> '.$string); |
|
670 | + function xdebug($string) { |
|
671 | + $this->debug('<'.$this->schemaTargetNamespace.'> '.$string); |
|
672 | 672 | } |
673 | 673 | |
674 | 674 | /** |
@@ -683,11 +683,11 @@ discard block |
||
683 | 683 | * @access public |
684 | 684 | * @deprecated |
685 | 685 | */ |
686 | - function getPHPType($type,$ns){ |
|
687 | - if(isset($this->typemap[$ns][$type])){ |
|
686 | + function getPHPType($type, $ns) { |
|
687 | + if (isset($this->typemap[$ns][$type])) { |
|
688 | 688 | //print "found type '$type' and ns $ns in typemap<br>"; |
689 | 689 | return $this->typemap[$ns][$type]; |
690 | - } elseif(isset($this->complexTypes[$type])){ |
|
690 | + } elseif (isset($this->complexTypes[$type])) { |
|
691 | 691 | //print "getting type '$type' and ns $ns from complexTypes array<br>"; |
692 | 692 | return $this->complexTypes[$type]['phpType']; |
693 | 693 | } |
@@ -716,7 +716,7 @@ discard block |
||
716 | 716 | * @see addSimpleType |
717 | 717 | * @see addElement |
718 | 718 | */ |
719 | - function getTypeDef($type){ |
|
719 | + function getTypeDef($type) { |
|
720 | 720 | //$this->debug("in getTypeDef for type $type"); |
721 | 721 | if (substr($type, -1) == '^') { |
722 | 722 | $is_element = 1; |
@@ -725,10 +725,10 @@ discard block |
||
725 | 725 | $is_element = 0; |
726 | 726 | } |
727 | 727 | |
728 | - if((! $is_element) && isset($this->complexTypes[$type])){ |
|
728 | + if ((!$is_element) && isset($this->complexTypes[$type])) { |
|
729 | 729 | $this->xdebug("in getTypeDef, found complexType $type"); |
730 | 730 | return $this->complexTypes[$type]; |
731 | - } elseif((! $is_element) && isset($this->simpleTypes[$type])){ |
|
731 | + } elseif ((!$is_element) && isset($this->simpleTypes[$type])) { |
|
732 | 732 | $this->xdebug("in getTypeDef, found simpleType $type"); |
733 | 733 | if (!isset($this->simpleTypes[$type]['phpType'])) { |
734 | 734 | // get info for type to tack onto the simple type |
@@ -748,7 +748,7 @@ discard block |
||
748 | 748 | } |
749 | 749 | } |
750 | 750 | return $this->simpleTypes[$type]; |
751 | - } elseif(isset($this->elements[$type])){ |
|
751 | + } elseif (isset($this->elements[$type])) { |
|
752 | 752 | $this->xdebug("in getTypeDef, found element $type"); |
753 | 753 | if (!isset($this->elements[$type]['phpType'])) { |
754 | 754 | // get info for type to tack onto the element |
@@ -773,7 +773,7 @@ discard block |
||
773 | 773 | } |
774 | 774 | } |
775 | 775 | return $this->elements[$type]; |
776 | - } elseif(isset($this->attributes[$type])){ |
|
776 | + } elseif (isset($this->attributes[$type])) { |
|
777 | 777 | $this->xdebug("in getTypeDef, found attribute $type"); |
778 | 778 | return $this->attributes[$type]; |
779 | 779 | } elseif (preg_match('/_ContainedType$/', $type)) { |
@@ -795,23 +795,23 @@ discard block |
||
795 | 795 | * @access public |
796 | 796 | * @deprecated |
797 | 797 | */ |
798 | - function serializeTypeDef($type){ |
|
798 | + function serializeTypeDef($type) { |
|
799 | 799 | //print "in sTD() for type $type<br>"; |
800 | - if($typeDef = $this->getTypeDef($type)){ |
|
800 | + if ($typeDef = $this->getTypeDef($type)) { |
|
801 | 801 | $str .= '<'.$type; |
802 | - if(is_array($typeDef['attrs'])){ |
|
803 | - foreach($typeDef['attrs'] as $attName => $data){ |
|
802 | + if (is_array($typeDef['attrs'])) { |
|
803 | + foreach ($typeDef['attrs'] as $attName => $data) { |
|
804 | 804 | $str .= " $attName=\"{type = ".$data['type']."}\""; |
805 | 805 | } |
806 | 806 | } |
807 | 807 | $str .= " xmlns=\"".$this->schema['targetNamespace']."\""; |
808 | - if(count($typeDef['elements']) > 0){ |
|
808 | + if (count($typeDef['elements']) > 0) { |
|
809 | 809 | $str .= ">"; |
810 | - foreach($typeDef['elements'] as $element => $eData){ |
|
810 | + foreach ($typeDef['elements'] as $element => $eData) { |
|
811 | 811 | $str .= $this->serializeTypeDef($element); |
812 | 812 | } |
813 | 813 | $str .= "</$type>"; |
814 | - } elseif($typeDef['typeClass'] == 'element') { |
|
814 | + } elseif ($typeDef['typeClass'] == 'element') { |
|
815 | 815 | $str .= "></$type>"; |
816 | 816 | } else { |
817 | 817 | $str .= "/>"; |
@@ -831,22 +831,22 @@ discard block |
||
831 | 831 | * @access public |
832 | 832 | * @deprecated |
833 | 833 | */ |
834 | - function typeToForm($name,$type){ |
|
834 | + function typeToForm($name, $type) { |
|
835 | 835 | // get typedef |
836 | - if($typeDef = $this->getTypeDef($type)){ |
|
836 | + if ($typeDef = $this->getTypeDef($type)) { |
|
837 | 837 | // if struct |
838 | - if($typeDef['phpType'] == 'struct'){ |
|
838 | + if ($typeDef['phpType'] == 'struct') { |
|
839 | 839 | $buffer .= '<table>'; |
840 | - foreach($typeDef['elements'] as $child => $childDef){ |
|
840 | + foreach ($typeDef['elements'] as $child => $childDef) { |
|
841 | 841 | $buffer .= " |
842 | 842 | <tr><td align='right'>$childDef[name] (type: ".$this->getLocalPart($childDef['type'])."):</td> |
843 | 843 | <td><input type='text' name='parameters[".$name."][$childDef[name]]'></td></tr>"; |
844 | 844 | } |
845 | 845 | $buffer .= '</table>'; |
846 | 846 | // if array |
847 | - } elseif($typeDef['phpType'] == 'array'){ |
|
847 | + } elseif ($typeDef['phpType'] == 'array') { |
|
848 | 848 | $buffer .= '<table>'; |
849 | - for($i=0;$i < 3; $i++){ |
|
849 | + for ($i = 0; $i < 3; $i++) { |
|
850 | 850 | $buffer .= " |
851 | 851 | <tr><td align='right'>array item (type: $typeDef[arrayType]):</td> |
852 | 852 | <td><input type='text' name='parameters[".$name."][]'></td></tr>"; |
@@ -903,7 +903,7 @@ discard block |
||
903 | 903 | * @access public |
904 | 904 | * @see getTypeDef |
905 | 905 | */ |
906 | - function addComplexType($name,$typeClass='complexType',$phpType='array',$compositor='',$restrictionBase='',$elements=array(),$attrs=array(),$arrayType=''){ |
|
906 | + function addComplexType($name, $typeClass = 'complexType', $phpType = 'array', $compositor = '', $restrictionBase = '', $elements = array(), $attrs = array(), $arrayType = '') { |
|
907 | 907 | $this->complexTypes[$name] = array( |
908 | 908 | 'name' => $name, |
909 | 909 | 'typeClass' => $typeClass, |
@@ -931,7 +931,7 @@ discard block |
||
931 | 931 | * @see nusoap_xmlschema |
932 | 932 | * @see getTypeDef |
933 | 933 | */ |
934 | - function addSimpleType($name, $restrictionBase='', $typeClass='simpleType', $phpType='scalar', $enumeration=array()) { |
|
934 | + function addSimpleType($name, $restrictionBase = '', $typeClass = 'simpleType', $phpType = 'scalar', $enumeration = array()) { |
|
935 | 935 | $this->simpleTypes[$name] = array( |
936 | 936 | 'name' => $name, |
937 | 937 | 'typeClass' => $typeClass, |
@@ -952,14 +952,14 @@ discard block |
||
952 | 952 | * @access public |
953 | 953 | */ |
954 | 954 | function addElement($attrs) { |
955 | - if (! $this->getPrefix($attrs['type'])) { |
|
956 | - $attrs['type'] = $this->schemaTargetNamespace . ':' . $attrs['type']; |
|
955 | + if (!$this->getPrefix($attrs['type'])) { |
|
956 | + $attrs['type'] = $this->schemaTargetNamespace.':'.$attrs['type']; |
|
957 | 957 | } |
958 | - $this->elements[ $attrs['name'] ] = $attrs; |
|
959 | - $this->elements[ $attrs['name'] ]['typeClass'] = 'element'; |
|
958 | + $this->elements[$attrs['name']] = $attrs; |
|
959 | + $this->elements[$attrs['name']]['typeClass'] = 'element'; |
|
960 | 960 | |
961 | - $this->xdebug("addElement " . $attrs['name']); |
|
962 | - $this->appendDebug($this->varDump($this->elements[ $attrs['name'] ])); |
|
961 | + $this->xdebug("addElement ".$attrs['name']); |
|
962 | + $this->appendDebug($this->varDump($this->elements[$attrs['name']])); |
|
963 | 963 | } |
964 | 964 | } |
965 | 965 |
@@ -447,7 +447,7 @@ |
||
447 | 447 | * |
448 | 448 | * @param array $headers The HTTP headers |
449 | 449 | * @param string $data unprocessed request data from client |
450 | - * @return mixed value of the message, decoded into a PHP type |
|
450 | + * @return false|null value of the message, decoded into a PHP type |
|
451 | 451 | * @access private |
452 | 452 | */ |
453 | 453 | function parseRequest($headers, $data) { |
@@ -52,224 +52,224 @@ discard block |
||
52 | 52 | * @access public |
53 | 53 | */ |
54 | 54 | class nusoap_client_mime extends nusoap_client { |
55 | - /** |
|
56 | - * @var array Each array element in the return is an associative array with keys |
|
57 | - * data, filename, contenttype, cid |
|
58 | - * @access private |
|
59 | - */ |
|
60 | - var $requestAttachments = array(); |
|
61 | - /** |
|
62 | - * @var array Each array element in the return is an associative array with keys |
|
63 | - * data, filename, contenttype, cid |
|
64 | - * @access private |
|
65 | - */ |
|
66 | - var $responseAttachments; |
|
67 | - /** |
|
68 | - * @var string |
|
69 | - * @access private |
|
70 | - */ |
|
71 | - var $mimeContentType; |
|
55 | + /** |
|
56 | + * @var array Each array element in the return is an associative array with keys |
|
57 | + * data, filename, contenttype, cid |
|
58 | + * @access private |
|
59 | + */ |
|
60 | + var $requestAttachments = array(); |
|
61 | + /** |
|
62 | + * @var array Each array element in the return is an associative array with keys |
|
63 | + * data, filename, contenttype, cid |
|
64 | + * @access private |
|
65 | + */ |
|
66 | + var $responseAttachments; |
|
67 | + /** |
|
68 | + * @var string |
|
69 | + * @access private |
|
70 | + */ |
|
71 | + var $mimeContentType; |
|
72 | 72 | |
73 | - /** |
|
74 | - * adds a MIME attachment to the current request. |
|
75 | - * |
|
76 | - * If the $data parameter contains an empty string, this method will read |
|
77 | - * the contents of the file named by the $filename parameter. |
|
78 | - * |
|
79 | - * If the $cid parameter is false, this method will generate the cid. |
|
80 | - * |
|
81 | - * @param string $data The data of the attachment |
|
82 | - * @param string $filename The filename of the attachment (default is empty string) |
|
83 | - * @param string $contenttype The MIME Content-Type of the attachment (default is application/octet-stream) |
|
84 | - * @param string $cid The content-id (cid) of the attachment (default is false) |
|
85 | - * @return string The content-id (cid) of the attachment |
|
86 | - * @access public |
|
87 | - */ |
|
88 | - function addAttachment($data, $filename = '', $contenttype = 'application/octet-stream', $cid = false) { |
|
89 | - if (! $cid) { |
|
90 | - $cid = md5(uniqid(time())); |
|
91 | - } |
|
92 | - |
|
93 | - $info['data'] = $data; |
|
94 | - $info['filename'] = $filename; |
|
95 | - $info['contenttype'] = $contenttype; |
|
96 | - $info['cid'] = $cid; |
|
73 | + /** |
|
74 | + * adds a MIME attachment to the current request. |
|
75 | + * |
|
76 | + * If the $data parameter contains an empty string, this method will read |
|
77 | + * the contents of the file named by the $filename parameter. |
|
78 | + * |
|
79 | + * If the $cid parameter is false, this method will generate the cid. |
|
80 | + * |
|
81 | + * @param string $data The data of the attachment |
|
82 | + * @param string $filename The filename of the attachment (default is empty string) |
|
83 | + * @param string $contenttype The MIME Content-Type of the attachment (default is application/octet-stream) |
|
84 | + * @param string $cid The content-id (cid) of the attachment (default is false) |
|
85 | + * @return string The content-id (cid) of the attachment |
|
86 | + * @access public |
|
87 | + */ |
|
88 | + function addAttachment($data, $filename = '', $contenttype = 'application/octet-stream', $cid = false) { |
|
89 | + if (! $cid) { |
|
90 | + $cid = md5(uniqid(time())); |
|
91 | + } |
|
92 | + |
|
93 | + $info['data'] = $data; |
|
94 | + $info['filename'] = $filename; |
|
95 | + $info['contenttype'] = $contenttype; |
|
96 | + $info['cid'] = $cid; |
|
97 | 97 | |
98 | - $this->requestAttachments[] = $info; |
|
99 | - |
|
100 | - return $cid; |
|
101 | - } |
|
102 | - |
|
103 | - /** |
|
104 | - * clears the MIME attachments for the current request. |
|
105 | - * |
|
106 | - * @access public |
|
107 | - */ |
|
108 | - function clearAttachments() { |
|
109 | - $this->requestAttachments = array(); |
|
110 | - } |
|
111 | - |
|
112 | - /** |
|
113 | - * gets the MIME attachments from the current response. |
|
114 | - * |
|
115 | - * Each array element in the return is an associative array with keys |
|
116 | - * data, filename, contenttype, cid. These keys correspond to the parameters |
|
117 | - * for addAttachment. |
|
118 | - * |
|
119 | - * @return array The attachments. |
|
120 | - * @access public |
|
121 | - */ |
|
122 | - function getAttachments() { |
|
123 | - return $this->responseAttachments; |
|
124 | - } |
|
125 | - |
|
126 | - /** |
|
127 | - * gets the HTTP body for the current request. |
|
128 | - * |
|
129 | - * @param string $soapmsg The SOAP payload |
|
130 | - * @return string The HTTP body, which includes the SOAP payload |
|
131 | - * @access private |
|
132 | - */ |
|
133 | - function getHTTPBody($soapmsg) { |
|
134 | - if (count($this->requestAttachments) > 0) { |
|
135 | - $params['content_type'] = 'multipart/related; type="text/xml"'; |
|
136 | - $mimeMessage = new Mail_mimePart('', $params); |
|
137 | - unset($params); |
|
138 | - |
|
139 | - $params['content_type'] = 'text/xml'; |
|
140 | - $params['encoding'] = '8bit'; |
|
141 | - $params['charset'] = $this->soap_defencoding; |
|
142 | - $mimeMessage->addSubpart($soapmsg, $params); |
|
98 | + $this->requestAttachments[] = $info; |
|
99 | + |
|
100 | + return $cid; |
|
101 | + } |
|
102 | + |
|
103 | + /** |
|
104 | + * clears the MIME attachments for the current request. |
|
105 | + * |
|
106 | + * @access public |
|
107 | + */ |
|
108 | + function clearAttachments() { |
|
109 | + $this->requestAttachments = array(); |
|
110 | + } |
|
111 | + |
|
112 | + /** |
|
113 | + * gets the MIME attachments from the current response. |
|
114 | + * |
|
115 | + * Each array element in the return is an associative array with keys |
|
116 | + * data, filename, contenttype, cid. These keys correspond to the parameters |
|
117 | + * for addAttachment. |
|
118 | + * |
|
119 | + * @return array The attachments. |
|
120 | + * @access public |
|
121 | + */ |
|
122 | + function getAttachments() { |
|
123 | + return $this->responseAttachments; |
|
124 | + } |
|
125 | + |
|
126 | + /** |
|
127 | + * gets the HTTP body for the current request. |
|
128 | + * |
|
129 | + * @param string $soapmsg The SOAP payload |
|
130 | + * @return string The HTTP body, which includes the SOAP payload |
|
131 | + * @access private |
|
132 | + */ |
|
133 | + function getHTTPBody($soapmsg) { |
|
134 | + if (count($this->requestAttachments) > 0) { |
|
135 | + $params['content_type'] = 'multipart/related; type="text/xml"'; |
|
136 | + $mimeMessage = new Mail_mimePart('', $params); |
|
137 | + unset($params); |
|
138 | + |
|
139 | + $params['content_type'] = 'text/xml'; |
|
140 | + $params['encoding'] = '8bit'; |
|
141 | + $params['charset'] = $this->soap_defencoding; |
|
142 | + $mimeMessage->addSubpart($soapmsg, $params); |
|
143 | 143 | |
144 | - foreach ($this->requestAttachments as $att) { |
|
145 | - unset($params); |
|
146 | - |
|
147 | - $params['content_type'] = $att['contenttype']; |
|
148 | - $params['encoding'] = 'base64'; |
|
149 | - $params['disposition'] = 'attachment'; |
|
150 | - $params['dfilename'] = $att['filename']; |
|
151 | - $params['cid'] = $att['cid']; |
|
152 | - |
|
153 | - if ($att['data'] == '' && $att['filename'] <> '') { |
|
154 | - if ($fd = fopen($att['filename'], 'rb')) { |
|
155 | - $data = fread($fd, filesize($att['filename'])); |
|
156 | - fclose($fd); |
|
157 | - } else { |
|
158 | - $data = ''; |
|
159 | - } |
|
160 | - $mimeMessage->addSubpart($data, $params); |
|
161 | - } else { |
|
162 | - $mimeMessage->addSubpart($att['data'], $params); |
|
163 | - } |
|
164 | - } |
|
165 | - |
|
166 | - $output = $mimeMessage->encode(); |
|
167 | - $mimeHeaders = $output['headers']; |
|
144 | + foreach ($this->requestAttachments as $att) { |
|
145 | + unset($params); |
|
146 | + |
|
147 | + $params['content_type'] = $att['contenttype']; |
|
148 | + $params['encoding'] = 'base64'; |
|
149 | + $params['disposition'] = 'attachment'; |
|
150 | + $params['dfilename'] = $att['filename']; |
|
151 | + $params['cid'] = $att['cid']; |
|
152 | + |
|
153 | + if ($att['data'] == '' && $att['filename'] <> '') { |
|
154 | + if ($fd = fopen($att['filename'], 'rb')) { |
|
155 | + $data = fread($fd, filesize($att['filename'])); |
|
156 | + fclose($fd); |
|
157 | + } else { |
|
158 | + $data = ''; |
|
159 | + } |
|
160 | + $mimeMessage->addSubpart($data, $params); |
|
161 | + } else { |
|
162 | + $mimeMessage->addSubpart($att['data'], $params); |
|
163 | + } |
|
164 | + } |
|
165 | + |
|
166 | + $output = $mimeMessage->encode(); |
|
167 | + $mimeHeaders = $output['headers']; |
|
168 | 168 | |
169 | - foreach ($mimeHeaders as $k => $v) { |
|
170 | - $this->debug("MIME header $k: $v"); |
|
171 | - if (strtolower($k) == 'content-type') { |
|
172 | - // PHP header() seems to strip leading whitespace starting |
|
173 | - // the second line, so force everything to one line |
|
174 | - $this->mimeContentType = str_replace("\r\n", " ", $v); |
|
175 | - } |
|
176 | - } |
|
169 | + foreach ($mimeHeaders as $k => $v) { |
|
170 | + $this->debug("MIME header $k: $v"); |
|
171 | + if (strtolower($k) == 'content-type') { |
|
172 | + // PHP header() seems to strip leading whitespace starting |
|
173 | + // the second line, so force everything to one line |
|
174 | + $this->mimeContentType = str_replace("\r\n", " ", $v); |
|
175 | + } |
|
176 | + } |
|
177 | 177 | |
178 | - return $output['body']; |
|
179 | - } |
|
178 | + return $output['body']; |
|
179 | + } |
|
180 | 180 | |
181 | - return parent::getHTTPBody($soapmsg); |
|
182 | - } |
|
181 | + return parent::getHTTPBody($soapmsg); |
|
182 | + } |
|
183 | 183 | |
184 | - /** |
|
185 | - * gets the HTTP content type for the current request. |
|
186 | - * |
|
187 | - * Note: getHTTPBody must be called before this. |
|
188 | - * |
|
189 | - * @return string the HTTP content type for the current request. |
|
190 | - * @access private |
|
191 | - */ |
|
192 | - function getHTTPContentType() { |
|
193 | - if (count($this->requestAttachments) > 0) { |
|
194 | - return $this->mimeContentType; |
|
195 | - } |
|
196 | - return parent::getHTTPContentType(); |
|
197 | - } |
|
184 | + /** |
|
185 | + * gets the HTTP content type for the current request. |
|
186 | + * |
|
187 | + * Note: getHTTPBody must be called before this. |
|
188 | + * |
|
189 | + * @return string the HTTP content type for the current request. |
|
190 | + * @access private |
|
191 | + */ |
|
192 | + function getHTTPContentType() { |
|
193 | + if (count($this->requestAttachments) > 0) { |
|
194 | + return $this->mimeContentType; |
|
195 | + } |
|
196 | + return parent::getHTTPContentType(); |
|
197 | + } |
|
198 | 198 | |
199 | - /** |
|
200 | - * gets the HTTP content type charset for the current request. |
|
201 | - * returns false for non-text content types. |
|
202 | - * |
|
203 | - * Note: getHTTPBody must be called before this. |
|
204 | - * |
|
205 | - * @return string the HTTP content type charset for the current request. |
|
206 | - * @access private |
|
207 | - */ |
|
208 | - function getHTTPContentTypeCharset() { |
|
209 | - if (count($this->requestAttachments) > 0) { |
|
210 | - return false; |
|
211 | - } |
|
212 | - return parent::getHTTPContentTypeCharset(); |
|
213 | - } |
|
214 | - |
|
215 | - /** |
|
216 | - * processes SOAP message returned from server |
|
217 | - * |
|
218 | - * @param array $headers The HTTP headers |
|
219 | - * @param string $data unprocessed response data from server |
|
220 | - * @return mixed value of the message, decoded into a PHP type |
|
221 | - * @access private |
|
222 | - */ |
|
199 | + /** |
|
200 | + * gets the HTTP content type charset for the current request. |
|
201 | + * returns false for non-text content types. |
|
202 | + * |
|
203 | + * Note: getHTTPBody must be called before this. |
|
204 | + * |
|
205 | + * @return string the HTTP content type charset for the current request. |
|
206 | + * @access private |
|
207 | + */ |
|
208 | + function getHTTPContentTypeCharset() { |
|
209 | + if (count($this->requestAttachments) > 0) { |
|
210 | + return false; |
|
211 | + } |
|
212 | + return parent::getHTTPContentTypeCharset(); |
|
213 | + } |
|
214 | + |
|
215 | + /** |
|
216 | + * processes SOAP message returned from server |
|
217 | + * |
|
218 | + * @param array $headers The HTTP headers |
|
219 | + * @param string $data unprocessed response data from server |
|
220 | + * @return mixed value of the message, decoded into a PHP type |
|
221 | + * @access private |
|
222 | + */ |
|
223 | 223 | function parseResponse($headers, $data) { |
224 | - $this->debug('Entering parseResponse() for payload of length ' . strlen($data) . ' and type of ' . $headers['content-type']); |
|
225 | - $this->responseAttachments = array(); |
|
226 | - if (strstr($headers['content-type'], 'multipart/related')) { |
|
227 | - $this->debug('Decode multipart/related'); |
|
228 | - $input = ''; |
|
229 | - foreach ($headers as $k => $v) { |
|
230 | - $input .= "$k: $v\r\n"; |
|
231 | - } |
|
232 | - $params['input'] = $input . "\r\n" . $data; |
|
233 | - $params['include_bodies'] = true; |
|
234 | - $params['decode_bodies'] = true; |
|
235 | - $params['decode_headers'] = true; |
|
224 | + $this->debug('Entering parseResponse() for payload of length ' . strlen($data) . ' and type of ' . $headers['content-type']); |
|
225 | + $this->responseAttachments = array(); |
|
226 | + if (strstr($headers['content-type'], 'multipart/related')) { |
|
227 | + $this->debug('Decode multipart/related'); |
|
228 | + $input = ''; |
|
229 | + foreach ($headers as $k => $v) { |
|
230 | + $input .= "$k: $v\r\n"; |
|
231 | + } |
|
232 | + $params['input'] = $input . "\r\n" . $data; |
|
233 | + $params['include_bodies'] = true; |
|
234 | + $params['decode_bodies'] = true; |
|
235 | + $params['decode_headers'] = true; |
|
236 | 236 | |
237 | - $structure = Mail_mimeDecode::decode($params); |
|
238 | - |
|
239 | - foreach ($structure->parts as $part) { |
|
240 | - if (!isset($part->disposition) && (strstr($part->headers['content-type'], 'text/xml'))) { |
|
241 | - $this->debug('Have root part of type ' . $part->headers['content-type']); |
|
242 | - $root = $part->body; |
|
243 | - $return = parent::parseResponse($part->headers, $part->body); |
|
244 | - } else { |
|
245 | - $this->debug('Have an attachment of type ' . $part->headers['content-type']); |
|
246 | - $info['data'] = $part->body; |
|
247 | - $info['filename'] = isset($part->d_parameters['filename']) ? $part->d_parameters['filename'] : ''; |
|
248 | - $info['contenttype'] = $part->headers['content-type']; |
|
249 | - $info['cid'] = $part->headers['content-id']; |
|
250 | - $this->responseAttachments[] = $info; |
|
251 | - } |
|
252 | - } |
|
237 | + $structure = Mail_mimeDecode::decode($params); |
|
238 | + |
|
239 | + foreach ($structure->parts as $part) { |
|
240 | + if (!isset($part->disposition) && (strstr($part->headers['content-type'], 'text/xml'))) { |
|
241 | + $this->debug('Have root part of type ' . $part->headers['content-type']); |
|
242 | + $root = $part->body; |
|
243 | + $return = parent::parseResponse($part->headers, $part->body); |
|
244 | + } else { |
|
245 | + $this->debug('Have an attachment of type ' . $part->headers['content-type']); |
|
246 | + $info['data'] = $part->body; |
|
247 | + $info['filename'] = isset($part->d_parameters['filename']) ? $part->d_parameters['filename'] : ''; |
|
248 | + $info['contenttype'] = $part->headers['content-type']; |
|
249 | + $info['cid'] = $part->headers['content-id']; |
|
250 | + $this->responseAttachments[] = $info; |
|
251 | + } |
|
252 | + } |
|
253 | 253 | |
254 | - if (isset($return)) { |
|
255 | - $this->responseData = $root; |
|
256 | - return $return; |
|
257 | - } |
|
254 | + if (isset($return)) { |
|
255 | + $this->responseData = $root; |
|
256 | + return $return; |
|
257 | + } |
|
258 | 258 | |
259 | - $this->setError('No root part found in multipart/related content'); |
|
260 | - return ''; |
|
261 | - } |
|
262 | - $this->debug('Not multipart/related'); |
|
263 | - return parent::parseResponse($headers, $data); |
|
264 | - } |
|
259 | + $this->setError('No root part found in multipart/related content'); |
|
260 | + return ''; |
|
261 | + } |
|
262 | + $this->debug('Not multipart/related'); |
|
263 | + return parent::parseResponse($headers, $data); |
|
264 | + } |
|
265 | 265 | } |
266 | 266 | |
267 | 267 | /* |
268 | 268 | * For backwards compatiblity, define soapclientmime unless the PHP SOAP extension is loaded. |
269 | 269 | */ |
270 | 270 | if (!extension_loaded('soap')) { |
271 | - class soapclientmime extends nusoap_client_mime { |
|
272 | - } |
|
271 | + class soapclientmime extends nusoap_client_mime { |
|
272 | + } |
|
273 | 273 | } |
274 | 274 | |
275 | 275 | /** |
@@ -282,214 +282,214 @@ discard block |
||
282 | 282 | * @access public |
283 | 283 | */ |
284 | 284 | class nusoap_server_mime extends nusoap_server { |
285 | - /** |
|
286 | - * @var array Each array element in the return is an associative array with keys |
|
287 | - * data, filename, contenttype, cid |
|
288 | - * @access private |
|
289 | - */ |
|
290 | - var $requestAttachments = array(); |
|
291 | - /** |
|
292 | - * @var array Each array element in the return is an associative array with keys |
|
293 | - * data, filename, contenttype, cid |
|
294 | - * @access private |
|
295 | - */ |
|
296 | - var $responseAttachments; |
|
297 | - /** |
|
298 | - * @var string |
|
299 | - * @access private |
|
300 | - */ |
|
301 | - var $mimeContentType; |
|
285 | + /** |
|
286 | + * @var array Each array element in the return is an associative array with keys |
|
287 | + * data, filename, contenttype, cid |
|
288 | + * @access private |
|
289 | + */ |
|
290 | + var $requestAttachments = array(); |
|
291 | + /** |
|
292 | + * @var array Each array element in the return is an associative array with keys |
|
293 | + * data, filename, contenttype, cid |
|
294 | + * @access private |
|
295 | + */ |
|
296 | + var $responseAttachments; |
|
297 | + /** |
|
298 | + * @var string |
|
299 | + * @access private |
|
300 | + */ |
|
301 | + var $mimeContentType; |
|
302 | 302 | |
303 | - /** |
|
304 | - * adds a MIME attachment to the current response. |
|
305 | - * |
|
306 | - * If the $data parameter contains an empty string, this method will read |
|
307 | - * the contents of the file named by the $filename parameter. |
|
308 | - * |
|
309 | - * If the $cid parameter is false, this method will generate the cid. |
|
310 | - * |
|
311 | - * @param string $data The data of the attachment |
|
312 | - * @param string $filename The filename of the attachment (default is empty string) |
|
313 | - * @param string $contenttype The MIME Content-Type of the attachment (default is application/octet-stream) |
|
314 | - * @param string $cid The content-id (cid) of the attachment (default is false) |
|
315 | - * @return string The content-id (cid) of the attachment |
|
316 | - * @access public |
|
317 | - */ |
|
318 | - function addAttachment($data, $filename = '', $contenttype = 'application/octet-stream', $cid = false) { |
|
319 | - if (! $cid) { |
|
320 | - $cid = md5(uniqid(time())); |
|
321 | - } |
|
322 | - |
|
323 | - $info['data'] = $data; |
|
324 | - $info['filename'] = $filename; |
|
325 | - $info['contenttype'] = $contenttype; |
|
326 | - $info['cid'] = $cid; |
|
303 | + /** |
|
304 | + * adds a MIME attachment to the current response. |
|
305 | + * |
|
306 | + * If the $data parameter contains an empty string, this method will read |
|
307 | + * the contents of the file named by the $filename parameter. |
|
308 | + * |
|
309 | + * If the $cid parameter is false, this method will generate the cid. |
|
310 | + * |
|
311 | + * @param string $data The data of the attachment |
|
312 | + * @param string $filename The filename of the attachment (default is empty string) |
|
313 | + * @param string $contenttype The MIME Content-Type of the attachment (default is application/octet-stream) |
|
314 | + * @param string $cid The content-id (cid) of the attachment (default is false) |
|
315 | + * @return string The content-id (cid) of the attachment |
|
316 | + * @access public |
|
317 | + */ |
|
318 | + function addAttachment($data, $filename = '', $contenttype = 'application/octet-stream', $cid = false) { |
|
319 | + if (! $cid) { |
|
320 | + $cid = md5(uniqid(time())); |
|
321 | + } |
|
322 | + |
|
323 | + $info['data'] = $data; |
|
324 | + $info['filename'] = $filename; |
|
325 | + $info['contenttype'] = $contenttype; |
|
326 | + $info['cid'] = $cid; |
|
327 | 327 | |
328 | - $this->responseAttachments[] = $info; |
|
329 | - |
|
330 | - return $cid; |
|
331 | - } |
|
332 | - |
|
333 | - /** |
|
334 | - * clears the MIME attachments for the current response. |
|
335 | - * |
|
336 | - * @access public |
|
337 | - */ |
|
338 | - function clearAttachments() { |
|
339 | - $this->responseAttachments = array(); |
|
340 | - } |
|
341 | - |
|
342 | - /** |
|
343 | - * gets the MIME attachments from the current request. |
|
344 | - * |
|
345 | - * Each array element in the return is an associative array with keys |
|
346 | - * data, filename, contenttype, cid. These keys correspond to the parameters |
|
347 | - * for addAttachment. |
|
348 | - * |
|
349 | - * @return array The attachments. |
|
350 | - * @access public |
|
351 | - */ |
|
352 | - function getAttachments() { |
|
353 | - return $this->requestAttachments; |
|
354 | - } |
|
355 | - |
|
356 | - /** |
|
357 | - * gets the HTTP body for the current response. |
|
358 | - * |
|
359 | - * @param string $soapmsg The SOAP payload |
|
360 | - * @return string The HTTP body, which includes the SOAP payload |
|
361 | - * @access private |
|
362 | - */ |
|
363 | - function getHTTPBody($soapmsg) { |
|
364 | - if (count($this->responseAttachments) > 0) { |
|
365 | - $params['content_type'] = 'multipart/related; type="text/xml"'; |
|
366 | - $mimeMessage = new Mail_mimePart('', $params); |
|
367 | - unset($params); |
|
368 | - |
|
369 | - $params['content_type'] = 'text/xml'; |
|
370 | - $params['encoding'] = '8bit'; |
|
371 | - $params['charset'] = $this->soap_defencoding; |
|
372 | - $mimeMessage->addSubpart($soapmsg, $params); |
|
328 | + $this->responseAttachments[] = $info; |
|
329 | + |
|
330 | + return $cid; |
|
331 | + } |
|
332 | + |
|
333 | + /** |
|
334 | + * clears the MIME attachments for the current response. |
|
335 | + * |
|
336 | + * @access public |
|
337 | + */ |
|
338 | + function clearAttachments() { |
|
339 | + $this->responseAttachments = array(); |
|
340 | + } |
|
341 | + |
|
342 | + /** |
|
343 | + * gets the MIME attachments from the current request. |
|
344 | + * |
|
345 | + * Each array element in the return is an associative array with keys |
|
346 | + * data, filename, contenttype, cid. These keys correspond to the parameters |
|
347 | + * for addAttachment. |
|
348 | + * |
|
349 | + * @return array The attachments. |
|
350 | + * @access public |
|
351 | + */ |
|
352 | + function getAttachments() { |
|
353 | + return $this->requestAttachments; |
|
354 | + } |
|
355 | + |
|
356 | + /** |
|
357 | + * gets the HTTP body for the current response. |
|
358 | + * |
|
359 | + * @param string $soapmsg The SOAP payload |
|
360 | + * @return string The HTTP body, which includes the SOAP payload |
|
361 | + * @access private |
|
362 | + */ |
|
363 | + function getHTTPBody($soapmsg) { |
|
364 | + if (count($this->responseAttachments) > 0) { |
|
365 | + $params['content_type'] = 'multipart/related; type="text/xml"'; |
|
366 | + $mimeMessage = new Mail_mimePart('', $params); |
|
367 | + unset($params); |
|
368 | + |
|
369 | + $params['content_type'] = 'text/xml'; |
|
370 | + $params['encoding'] = '8bit'; |
|
371 | + $params['charset'] = $this->soap_defencoding; |
|
372 | + $mimeMessage->addSubpart($soapmsg, $params); |
|
373 | 373 | |
374 | - foreach ($this->responseAttachments as $att) { |
|
375 | - unset($params); |
|
376 | - |
|
377 | - $params['content_type'] = $att['contenttype']; |
|
378 | - $params['encoding'] = 'base64'; |
|
379 | - $params['disposition'] = 'attachment'; |
|
380 | - $params['dfilename'] = $att['filename']; |
|
381 | - $params['cid'] = $att['cid']; |
|
382 | - |
|
383 | - if ($att['data'] == '' && $att['filename'] <> '') { |
|
384 | - if ($fd = fopen($att['filename'], 'rb')) { |
|
385 | - $data = fread($fd, filesize($att['filename'])); |
|
386 | - fclose($fd); |
|
387 | - } else { |
|
388 | - $data = ''; |
|
389 | - } |
|
390 | - $mimeMessage->addSubpart($data, $params); |
|
391 | - } else { |
|
392 | - $mimeMessage->addSubpart($att['data'], $params); |
|
393 | - } |
|
394 | - } |
|
395 | - |
|
396 | - $output = $mimeMessage->encode(); |
|
397 | - $mimeHeaders = $output['headers']; |
|
374 | + foreach ($this->responseAttachments as $att) { |
|
375 | + unset($params); |
|
376 | + |
|
377 | + $params['content_type'] = $att['contenttype']; |
|
378 | + $params['encoding'] = 'base64'; |
|
379 | + $params['disposition'] = 'attachment'; |
|
380 | + $params['dfilename'] = $att['filename']; |
|
381 | + $params['cid'] = $att['cid']; |
|
382 | + |
|
383 | + if ($att['data'] == '' && $att['filename'] <> '') { |
|
384 | + if ($fd = fopen($att['filename'], 'rb')) { |
|
385 | + $data = fread($fd, filesize($att['filename'])); |
|
386 | + fclose($fd); |
|
387 | + } else { |
|
388 | + $data = ''; |
|
389 | + } |
|
390 | + $mimeMessage->addSubpart($data, $params); |
|
391 | + } else { |
|
392 | + $mimeMessage->addSubpart($att['data'], $params); |
|
393 | + } |
|
394 | + } |
|
395 | + |
|
396 | + $output = $mimeMessage->encode(); |
|
397 | + $mimeHeaders = $output['headers']; |
|
398 | 398 | |
399 | - foreach ($mimeHeaders as $k => $v) { |
|
400 | - $this->debug("MIME header $k: $v"); |
|
401 | - if (strtolower($k) == 'content-type') { |
|
402 | - // PHP header() seems to strip leading whitespace starting |
|
403 | - // the second line, so force everything to one line |
|
404 | - $this->mimeContentType = str_replace("\r\n", " ", $v); |
|
405 | - } |
|
406 | - } |
|
399 | + foreach ($mimeHeaders as $k => $v) { |
|
400 | + $this->debug("MIME header $k: $v"); |
|
401 | + if (strtolower($k) == 'content-type') { |
|
402 | + // PHP header() seems to strip leading whitespace starting |
|
403 | + // the second line, so force everything to one line |
|
404 | + $this->mimeContentType = str_replace("\r\n", " ", $v); |
|
405 | + } |
|
406 | + } |
|
407 | 407 | |
408 | - return $output['body']; |
|
409 | - } |
|
408 | + return $output['body']; |
|
409 | + } |
|
410 | 410 | |
411 | - return parent::getHTTPBody($soapmsg); |
|
412 | - } |
|
411 | + return parent::getHTTPBody($soapmsg); |
|
412 | + } |
|
413 | 413 | |
414 | - /** |
|
415 | - * gets the HTTP content type for the current response. |
|
416 | - * |
|
417 | - * Note: getHTTPBody must be called before this. |
|
418 | - * |
|
419 | - * @return string the HTTP content type for the current response. |
|
420 | - * @access private |
|
421 | - */ |
|
422 | - function getHTTPContentType() { |
|
423 | - if (count($this->responseAttachments) > 0) { |
|
424 | - return $this->mimeContentType; |
|
425 | - } |
|
426 | - return parent::getHTTPContentType(); |
|
427 | - } |
|
414 | + /** |
|
415 | + * gets the HTTP content type for the current response. |
|
416 | + * |
|
417 | + * Note: getHTTPBody must be called before this. |
|
418 | + * |
|
419 | + * @return string the HTTP content type for the current response. |
|
420 | + * @access private |
|
421 | + */ |
|
422 | + function getHTTPContentType() { |
|
423 | + if (count($this->responseAttachments) > 0) { |
|
424 | + return $this->mimeContentType; |
|
425 | + } |
|
426 | + return parent::getHTTPContentType(); |
|
427 | + } |
|
428 | 428 | |
429 | - /** |
|
430 | - * gets the HTTP content type charset for the current response. |
|
431 | - * returns false for non-text content types. |
|
432 | - * |
|
433 | - * Note: getHTTPBody must be called before this. |
|
434 | - * |
|
435 | - * @return string the HTTP content type charset for the current response. |
|
436 | - * @access private |
|
437 | - */ |
|
438 | - function getHTTPContentTypeCharset() { |
|
439 | - if (count($this->responseAttachments) > 0) { |
|
440 | - return false; |
|
441 | - } |
|
442 | - return parent::getHTTPContentTypeCharset(); |
|
443 | - } |
|
444 | - |
|
445 | - /** |
|
446 | - * processes SOAP message received from client |
|
447 | - * |
|
448 | - * @param array $headers The HTTP headers |
|
449 | - * @param string $data unprocessed request data from client |
|
450 | - * @return mixed value of the message, decoded into a PHP type |
|
451 | - * @access private |
|
452 | - */ |
|
429 | + /** |
|
430 | + * gets the HTTP content type charset for the current response. |
|
431 | + * returns false for non-text content types. |
|
432 | + * |
|
433 | + * Note: getHTTPBody must be called before this. |
|
434 | + * |
|
435 | + * @return string the HTTP content type charset for the current response. |
|
436 | + * @access private |
|
437 | + */ |
|
438 | + function getHTTPContentTypeCharset() { |
|
439 | + if (count($this->responseAttachments) > 0) { |
|
440 | + return false; |
|
441 | + } |
|
442 | + return parent::getHTTPContentTypeCharset(); |
|
443 | + } |
|
444 | + |
|
445 | + /** |
|
446 | + * processes SOAP message received from client |
|
447 | + * |
|
448 | + * @param array $headers The HTTP headers |
|
449 | + * @param string $data unprocessed request data from client |
|
450 | + * @return mixed value of the message, decoded into a PHP type |
|
451 | + * @access private |
|
452 | + */ |
|
453 | 453 | function parseRequest($headers, $data) { |
454 | - $this->debug('Entering parseRequest() for payload of length ' . strlen($data) . ' and type of ' . $headers['content-type']); |
|
455 | - $this->requestAttachments = array(); |
|
456 | - if (strstr($headers['content-type'], 'multipart/related')) { |
|
457 | - $this->debug('Decode multipart/related'); |
|
458 | - $input = ''; |
|
459 | - foreach ($headers as $k => $v) { |
|
460 | - $input .= "$k: $v\r\n"; |
|
461 | - } |
|
462 | - $params['input'] = $input . "\r\n" . $data; |
|
463 | - $params['include_bodies'] = true; |
|
464 | - $params['decode_bodies'] = true; |
|
465 | - $params['decode_headers'] = true; |
|
454 | + $this->debug('Entering parseRequest() for payload of length ' . strlen($data) . ' and type of ' . $headers['content-type']); |
|
455 | + $this->requestAttachments = array(); |
|
456 | + if (strstr($headers['content-type'], 'multipart/related')) { |
|
457 | + $this->debug('Decode multipart/related'); |
|
458 | + $input = ''; |
|
459 | + foreach ($headers as $k => $v) { |
|
460 | + $input .= "$k: $v\r\n"; |
|
461 | + } |
|
462 | + $params['input'] = $input . "\r\n" . $data; |
|
463 | + $params['include_bodies'] = true; |
|
464 | + $params['decode_bodies'] = true; |
|
465 | + $params['decode_headers'] = true; |
|
466 | 466 | |
467 | - $structure = Mail_mimeDecode::decode($params); |
|
468 | - |
|
469 | - foreach ($structure->parts as $part) { |
|
470 | - if (!isset($part->disposition) && (strstr($part->headers['content-type'], 'text/xml'))) { |
|
471 | - $this->debug('Have root part of type ' . $part->headers['content-type']); |
|
472 | - $return = parent::parseRequest($part->headers, $part->body); |
|
473 | - } else { |
|
474 | - $this->debug('Have an attachment of type ' . $part->headers['content-type']); |
|
475 | - $info['data'] = $part->body; |
|
476 | - $info['filename'] = isset($part->d_parameters['filename']) ? $part->d_parameters['filename'] : ''; |
|
477 | - $info['contenttype'] = $part->headers['content-type']; |
|
478 | - $info['cid'] = $part->headers['content-id']; |
|
479 | - $this->requestAttachments[] = $info; |
|
480 | - } |
|
481 | - } |
|
467 | + $structure = Mail_mimeDecode::decode($params); |
|
468 | + |
|
469 | + foreach ($structure->parts as $part) { |
|
470 | + if (!isset($part->disposition) && (strstr($part->headers['content-type'], 'text/xml'))) { |
|
471 | + $this->debug('Have root part of type ' . $part->headers['content-type']); |
|
472 | + $return = parent::parseRequest($part->headers, $part->body); |
|
473 | + } else { |
|
474 | + $this->debug('Have an attachment of type ' . $part->headers['content-type']); |
|
475 | + $info['data'] = $part->body; |
|
476 | + $info['filename'] = isset($part->d_parameters['filename']) ? $part->d_parameters['filename'] : ''; |
|
477 | + $info['contenttype'] = $part->headers['content-type']; |
|
478 | + $info['cid'] = $part->headers['content-id']; |
|
479 | + $this->requestAttachments[] = $info; |
|
480 | + } |
|
481 | + } |
|
482 | 482 | |
483 | - if (isset($return)) { |
|
484 | - return $return; |
|
485 | - } |
|
483 | + if (isset($return)) { |
|
484 | + return $return; |
|
485 | + } |
|
486 | 486 | |
487 | - $this->setError('No root part found in multipart/related content'); |
|
488 | - return; |
|
489 | - } |
|
490 | - $this->debug('Not multipart/related'); |
|
491 | - return parent::parseRequest($headers, $data); |
|
492 | - } |
|
487 | + $this->setError('No root part found in multipart/related content'); |
|
488 | + return; |
|
489 | + } |
|
490 | + $this->debug('Not multipart/related'); |
|
491 | + return parent::parseRequest($headers, $data); |
|
492 | + } |
|
493 | 493 | } |
494 | 494 | |
495 | 495 | /* |
@@ -86,7 +86,7 @@ discard block |
||
86 | 86 | * @access public |
87 | 87 | */ |
88 | 88 | function addAttachment($data, $filename = '', $contenttype = 'application/octet-stream', $cid = false) { |
89 | - if (! $cid) { |
|
89 | + if (!$cid) { |
|
90 | 90 | $cid = md5(uniqid(time())); |
91 | 91 | } |
92 | 92 | |
@@ -221,7 +221,7 @@ discard block |
||
221 | 221 | * @access private |
222 | 222 | */ |
223 | 223 | function parseResponse($headers, $data) { |
224 | - $this->debug('Entering parseResponse() for payload of length ' . strlen($data) . ' and type of ' . $headers['content-type']); |
|
224 | + $this->debug('Entering parseResponse() for payload of length '.strlen($data).' and type of '.$headers['content-type']); |
|
225 | 225 | $this->responseAttachments = array(); |
226 | 226 | if (strstr($headers['content-type'], 'multipart/related')) { |
227 | 227 | $this->debug('Decode multipart/related'); |
@@ -229,7 +229,7 @@ discard block |
||
229 | 229 | foreach ($headers as $k => $v) { |
230 | 230 | $input .= "$k: $v\r\n"; |
231 | 231 | } |
232 | - $params['input'] = $input . "\r\n" . $data; |
|
232 | + $params['input'] = $input."\r\n".$data; |
|
233 | 233 | $params['include_bodies'] = true; |
234 | 234 | $params['decode_bodies'] = true; |
235 | 235 | $params['decode_headers'] = true; |
@@ -238,11 +238,11 @@ discard block |
||
238 | 238 | |
239 | 239 | foreach ($structure->parts as $part) { |
240 | 240 | if (!isset($part->disposition) && (strstr($part->headers['content-type'], 'text/xml'))) { |
241 | - $this->debug('Have root part of type ' . $part->headers['content-type']); |
|
241 | + $this->debug('Have root part of type '.$part->headers['content-type']); |
|
242 | 242 | $root = $part->body; |
243 | 243 | $return = parent::parseResponse($part->headers, $part->body); |
244 | 244 | } else { |
245 | - $this->debug('Have an attachment of type ' . $part->headers['content-type']); |
|
245 | + $this->debug('Have an attachment of type '.$part->headers['content-type']); |
|
246 | 246 | $info['data'] = $part->body; |
247 | 247 | $info['filename'] = isset($part->d_parameters['filename']) ? $part->d_parameters['filename'] : ''; |
248 | 248 | $info['contenttype'] = $part->headers['content-type']; |
@@ -316,7 +316,7 @@ discard block |
||
316 | 316 | * @access public |
317 | 317 | */ |
318 | 318 | function addAttachment($data, $filename = '', $contenttype = 'application/octet-stream', $cid = false) { |
319 | - if (! $cid) { |
|
319 | + if (!$cid) { |
|
320 | 320 | $cid = md5(uniqid(time())); |
321 | 321 | } |
322 | 322 | |
@@ -451,7 +451,7 @@ discard block |
||
451 | 451 | * @access private |
452 | 452 | */ |
453 | 453 | function parseRequest($headers, $data) { |
454 | - $this->debug('Entering parseRequest() for payload of length ' . strlen($data) . ' and type of ' . $headers['content-type']); |
|
454 | + $this->debug('Entering parseRequest() for payload of length '.strlen($data).' and type of '.$headers['content-type']); |
|
455 | 455 | $this->requestAttachments = array(); |
456 | 456 | if (strstr($headers['content-type'], 'multipart/related')) { |
457 | 457 | $this->debug('Decode multipart/related'); |
@@ -459,7 +459,7 @@ discard block |
||
459 | 459 | foreach ($headers as $k => $v) { |
460 | 460 | $input .= "$k: $v\r\n"; |
461 | 461 | } |
462 | - $params['input'] = $input . "\r\n" . $data; |
|
462 | + $params['input'] = $input."\r\n".$data; |
|
463 | 463 | $params['include_bodies'] = true; |
464 | 464 | $params['decode_bodies'] = true; |
465 | 465 | $params['decode_headers'] = true; |
@@ -468,10 +468,10 @@ discard block |
||
468 | 468 | |
469 | 469 | foreach ($structure->parts as $part) { |
470 | 470 | if (!isset($part->disposition) && (strstr($part->headers['content-type'], 'text/xml'))) { |
471 | - $this->debug('Have root part of type ' . $part->headers['content-type']); |
|
471 | + $this->debug('Have root part of type '.$part->headers['content-type']); |
|
472 | 472 | $return = parent::parseRequest($part->headers, $part->body); |
473 | 473 | } else { |
474 | - $this->debug('Have an attachment of type ' . $part->headers['content-type']); |
|
474 | + $this->debug('Have an attachment of type '.$part->headers['content-type']); |
|
475 | 475 | $info['data'] = $part->body; |
476 | 476 | $info['filename'] = isset($part->d_parameters['filename']) ? $part->d_parameters['filename'] : ''; |
477 | 477 | $info['contenttype'] = $part->headers['content-type']; |
@@ -208,6 +208,8 @@ discard block |
||
208 | 208 | } |
209 | 209 | /** |
210 | 210 | * Gives a list of people online now (and in the last $valid minutes) |
211 | + * @param integer $from |
|
212 | + * @param integer $time_limit |
|
211 | 213 | * @return array For each line, a list of user IDs and login dates, or FALSE on error or empty results |
212 | 214 | */ |
213 | 215 | function who_is_online($from, $number_of_items, $column = null, $direction = null, $time_limit = null, $friends = false) |
@@ -424,6 +426,9 @@ discard block |
||
424 | 426 | } |
425 | 427 | } |
426 | 428 | |
429 | +/** |
|
430 | + * @param integer $uid |
|
431 | + */ |
|
427 | 432 | function who_is_online_in_this_course_count($uid, $time_limit, $coursecode=null) |
428 | 433 | { |
429 | 434 | if (empty($coursecode)) { |
@@ -166,10 +166,10 @@ discard block |
||
166 | 166 | */ |
167 | 167 | function LoginDelete($user_id) |
168 | 168 | { |
169 | - $online_table = Database::get_main_table(TABLE_STATISTIC_TRACK_E_ONLINE); |
|
169 | + $online_table = Database::get_main_table(TABLE_STATISTIC_TRACK_E_ONLINE); |
|
170 | 170 | $user_id = intval($user_id); |
171 | - $query = "DELETE FROM " . $online_table . " WHERE login_user_id = $user_id"; |
|
172 | - Database::query($query); |
|
171 | + $query = "DELETE FROM " . $online_table . " WHERE login_user_id = $user_id"; |
|
172 | + Database::query($query); |
|
173 | 173 | } |
174 | 174 | |
175 | 175 | /** |
@@ -178,17 +178,17 @@ discard block |
||
178 | 178 | */ |
179 | 179 | function user_is_online($user_id) |
180 | 180 | { |
181 | - $track_online_table = Database::get_main_table(TABLE_STATISTIC_TRACK_E_ONLINE); |
|
182 | - $table_user = Database::get_main_table(TABLE_MAIN_USER); |
|
181 | + $track_online_table = Database::get_main_table(TABLE_STATISTIC_TRACK_E_ONLINE); |
|
182 | + $table_user = Database::get_main_table(TABLE_MAIN_USER); |
|
183 | 183 | |
184 | - $access_url_id = api_get_current_access_url_id(); |
|
185 | - $time_limit = api_get_setting('time_limit_whosonline'); |
|
184 | + $access_url_id = api_get_current_access_url_id(); |
|
185 | + $time_limit = api_get_setting('time_limit_whosonline'); |
|
186 | 186 | |
187 | 187 | $online_time = time() - $time_limit*60; |
188 | 188 | $limit_date = api_get_utc_datetime($online_time); |
189 | 189 | $user_id = intval($user_id); |
190 | 190 | |
191 | - $query = " SELECT login_user_id,login_date |
|
191 | + $query = " SELECT login_user_id,login_date |
|
192 | 192 | FROM $track_online_table track |
193 | 193 | INNER JOIN $table_user u ON (u.id=track.login_user_id) |
194 | 194 | WHERE |
@@ -197,13 +197,13 @@ discard block |
||
197 | 197 | u.id = $user_id |
198 | 198 | LIMIT 1 "; |
199 | 199 | |
200 | - $result = Database::query($query); |
|
201 | - if (Database::num_rows($result)) { |
|
200 | + $result = Database::query($query); |
|
201 | + if (Database::num_rows($result)) { |
|
202 | 202 | |
203 | - return true; |
|
204 | - } |
|
203 | + return true; |
|
204 | + } |
|
205 | 205 | |
206 | - return false; |
|
206 | + return false; |
|
207 | 207 | |
208 | 208 | } |
209 | 209 | /** |
@@ -239,13 +239,13 @@ discard block |
||
239 | 239 | |
240 | 240 | $online_time = time() - $time_limit * 60; |
241 | 241 | $current_date = api_get_utc_datetime($online_time); |
242 | - $track_online_table = Database::get_main_table(TABLE_STATISTIC_TRACK_E_ONLINE); |
|
243 | - $friend_user_table = Database::get_main_table(TABLE_MAIN_USER_REL_USER); |
|
244 | - $table_user = Database::get_main_table(TABLE_MAIN_USER); |
|
242 | + $track_online_table = Database::get_main_table(TABLE_STATISTIC_TRACK_E_ONLINE); |
|
243 | + $friend_user_table = Database::get_main_table(TABLE_MAIN_USER_REL_USER); |
|
244 | + $table_user = Database::get_main_table(TABLE_MAIN_USER); |
|
245 | 245 | |
246 | - if ($friends) { |
|
247 | - // who friends from social network is online |
|
248 | - $query = "SELECT DISTINCT login_user_id, login_date |
|
246 | + if ($friends) { |
|
247 | + // who friends from social network is online |
|
248 | + $query = "SELECT DISTINCT login_user_id, login_date |
|
249 | 249 | FROM $track_online_table INNER JOIN $friend_user_table |
250 | 250 | ON (friend_user_id = login_user_id) |
251 | 251 | WHERE |
@@ -255,21 +255,21 @@ discard block |
||
255 | 255 | user_id = '".api_get_user_id()."' |
256 | 256 | ORDER BY $column $direction |
257 | 257 | LIMIT $from, $number_of_items"; |
258 | - } else { |
|
259 | - $query = "SELECT DISTINCT login_user_id, login_date |
|
258 | + } else { |
|
259 | + $query = "SELECT DISTINCT login_user_id, login_date |
|
260 | 260 | FROM ".$track_online_table ." e |
261 | 261 | INNER JOIN ".$table_user ." u ON (u.id = e.login_user_id) |
262 | 262 | WHERE u.status != ".ANONYMOUS." AND login_date >= '".$current_date."' |
263 | 263 | ORDER BY $column $direction |
264 | 264 | LIMIT $from, $number_of_items"; |
265 | - } |
|
266 | - |
|
267 | - if (api_get_multiple_access_url()) { |
|
268 | - $access_url_id = api_get_current_access_url_id(); |
|
269 | - if ($access_url_id != -1) { |
|
270 | - if ($friends) { |
|
271 | - // friends from social network is online |
|
272 | - $query = "SELECT distinct login_user_id, login_date |
|
265 | + } |
|
266 | + |
|
267 | + if (api_get_multiple_access_url()) { |
|
268 | + $access_url_id = api_get_current_access_url_id(); |
|
269 | + if ($access_url_id != -1) { |
|
270 | + if ($friends) { |
|
271 | + // friends from social network is online |
|
272 | + $query = "SELECT distinct login_user_id, login_date |
|
273 | 273 | FROM $track_online_table track INNER JOIN $friend_user_table |
274 | 274 | ON (friend_user_id = login_user_id) |
275 | 275 | WHERE track.access_url_id = $access_url_id AND |
@@ -278,9 +278,9 @@ discard block |
||
278 | 278 | relation_type='".USER_RELATION_TYPE_FRIEND."' |
279 | 279 | ORDER BY $column $direction |
280 | 280 | LIMIT $from, $number_of_items"; |
281 | - } else { |
|
282 | - // all users online |
|
283 | - $query = "SELECT login_user_id, login_date |
|
281 | + } else { |
|
282 | + // all users online |
|
283 | + $query = "SELECT login_user_id, login_date |
|
284 | 284 | FROM ".$track_online_table ." track |
285 | 285 | INNER JOIN ".$table_user ." u |
286 | 286 | ON (u.id=track.login_user_id) |
@@ -288,26 +288,26 @@ discard block |
||
288 | 288 | login_date >= '".$current_date."' |
289 | 289 | ORDER BY $column $direction |
290 | 290 | LIMIT $from, $number_of_items"; |
291 | - } |
|
292 | - } |
|
293 | - } |
|
291 | + } |
|
292 | + } |
|
293 | + } |
|
294 | 294 | |
295 | - //This query will show all registered users. Only for dev purposes. |
|
296 | - /*$query = "SELECT DISTINCT u.id as login_user_id, login_date FROM ".$track_online_table ." e , $table_user u |
|
295 | + //This query will show all registered users. Only for dev purposes. |
|
296 | + /*$query = "SELECT DISTINCT u.id as login_user_id, login_date FROM ".$track_online_table ." e , $table_user u |
|
297 | 297 | GROUP by u.id |
298 | 298 | ORDER BY $column $direction |
299 | 299 | LIMIT $from, $number_of_items";*/ |
300 | 300 | |
301 | - $result = Database::query($query); |
|
302 | - if ($result) { |
|
303 | - $users_online = array(); |
|
304 | - while (list($login_user_id, $login_date) = Database::fetch_row($result)) { |
|
301 | + $result = Database::query($query); |
|
302 | + if ($result) { |
|
303 | + $users_online = array(); |
|
304 | + while (list($login_user_id, $login_date) = Database::fetch_row($result)) { |
|
305 | 305 | $users_online[] = $login_user_id; |
306 | - } |
|
307 | - return $users_online; |
|
308 | - } else { |
|
309 | - return false; |
|
310 | - } |
|
306 | + } |
|
307 | + return $users_online; |
|
308 | + } else { |
|
309 | + return false; |
|
310 | + } |
|
311 | 311 | } |
312 | 312 | |
313 | 313 | function who_is_online_count($time_limit = null, $friends = false) |
@@ -317,15 +317,15 @@ discard block |
||
317 | 317 | } else { |
318 | 318 | $time_limit = intval($time_limit); |
319 | 319 | } |
320 | - $track_online_table = Database::get_main_table(TABLE_STATISTIC_TRACK_E_ONLINE); |
|
321 | - $friend_user_table = Database::get_main_table(TABLE_MAIN_USER_REL_USER); |
|
322 | - $table_user = Database::get_main_table(TABLE_MAIN_USER); |
|
323 | - $online_time = time() - $time_limit * 60; |
|
324 | - $current_date = api_get_utc_datetime($online_time); |
|
325 | - |
|
326 | - if ($friends) { |
|
327 | - // who friends from social network is online |
|
328 | - $query = "SELECT DISTINCT count(login_user_id) as count |
|
320 | + $track_online_table = Database::get_main_table(TABLE_STATISTIC_TRACK_E_ONLINE); |
|
321 | + $friend_user_table = Database::get_main_table(TABLE_MAIN_USER_REL_USER); |
|
322 | + $table_user = Database::get_main_table(TABLE_MAIN_USER); |
|
323 | + $online_time = time() - $time_limit * 60; |
|
324 | + $current_date = api_get_utc_datetime($online_time); |
|
325 | + |
|
326 | + if ($friends) { |
|
327 | + // who friends from social network is online |
|
328 | + $query = "SELECT DISTINCT count(login_user_id) as count |
|
329 | 329 | FROM $track_online_table INNER JOIN $friend_user_table |
330 | 330 | ON (friend_user_id = login_user_id) |
331 | 331 | WHERE |
@@ -333,20 +333,20 @@ discard block |
||
333 | 333 | friend_user_id <> '".api_get_user_id()."' AND |
334 | 334 | relation_type='".USER_RELATION_TYPE_FRIEND."' AND |
335 | 335 | user_id = '".api_get_user_id()."' "; |
336 | - } else { |
|
337 | - // All users online |
|
338 | - $query = "SELECT count(login_id) as count |
|
336 | + } else { |
|
337 | + // All users online |
|
338 | + $query = "SELECT count(login_id) as count |
|
339 | 339 | FROM $track_online_table track INNER JOIN $table_user u |
340 | 340 | ON (u.id=track.login_user_id) |
341 | 341 | WHERE u.status != ".ANONYMOUS." AND login_date >= '$current_date' "; |
342 | - } |
|
343 | - |
|
344 | - if (api_get_multiple_access_url()) { |
|
345 | - $access_url_id = api_get_current_access_url_id(); |
|
346 | - if ($access_url_id != -1) { |
|
347 | - if ($friends) { |
|
348 | - // friends from social network is online |
|
349 | - $query = "SELECT DISTINCT count(login_user_id) as count |
|
342 | + } |
|
343 | + |
|
344 | + if (api_get_multiple_access_url()) { |
|
345 | + $access_url_id = api_get_current_access_url_id(); |
|
346 | + if ($access_url_id != -1) { |
|
347 | + if ($friends) { |
|
348 | + // friends from social network is online |
|
349 | + $query = "SELECT DISTINCT count(login_user_id) as count |
|
350 | 350 | FROM $track_online_table track |
351 | 351 | INNER JOIN $friend_user_table ON (friend_user_id = login_user_id) |
352 | 352 | WHERE |
@@ -354,29 +354,29 @@ discard block |
||
354 | 354 | login_date >= '".$current_date."' AND |
355 | 355 | friend_user_id <> '".api_get_user_id()."' AND |
356 | 356 | relation_type='".USER_RELATION_TYPE_FRIEND."' "; |
357 | - } else { |
|
358 | - // all users online |
|
359 | - $query = "SELECT count(login_id) as count FROM $track_online_table track |
|
357 | + } else { |
|
358 | + // all users online |
|
359 | + $query = "SELECT count(login_id) as count FROM $track_online_table track |
|
360 | 360 | INNER JOIN $table_user u ON (u.id=track.login_user_id) |
361 | 361 | WHERE |
362 | 362 | u.status != ".ANONYMOUS." AND |
363 | 363 | track.access_url_id = $access_url_id AND |
364 | 364 | login_date >= '$current_date' "; |
365 | - } |
|
366 | - } |
|
367 | - } |
|
365 | + } |
|
366 | + } |
|
367 | + } |
|
368 | 368 | |
369 | 369 | // Dev purposes show all users online |
370 | 370 | /*$table_user = Database::get_main_table(TABLE_MAIN_USER); |
371 | 371 | $query = "SELECT count(*) as count FROM ".$table_user;*/ |
372 | 372 | |
373 | - $result = Database::query($query); |
|
374 | - if (Database::num_rows($result) > 0) { |
|
375 | - $row = Database::fetch_array($result); |
|
376 | - return $row['count']; |
|
377 | - } else { |
|
378 | - return false; |
|
379 | - } |
|
373 | + $result = Database::query($query); |
|
374 | + if (Database::num_rows($result) > 0) { |
|
375 | + $row = Database::fetch_array($result); |
|
376 | + return $row['count']; |
|
377 | + } else { |
|
378 | + return false; |
|
379 | + } |
|
380 | 380 | } |
381 | 381 | |
382 | 382 | |
@@ -389,7 +389,7 @@ discard block |
||
389 | 389 | */ |
390 | 390 | function who_is_online_in_this_course($from, $number_of_items, $uid, $time_limit, $course_code) |
391 | 391 | { |
392 | - if (empty($course_code)) return false; |
|
392 | + if (empty($course_code)) return false; |
|
393 | 393 | |
394 | 394 | if (empty($time_limit)) { |
395 | 395 | $time_limit = api_get_setting('time_limit_whosonline'); |
@@ -401,56 +401,56 @@ discard block |
||
401 | 401 | $current_date = api_get_utc_datetime($online_time); |
402 | 402 | $track_online_table = Database::get_main_table(TABLE_STATISTIC_TRACK_E_ONLINE); |
403 | 403 | $course_code = Database::escape_string($course_code); |
404 | - $courseInfo = api_get_course_info($course_code); |
|
405 | - $courseId = $courseInfo['real_id']; |
|
404 | + $courseInfo = api_get_course_info($course_code); |
|
405 | + $courseId = $courseInfo['real_id']; |
|
406 | 406 | |
407 | 407 | $from = intval($from); |
408 | 408 | $number_of_items = intval($number_of_items); |
409 | 409 | |
410 | - $query = "SELECT login_user_id, login_date FROM $track_online_table |
|
410 | + $query = "SELECT login_user_id, login_date FROM $track_online_table |
|
411 | 411 | WHERE login_user_id <> 2 AND c_id = $courseId AND login_date >= '$current_date' |
412 | 412 | LIMIT $from, $number_of_items "; |
413 | 413 | |
414 | - $result = Database::query($query); |
|
415 | - if ($result) { |
|
416 | - $users_online = array(); |
|
414 | + $result = Database::query($query); |
|
415 | + if ($result) { |
|
416 | + $users_online = array(); |
|
417 | 417 | |
418 | - while(list($login_user_id, $login_date) = Database::fetch_row($result)) { |
|
418 | + while(list($login_user_id, $login_date) = Database::fetch_row($result)) { |
|
419 | 419 | $users_online[] = $login_user_id; |
420 | - } |
|
421 | - return $users_online; |
|
422 | - } else { |
|
423 | - return false; |
|
424 | - } |
|
420 | + } |
|
421 | + return $users_online; |
|
422 | + } else { |
|
423 | + return false; |
|
424 | + } |
|
425 | 425 | } |
426 | 426 | |
427 | 427 | function who_is_online_in_this_course_count($uid, $time_limit, $coursecode=null) |
428 | 428 | { |
429 | - if (empty($coursecode)) { |
|
430 | - return false; |
|
431 | - } |
|
432 | - $track_online_table = Database::get_main_table(TABLE_STATISTIC_TRACK_E_ONLINE); |
|
433 | - $coursecode = Database::escape_string($coursecode); |
|
434 | - $time_limit = Database::escape_string($time_limit); |
|
429 | + if (empty($coursecode)) { |
|
430 | + return false; |
|
431 | + } |
|
432 | + $track_online_table = Database::get_main_table(TABLE_STATISTIC_TRACK_E_ONLINE); |
|
433 | + $coursecode = Database::escape_string($coursecode); |
|
434 | + $time_limit = Database::escape_string($time_limit); |
|
435 | 435 | |
436 | 436 | $online_time = time() - $time_limit * 60; |
437 | 437 | $current_date = api_get_utc_datetime($online_time); |
438 | - $courseId = api_get_course_int_id($coursecode); |
|
438 | + $courseId = api_get_course_int_id($coursecode); |
|
439 | 439 | |
440 | - if (empty($courseId)) { |
|
441 | - return false; |
|
442 | - } |
|
440 | + if (empty($courseId)) { |
|
441 | + return false; |
|
442 | + } |
|
443 | 443 | |
444 | - $query = "SELECT count(login_user_id) as count |
|
444 | + $query = "SELECT count(login_user_id) as count |
|
445 | 445 | FROM $track_online_table |
446 | 446 | WHERE login_user_id <> 2 AND c_id = $courseId AND login_date >= '$current_date' "; |
447 | - $result = Database::query($query); |
|
448 | - if (Database::num_rows($result) > 0) { |
|
449 | - $row = Database::fetch_array($result); |
|
450 | - return $row['count']; |
|
451 | - } else { |
|
452 | - return false; |
|
453 | - } |
|
447 | + $result = Database::query($query); |
|
448 | + if (Database::num_rows($result) > 0) { |
|
449 | + $row = Database::fetch_array($result); |
|
450 | + return $row['count']; |
|
451 | + } else { |
|
452 | + return false; |
|
453 | + } |
|
454 | 454 | } |
455 | 455 | |
456 | 456 | /** |
@@ -460,17 +460,17 @@ discard block |
||
460 | 460 | * @deprecated user api_get_user_info($user_id) |
461 | 461 | */ |
462 | 462 | function GetFullUserName($uid) { |
463 | - $uid = (int) $uid; |
|
464 | - $uid = intval($uid); |
|
465 | - $user_table = Database::get_main_table(TABLE_MAIN_USER); |
|
466 | - $query = "SELECT firstname, lastname FROM ".$user_table." WHERE id=$uid"; |
|
467 | - $result = @Database::query($query); |
|
468 | - if (count($result)>0) { |
|
469 | - while(list($firstname,$lastname)= Database::fetch_array($result)) { |
|
470 | - $str = str_replace(' ', ' ', api_get_person_name($firstname, $lastname)); |
|
471 | - return $str; |
|
472 | - } |
|
473 | - } |
|
463 | + $uid = (int) $uid; |
|
464 | + $uid = intval($uid); |
|
465 | + $user_table = Database::get_main_table(TABLE_MAIN_USER); |
|
466 | + $query = "SELECT firstname, lastname FROM ".$user_table." WHERE id=$uid"; |
|
467 | + $result = @Database::query($query); |
|
468 | + if (count($result)>0) { |
|
469 | + while(list($firstname,$lastname)= Database::fetch_array($result)) { |
|
470 | + $str = str_replace(' ', ' ', api_get_person_name($firstname, $lastname)); |
|
471 | + return $str; |
|
472 | + } |
|
473 | + } |
|
474 | 474 | } |
475 | 475 | |
476 | 476 | /** |
@@ -482,44 +482,44 @@ discard block |
||
482 | 482 | $_cid = api_get_course_id(); |
483 | 483 | $_user = api_get_user_info(); |
484 | 484 | |
485 | - if (!$_user['user_id']) { |
|
486 | - return (false); |
|
487 | - } |
|
485 | + if (!$_user['user_id']) { |
|
486 | + return (false); |
|
487 | + } |
|
488 | 488 | $userId = intval($_user['user_id']); |
489 | - $track_user_table = Database::get_main_table(TABLE_MAIN_USER); |
|
490 | - $sql="SELECT chatcall_user_id, chatcall_date FROM $track_user_table |
|
489 | + $track_user_table = Database::get_main_table(TABLE_MAIN_USER); |
|
490 | + $sql="SELECT chatcall_user_id, chatcall_date FROM $track_user_table |
|
491 | 491 | WHERE ( id = $userId )"; |
492 | - $result=Database::query($sql); |
|
493 | - $row=Database::fetch_array($result); |
|
494 | - |
|
495 | - $login_date=$row['chatcall_date']; |
|
496 | - $hour = substr($login_date,11,2); |
|
497 | - $minute = substr($login_date,14,2); |
|
498 | - $second = substr($login_date,17,2); |
|
499 | - $month = substr($login_date,5,2); |
|
500 | - $day = substr($login_date,8,2); |
|
501 | - $year = substr($login_date,0,4); |
|
502 | - $calltime = mktime($hour,$minute,$second,$month,$day,$year); |
|
503 | - |
|
504 | - $time = api_get_utc_datetime(); |
|
505 | - $minute_passed=5; //within this limit, the chat call request is valid |
|
506 | - $limittime = mktime(date("H"),date("i")-$minute_passed,date("s"),date("m"),date("d"),date("Y")); |
|
507 | - |
|
508 | - if (($row['chatcall_user_id']) and ($calltime>$limittime)) { |
|
509 | - $webpath=api_get_path(WEB_CODE_PATH); |
|
510 | - $message=get_lang('YouWereCalled').' : '.GetFullUserName($row['chatcall_user_id'],'').'<br>'.get_lang('DoYouAccept') |
|
511 | - ."<p>" |
|
512 | - ."<a href=\"".$webpath."chat/chat.php?cidReq=".$_cid."&origin=whoisonlinejoin\">" |
|
513 | - . get_lang("Yes") |
|
514 | - ."</a>" |
|
515 | - ." | " |
|
516 | - ."<a href=\"".api_get_path(WEB_PATH)."webchatdeny.php\">" |
|
517 | - . get_lang("No") |
|
518 | - ."</a>" |
|
519 | - ."</p>"; |
|
520 | - |
|
521 | - return($message); |
|
522 | - } else { |
|
523 | - return false; |
|
524 | - } |
|
492 | + $result=Database::query($sql); |
|
493 | + $row=Database::fetch_array($result); |
|
494 | + |
|
495 | + $login_date=$row['chatcall_date']; |
|
496 | + $hour = substr($login_date,11,2); |
|
497 | + $minute = substr($login_date,14,2); |
|
498 | + $second = substr($login_date,17,2); |
|
499 | + $month = substr($login_date,5,2); |
|
500 | + $day = substr($login_date,8,2); |
|
501 | + $year = substr($login_date,0,4); |
|
502 | + $calltime = mktime($hour,$minute,$second,$month,$day,$year); |
|
503 | + |
|
504 | + $time = api_get_utc_datetime(); |
|
505 | + $minute_passed=5; //within this limit, the chat call request is valid |
|
506 | + $limittime = mktime(date("H"),date("i")-$minute_passed,date("s"),date("m"),date("d"),date("Y")); |
|
507 | + |
|
508 | + if (($row['chatcall_user_id']) and ($calltime>$limittime)) { |
|
509 | + $webpath=api_get_path(WEB_CODE_PATH); |
|
510 | + $message=get_lang('YouWereCalled').' : '.GetFullUserName($row['chatcall_user_id'],'').'<br>'.get_lang('DoYouAccept') |
|
511 | + ."<p>" |
|
512 | + ."<a href=\"".$webpath."chat/chat.php?cidReq=".$_cid."&origin=whoisonlinejoin\">" |
|
513 | + . get_lang("Yes") |
|
514 | + ."</a>" |
|
515 | + ." | " |
|
516 | + ."<a href=\"".api_get_path(WEB_PATH)."webchatdeny.php\">" |
|
517 | + . get_lang("No") |
|
518 | + ."</a>" |
|
519 | + ."</p>"; |
|
520 | + |
|
521 | + return($message); |
|
522 | + } else { |
|
523 | + return false; |
|
524 | + } |
|
525 | 525 | } |
@@ -389,7 +389,9 @@ |
||
389 | 389 | */ |
390 | 390 | function who_is_online_in_this_course($from, $number_of_items, $uid, $time_limit, $course_code) |
391 | 391 | { |
392 | - if (empty($course_code)) return false; |
|
392 | + if (empty($course_code)) { |
|
393 | + return false; |
|
394 | + } |
|
393 | 395 | |
394 | 396 | if (empty($time_limit)) { |
395 | 397 | $time_limit = api_get_setting('time_limit_whosonline'); |
@@ -32,17 +32,17 @@ discard block |
||
32 | 32 | |
33 | 33 | $login_date = api_get_utc_datetime(); |
34 | 34 | $access_url_id = 1; |
35 | - if (api_get_multiple_access_url() && api_get_current_access_url_id()!=-1) { |
|
35 | + if (api_get_multiple_access_url() && api_get_current_access_url_id() != -1) { |
|
36 | 36 | $access_url_id = api_get_current_access_url_id(); |
37 | 37 | } |
38 | 38 | $session_id = api_get_session_id(); |
39 | 39 | // if the $_course array exists this means we are in a course and we have to store this in the who's online table also |
40 | 40 | // to have the x users in this course feature working |
41 | - if (is_array($_course) && count($_course)>0 && !empty($_course['id'])) { |
|
42 | - $query = "REPLACE INTO ".$online_table ." (login_id,login_user_id,login_date,user_ip, c_id, session_id, access_url_id) |
|
41 | + if (is_array($_course) && count($_course) > 0 && !empty($_course['id'])) { |
|
42 | + $query = "REPLACE INTO ".$online_table." (login_id,login_user_id,login_date,user_ip, c_id, session_id, access_url_id) |
|
43 | 43 | VALUES ($uid,$uid,'$login_date','$user_ip', '".$_course['real_id']."' , '$session_id' , '$access_url_id' )"; |
44 | 44 | } else { |
45 | - $query = "REPLACE INTO ".$online_table ." (login_id,login_user_id,login_date,user_ip, c_id, session_id, access_url_id) |
|
45 | + $query = "REPLACE INTO ".$online_table." (login_id,login_user_id,login_date,user_ip, c_id, session_id, access_url_id) |
|
46 | 46 | VALUES ($uid,$uid,'$login_date','$user_ip', 0, '$session_id', '$access_url_id')"; |
47 | 47 | } |
48 | 48 | Database::query($query); |
@@ -63,7 +63,7 @@ discard block |
||
63 | 63 | $isFirstLogin = Session::read('first_user_login'); |
64 | 64 | if (empty($isFirstLogin)) { |
65 | 65 | $sql = "SELECT login_id FROM $table |
66 | - WHERE login_user_id = " . $userId . " LIMIT 1"; |
|
66 | + WHERE login_user_id = ".$userId." LIMIT 1"; |
|
67 | 67 | |
68 | 68 | $result = Database::query($sql); |
69 | 69 | $loginData = array(); |
@@ -117,8 +117,8 @@ discard block |
||
117 | 117 | ORDER BY login_date DESC |
118 | 118 | LIMIT 0,1"; |
119 | 119 | $q_last_connection = Database::query($sql); |
120 | - if (Database::num_rows($q_last_connection)>0) { |
|
121 | - $i_id_last_connection = Database::result($q_last_connection,0,"login_id"); |
|
120 | + if (Database::num_rows($q_last_connection) > 0) { |
|
121 | + $i_id_last_connection = Database::result($q_last_connection, 0, "login_id"); |
|
122 | 122 | } |
123 | 123 | |
124 | 124 | if (!isset($_SESSION['login_as'])) { |
@@ -167,7 +167,7 @@ discard block |
||
167 | 167 | { |
168 | 168 | $online_table = Database::get_main_table(TABLE_STATISTIC_TRACK_E_ONLINE); |
169 | 169 | $user_id = intval($user_id); |
170 | - $query = "DELETE FROM " . $online_table . " WHERE login_user_id = $user_id"; |
|
170 | + $query = "DELETE FROM ".$online_table." WHERE login_user_id = $user_id"; |
|
171 | 171 | Database::query($query); |
172 | 172 | } |
173 | 173 | |
@@ -183,7 +183,7 @@ discard block |
||
183 | 183 | $access_url_id = api_get_current_access_url_id(); |
184 | 184 | $time_limit = api_get_setting('time_limit_whosonline'); |
185 | 185 | |
186 | - $online_time = time() - $time_limit*60; |
|
186 | + $online_time = time() - $time_limit * 60; |
|
187 | 187 | $limit_date = api_get_utc_datetime($online_time); |
188 | 188 | $user_id = intval($user_id); |
189 | 189 | |
@@ -240,7 +240,7 @@ discard block |
||
240 | 240 | $current_date = api_get_utc_datetime($online_time); |
241 | 241 | $track_online_table = Database::get_main_table(TABLE_STATISTIC_TRACK_E_ONLINE); |
242 | 242 | $friend_user_table = Database::get_main_table(TABLE_MAIN_USER_REL_USER); |
243 | - $table_user = Database::get_main_table(TABLE_MAIN_USER); |
|
243 | + $table_user = Database::get_main_table(TABLE_MAIN_USER); |
|
244 | 244 | |
245 | 245 | if ($friends) { |
246 | 246 | // who friends from social network is online |
@@ -256,8 +256,8 @@ discard block |
||
256 | 256 | LIMIT $from, $number_of_items"; |
257 | 257 | } else { |
258 | 258 | $query = "SELECT DISTINCT login_user_id, login_date |
259 | - FROM ".$track_online_table ." e |
|
260 | - INNER JOIN ".$table_user ." u ON (u.id = e.login_user_id) |
|
259 | + FROM ".$track_online_table." e |
|
260 | + INNER JOIN ".$table_user." u ON (u.id = e.login_user_id) |
|
261 | 261 | WHERE u.status != ".ANONYMOUS." AND login_date >= '".$current_date."' |
262 | 262 | ORDER BY $column $direction |
263 | 263 | LIMIT $from, $number_of_items"; |
@@ -280,8 +280,8 @@ discard block |
||
280 | 280 | } else { |
281 | 281 | // all users online |
282 | 282 | $query = "SELECT login_user_id, login_date |
283 | - FROM ".$track_online_table ." track |
|
284 | - INNER JOIN ".$table_user ." u |
|
283 | + FROM ".$track_online_table." track |
|
284 | + INNER JOIN ".$table_user." u |
|
285 | 285 | ON (u.id=track.login_user_id) |
286 | 286 | WHERE u.status != ".ANONYMOUS." AND track.access_url_id = $access_url_id AND |
287 | 287 | login_date >= '".$current_date."' |
@@ -396,10 +396,10 @@ discard block |
||
396 | 396 | $time_limit = intval($time_limit); |
397 | 397 | } |
398 | 398 | |
399 | - $online_time = time() - $time_limit*60; |
|
399 | + $online_time = time() - $time_limit * 60; |
|
400 | 400 | $current_date = api_get_utc_datetime($online_time); |
401 | 401 | $track_online_table = Database::get_main_table(TABLE_STATISTIC_TRACK_E_ONLINE); |
402 | - $course_code = Database::escape_string($course_code); |
|
402 | + $course_code = Database::escape_string($course_code); |
|
403 | 403 | $courseInfo = api_get_course_info($course_code); |
404 | 404 | $courseId = $courseInfo['real_id']; |
405 | 405 | |
@@ -414,7 +414,7 @@ discard block |
||
414 | 414 | if ($result) { |
415 | 415 | $users_online = array(); |
416 | 416 | |
417 | - while(list($login_user_id, $login_date) = Database::fetch_row($result)) { |
|
417 | + while (list($login_user_id, $login_date) = Database::fetch_row($result)) { |
|
418 | 418 | $users_online[] = $login_user_id; |
419 | 419 | } |
420 | 420 | return $users_online; |
@@ -423,7 +423,7 @@ discard block |
||
423 | 423 | } |
424 | 424 | } |
425 | 425 | |
426 | -function who_is_online_in_this_course_count($uid, $time_limit, $coursecode=null) |
|
426 | +function who_is_online_in_this_course_count($uid, $time_limit, $coursecode = null) |
|
427 | 427 | { |
428 | 428 | if (empty($coursecode)) { |
429 | 429 | return false; |
@@ -464,8 +464,8 @@ discard block |
||
464 | 464 | $user_table = Database::get_main_table(TABLE_MAIN_USER); |
465 | 465 | $query = "SELECT firstname, lastname FROM ".$user_table." WHERE id=$uid"; |
466 | 466 | $result = @Database::query($query); |
467 | - if (count($result)>0) { |
|
468 | - while(list($firstname,$lastname)= Database::fetch_array($result)) { |
|
467 | + if (count($result) > 0) { |
|
468 | + while (list($firstname, $lastname) = Database::fetch_array($result)) { |
|
469 | 469 | $str = str_replace(' ', ' ', api_get_person_name($firstname, $lastname)); |
470 | 470 | return $str; |
471 | 471 | } |
@@ -486,27 +486,27 @@ discard block |
||
486 | 486 | } |
487 | 487 | $userId = intval($_user['user_id']); |
488 | 488 | $track_user_table = Database::get_main_table(TABLE_MAIN_USER); |
489 | - $sql="SELECT chatcall_user_id, chatcall_date FROM $track_user_table |
|
489 | + $sql = "SELECT chatcall_user_id, chatcall_date FROM $track_user_table |
|
490 | 490 | WHERE ( id = $userId )"; |
491 | - $result=Database::query($sql); |
|
492 | - $row=Database::fetch_array($result); |
|
493 | - |
|
494 | - $login_date=$row['chatcall_date']; |
|
495 | - $hour = substr($login_date,11,2); |
|
496 | - $minute = substr($login_date,14,2); |
|
497 | - $second = substr($login_date,17,2); |
|
498 | - $month = substr($login_date,5,2); |
|
499 | - $day = substr($login_date,8,2); |
|
500 | - $year = substr($login_date,0,4); |
|
501 | - $calltime = mktime($hour,$minute,$second,$month,$day,$year); |
|
491 | + $result = Database::query($sql); |
|
492 | + $row = Database::fetch_array($result); |
|
493 | + |
|
494 | + $login_date = $row['chatcall_date']; |
|
495 | + $hour = substr($login_date, 11, 2); |
|
496 | + $minute = substr($login_date, 14, 2); |
|
497 | + $second = substr($login_date, 17, 2); |
|
498 | + $month = substr($login_date, 5, 2); |
|
499 | + $day = substr($login_date, 8, 2); |
|
500 | + $year = substr($login_date, 0, 4); |
|
501 | + $calltime = mktime($hour, $minute, $second, $month, $day, $year); |
|
502 | 502 | |
503 | 503 | $time = api_get_utc_datetime(); |
504 | - $minute_passed=5; //within this limit, the chat call request is valid |
|
505 | - $limittime = mktime(date("H"),date("i")-$minute_passed,date("s"),date("m"),date("d"),date("Y")); |
|
504 | + $minute_passed = 5; //within this limit, the chat call request is valid |
|
505 | + $limittime = mktime(date("H"), date("i") - $minute_passed, date("s"), date("m"), date("d"), date("Y")); |
|
506 | 506 | |
507 | - if (($row['chatcall_user_id']) and ($calltime>$limittime)) { |
|
508 | - $webpath=api_get_path(WEB_CODE_PATH); |
|
509 | - $message=get_lang('YouWereCalled').' : '.GetFullUserName($row['chatcall_user_id'],'').'<br>'.get_lang('DoYouAccept') |
|
507 | + if (($row['chatcall_user_id']) and ($calltime > $limittime)) { |
|
508 | + $webpath = api_get_path(WEB_CODE_PATH); |
|
509 | + $message = get_lang('YouWereCalled').' : '.GetFullUserName($row['chatcall_user_id'], '').'<br>'.get_lang('DoYouAccept') |
|
510 | 510 | ."<p>" |
511 | 511 | ."<a href=\"".$webpath."chat/chat.php?cidReq=".$_cid."&origin=whoisonlinejoin\">" |
512 | 512 | . get_lang("Yes") |
@@ -39,6 +39,11 @@ discard block |
||
39 | 39 | // http://php.net/manual/en/function.gzopen.php |
40 | 40 | // -------------------------------------------------------------------------------- |
41 | 41 | if (!function_exists('gzopen') && function_exists('gzopen64')) { |
42 | + |
|
43 | + /** |
|
44 | + * @param string $filename |
|
45 | + * @param string $mode |
|
46 | + */ |
|
42 | 47 | function gzopen($filename, $mode, $use_include_path = 0) { |
43 | 48 | return gzopen64($filename, $mode, $use_include_path); |
44 | 49 | } |
@@ -288,6 +293,10 @@ discard block |
||
288 | 293 | // The list of the added files, with a status of the add action. |
289 | 294 | // (see PclZip::listContent() for list entry format) |
290 | 295 | // -------------------------------------------------------------------------------- |
296 | + |
|
297 | + /** |
|
298 | + * @param string $p_filelist |
|
299 | + */ |
|
291 | 300 | function create($p_filelist) |
292 | 301 | { |
293 | 302 | $v_result=1; |
@@ -2355,6 +2364,10 @@ discard block |
||
2355 | 2364 | // Description : |
2356 | 2365 | // Parameters : |
2357 | 2366 | // -------------------------------------------------------------------------------- |
2367 | + |
|
2368 | + /** |
|
2369 | + * @param string $p_mode |
|
2370 | + */ |
|
2358 | 2371 | function privOpenFd($p_mode) |
2359 | 2372 | { |
2360 | 2373 | $v_result=1; |
@@ -4171,6 +4184,10 @@ discard block |
||
4171 | 4184 | // Parameters : |
4172 | 4185 | // Return Values : |
4173 | 4186 | // -------------------------------------------------------------------------------- |
4187 | + |
|
4188 | + /** |
|
4189 | + * @param string $p_string |
|
4190 | + */ |
|
4174 | 4191 | function privExtractFileAsString(&$p_entry, &$p_string, &$p_options) |
4175 | 4192 | { |
4176 | 4193 | $v_result=1; |
@@ -5071,6 +5088,10 @@ discard block |
||
5071 | 5088 | // Parameters : |
5072 | 5089 | // Return Values : |
5073 | 5090 | // -------------------------------------------------------------------------------- |
5091 | + |
|
5092 | + /** |
|
5093 | + * @param PclZip $p_archive_to_add |
|
5094 | + */ |
|
5074 | 5095 | function privMerge(&$p_archive_to_add) |
5075 | 5096 | { |
5076 | 5097 | $v_result=1; |
@@ -5578,6 +5599,11 @@ discard block |
||
5578 | 5599 | // 3 : src & dest gzip |
5579 | 5600 | // Return Values : |
5580 | 5601 | // -------------------------------------------------------------------------------- |
5602 | + |
|
5603 | + /** |
|
5604 | + * @param integer $p_src |
|
5605 | + * @param integer $p_dest |
|
5606 | + */ |
|
5581 | 5607 | function PclZipUtilCopyBlock($p_src, $p_dest, $p_size, $p_mode=0) |
5582 | 5608 | { |
5583 | 5609 | $v_result = 1; |
@@ -5640,6 +5666,11 @@ discard block |
||
5640 | 5666 | // Return Values : |
5641 | 5667 | // 1 on success, 0 on failure. |
5642 | 5668 | // -------------------------------------------------------------------------------- |
5669 | + |
|
5670 | + /** |
|
5671 | + * @param string $p_src |
|
5672 | + * @param string $p_dest |
|
5673 | + */ |
|
5643 | 5674 | function PclZipUtilRename($p_src, $p_dest) |
5644 | 5675 | { |
5645 | 5676 | $v_result = 1; |
@@ -47,7 +47,7 @@ discard block |
||
47 | 47 | |
48 | 48 | // ----- Constants |
49 | 49 | if (!defined('PCLZIP_READ_BLOCK_SIZE')) { |
50 | - define( 'PCLZIP_READ_BLOCK_SIZE', 2048 ); |
|
50 | + define('PCLZIP_READ_BLOCK_SIZE', 2048); |
|
51 | 51 | } |
52 | 52 | |
53 | 53 | // ----- File list separator |
@@ -61,7 +61,7 @@ discard block |
||
61 | 61 | //define( 'PCLZIP_SEPARATOR', ' ' ); |
62 | 62 | // Recommanded values for smart separation of filenames. |
63 | 63 | if (!defined('PCLZIP_SEPARATOR')) { |
64 | - define( 'PCLZIP_SEPARATOR', '|' ); |
|
64 | + define('PCLZIP_SEPARATOR', '|'); |
|
65 | 65 | } |
66 | 66 | |
67 | 67 | // ----- Error configuration |
@@ -70,7 +70,7 @@ discard block |
||
70 | 70 | // you must ensure that you have included PclError library. |
71 | 71 | // [2,...] : reserved for futur use |
72 | 72 | if (!defined('PCLZIP_ERROR_EXTERNAL')) { |
73 | - define( 'PCLZIP_ERROR_EXTERNAL', 0 ); |
|
73 | + define('PCLZIP_ERROR_EXTERNAL', 0); |
|
74 | 74 | } |
75 | 75 | |
76 | 76 | // ----- Optional static temporary directory |
@@ -83,7 +83,7 @@ discard block |
||
83 | 83 | // define( 'PCLZIP_TEMPORARY_DIR', '/temp/' ); |
84 | 84 | // define( 'PCLZIP_TEMPORARY_DIR', 'C:/Temp/' ); |
85 | 85 | if (!defined('PCLZIP_TEMPORARY_DIR')) { |
86 | - define( 'PCLZIP_TEMPORARY_DIR', '' ); |
|
86 | + define('PCLZIP_TEMPORARY_DIR', ''); |
|
87 | 87 | } |
88 | 88 | |
89 | 89 | // ----- Optional threshold ratio for use of temporary files |
@@ -95,7 +95,7 @@ discard block |
||
95 | 95 | // Samples : |
96 | 96 | // define( 'PCLZIP_TEMPORARY_FILE_RATIO', 0.5 ); |
97 | 97 | if (!defined('PCLZIP_TEMPORARY_FILE_RATIO')) { |
98 | - define( 'PCLZIP_TEMPORARY_FILE_RATIO', 0.47 ); |
|
98 | + define('PCLZIP_TEMPORARY_FILE_RATIO', 0.47); |
|
99 | 99 | } |
100 | 100 | |
101 | 101 | // -------------------------------------------------------------------------------- |
@@ -120,72 +120,72 @@ discard block |
||
120 | 120 | // -12 : Unable to rename file (rename) |
121 | 121 | // -13 : Invalid header checksum |
122 | 122 | // -14 : Invalid archive size |
123 | - define( 'PCLZIP_ERR_USER_ABORTED', 2 ); |
|
124 | - define( 'PCLZIP_ERR_NO_ERROR', 0 ); |
|
125 | - define( 'PCLZIP_ERR_WRITE_OPEN_FAIL', -1 ); |
|
126 | - define( 'PCLZIP_ERR_READ_OPEN_FAIL', -2 ); |
|
127 | - define( 'PCLZIP_ERR_INVALID_PARAMETER', -3 ); |
|
128 | - define( 'PCLZIP_ERR_MISSING_FILE', -4 ); |
|
129 | - define( 'PCLZIP_ERR_FILENAME_TOO_LONG', -5 ); |
|
130 | - define( 'PCLZIP_ERR_INVALID_ZIP', -6 ); |
|
131 | - define( 'PCLZIP_ERR_BAD_EXTRACTED_FILE', -7 ); |
|
132 | - define( 'PCLZIP_ERR_DIR_CREATE_FAIL', -8 ); |
|
133 | - define( 'PCLZIP_ERR_BAD_EXTENSION', -9 ); |
|
134 | - define( 'PCLZIP_ERR_BAD_FORMAT', -10 ); |
|
135 | - define( 'PCLZIP_ERR_DELETE_FILE_FAIL', -11 ); |
|
136 | - define( 'PCLZIP_ERR_RENAME_FILE_FAIL', -12 ); |
|
137 | - define( 'PCLZIP_ERR_BAD_CHECKSUM', -13 ); |
|
138 | - define( 'PCLZIP_ERR_INVALID_ARCHIVE_ZIP', -14 ); |
|
139 | - define( 'PCLZIP_ERR_MISSING_OPTION_VALUE', -15 ); |
|
140 | - define( 'PCLZIP_ERR_INVALID_OPTION_VALUE', -16 ); |
|
141 | - define( 'PCLZIP_ERR_ALREADY_A_DIRECTORY', -17 ); |
|
142 | - define( 'PCLZIP_ERR_UNSUPPORTED_COMPRESSION', -18 ); |
|
143 | - define( 'PCLZIP_ERR_UNSUPPORTED_ENCRYPTION', -19 ); |
|
144 | - define( 'PCLZIP_ERR_INVALID_ATTRIBUTE_VALUE', -20 ); |
|
145 | - define( 'PCLZIP_ERR_DIRECTORY_RESTRICTION', -21 ); |
|
123 | + define('PCLZIP_ERR_USER_ABORTED', 2); |
|
124 | + define('PCLZIP_ERR_NO_ERROR', 0); |
|
125 | + define('PCLZIP_ERR_WRITE_OPEN_FAIL', -1); |
|
126 | + define('PCLZIP_ERR_READ_OPEN_FAIL', -2); |
|
127 | + define('PCLZIP_ERR_INVALID_PARAMETER', -3); |
|
128 | + define('PCLZIP_ERR_MISSING_FILE', -4); |
|
129 | + define('PCLZIP_ERR_FILENAME_TOO_LONG', -5); |
|
130 | + define('PCLZIP_ERR_INVALID_ZIP', -6); |
|
131 | + define('PCLZIP_ERR_BAD_EXTRACTED_FILE', -7); |
|
132 | + define('PCLZIP_ERR_DIR_CREATE_FAIL', -8); |
|
133 | + define('PCLZIP_ERR_BAD_EXTENSION', -9); |
|
134 | + define('PCLZIP_ERR_BAD_FORMAT', -10); |
|
135 | + define('PCLZIP_ERR_DELETE_FILE_FAIL', -11); |
|
136 | + define('PCLZIP_ERR_RENAME_FILE_FAIL', -12); |
|
137 | + define('PCLZIP_ERR_BAD_CHECKSUM', -13); |
|
138 | + define('PCLZIP_ERR_INVALID_ARCHIVE_ZIP', -14); |
|
139 | + define('PCLZIP_ERR_MISSING_OPTION_VALUE', -15); |
|
140 | + define('PCLZIP_ERR_INVALID_OPTION_VALUE', -16); |
|
141 | + define('PCLZIP_ERR_ALREADY_A_DIRECTORY', -17); |
|
142 | + define('PCLZIP_ERR_UNSUPPORTED_COMPRESSION', -18); |
|
143 | + define('PCLZIP_ERR_UNSUPPORTED_ENCRYPTION', -19); |
|
144 | + define('PCLZIP_ERR_INVALID_ATTRIBUTE_VALUE', -20); |
|
145 | + define('PCLZIP_ERR_DIRECTORY_RESTRICTION', -21); |
|
146 | 146 | |
147 | 147 | // ----- Options values |
148 | - define( 'PCLZIP_OPT_PATH', 77001 ); |
|
149 | - define( 'PCLZIP_OPT_ADD_PATH', 77002 ); |
|
150 | - define( 'PCLZIP_OPT_REMOVE_PATH', 77003 ); |
|
151 | - define( 'PCLZIP_OPT_REMOVE_ALL_PATH', 77004 ); |
|
152 | - define( 'PCLZIP_OPT_SET_CHMOD', 77005 ); |
|
153 | - define( 'PCLZIP_OPT_EXTRACT_AS_STRING', 77006 ); |
|
154 | - define( 'PCLZIP_OPT_NO_COMPRESSION', 77007 ); |
|
155 | - define( 'PCLZIP_OPT_BY_NAME', 77008 ); |
|
156 | - define( 'PCLZIP_OPT_BY_INDEX', 77009 ); |
|
157 | - define( 'PCLZIP_OPT_BY_EREG', 77010 ); |
|
158 | - define( 'PCLZIP_OPT_BY_PREG', 77011 ); |
|
159 | - define( 'PCLZIP_OPT_COMMENT', 77012 ); |
|
160 | - define( 'PCLZIP_OPT_ADD_COMMENT', 77013 ); |
|
161 | - define( 'PCLZIP_OPT_PREPEND_COMMENT', 77014 ); |
|
162 | - define( 'PCLZIP_OPT_EXTRACT_IN_OUTPUT', 77015 ); |
|
163 | - define( 'PCLZIP_OPT_REPLACE_NEWER', 77016 ); |
|
164 | - define( 'PCLZIP_OPT_STOP_ON_ERROR', 77017 ); |
|
148 | + define('PCLZIP_OPT_PATH', 77001); |
|
149 | + define('PCLZIP_OPT_ADD_PATH', 77002); |
|
150 | + define('PCLZIP_OPT_REMOVE_PATH', 77003); |
|
151 | + define('PCLZIP_OPT_REMOVE_ALL_PATH', 77004); |
|
152 | + define('PCLZIP_OPT_SET_CHMOD', 77005); |
|
153 | + define('PCLZIP_OPT_EXTRACT_AS_STRING', 77006); |
|
154 | + define('PCLZIP_OPT_NO_COMPRESSION', 77007); |
|
155 | + define('PCLZIP_OPT_BY_NAME', 77008); |
|
156 | + define('PCLZIP_OPT_BY_INDEX', 77009); |
|
157 | + define('PCLZIP_OPT_BY_EREG', 77010); |
|
158 | + define('PCLZIP_OPT_BY_PREG', 77011); |
|
159 | + define('PCLZIP_OPT_COMMENT', 77012); |
|
160 | + define('PCLZIP_OPT_ADD_COMMENT', 77013); |
|
161 | + define('PCLZIP_OPT_PREPEND_COMMENT', 77014); |
|
162 | + define('PCLZIP_OPT_EXTRACT_IN_OUTPUT', 77015); |
|
163 | + define('PCLZIP_OPT_REPLACE_NEWER', 77016); |
|
164 | + define('PCLZIP_OPT_STOP_ON_ERROR', 77017); |
|
165 | 165 | // Having big trouble with crypt. Need to multiply 2 long int |
166 | 166 | // which is not correctly supported by PHP ... |
167 | 167 | //define( 'PCLZIP_OPT_CRYPT', 77018 ); |
168 | - define( 'PCLZIP_OPT_EXTRACT_DIR_RESTRICTION', 77019 ); |
|
169 | - define( 'PCLZIP_OPT_TEMP_FILE_THRESHOLD', 77020 ); |
|
170 | - define( 'PCLZIP_OPT_ADD_TEMP_FILE_THRESHOLD', 77020 ); // alias |
|
171 | - define( 'PCLZIP_OPT_TEMP_FILE_ON', 77021 ); |
|
172 | - define( 'PCLZIP_OPT_ADD_TEMP_FILE_ON', 77021 ); // alias |
|
173 | - define( 'PCLZIP_OPT_TEMP_FILE_OFF', 77022 ); |
|
174 | - define( 'PCLZIP_OPT_ADD_TEMP_FILE_OFF', 77022 ); // alias |
|
168 | + define('PCLZIP_OPT_EXTRACT_DIR_RESTRICTION', 77019); |
|
169 | + define('PCLZIP_OPT_TEMP_FILE_THRESHOLD', 77020); |
|
170 | + define('PCLZIP_OPT_ADD_TEMP_FILE_THRESHOLD', 77020); // alias |
|
171 | + define('PCLZIP_OPT_TEMP_FILE_ON', 77021); |
|
172 | + define('PCLZIP_OPT_ADD_TEMP_FILE_ON', 77021); // alias |
|
173 | + define('PCLZIP_OPT_TEMP_FILE_OFF', 77022); |
|
174 | + define('PCLZIP_OPT_ADD_TEMP_FILE_OFF', 77022); // alias |
|
175 | 175 | |
176 | 176 | // ----- File description attributes |
177 | - define( 'PCLZIP_ATT_FILE_NAME', 79001 ); |
|
178 | - define( 'PCLZIP_ATT_FILE_NEW_SHORT_NAME', 79002 ); |
|
179 | - define( 'PCLZIP_ATT_FILE_NEW_FULL_NAME', 79003 ); |
|
180 | - define( 'PCLZIP_ATT_FILE_MTIME', 79004 ); |
|
181 | - define( 'PCLZIP_ATT_FILE_CONTENT', 79005 ); |
|
182 | - define( 'PCLZIP_ATT_FILE_COMMENT', 79006 ); |
|
177 | + define('PCLZIP_ATT_FILE_NAME', 79001); |
|
178 | + define('PCLZIP_ATT_FILE_NEW_SHORT_NAME', 79002); |
|
179 | + define('PCLZIP_ATT_FILE_NEW_FULL_NAME', 79003); |
|
180 | + define('PCLZIP_ATT_FILE_MTIME', 79004); |
|
181 | + define('PCLZIP_ATT_FILE_CONTENT', 79005); |
|
182 | + define('PCLZIP_ATT_FILE_COMMENT', 79006); |
|
183 | 183 | |
184 | 184 | // ----- Call backs values |
185 | - define( 'PCLZIP_CB_PRE_EXTRACT', 78001 ); |
|
186 | - define( 'PCLZIP_CB_POST_EXTRACT', 78002 ); |
|
187 | - define( 'PCLZIP_CB_PRE_ADD', 78003 ); |
|
188 | - define( 'PCLZIP_CB_POST_ADD', 78004 ); |
|
185 | + define('PCLZIP_CB_PRE_EXTRACT', 78001); |
|
186 | + define('PCLZIP_CB_POST_EXTRACT', 78002); |
|
187 | + define('PCLZIP_CB_PRE_ADD', 78003); |
|
188 | + define('PCLZIP_CB_POST_ADD', 78004); |
|
189 | 189 | /* For futur use |
190 | 190 | define( 'PCLZIP_CB_PRE_LIST', 78005 ); |
191 | 191 | define( 'PCLZIP_CB_POST_LIST', 78006 ); |
@@ -290,7 +290,7 @@ discard block |
||
290 | 290 | // -------------------------------------------------------------------------------- |
291 | 291 | function create($p_filelist) |
292 | 292 | { |
293 | - $v_result=1; |
|
293 | + $v_result = 1; |
|
294 | 294 | |
295 | 295 | // ----- Reset the error handler |
296 | 296 | $this->privErrorReset(); |
@@ -316,7 +316,7 @@ discard block |
||
316 | 316 | |
317 | 317 | // ----- Parse the options |
318 | 318 | $v_result = $this->privParseOptions($v_arg_list, $v_size, $v_options, |
319 | - array (PCLZIP_OPT_REMOVE_PATH => 'optional', |
|
319 | + array(PCLZIP_OPT_REMOVE_PATH => 'optional', |
|
320 | 320 | PCLZIP_OPT_REMOVE_ALL_PATH => 'optional', |
321 | 321 | PCLZIP_OPT_ADD_PATH => 'optional', |
322 | 322 | PCLZIP_CB_PRE_ADD => 'optional', |
@@ -402,7 +402,7 @@ discard block |
||
402 | 402 | |
403 | 403 | // ----- For each file in the list check the attributes |
404 | 404 | $v_supported_attributes |
405 | - = array ( PCLZIP_ATT_FILE_NAME => 'mandatory' |
|
405 | + = array(PCLZIP_ATT_FILE_NAME => 'mandatory' |
|
406 | 406 | ,PCLZIP_ATT_FILE_NEW_SHORT_NAME => 'optional' |
407 | 407 | ,PCLZIP_ATT_FILE_NEW_FULL_NAME => 'optional' |
408 | 408 | ,PCLZIP_ATT_FILE_MTIME => 'optional' |
@@ -473,7 +473,7 @@ discard block |
||
473 | 473 | // -------------------------------------------------------------------------------- |
474 | 474 | function add($p_filelist) |
475 | 475 | { |
476 | - $v_result=1; |
|
476 | + $v_result = 1; |
|
477 | 477 | |
478 | 478 | // ----- Reset the error handler |
479 | 479 | $this->privErrorReset(); |
@@ -499,7 +499,7 @@ discard block |
||
499 | 499 | |
500 | 500 | // ----- Parse the options |
501 | 501 | $v_result = $this->privParseOptions($v_arg_list, $v_size, $v_options, |
502 | - array (PCLZIP_OPT_REMOVE_PATH => 'optional', |
|
502 | + array(PCLZIP_OPT_REMOVE_PATH => 'optional', |
|
503 | 503 | PCLZIP_OPT_REMOVE_ALL_PATH => 'optional', |
504 | 504 | PCLZIP_OPT_ADD_PATH => 'optional', |
505 | 505 | PCLZIP_CB_PRE_ADD => 'optional', |
@@ -585,7 +585,7 @@ discard block |
||
585 | 585 | |
586 | 586 | // ----- For each file in the list check the attributes |
587 | 587 | $v_supported_attributes |
588 | - = array ( PCLZIP_ATT_FILE_NAME => 'mandatory' |
|
588 | + = array(PCLZIP_ATT_FILE_NAME => 'mandatory' |
|
589 | 589 | ,PCLZIP_ATT_FILE_NEW_SHORT_NAME => 'optional' |
590 | 590 | ,PCLZIP_ATT_FILE_NEW_FULL_NAME => 'optional' |
591 | 591 | ,PCLZIP_ATT_FILE_MTIME => 'optional' |
@@ -662,7 +662,7 @@ discard block |
||
662 | 662 | // -------------------------------------------------------------------------------- |
663 | 663 | function listContent() |
664 | 664 | { |
665 | - $v_result=1; |
|
665 | + $v_result = 1; |
|
666 | 666 | |
667 | 667 | // ----- Reset the error handler |
668 | 668 | $this->privErrorReset(); |
@@ -719,7 +719,7 @@ discard block |
||
719 | 719 | // -------------------------------------------------------------------------------- |
720 | 720 | function extract() |
721 | 721 | { |
722 | - $v_result=1; |
|
722 | + $v_result = 1; |
|
723 | 723 | |
724 | 724 | // ----- Reset the error handler |
725 | 725 | $this->privErrorReset(); |
@@ -752,7 +752,7 @@ discard block |
||
752 | 752 | |
753 | 753 | // ----- Parse the options |
754 | 754 | $v_result = $this->privParseOptions($v_arg_list, $v_size, $v_options, |
755 | - array (PCLZIP_OPT_PATH => 'optional', |
|
755 | + array(PCLZIP_OPT_PATH => 'optional', |
|
756 | 756 | PCLZIP_OPT_REMOVE_PATH => 'optional', |
757 | 757 | PCLZIP_OPT_REMOVE_ALL_PATH => 'optional', |
758 | 758 | PCLZIP_OPT_ADD_PATH => 'optional', |
@@ -876,7 +876,7 @@ discard block |
||
876 | 876 | //function extractByIndex($p_index, options...) |
877 | 877 | function extractByIndex($p_index) |
878 | 878 | { |
879 | - $v_result=1; |
|
879 | + $v_result = 1; |
|
880 | 880 | |
881 | 881 | // ----- Reset the error handler |
882 | 882 | $this->privErrorReset(); |
@@ -913,7 +913,7 @@ discard block |
||
913 | 913 | |
914 | 914 | // ----- Parse the options |
915 | 915 | $v_result = $this->privParseOptions($v_arg_list, $v_size, $v_options, |
916 | - array (PCLZIP_OPT_PATH => 'optional', |
|
916 | + array(PCLZIP_OPT_PATH => 'optional', |
|
917 | 917 | PCLZIP_OPT_REMOVE_PATH => 'optional', |
918 | 918 | PCLZIP_OPT_REMOVE_ALL_PATH => 'optional', |
919 | 919 | PCLZIP_OPT_EXTRACT_AS_STRING => 'optional', |
@@ -983,10 +983,10 @@ discard block |
||
983 | 983 | // ----- Trick |
984 | 984 | // Here I want to reuse extractByRule(), so I need to parse the $p_index |
985 | 985 | // with privParseOptions() |
986 | - $v_arg_trick = array (PCLZIP_OPT_BY_INDEX, $p_index); |
|
986 | + $v_arg_trick = array(PCLZIP_OPT_BY_INDEX, $p_index); |
|
987 | 987 | $v_options_trick = array(); |
988 | 988 | $v_result = $this->privParseOptions($v_arg_trick, sizeof($v_arg_trick), $v_options_trick, |
989 | - array (PCLZIP_OPT_BY_INDEX => 'optional' )); |
|
989 | + array(PCLZIP_OPT_BY_INDEX => 'optional')); |
|
990 | 990 | if ($v_result != 1) { |
991 | 991 | return 0; |
992 | 992 | } |
@@ -1025,7 +1025,7 @@ discard block |
||
1025 | 1025 | // -------------------------------------------------------------------------------- |
1026 | 1026 | function delete() |
1027 | 1027 | { |
1028 | - $v_result=1; |
|
1028 | + $v_result = 1; |
|
1029 | 1029 | |
1030 | 1030 | // ----- Reset the error handler |
1031 | 1031 | $this->privErrorReset(); |
@@ -1048,10 +1048,10 @@ discard block |
||
1048 | 1048 | |
1049 | 1049 | // ----- Parse the options |
1050 | 1050 | $v_result = $this->privParseOptions($v_arg_list, $v_size, $v_options, |
1051 | - array (PCLZIP_OPT_BY_NAME => 'optional', |
|
1051 | + array(PCLZIP_OPT_BY_NAME => 'optional', |
|
1052 | 1052 | PCLZIP_OPT_BY_EREG => 'optional', |
1053 | 1053 | PCLZIP_OPT_BY_PREG => 'optional', |
1054 | - PCLZIP_OPT_BY_INDEX => 'optional' )); |
|
1054 | + PCLZIP_OPT_BY_INDEX => 'optional')); |
|
1055 | 1055 | if ($v_result != 1) { |
1056 | 1056 | return 0; |
1057 | 1057 | } |
@@ -1305,9 +1305,9 @@ discard block |
||
1305 | 1305 | // Description : |
1306 | 1306 | // Parameters : |
1307 | 1307 | // -------------------------------------------------------------------------------- |
1308 | - function errorName($p_with_code=false) |
|
1308 | + function errorName($p_with_code = false) |
|
1309 | 1309 | { |
1310 | - $v_name = array ( PCLZIP_ERR_NO_ERROR => 'PCLZIP_ERR_NO_ERROR', |
|
1310 | + $v_name = array(PCLZIP_ERR_NO_ERROR => 'PCLZIP_ERR_NO_ERROR', |
|
1311 | 1311 | PCLZIP_ERR_WRITE_OPEN_FAIL => 'PCLZIP_ERR_WRITE_OPEN_FAIL', |
1312 | 1312 | PCLZIP_ERR_READ_OPEN_FAIL => 'PCLZIP_ERR_READ_OPEN_FAIL', |
1313 | 1313 | PCLZIP_ERR_INVALID_PARAMETER => 'PCLZIP_ERR_INVALID_PARAMETER', |
@@ -1351,7 +1351,7 @@ discard block |
||
1351 | 1351 | // Description : |
1352 | 1352 | // Parameters : |
1353 | 1353 | // -------------------------------------------------------------------------------- |
1354 | - function errorInfo($p_full=false) |
|
1354 | + function errorInfo($p_full = false) |
|
1355 | 1355 | { |
1356 | 1356 | if (PCLZIP_ERROR_EXTERNAL == 1) { |
1357 | 1357 | return(PclErrorString()); |
@@ -1390,7 +1390,7 @@ discard block |
||
1390 | 1390 | // true on success, |
1391 | 1391 | // false on error, the error code is set. |
1392 | 1392 | // -------------------------------------------------------------------------------- |
1393 | - function privCheckFormat($p_level=0) |
|
1393 | + function privCheckFormat($p_level = 0) |
|
1394 | 1394 | { |
1395 | 1395 | $v_result = true; |
1396 | 1396 | |
@@ -1443,13 +1443,13 @@ discard block |
||
1443 | 1443 | // 1 on success. |
1444 | 1444 | // 0 on failure. |
1445 | 1445 | // -------------------------------------------------------------------------------- |
1446 | - function privParseOptions(&$p_options_list, $p_size, &$v_result_list, $v_requested_options=false) |
|
1446 | + function privParseOptions(&$p_options_list, $p_size, &$v_result_list, $v_requested_options = false) |
|
1447 | 1447 | { |
1448 | - $v_result=1; |
|
1448 | + $v_result = 1; |
|
1449 | 1449 | |
1450 | 1450 | // ----- Read the options |
1451 | - $i=0; |
|
1452 | - while ($i<$p_size) { |
|
1451 | + $i = 0; |
|
1452 | + while ($i < $p_size) { |
|
1453 | 1453 | |
1454 | 1454 | // ----- Check if the option is supported |
1455 | 1455 | if (!isset($v_requested_options[$p_options_list[$i]])) { |
@@ -1467,7 +1467,7 @@ discard block |
||
1467 | 1467 | case PCLZIP_OPT_REMOVE_PATH : |
1468 | 1468 | case PCLZIP_OPT_ADD_PATH : |
1469 | 1469 | // ----- Check the number of parameters |
1470 | - if (($i+1) >= $p_size) { |
|
1470 | + if (($i + 1) >= $p_size) { |
|
1471 | 1471 | // ----- Error log |
1472 | 1472 | PclZip::privErrorLog(PCLZIP_ERR_MISSING_OPTION_VALUE, "Missing parameter value for option '".PclZipUtilOptionText($p_options_list[$i])."'"); |
1473 | 1473 | |
@@ -1476,13 +1476,13 @@ discard block |
||
1476 | 1476 | } |
1477 | 1477 | |
1478 | 1478 | // ----- Get the value |
1479 | - $v_result_list[$p_options_list[$i]] = PclZipUtilTranslateWinPath($p_options_list[$i+1], FALSE); |
|
1479 | + $v_result_list[$p_options_list[$i]] = PclZipUtilTranslateWinPath($p_options_list[$i + 1], FALSE); |
|
1480 | 1480 | $i++; |
1481 | 1481 | break; |
1482 | 1482 | |
1483 | 1483 | case PCLZIP_OPT_TEMP_FILE_THRESHOLD : |
1484 | 1484 | // ----- Check the number of parameters |
1485 | - if (($i+1) >= $p_size) { |
|
1485 | + if (($i + 1) >= $p_size) { |
|
1486 | 1486 | PclZip::privErrorLog(PCLZIP_ERR_MISSING_OPTION_VALUE, "Missing parameter value for option '".PclZipUtilOptionText($p_options_list[$i])."'"); |
1487 | 1487 | return PclZip::errorCode(); |
1488 | 1488 | } |
@@ -1494,14 +1494,14 @@ discard block |
||
1494 | 1494 | } |
1495 | 1495 | |
1496 | 1496 | // ----- Check the value |
1497 | - $v_value = $p_options_list[$i+1]; |
|
1498 | - if ((!is_integer($v_value)) || ($v_value<0)) { |
|
1497 | + $v_value = $p_options_list[$i + 1]; |
|
1498 | + if ((!is_integer($v_value)) || ($v_value < 0)) { |
|
1499 | 1499 | PclZip::privErrorLog(PCLZIP_ERR_INVALID_OPTION_VALUE, "Integer expected for option '".PclZipUtilOptionText($p_options_list[$i])."'"); |
1500 | 1500 | return PclZip::errorCode(); |
1501 | 1501 | } |
1502 | 1502 | |
1503 | 1503 | // ----- Get the value (and convert it in bytes) |
1504 | - $v_result_list[$p_options_list[$i]] = $v_value*1048576; |
|
1504 | + $v_result_list[$p_options_list[$i]] = $v_value * 1048576; |
|
1505 | 1505 | $i++; |
1506 | 1506 | break; |
1507 | 1507 | |
@@ -1532,7 +1532,7 @@ discard block |
||
1532 | 1532 | |
1533 | 1533 | case PCLZIP_OPT_EXTRACT_DIR_RESTRICTION : |
1534 | 1534 | // ----- Check the number of parameters |
1535 | - if (($i+1) >= $p_size) { |
|
1535 | + if (($i + 1) >= $p_size) { |
|
1536 | 1536 | // ----- Error log |
1537 | 1537 | PclZip::privErrorLog(PCLZIP_ERR_MISSING_OPTION_VALUE, "Missing parameter value for option '".PclZipUtilOptionText($p_options_list[$i])."'"); |
1538 | 1538 | |
@@ -1541,9 +1541,9 @@ discard block |
||
1541 | 1541 | } |
1542 | 1542 | |
1543 | 1543 | // ----- Get the value |
1544 | - if ( is_string($p_options_list[$i+1]) |
|
1545 | - && ($p_options_list[$i+1] != '')) { |
|
1546 | - $v_result_list[$p_options_list[$i]] = PclZipUtilTranslateWinPath($p_options_list[$i+1], FALSE); |
|
1544 | + if (is_string($p_options_list[$i + 1]) |
|
1545 | + && ($p_options_list[$i + 1] != '')) { |
|
1546 | + $v_result_list[$p_options_list[$i]] = PclZipUtilTranslateWinPath($p_options_list[$i + 1], FALSE); |
|
1547 | 1547 | $i++; |
1548 | 1548 | } |
1549 | 1549 | else { |
@@ -1553,7 +1553,7 @@ discard block |
||
1553 | 1553 | // ----- Look for options that request an array of string for value |
1554 | 1554 | case PCLZIP_OPT_BY_NAME : |
1555 | 1555 | // ----- Check the number of parameters |
1556 | - if (($i+1) >= $p_size) { |
|
1556 | + if (($i + 1) >= $p_size) { |
|
1557 | 1557 | // ----- Error log |
1558 | 1558 | PclZip::privErrorLog(PCLZIP_ERR_MISSING_OPTION_VALUE, "Missing parameter value for option '".PclZipUtilOptionText($p_options_list[$i])."'"); |
1559 | 1559 | |
@@ -1562,11 +1562,11 @@ discard block |
||
1562 | 1562 | } |
1563 | 1563 | |
1564 | 1564 | // ----- Get the value |
1565 | - if (is_string($p_options_list[$i+1])) { |
|
1566 | - $v_result_list[$p_options_list[$i]][0] = $p_options_list[$i+1]; |
|
1565 | + if (is_string($p_options_list[$i + 1])) { |
|
1566 | + $v_result_list[$p_options_list[$i]][0] = $p_options_list[$i + 1]; |
|
1567 | 1567 | } |
1568 | - else if (is_array($p_options_list[$i+1])) { |
|
1569 | - $v_result_list[$p_options_list[$i]] = $p_options_list[$i+1]; |
|
1568 | + else if (is_array($p_options_list[$i + 1])) { |
|
1569 | + $v_result_list[$p_options_list[$i]] = $p_options_list[$i + 1]; |
|
1570 | 1570 | } |
1571 | 1571 | else { |
1572 | 1572 | // ----- Error log |
@@ -1586,7 +1586,7 @@ discard block |
||
1586 | 1586 | case PCLZIP_OPT_BY_PREG : |
1587 | 1587 | //case PCLZIP_OPT_CRYPT : |
1588 | 1588 | // ----- Check the number of parameters |
1589 | - if (($i+1) >= $p_size) { |
|
1589 | + if (($i + 1) >= $p_size) { |
|
1590 | 1590 | // ----- Error log |
1591 | 1591 | PclZip::privErrorLog(PCLZIP_ERR_MISSING_OPTION_VALUE, "Missing parameter value for option '".PclZipUtilOptionText($p_options_list[$i])."'"); |
1592 | 1592 | |
@@ -1595,8 +1595,8 @@ discard block |
||
1595 | 1595 | } |
1596 | 1596 | |
1597 | 1597 | // ----- Get the value |
1598 | - if (is_string($p_options_list[$i+1])) { |
|
1599 | - $v_result_list[$p_options_list[$i]] = $p_options_list[$i+1]; |
|
1598 | + if (is_string($p_options_list[$i + 1])) { |
|
1599 | + $v_result_list[$p_options_list[$i]] = $p_options_list[$i + 1]; |
|
1600 | 1600 | } |
1601 | 1601 | else { |
1602 | 1602 | // ----- Error log |
@@ -1613,7 +1613,7 @@ discard block |
||
1613 | 1613 | case PCLZIP_OPT_ADD_COMMENT : |
1614 | 1614 | case PCLZIP_OPT_PREPEND_COMMENT : |
1615 | 1615 | // ----- Check the number of parameters |
1616 | - if (($i+1) >= $p_size) { |
|
1616 | + if (($i + 1) >= $p_size) { |
|
1617 | 1617 | // ----- Error log |
1618 | 1618 | PclZip::privErrorLog(PCLZIP_ERR_MISSING_OPTION_VALUE, |
1619 | 1619 | "Missing parameter value for option '" |
@@ -1625,8 +1625,8 @@ discard block |
||
1625 | 1625 | } |
1626 | 1626 | |
1627 | 1627 | // ----- Get the value |
1628 | - if (is_string($p_options_list[$i+1])) { |
|
1629 | - $v_result_list[$p_options_list[$i]] = $p_options_list[$i+1]; |
|
1628 | + if (is_string($p_options_list[$i + 1])) { |
|
1629 | + $v_result_list[$p_options_list[$i]] = $p_options_list[$i + 1]; |
|
1630 | 1630 | } |
1631 | 1631 | else { |
1632 | 1632 | // ----- Error log |
@@ -1644,7 +1644,7 @@ discard block |
||
1644 | 1644 | // ----- Look for options that request an array of index |
1645 | 1645 | case PCLZIP_OPT_BY_INDEX : |
1646 | 1646 | // ----- Check the number of parameters |
1647 | - if (($i+1) >= $p_size) { |
|
1647 | + if (($i + 1) >= $p_size) { |
|
1648 | 1648 | // ----- Error log |
1649 | 1649 | PclZip::privErrorLog(PCLZIP_ERR_MISSING_OPTION_VALUE, "Missing parameter value for option '".PclZipUtilOptionText($p_options_list[$i])."'"); |
1650 | 1650 | |
@@ -1654,19 +1654,19 @@ discard block |
||
1654 | 1654 | |
1655 | 1655 | // ----- Get the value |
1656 | 1656 | $v_work_list = array(); |
1657 | - if (is_string($p_options_list[$i+1])) { |
|
1657 | + if (is_string($p_options_list[$i + 1])) { |
|
1658 | 1658 | |
1659 | 1659 | // ----- Remove spaces |
1660 | - $p_options_list[$i+1] = strtr($p_options_list[$i+1], ' ', ''); |
|
1660 | + $p_options_list[$i + 1] = strtr($p_options_list[$i + 1], ' ', ''); |
|
1661 | 1661 | |
1662 | 1662 | // ----- Parse items |
1663 | - $v_work_list = explode(",", $p_options_list[$i+1]); |
|
1663 | + $v_work_list = explode(",", $p_options_list[$i + 1]); |
|
1664 | 1664 | } |
1665 | - else if (is_integer($p_options_list[$i+1])) { |
|
1666 | - $v_work_list[0] = $p_options_list[$i+1].'-'.$p_options_list[$i+1]; |
|
1665 | + else if (is_integer($p_options_list[$i + 1])) { |
|
1666 | + $v_work_list[0] = $p_options_list[$i + 1].'-'.$p_options_list[$i + 1]; |
|
1667 | 1667 | } |
1668 | - else if (is_array($p_options_list[$i+1])) { |
|
1669 | - $v_work_list = $p_options_list[$i+1]; |
|
1668 | + else if (is_array($p_options_list[$i + 1])) { |
|
1669 | + $v_work_list = $p_options_list[$i + 1]; |
|
1670 | 1670 | } |
1671 | 1671 | else { |
1672 | 1672 | // ----- Error log |
@@ -1680,9 +1680,9 @@ discard block |
||
1680 | 1680 | // each index item in the list must be a couple with a start and |
1681 | 1681 | // an end value : [0,3], [5-5], [8-10], ... |
1682 | 1682 | // ----- Check the format of each item |
1683 | - $v_sort_flag=false; |
|
1684 | - $v_sort_value=0; |
|
1685 | - for ($j=0; $j<sizeof($v_work_list); $j++) { |
|
1683 | + $v_sort_flag = false; |
|
1684 | + $v_sort_value = 0; |
|
1685 | + for ($j = 0; $j < sizeof($v_work_list); $j++) { |
|
1686 | 1686 | // ----- Explode the item |
1687 | 1687 | $v_item_list = explode("-", $v_work_list[$j]); |
1688 | 1688 | $v_size_item_list = sizeof($v_item_list); |
@@ -1712,7 +1712,7 @@ discard block |
||
1712 | 1712 | |
1713 | 1713 | // ----- Look for list sort |
1714 | 1714 | if ($v_result_list[$p_options_list[$i]][$j]['start'] < $v_sort_value) { |
1715 | - $v_sort_flag=true; |
|
1715 | + $v_sort_flag = true; |
|
1716 | 1716 | |
1717 | 1717 | // ----- TBC : An automatic sort should be writen ... |
1718 | 1718 | // ----- Error log |
@@ -1746,7 +1746,7 @@ discard block |
||
1746 | 1746 | // ----- Look for options that request an octal value |
1747 | 1747 | case PCLZIP_OPT_SET_CHMOD : |
1748 | 1748 | // ----- Check the number of parameters |
1749 | - if (($i+1) >= $p_size) { |
|
1749 | + if (($i + 1) >= $p_size) { |
|
1750 | 1750 | // ----- Error log |
1751 | 1751 | PclZip::privErrorLog(PCLZIP_ERR_MISSING_OPTION_VALUE, "Missing parameter value for option '".PclZipUtilOptionText($p_options_list[$i])."'"); |
1752 | 1752 | |
@@ -1755,7 +1755,7 @@ discard block |
||
1755 | 1755 | } |
1756 | 1756 | |
1757 | 1757 | // ----- Get the value |
1758 | - $v_result_list[$p_options_list[$i]] = $p_options_list[$i+1]; |
|
1758 | + $v_result_list[$p_options_list[$i]] = $p_options_list[$i + 1]; |
|
1759 | 1759 | $i++; |
1760 | 1760 | break; |
1761 | 1761 | |
@@ -1771,7 +1771,7 @@ discard block |
||
1771 | 1771 | case PCLZIP_CB_POST_LIST : |
1772 | 1772 | */ |
1773 | 1773 | // ----- Check the number of parameters |
1774 | - if (($i+1) >= $p_size) { |
|
1774 | + if (($i + 1) >= $p_size) { |
|
1775 | 1775 | // ----- Error log |
1776 | 1776 | PclZip::privErrorLog(PCLZIP_ERR_MISSING_OPTION_VALUE, "Missing parameter value for option '".PclZipUtilOptionText($p_options_list[$i])."'"); |
1777 | 1777 | |
@@ -1780,7 +1780,7 @@ discard block |
||
1780 | 1780 | } |
1781 | 1781 | |
1782 | 1782 | // ----- Get the value |
1783 | - $v_function_name = $p_options_list[$i+1]; |
|
1783 | + $v_function_name = $p_options_list[$i + 1]; |
|
1784 | 1784 | |
1785 | 1785 | // ----- Check that the value is a valid existing function |
1786 | 1786 | if (!function_exists($v_function_name)) { |
@@ -1812,7 +1812,7 @@ discard block |
||
1812 | 1812 | |
1813 | 1813 | // ----- Look for mandatory options |
1814 | 1814 | if ($v_requested_options !== false) { |
1815 | - for ($key=reset($v_requested_options); $key=key($v_requested_options); $key=next($v_requested_options)) { |
|
1815 | + for ($key = reset($v_requested_options); $key = key($v_requested_options); $key = next($v_requested_options)) { |
|
1816 | 1816 | // ----- Look for mandatory option |
1817 | 1817 | if ($v_requested_options[$key] == 'mandatory') { |
1818 | 1818 | // ----- Look if present |
@@ -1845,7 +1845,7 @@ discard block |
||
1845 | 1845 | // -------------------------------------------------------------------------------- |
1846 | 1846 | function privOptionDefaultThreshold(&$p_options) |
1847 | 1847 | { |
1848 | - $v_result=1; |
|
1848 | + $v_result = 1; |
|
1849 | 1849 | |
1850 | 1850 | if (isset($p_options[PCLZIP_OPT_TEMP_FILE_THRESHOLD]) |
1851 | 1851 | || isset($p_options[PCLZIP_OPT_TEMP_FILE_OFF])) { |
@@ -1857,16 +1857,16 @@ discard block |
||
1857 | 1857 | $v_memory_limit = trim($v_memory_limit); |
1858 | 1858 | $last = strtolower(substr($v_memory_limit, -1)); |
1859 | 1859 | |
1860 | - if($last == 'g') |
|
1860 | + if ($last == 'g') |
|
1861 | 1861 | //$v_memory_limit = $v_memory_limit*1024*1024*1024; |
1862 | - $v_memory_limit = $v_memory_limit*1073741824; |
|
1863 | - if($last == 'm') |
|
1862 | + $v_memory_limit = $v_memory_limit * 1073741824; |
|
1863 | + if ($last == 'm') |
|
1864 | 1864 | //$v_memory_limit = $v_memory_limit*1024*1024; |
1865 | - $v_memory_limit = $v_memory_limit*1048576; |
|
1866 | - if($last == 'k') |
|
1867 | - $v_memory_limit = $v_memory_limit*1024; |
|
1865 | + $v_memory_limit = $v_memory_limit * 1048576; |
|
1866 | + if ($last == 'k') |
|
1867 | + $v_memory_limit = $v_memory_limit * 1024; |
|
1868 | 1868 | |
1869 | - $p_options[PCLZIP_OPT_TEMP_FILE_THRESHOLD] = floor($v_memory_limit*PCLZIP_TEMPORARY_FILE_RATIO); |
|
1869 | + $p_options[PCLZIP_OPT_TEMP_FILE_THRESHOLD] = floor($v_memory_limit * PCLZIP_TEMPORARY_FILE_RATIO); |
|
1870 | 1870 | |
1871 | 1871 | |
1872 | 1872 | // ----- Sanity check : No threshold if value lower than 1M |
@@ -1887,9 +1887,9 @@ discard block |
||
1887 | 1887 | // 1 on success. |
1888 | 1888 | // 0 on failure. |
1889 | 1889 | // -------------------------------------------------------------------------------- |
1890 | - function privFileDescrParseAtt(&$p_file_list, &$p_filedescr, $v_options, $v_requested_options=false) |
|
1890 | + function privFileDescrParseAtt(&$p_file_list, &$p_filedescr, $v_options, $v_requested_options = false) |
|
1891 | 1891 | { |
1892 | - $v_result=1; |
|
1892 | + $v_result = 1; |
|
1893 | 1893 | |
1894 | 1894 | // ----- For each file in the list check the attributes |
1895 | 1895 | foreach ($p_file_list as $v_key => $v_value) { |
@@ -1982,7 +1982,7 @@ discard block |
||
1982 | 1982 | |
1983 | 1983 | // ----- Look for mandatory options |
1984 | 1984 | if ($v_requested_options !== false) { |
1985 | - for ($key=reset($v_requested_options); $key=key($v_requested_options); $key=next($v_requested_options)) { |
|
1985 | + for ($key = reset($v_requested_options); $key = key($v_requested_options); $key = next($v_requested_options)) { |
|
1986 | 1986 | // ----- Look for mandatory option |
1987 | 1987 | if ($v_requested_options[$key] == 'mandatory') { |
1988 | 1988 | // ----- Look if present |
@@ -2018,13 +2018,13 @@ discard block |
||
2018 | 2018 | // -------------------------------------------------------------------------------- |
2019 | 2019 | function privFileDescrExpand(&$p_filedescr_list, &$p_options) |
2020 | 2020 | { |
2021 | - $v_result=1; |
|
2021 | + $v_result = 1; |
|
2022 | 2022 | |
2023 | 2023 | // ----- Create a result list |
2024 | 2024 | $v_result_list = array(); |
2025 | 2025 | |
2026 | 2026 | // ----- Look each entry |
2027 | - for ($i=0; $i<sizeof($p_filedescr_list); $i++) { |
|
2027 | + for ($i = 0; $i < sizeof($p_filedescr_list); $i++) { |
|
2028 | 2028 | |
2029 | 2029 | // ----- Get filedescr |
2030 | 2030 | $v_descr = $p_filedescr_list[$i]; |
@@ -2143,7 +2143,7 @@ discard block |
||
2143 | 2143 | // -------------------------------------------------------------------------------- |
2144 | 2144 | function privCreate($p_filedescr_list, &$p_result_list, &$p_options) |
2145 | 2145 | { |
2146 | - $v_result=1; |
|
2146 | + $v_result = 1; |
|
2147 | 2147 | $v_list_detail = array(); |
2148 | 2148 | |
2149 | 2149 | // ----- Magic quotes trick |
@@ -2178,7 +2178,7 @@ discard block |
||
2178 | 2178 | // -------------------------------------------------------------------------------- |
2179 | 2179 | function privAdd($p_filedescr_list, &$p_result_list, &$p_options) |
2180 | 2180 | { |
2181 | - $v_result=1; |
|
2181 | + $v_result = 1; |
|
2182 | 2182 | $v_list_detail = array(); |
2183 | 2183 | |
2184 | 2184 | // ----- Look if the archive exists or is empty |
@@ -2195,7 +2195,7 @@ discard block |
||
2195 | 2195 | $this->privDisableMagicQuotes(); |
2196 | 2196 | |
2197 | 2197 | // ----- Open the zip file |
2198 | - if (($v_result=$this->privOpenFd('rb')) != 1) |
|
2198 | + if (($v_result = $this->privOpenFd('rb')) != 1) |
|
2199 | 2199 | { |
2200 | 2200 | // ----- Magic quotes trick |
2201 | 2201 | $this->privSwapBackMagicQuotes(); |
@@ -2276,7 +2276,7 @@ discard block |
||
2276 | 2276 | } |
2277 | 2277 | |
2278 | 2278 | // ----- Create the Central Dir files header |
2279 | - for ($i=0, $v_count=0; $i<sizeof($v_header_list); $i++) |
|
2279 | + for ($i = 0, $v_count = 0; $i < sizeof($v_header_list); $i++) |
|
2280 | 2280 | { |
2281 | 2281 | // ----- Create the file header |
2282 | 2282 | if ($v_header_list[$i]['status'] == 'ok') { |
@@ -2309,10 +2309,10 @@ discard block |
||
2309 | 2309 | } |
2310 | 2310 | |
2311 | 2311 | // ----- Calculate the size of the central header |
2312 | - $v_size = @ftell($this->zip_fd)-$v_offset; |
|
2312 | + $v_size = @ftell($this->zip_fd) - $v_offset; |
|
2313 | 2313 | |
2314 | 2314 | // ----- Create the central dir footer |
2315 | - if (($v_result = $this->privWriteCentralHeader($v_count+$v_central_dir['entries'], $v_size, $v_offset, $v_comment)) != 1) |
|
2315 | + if (($v_result = $this->privWriteCentralHeader($v_count + $v_central_dir['entries'], $v_size, $v_offset, $v_comment)) != 1) |
|
2316 | 2316 | { |
2317 | 2317 | // ----- Reset the file list |
2318 | 2318 | unset($v_header_list); |
@@ -2357,7 +2357,7 @@ discard block |
||
2357 | 2357 | // -------------------------------------------------------------------------------- |
2358 | 2358 | function privOpenFd($p_mode) |
2359 | 2359 | { |
2360 | - $v_result=1; |
|
2360 | + $v_result = 1; |
|
2361 | 2361 | |
2362 | 2362 | // ----- Look if already open |
2363 | 2363 | if ($this->zip_fd != 0) |
@@ -2391,7 +2391,7 @@ discard block |
||
2391 | 2391 | // -------------------------------------------------------------------------------- |
2392 | 2392 | function privCloseFd() |
2393 | 2393 | { |
2394 | - $v_result=1; |
|
2394 | + $v_result = 1; |
|
2395 | 2395 | |
2396 | 2396 | if ($this->zip_fd != 0) |
2397 | 2397 | @fclose($this->zip_fd); |
@@ -2418,7 +2418,7 @@ discard block |
||
2418 | 2418 | // function privAddList($p_list, &$p_result_list, $p_add_dir, $p_remove_dir, $p_remove_all_dir, &$p_options) |
2419 | 2419 | function privAddList($p_filedescr_list, &$p_result_list, &$p_options) |
2420 | 2420 | { |
2421 | - $v_result=1; |
|
2421 | + $v_result = 1; |
|
2422 | 2422 | |
2423 | 2423 | // ----- Add the files |
2424 | 2424 | $v_header_list = array(); |
@@ -2432,7 +2432,7 @@ discard block |
||
2432 | 2432 | $v_offset = @ftell($this->zip_fd); |
2433 | 2433 | |
2434 | 2434 | // ----- Create the Central Dir files header |
2435 | - for ($i=0,$v_count=0; $i<sizeof($v_header_list); $i++) |
|
2435 | + for ($i = 0, $v_count = 0; $i < sizeof($v_header_list); $i++) |
|
2436 | 2436 | { |
2437 | 2437 | // ----- Create the file header |
2438 | 2438 | if ($v_header_list[$i]['status'] == 'ok') { |
@@ -2454,7 +2454,7 @@ discard block |
||
2454 | 2454 | } |
2455 | 2455 | |
2456 | 2456 | // ----- Calculate the size of the central header |
2457 | - $v_size = @ftell($this->zip_fd)-$v_offset; |
|
2457 | + $v_size = @ftell($this->zip_fd) - $v_offset; |
|
2458 | 2458 | |
2459 | 2459 | // ----- Create the central dir footer |
2460 | 2460 | if (($v_result = $this->privWriteCentralHeader($v_count, $v_size, $v_offset, $v_comment)) != 1) |
@@ -2482,14 +2482,14 @@ discard block |
||
2482 | 2482 | // -------------------------------------------------------------------------------- |
2483 | 2483 | function privAddFileList($p_filedescr_list, &$p_result_list, &$p_options) |
2484 | 2484 | { |
2485 | - $v_result=1; |
|
2485 | + $v_result = 1; |
|
2486 | 2486 | $v_header = array(); |
2487 | 2487 | |
2488 | 2488 | // ----- Recuperate the current number of elt in list |
2489 | 2489 | $v_nb = sizeof($p_result_list); |
2490 | 2490 | |
2491 | 2491 | // ----- Loop on the files |
2492 | - for ($j=0; ($j<sizeof($p_filedescr_list)) && ($v_result==1); $j++) { |
|
2492 | + for ($j = 0; ($j < sizeof($p_filedescr_list)) && ($v_result == 1); $j++) { |
|
2493 | 2493 | // ----- Format the filename |
2494 | 2494 | $p_filedescr_list[$j]['filename'] |
2495 | 2495 | = PclZipUtilTranslateWinPath($p_filedescr_list[$j]['filename'], false); |
@@ -2502,7 +2502,7 @@ discard block |
||
2502 | 2502 | } |
2503 | 2503 | |
2504 | 2504 | // ----- Check the filename |
2505 | - if ( ($p_filedescr_list[$j]['type'] != 'virtual_file') |
|
2505 | + if (($p_filedescr_list[$j]['type'] != 'virtual_file') |
|
2506 | 2506 | && (!file_exists($p_filedescr_list[$j]['filename']))) { |
2507 | 2507 | PclZip::privErrorLog(PCLZIP_ERR_MISSING_FILE, "File '".$p_filedescr_list[$j]['filename']."' does not exist"); |
2508 | 2508 | return PclZip::errorCode(); |
@@ -2512,10 +2512,10 @@ discard block |
||
2512 | 2512 | // or a dir with all its path removed |
2513 | 2513 | // if ( (is_file($p_filedescr_list[$j]['filename'])) |
2514 | 2514 | // || ( is_dir($p_filedescr_list[$j]['filename']) |
2515 | - if ( ($p_filedescr_list[$j]['type'] == 'file') |
|
2515 | + if (($p_filedescr_list[$j]['type'] == 'file') |
|
2516 | 2516 | || ($p_filedescr_list[$j]['type'] == 'virtual_file') |
2517 | - || ( ($p_filedescr_list[$j]['type'] == 'folder') |
|
2518 | - && ( !isset($p_options[PCLZIP_OPT_REMOVE_ALL_PATH]) |
|
2517 | + || (($p_filedescr_list[$j]['type'] == 'folder') |
|
2518 | + && (!isset($p_options[PCLZIP_OPT_REMOVE_ALL_PATH]) |
|
2519 | 2519 | || !$p_options[PCLZIP_OPT_REMOVE_ALL_PATH])) |
2520 | 2520 | ) { |
2521 | 2521 | |
@@ -2544,7 +2544,7 @@ discard block |
||
2544 | 2544 | // -------------------------------------------------------------------------------- |
2545 | 2545 | function privAddFile($p_filedescr, &$p_header, &$p_options) |
2546 | 2546 | { |
2547 | - $v_result=1; |
|
2547 | + $v_result = 1; |
|
2548 | 2548 | |
2549 | 2549 | // ----- Working variable |
2550 | 2550 | $p_filename = $p_filedescr['filename']; |
@@ -2589,13 +2589,13 @@ discard block |
||
2589 | 2589 | $p_header['index'] = -1; |
2590 | 2590 | |
2591 | 2591 | // ----- Look for regular file |
2592 | - if ($p_filedescr['type']=='file') { |
|
2592 | + if ($p_filedescr['type'] == 'file') { |
|
2593 | 2593 | $p_header['external'] = 0x00000000; |
2594 | 2594 | $p_header['size'] = filesize($p_filename); |
2595 | 2595 | } |
2596 | 2596 | |
2597 | 2597 | // ----- Look for regular folder |
2598 | - else if ($p_filedescr['type']=='folder') { |
|
2598 | + else if ($p_filedescr['type'] == 'folder') { |
|
2599 | 2599 | $p_header['external'] = 0x00000010; |
2600 | 2600 | $p_header['mtime'] = filemtime($p_filename); |
2601 | 2601 | $p_header['size'] = filesize($p_filename); |
@@ -2670,10 +2670,10 @@ discard block |
||
2670 | 2670 | // ----- Look for a file |
2671 | 2671 | if ($p_filedescr['type'] == 'file') { |
2672 | 2672 | // ----- Look for using temporary file to zip |
2673 | - if ( (!isset($p_options[PCLZIP_OPT_TEMP_FILE_OFF])) |
|
2673 | + if ((!isset($p_options[PCLZIP_OPT_TEMP_FILE_OFF])) |
|
2674 | 2674 | && (isset($p_options[PCLZIP_OPT_TEMP_FILE_ON]) |
2675 | 2675 | || (isset($p_options[PCLZIP_OPT_TEMP_FILE_THRESHOLD]) |
2676 | - && ($p_options[PCLZIP_OPT_TEMP_FILE_THRESHOLD] <= $p_header['size'])) ) ) { |
|
2676 | + && ($p_options[PCLZIP_OPT_TEMP_FILE_THRESHOLD] <= $p_header['size'])))) { |
|
2677 | 2677 | $v_result = $this->privAddFileUsingTempFile($p_filedescr, $p_header, $p_options); |
2678 | 2678 | if ($v_result < PCLZIP_ERR_NO_ERROR) { |
2679 | 2679 | return $v_result; |
@@ -2773,7 +2773,7 @@ discard block |
||
2773 | 2773 | // ----- Set the file properties |
2774 | 2774 | $p_header['size'] = 0; |
2775 | 2775 | //$p_header['external'] = 0x41FF0010; // Value for a folder : to be checked |
2776 | - $p_header['external'] = 0x00000010; // Value for a folder : to be checked |
|
2776 | + $p_header['external'] = 0x00000010; // Value for a folder : to be checked |
|
2777 | 2777 | |
2778 | 2778 | // ----- Call the header generation |
2779 | 2779 | if (($v_result = $this->privWriteFileHeader($p_header)) != 1) |
@@ -2817,7 +2817,7 @@ discard block |
||
2817 | 2817 | // -------------------------------------------------------------------------------- |
2818 | 2818 | function privAddFileUsingTempFile($p_filedescr, &$p_header, &$p_options) |
2819 | 2819 | { |
2820 | - $v_result=PCLZIP_ERR_NO_ERROR; |
|
2820 | + $v_result = PCLZIP_ERR_NO_ERROR; |
|
2821 | 2821 | |
2822 | 2822 | // ----- Working variable |
2823 | 2823 | $p_filename = $p_filedescr['filename']; |
@@ -2871,7 +2871,7 @@ discard block |
||
2871 | 2871 | $v_data_header['os'] = bin2hex($v_data_header['os']); |
2872 | 2872 | |
2873 | 2873 | // ----- Read the gzip file footer |
2874 | - @fseek($v_file_compressed, filesize($v_gzip_temp_name)-8); |
|
2874 | + @fseek($v_file_compressed, filesize($v_gzip_temp_name) - 8); |
|
2875 | 2875 | $v_binary_data = @fread($v_file_compressed, 8); |
2876 | 2876 | $v_data_footer = unpack('Vcrc/Vcompressed_size', $v_binary_data); |
2877 | 2877 | |
@@ -2879,7 +2879,7 @@ discard block |
||
2879 | 2879 | $p_header['compression'] = ord($v_data_header['cm']); |
2880 | 2880 | //$p_header['mtime'] = $v_data_header['mtime']; |
2881 | 2881 | $p_header['crc'] = $v_data_footer['crc']; |
2882 | - $p_header['compressed_size'] = filesize($v_gzip_temp_name)-18; |
|
2882 | + $p_header['compressed_size'] = filesize($v_gzip_temp_name) - 18; |
|
2883 | 2883 | |
2884 | 2884 | // ----- Close the file |
2885 | 2885 | @fclose($v_file_compressed); |
@@ -2929,7 +2929,7 @@ discard block |
||
2929 | 2929 | // -------------------------------------------------------------------------------- |
2930 | 2930 | function privCalculateStoredFilename(&$p_filedescr, &$p_options) |
2931 | 2931 | { |
2932 | - $v_result=1; |
|
2932 | + $v_result = 1; |
|
2933 | 2933 | |
2934 | 2934 | // ----- Working variables |
2935 | 2935 | $p_filename = $p_filedescr['filename']; |
@@ -2986,14 +2986,14 @@ discard block |
||
2986 | 2986 | if (substr($p_remove_dir, -1) != '/') |
2987 | 2987 | $p_remove_dir .= "/"; |
2988 | 2988 | |
2989 | - if ( (substr($p_filename, 0, 2) == "./") |
|
2989 | + if ((substr($p_filename, 0, 2) == "./") |
|
2990 | 2990 | || (substr($p_remove_dir, 0, 2) == "./")) { |
2991 | 2991 | |
2992 | - if ( (substr($p_filename, 0, 2) == "./") |
|
2992 | + if ((substr($p_filename, 0, 2) == "./") |
|
2993 | 2993 | && (substr($p_remove_dir, 0, 2) != "./")) { |
2994 | 2994 | $p_remove_dir = "./".$p_remove_dir; |
2995 | 2995 | } |
2996 | - if ( (substr($p_filename, 0, 2) != "./") |
|
2996 | + if ((substr($p_filename, 0, 2) != "./") |
|
2997 | 2997 | && (substr($p_remove_dir, 0, 2) == "./")) { |
2998 | 2998 | $p_remove_dir = substr($p_remove_dir, 2); |
2999 | 2999 | } |
@@ -3041,15 +3041,15 @@ discard block |
||
3041 | 3041 | // -------------------------------------------------------------------------------- |
3042 | 3042 | function privWriteFileHeader(&$p_header) |
3043 | 3043 | { |
3044 | - $v_result=1; |
|
3044 | + $v_result = 1; |
|
3045 | 3045 | |
3046 | 3046 | // ----- Store the offset position of the file |
3047 | 3047 | $p_header['offset'] = ftell($this->zip_fd); |
3048 | 3048 | |
3049 | 3049 | // ----- Transform UNIX mtime to DOS format mdate/mtime |
3050 | 3050 | $v_date = getdate($p_header['mtime']); |
3051 | - $v_mtime = ($v_date['hours']<<11) + ($v_date['minutes']<<5) + $v_date['seconds']/2; |
|
3052 | - $v_mdate = (($v_date['year']-1980)<<9) + ($v_date['mon']<<5) + $v_date['mday']; |
|
3051 | + $v_mtime = ($v_date['hours'] << 11) + ($v_date['minutes'] << 5) + $v_date['seconds'] / 2; |
|
3052 | + $v_mdate = (($v_date['year'] - 1980) << 9) + ($v_date['mon'] << 5) + $v_date['mday']; |
|
3053 | 3053 | |
3054 | 3054 | // ----- Packed data |
3055 | 3055 | $v_binary_data = pack("VvvvvvVVVvv", 0x04034b50, |
@@ -3086,7 +3086,7 @@ discard block |
||
3086 | 3086 | // -------------------------------------------------------------------------------- |
3087 | 3087 | function privWriteCentralFileHeader(&$p_header) |
3088 | 3088 | { |
3089 | - $v_result=1; |
|
3089 | + $v_result = 1; |
|
3090 | 3090 | |
3091 | 3091 | // TBC |
3092 | 3092 | //for(reset($p_header); $key = key($p_header); next($p_header)) { |
@@ -3094,8 +3094,8 @@ discard block |
||
3094 | 3094 | |
3095 | 3095 | // ----- Transform UNIX mtime to DOS format mdate/mtime |
3096 | 3096 | $v_date = getdate($p_header['mtime']); |
3097 | - $v_mtime = ($v_date['hours']<<11) + ($v_date['minutes']<<5) + $v_date['seconds']/2; |
|
3098 | - $v_mdate = (($v_date['year']-1980)<<9) + ($v_date['mon']<<5) + $v_date['mday']; |
|
3097 | + $v_mtime = ($v_date['hours'] << 11) + ($v_date['minutes'] << 5) + $v_date['seconds'] / 2; |
|
3098 | + $v_mdate = (($v_date['year'] - 1980) << 9) + ($v_date['mon'] << 5) + $v_date['mday']; |
|
3099 | 3099 | |
3100 | 3100 | |
3101 | 3101 | // ----- Packed data |
@@ -3139,7 +3139,7 @@ discard block |
||
3139 | 3139 | // -------------------------------------------------------------------------------- |
3140 | 3140 | function privWriteCentralHeader($p_nb_entries, $p_size, $p_offset, $p_comment) |
3141 | 3141 | { |
3142 | - $v_result=1; |
|
3142 | + $v_result = 1; |
|
3143 | 3143 | |
3144 | 3144 | // ----- Packed data |
3145 | 3145 | $v_binary_data = pack("VvvvvVVv", 0x06054b50, 0, 0, $p_nb_entries, |
@@ -3168,7 +3168,7 @@ discard block |
||
3168 | 3168 | // -------------------------------------------------------------------------------- |
3169 | 3169 | function privList(&$p_list) |
3170 | 3170 | { |
3171 | - $v_result=1; |
|
3171 | + $v_result = 1; |
|
3172 | 3172 | |
3173 | 3173 | // ----- Magic quotes trick |
3174 | 3174 | $this->privDisableMagicQuotes(); |
@@ -3208,7 +3208,7 @@ discard block |
||
3208 | 3208 | } |
3209 | 3209 | |
3210 | 3210 | // ----- Read each entry |
3211 | - for ($i=0; $i<$v_central_dir['entries']; $i++) |
|
3211 | + for ($i = 0; $i < $v_central_dir['entries']; $i++) |
|
3212 | 3212 | { |
3213 | 3213 | // ----- Read the file header |
3214 | 3214 | if (($v_result = $this->privReadCentralFileHeader($v_header)) != 1) |
@@ -3255,7 +3255,7 @@ discard block |
||
3255 | 3255 | // -------------------------------------------------------------------------------- |
3256 | 3256 | function privConvertHeader2FileInfo($p_header, &$p_info) |
3257 | 3257 | { |
3258 | - $v_result=1; |
|
3258 | + $v_result = 1; |
|
3259 | 3259 | |
3260 | 3260 | // ----- Get the interesting attributes |
3261 | 3261 | $v_temp_path = PclZipUtilPathReduction($p_header['filename']); |
@@ -3266,7 +3266,7 @@ discard block |
||
3266 | 3266 | $p_info['compressed_size'] = $p_header['compressed_size']; |
3267 | 3267 | $p_info['mtime'] = $p_header['mtime']; |
3268 | 3268 | $p_info['comment'] = $p_header['comment']; |
3269 | - $p_info['folder'] = (($p_header['external']&0x00000010)==0x00000010); |
|
3269 | + $p_info['folder'] = (($p_header['external'] & 0x00000010) == 0x00000010); |
|
3270 | 3270 | $p_info['index'] = $p_header['index']; |
3271 | 3271 | $p_info['status'] = $p_header['status']; |
3272 | 3272 | $p_info['crc'] = $p_header['crc']; |
@@ -3294,16 +3294,16 @@ discard block |
||
3294 | 3294 | // -------------------------------------------------------------------------------- |
3295 | 3295 | function privExtractByRule(&$p_file_list, $p_path, $p_remove_path, $p_remove_all_path, &$p_options) |
3296 | 3296 | { |
3297 | - $v_result=1; |
|
3297 | + $v_result = 1; |
|
3298 | 3298 | |
3299 | 3299 | // ----- Magic quotes trick |
3300 | 3300 | $this->privDisableMagicQuotes(); |
3301 | 3301 | |
3302 | 3302 | // ----- Check the path |
3303 | - if ( ($p_path == "") |
|
3304 | - || ( (substr($p_path, 0, 1) != "/") |
|
3303 | + if (($p_path == "") |
|
3304 | + || ((substr($p_path, 0, 1) != "/") |
|
3305 | 3305 | && (substr($p_path, 0, 3) != "../") |
3306 | - && (substr($p_path,1,2)!=":/"))) |
|
3306 | + && (substr($p_path, 1, 2) != ":/"))) |
|
3307 | 3307 | $p_path = "./".$p_path; |
3308 | 3308 | |
3309 | 3309 | // ----- Reduce the path last (and duplicated) '/' |
@@ -3312,7 +3312,7 @@ discard block |
||
3312 | 3312 | // ----- Look for the path end '/' |
3313 | 3313 | while (substr($p_path, -1) == "/") |
3314 | 3314 | { |
3315 | - $p_path = substr($p_path, 0, strlen($p_path)-1); |
|
3315 | + $p_path = substr($p_path, 0, strlen($p_path) - 1); |
|
3316 | 3316 | } |
3317 | 3317 | } |
3318 | 3318 | |
@@ -3346,7 +3346,7 @@ discard block |
||
3346 | 3346 | |
3347 | 3347 | // ----- Read each entry |
3348 | 3348 | $j_start = 0; |
3349 | - for ($i=0, $v_nb_extracted=0; $i<$v_central_dir['entries']; $i++) |
|
3349 | + for ($i = 0, $v_nb_extracted = 0; $i < $v_central_dir['entries']; $i++) |
|
3350 | 3350 | { |
3351 | 3351 | |
3352 | 3352 | // ----- Read next Central dir entry |
@@ -3385,17 +3385,17 @@ discard block |
||
3385 | 3385 | $v_extract = false; |
3386 | 3386 | |
3387 | 3387 | // ----- Look for extract by name rule |
3388 | - if ( (isset($p_options[PCLZIP_OPT_BY_NAME])) |
|
3388 | + if ((isset($p_options[PCLZIP_OPT_BY_NAME])) |
|
3389 | 3389 | && ($p_options[PCLZIP_OPT_BY_NAME] != 0)) { |
3390 | 3390 | |
3391 | 3391 | // ----- Look if the filename is in the list |
3392 | - for ($j=0; ($j<sizeof($p_options[PCLZIP_OPT_BY_NAME])) && (!$v_extract); $j++) { |
|
3392 | + for ($j = 0; ($j < sizeof($p_options[PCLZIP_OPT_BY_NAME])) && (!$v_extract); $j++) { |
|
3393 | 3393 | |
3394 | 3394 | // ----- Look for a directory |
3395 | 3395 | if (substr($p_options[PCLZIP_OPT_BY_NAME][$j], -1) == "/") { |
3396 | 3396 | |
3397 | 3397 | // ----- Look if the directory is in the filename path |
3398 | - if ( (strlen($v_header['stored_filename']) > strlen($p_options[PCLZIP_OPT_BY_NAME][$j])) |
|
3398 | + if ((strlen($v_header['stored_filename']) > strlen($p_options[PCLZIP_OPT_BY_NAME][$j])) |
|
3399 | 3399 | && (substr($v_header['stored_filename'], 0, strlen($p_options[PCLZIP_OPT_BY_NAME][$j])) == $p_options[PCLZIP_OPT_BY_NAME][$j])) { |
3400 | 3400 | $v_extract = true; |
3401 | 3401 | } |
@@ -3420,7 +3420,7 @@ discard block |
||
3420 | 3420 | */ |
3421 | 3421 | |
3422 | 3422 | // ----- Look for extract by preg rule |
3423 | - else if ( (isset($p_options[PCLZIP_OPT_BY_PREG])) |
|
3423 | + else if ((isset($p_options[PCLZIP_OPT_BY_PREG])) |
|
3424 | 3424 | && ($p_options[PCLZIP_OPT_BY_PREG] != "")) { |
3425 | 3425 | |
3426 | 3426 | if (preg_match($p_options[PCLZIP_OPT_BY_PREG], $v_header['stored_filename'])) { |
@@ -3429,20 +3429,20 @@ discard block |
||
3429 | 3429 | } |
3430 | 3430 | |
3431 | 3431 | // ----- Look for extract by index rule |
3432 | - else if ( (isset($p_options[PCLZIP_OPT_BY_INDEX])) |
|
3432 | + else if ((isset($p_options[PCLZIP_OPT_BY_INDEX])) |
|
3433 | 3433 | && ($p_options[PCLZIP_OPT_BY_INDEX] != 0)) { |
3434 | 3434 | |
3435 | 3435 | // ----- Look if the index is in the list |
3436 | - for ($j=$j_start; ($j<sizeof($p_options[PCLZIP_OPT_BY_INDEX])) && (!$v_extract); $j++) { |
|
3436 | + for ($j = $j_start; ($j < sizeof($p_options[PCLZIP_OPT_BY_INDEX])) && (!$v_extract); $j++) { |
|
3437 | 3437 | |
3438 | - if (($i>=$p_options[PCLZIP_OPT_BY_INDEX][$j]['start']) && ($i<=$p_options[PCLZIP_OPT_BY_INDEX][$j]['end'])) { |
|
3438 | + if (($i >= $p_options[PCLZIP_OPT_BY_INDEX][$j]['start']) && ($i <= $p_options[PCLZIP_OPT_BY_INDEX][$j]['end'])) { |
|
3439 | 3439 | $v_extract = true; |
3440 | 3440 | } |
3441 | - if ($i>=$p_options[PCLZIP_OPT_BY_INDEX][$j]['end']) { |
|
3442 | - $j_start = $j+1; |
|
3441 | + if ($i >= $p_options[PCLZIP_OPT_BY_INDEX][$j]['end']) { |
|
3442 | + $j_start = $j + 1; |
|
3443 | 3443 | } |
3444 | 3444 | |
3445 | - if ($p_options[PCLZIP_OPT_BY_INDEX][$j]['start']>$i) { |
|
3445 | + if ($p_options[PCLZIP_OPT_BY_INDEX][$j]['start'] > $i) { |
|
3446 | 3446 | break; |
3447 | 3447 | } |
3448 | 3448 | } |
@@ -3454,14 +3454,14 @@ discard block |
||
3454 | 3454 | } |
3455 | 3455 | |
3456 | 3456 | // ----- Check compression method |
3457 | - if ( ($v_extract) |
|
3458 | - && ( ($v_header['compression'] != 8) |
|
3457 | + if (($v_extract) |
|
3458 | + && (($v_header['compression'] != 8) |
|
3459 | 3459 | && ($v_header['compression'] != 0))) { |
3460 | 3460 | $v_header['status'] = 'unsupported_compression'; |
3461 | 3461 | |
3462 | 3462 | // ----- Look for PCLZIP_OPT_STOP_ON_ERROR |
3463 | - if ( (isset($p_options[PCLZIP_OPT_STOP_ON_ERROR])) |
|
3464 | - && ($p_options[PCLZIP_OPT_STOP_ON_ERROR]===true)) { |
|
3463 | + if ((isset($p_options[PCLZIP_OPT_STOP_ON_ERROR])) |
|
3464 | + && ($p_options[PCLZIP_OPT_STOP_ON_ERROR] === true)) { |
|
3465 | 3465 | |
3466 | 3466 | $this->privSwapBackMagicQuotes(); |
3467 | 3467 | |
@@ -3479,8 +3479,8 @@ discard block |
||
3479 | 3479 | $v_header['status'] = 'unsupported_encryption'; |
3480 | 3480 | |
3481 | 3481 | // ----- Look for PCLZIP_OPT_STOP_ON_ERROR |
3482 | - if ( (isset($p_options[PCLZIP_OPT_STOP_ON_ERROR])) |
|
3483 | - && ($p_options[PCLZIP_OPT_STOP_ON_ERROR]===true)) { |
|
3482 | + if ((isset($p_options[PCLZIP_OPT_STOP_ON_ERROR])) |
|
3483 | + && ($p_options[PCLZIP_OPT_STOP_ON_ERROR] === true)) { |
|
3484 | 3484 | |
3485 | 3485 | $this->privSwapBackMagicQuotes(); |
3486 | 3486 | |
@@ -3561,7 +3561,7 @@ discard block |
||
3561 | 3561 | } |
3562 | 3562 | } |
3563 | 3563 | // ----- Look for extraction in standard output |
3564 | - elseif ( (isset($p_options[PCLZIP_OPT_EXTRACT_IN_OUTPUT])) |
|
3564 | + elseif ((isset($p_options[PCLZIP_OPT_EXTRACT_IN_OUTPUT])) |
|
3565 | 3565 | && ($p_options[PCLZIP_OPT_EXTRACT_IN_OUTPUT])) { |
3566 | 3566 | // ----- Extracting the file in standard output |
3567 | 3567 | $v_result1 = $this->privExtractFileInOutput($v_header, $p_options); |
@@ -3634,7 +3634,7 @@ discard block |
||
3634 | 3634 | // -------------------------------------------------------------------------------- |
3635 | 3635 | function privExtractFile(&$p_entry, $p_path, $p_remove_path, $p_remove_all_path, &$p_options) |
3636 | 3636 | { |
3637 | - $v_result=1; |
|
3637 | + $v_result = 1; |
|
3638 | 3638 | |
3639 | 3639 | // ----- Read the file header |
3640 | 3640 | if (($v_result = $this->privReadFileHeader($v_header)) != 1) |
@@ -3652,7 +3652,7 @@ discard block |
||
3652 | 3652 | // ----- Look for all path to remove |
3653 | 3653 | if ($p_remove_all_path == true) { |
3654 | 3654 | // ----- Look for folder entry that not need to be extracted |
3655 | - if (($p_entry['external']&0x00000010)==0x00000010) { |
|
3655 | + if (($p_entry['external'] & 0x00000010) == 0x00000010) { |
|
3656 | 3656 | |
3657 | 3657 | $p_entry['status'] = "filtered"; |
3658 | 3658 | |
@@ -3754,8 +3754,8 @@ discard block |
||
3754 | 3754 | // ----- Look for PCLZIP_OPT_STOP_ON_ERROR |
3755 | 3755 | // For historical reason first PclZip implementation does not stop |
3756 | 3756 | // when this kind of error occurs. |
3757 | - if ( (isset($p_options[PCLZIP_OPT_STOP_ON_ERROR])) |
|
3758 | - && ($p_options[PCLZIP_OPT_STOP_ON_ERROR]===true)) { |
|
3757 | + if ((isset($p_options[PCLZIP_OPT_STOP_ON_ERROR])) |
|
3758 | + && ($p_options[PCLZIP_OPT_STOP_ON_ERROR] === true)) { |
|
3759 | 3759 | |
3760 | 3760 | PclZip::privErrorLog(PCLZIP_ERR_ALREADY_A_DIRECTORY, |
3761 | 3761 | "Filename '".$p_entry['filename']."' is " |
@@ -3774,8 +3774,8 @@ discard block |
||
3774 | 3774 | // ----- Look for PCLZIP_OPT_STOP_ON_ERROR |
3775 | 3775 | // For historical reason first PclZip implementation does not stop |
3776 | 3776 | // when this kind of error occurs. |
3777 | - if ( (isset($p_options[PCLZIP_OPT_STOP_ON_ERROR])) |
|
3778 | - && ($p_options[PCLZIP_OPT_STOP_ON_ERROR]===true)) { |
|
3777 | + if ((isset($p_options[PCLZIP_OPT_STOP_ON_ERROR])) |
|
3778 | + && ($p_options[PCLZIP_OPT_STOP_ON_ERROR] === true)) { |
|
3779 | 3779 | |
3780 | 3780 | PclZip::privErrorLog(PCLZIP_ERR_WRITE_OPEN_FAIL, |
3781 | 3781 | "Filename '".$p_entry['filename']."' exists " |
@@ -3789,8 +3789,8 @@ discard block |
||
3789 | 3789 | else if (filemtime($p_entry['filename']) > $p_entry['mtime']) |
3790 | 3790 | { |
3791 | 3791 | // ----- Change the file status |
3792 | - if ( (isset($p_options[PCLZIP_OPT_REPLACE_NEWER])) |
|
3793 | - && ($p_options[PCLZIP_OPT_REPLACE_NEWER]===true)) { |
|
3792 | + if ((isset($p_options[PCLZIP_OPT_REPLACE_NEWER])) |
|
3793 | + && ($p_options[PCLZIP_OPT_REPLACE_NEWER] === true)) { |
|
3794 | 3794 | } |
3795 | 3795 | else { |
3796 | 3796 | $p_entry['status'] = "newer_exist"; |
@@ -3798,8 +3798,8 @@ discard block |
||
3798 | 3798 | // ----- Look for PCLZIP_OPT_STOP_ON_ERROR |
3799 | 3799 | // For historical reason first PclZip implementation does not stop |
3800 | 3800 | // when this kind of error occurs. |
3801 | - if ( (isset($p_options[PCLZIP_OPT_STOP_ON_ERROR])) |
|
3802 | - && ($p_options[PCLZIP_OPT_STOP_ON_ERROR]===true)) { |
|
3801 | + if ((isset($p_options[PCLZIP_OPT_STOP_ON_ERROR])) |
|
3802 | + && ($p_options[PCLZIP_OPT_STOP_ON_ERROR] === true)) { |
|
3803 | 3803 | |
3804 | 3804 | PclZip::privErrorLog(PCLZIP_ERR_WRITE_OPEN_FAIL, |
3805 | 3805 | "Newer version of '".$p_entry['filename']."' exists " |
@@ -3815,14 +3815,14 @@ discard block |
||
3815 | 3815 | |
3816 | 3816 | // ----- Check the directory availability and create it if necessary |
3817 | 3817 | else { |
3818 | - if ((($p_entry['external']&0x00000010)==0x00000010) || (substr($p_entry['filename'], -1) == '/')) |
|
3818 | + if ((($p_entry['external'] & 0x00000010) == 0x00000010) || (substr($p_entry['filename'], -1) == '/')) |
|
3819 | 3819 | $v_dir_to_check = $p_entry['filename']; |
3820 | 3820 | else if (!strstr($p_entry['filename'], "/")) |
3821 | 3821 | $v_dir_to_check = ""; |
3822 | 3822 | else |
3823 | 3823 | $v_dir_to_check = dirname($p_entry['filename']); |
3824 | 3824 | |
3825 | - if (($v_result = $this->privDirCheck($v_dir_to_check, (($p_entry['external']&0x00000010)==0x00000010))) != 1) { |
|
3825 | + if (($v_result = $this->privDirCheck($v_dir_to_check, (($p_entry['external'] & 0x00000010) == 0x00000010))) != 1) { |
|
3826 | 3826 | |
3827 | 3827 | // ----- Change the file status |
3828 | 3828 | $p_entry['status'] = "path_creation_fail"; |
@@ -3838,7 +3838,7 @@ discard block |
||
3838 | 3838 | if ($p_entry['status'] == 'ok') { |
3839 | 3839 | |
3840 | 3840 | // ----- Do the extraction (if not a folder) |
3841 | - if (!(($p_entry['external']&0x00000010)==0x00000010)) |
|
3841 | + if (!(($p_entry['external'] & 0x00000010) == 0x00000010)) |
|
3842 | 3842 | { |
3843 | 3843 | // ----- Look for not compressed file |
3844 | 3844 | if ($p_entry['compression'] == 0) { |
@@ -3887,10 +3887,10 @@ discard block |
||
3887 | 3887 | |
3888 | 3888 | |
3889 | 3889 | // ----- Look for using temporary file to unzip |
3890 | - if ( (!isset($p_options[PCLZIP_OPT_TEMP_FILE_OFF])) |
|
3890 | + if ((!isset($p_options[PCLZIP_OPT_TEMP_FILE_OFF])) |
|
3891 | 3891 | && (isset($p_options[PCLZIP_OPT_TEMP_FILE_ON]) |
3892 | 3892 | || (isset($p_options[PCLZIP_OPT_TEMP_FILE_THRESHOLD]) |
3893 | - && ($p_options[PCLZIP_OPT_TEMP_FILE_THRESHOLD] <= $p_entry['size'])) ) ) { |
|
3893 | + && ($p_options[PCLZIP_OPT_TEMP_FILE_THRESHOLD] <= $p_entry['size'])))) { |
|
3894 | 3894 | $v_result = $this->privExtractFileUsingTempFile($p_entry, $p_options); |
3895 | 3895 | if ($v_result < PCLZIP_ERR_NO_ERROR) { |
3896 | 3896 | return $v_result; |
@@ -3985,7 +3985,7 @@ discard block |
||
3985 | 3985 | // -------------------------------------------------------------------------------- |
3986 | 3986 | function privExtractFileUsingTempFile(&$p_entry, &$p_options) |
3987 | 3987 | { |
3988 | - $v_result=1; |
|
3988 | + $v_result = 1; |
|
3989 | 3989 | |
3990 | 3990 | // ----- Creates a temporary file |
3991 | 3991 | $v_gzip_temp_name = PCLZIP_TEMPORARY_DIR.uniqid('pclzip-').'.gz'; |
@@ -4061,7 +4061,7 @@ discard block |
||
4061 | 4061 | // -------------------------------------------------------------------------------- |
4062 | 4062 | function privExtractFileInOutput(&$p_entry, &$p_options) |
4063 | 4063 | { |
4064 | - $v_result=1; |
|
4064 | + $v_result = 1; |
|
4065 | 4065 | |
4066 | 4066 | // ----- Read the file header |
4067 | 4067 | if (($v_result = $this->privReadFileHeader($v_header)) != 1) { |
@@ -4110,7 +4110,7 @@ discard block |
||
4110 | 4110 | if ($p_entry['status'] == 'ok') { |
4111 | 4111 | |
4112 | 4112 | // ----- Do the extraction (if not a folder) |
4113 | - if (!(($p_entry['external']&0x00000010)==0x00000010)) { |
|
4113 | + if (!(($p_entry['external'] & 0x00000010) == 0x00000010)) { |
|
4114 | 4114 | // ----- Look for not compressed file |
4115 | 4115 | if ($p_entry['compressed_size'] == $p_entry['size']) { |
4116 | 4116 | |
@@ -4173,7 +4173,7 @@ discard block |
||
4173 | 4173 | // -------------------------------------------------------------------------------- |
4174 | 4174 | function privExtractFileAsString(&$p_entry, &$p_string, &$p_options) |
4175 | 4175 | { |
4176 | - $v_result=1; |
|
4176 | + $v_result = 1; |
|
4177 | 4177 | |
4178 | 4178 | // ----- Read the file header |
4179 | 4179 | $v_header = array(); |
@@ -4224,7 +4224,7 @@ discard block |
||
4224 | 4224 | if ($p_entry['status'] == 'ok') { |
4225 | 4225 | |
4226 | 4226 | // ----- Do the extraction (if not a folder) |
4227 | - if (!(($p_entry['external']&0x00000010)==0x00000010)) { |
|
4227 | + if (!(($p_entry['external'] & 0x00000010) == 0x00000010)) { |
|
4228 | 4228 | // ----- Look for not compressed file |
4229 | 4229 | // if ($p_entry['compressed_size'] == $p_entry['size']) |
4230 | 4230 | if ($p_entry['compression'] == 0) { |
@@ -4296,7 +4296,7 @@ discard block |
||
4296 | 4296 | // -------------------------------------------------------------------------------- |
4297 | 4297 | function privReadFileHeader(&$p_header) |
4298 | 4298 | { |
4299 | - $v_result=1; |
|
4299 | + $v_result = 1; |
|
4300 | 4300 | |
4301 | 4301 | // ----- Read the 4 bytes signature |
4302 | 4302 | $v_binary_data = @fread($this->zip_fd, 4); |
@@ -4360,7 +4360,7 @@ discard block |
||
4360 | 4360 | // ----- Extract time |
4361 | 4361 | $v_hour = ($p_header['mtime'] & 0xF800) >> 11; |
4362 | 4362 | $v_minute = ($p_header['mtime'] & 0x07E0) >> 5; |
4363 | - $v_seconde = ($p_header['mtime'] & 0x001F)*2; |
|
4363 | + $v_seconde = ($p_header['mtime'] & 0x001F) * 2; |
|
4364 | 4364 | |
4365 | 4365 | // ----- Extract date |
4366 | 4366 | $v_year = (($p_header['mdate'] & 0xFE00) >> 9) + 1980; |
@@ -4399,7 +4399,7 @@ discard block |
||
4399 | 4399 | // -------------------------------------------------------------------------------- |
4400 | 4400 | function privReadCentralFileHeader(&$p_header) |
4401 | 4401 | { |
4402 | - $v_result=1; |
|
4402 | + $v_result = 1; |
|
4403 | 4403 | |
4404 | 4404 | // ----- Read the 4 bytes signature |
4405 | 4405 | $v_binary_data = @fread($this->zip_fd, 4); |
@@ -4470,7 +4470,7 @@ discard block |
||
4470 | 4470 | // ----- Extract time |
4471 | 4471 | $v_hour = ($p_header['mtime'] & 0xF800) >> 11; |
4472 | 4472 | $v_minute = ($p_header['mtime'] & 0x07E0) >> 5; |
4473 | - $v_seconde = ($p_header['mtime'] & 0x001F)*2; |
|
4473 | + $v_seconde = ($p_header['mtime'] & 0x001F) * 2; |
|
4474 | 4474 | |
4475 | 4475 | // ----- Extract date |
4476 | 4476 | $v_year = (($p_header['mdate'] & 0xFE00) >> 9) + 1980; |
@@ -4514,7 +4514,7 @@ discard block |
||
4514 | 4514 | // -------------------------------------------------------------------------------- |
4515 | 4515 | function privCheckFileHeaders(&$p_local_header, &$p_central_header) |
4516 | 4516 | { |
4517 | - $v_result=1; |
|
4517 | + $v_result = 1; |
|
4518 | 4518 | |
4519 | 4519 | // ----- Check the static values |
4520 | 4520 | // TBC |
@@ -4551,7 +4551,7 @@ discard block |
||
4551 | 4551 | // -------------------------------------------------------------------------------- |
4552 | 4552 | function privReadEndCentralDir(&$p_central_dir) |
4553 | 4553 | { |
4554 | - $v_result=1; |
|
4554 | + $v_result = 1; |
|
4555 | 4555 | |
4556 | 4556 | // ----- Go to the end of the zip file |
4557 | 4557 | $v_size = filesize($this->zipname); |
@@ -4569,8 +4569,8 @@ discard block |
||
4569 | 4569 | // in this case the end of central dir is at 22 bytes of the file end |
4570 | 4570 | $v_found = 0; |
4571 | 4571 | if ($v_size > 26) { |
4572 | - @fseek($this->zip_fd, $v_size-22); |
|
4573 | - if (($v_pos = @ftell($this->zip_fd)) != ($v_size-22)) |
|
4572 | + @fseek($this->zip_fd, $v_size - 22); |
|
4573 | + if (($v_pos = @ftell($this->zip_fd)) != ($v_size - 22)) |
|
4574 | 4574 | { |
4575 | 4575 | // ----- Error log |
4576 | 4576 | PclZip::privErrorLog(PCLZIP_ERR_BAD_FORMAT, 'Unable to seek back to the middle of the archive \''.$this->zipname.'\''); |
@@ -4596,8 +4596,8 @@ discard block |
||
4596 | 4596 | $v_maximum_size = 65557; // 0xFFFF + 22; |
4597 | 4597 | if ($v_maximum_size > $v_size) |
4598 | 4598 | $v_maximum_size = $v_size; |
4599 | - @fseek($this->zip_fd, $v_size-$v_maximum_size); |
|
4600 | - if (@ftell($this->zip_fd) != ($v_size-$v_maximum_size)) |
|
4599 | + @fseek($this->zip_fd, $v_size - $v_maximum_size); |
|
4600 | + if (@ftell($this->zip_fd) != ($v_size - $v_maximum_size)) |
|
4601 | 4601 | { |
4602 | 4602 | // ----- Error log |
4603 | 4603 | PclZip::privErrorLog(PCLZIP_ERR_BAD_FORMAT, 'Unable to seek back to the middle of the archive \''.$this->zipname.'\''); |
@@ -4618,7 +4618,7 @@ discard block |
||
4618 | 4618 | //$v_bytes = ($v_bytes << 8) | Ord($v_byte); |
4619 | 4619 | // Note we mask the old value down such that once shifted we can never end up with more than a 32bit number |
4620 | 4620 | // Otherwise on systems where we have 64bit integers the check below for the magic number will fail. |
4621 | - $v_bytes = ( ($v_bytes & 0xFFFFFF) << 8) | Ord($v_byte); |
|
4621 | + $v_bytes = (($v_bytes & 0xFFFFFF) << 8) | Ord($v_byte); |
|
4622 | 4622 | |
4623 | 4623 | // ----- Compare the bytes |
4624 | 4624 | if ($v_bytes == 0x504b0506) |
@@ -4708,11 +4708,11 @@ discard block |
||
4708 | 4708 | // -------------------------------------------------------------------------------- |
4709 | 4709 | function privDeleteByRule(&$p_result_list, &$p_options) |
4710 | 4710 | { |
4711 | - $v_result=1; |
|
4711 | + $v_result = 1; |
|
4712 | 4712 | $v_list_detail = array(); |
4713 | 4713 | |
4714 | 4714 | // ----- Open the zip file |
4715 | - if (($v_result=$this->privOpenFd('rb')) != 1) |
|
4715 | + if (($v_result = $this->privOpenFd('rb')) != 1) |
|
4716 | 4716 | { |
4717 | 4717 | // ----- Return |
4718 | 4718 | return $v_result; |
@@ -4748,7 +4748,7 @@ discard block |
||
4748 | 4748 | // ----- Read each entry |
4749 | 4749 | $v_header_list = array(); |
4750 | 4750 | $j_start = 0; |
4751 | - for ($i=0, $v_nb_extracted=0; $i<$v_central_dir['entries']; $i++) |
|
4751 | + for ($i = 0, $v_nb_extracted = 0; $i < $v_central_dir['entries']; $i++) |
|
4752 | 4752 | { |
4753 | 4753 | |
4754 | 4754 | // ----- Read the file header |
@@ -4769,21 +4769,21 @@ discard block |
||
4769 | 4769 | $v_found = false; |
4770 | 4770 | |
4771 | 4771 | // ----- Look for extract by name rule |
4772 | - if ( (isset($p_options[PCLZIP_OPT_BY_NAME])) |
|
4772 | + if ((isset($p_options[PCLZIP_OPT_BY_NAME])) |
|
4773 | 4773 | && ($p_options[PCLZIP_OPT_BY_NAME] != 0)) { |
4774 | 4774 | |
4775 | 4775 | // ----- Look if the filename is in the list |
4776 | - for ($j=0; ($j<sizeof($p_options[PCLZIP_OPT_BY_NAME])) && (!$v_found); $j++) { |
|
4776 | + for ($j = 0; ($j < sizeof($p_options[PCLZIP_OPT_BY_NAME])) && (!$v_found); $j++) { |
|
4777 | 4777 | |
4778 | 4778 | // ----- Look for a directory |
4779 | 4779 | if (substr($p_options[PCLZIP_OPT_BY_NAME][$j], -1) == "/") { |
4780 | 4780 | |
4781 | 4781 | // ----- Look if the directory is in the filename path |
4782 | - if ( (strlen($v_header_list[$v_nb_extracted]['stored_filename']) > strlen($p_options[PCLZIP_OPT_BY_NAME][$j])) |
|
4782 | + if ((strlen($v_header_list[$v_nb_extracted]['stored_filename']) > strlen($p_options[PCLZIP_OPT_BY_NAME][$j])) |
|
4783 | 4783 | && (substr($v_header_list[$v_nb_extracted]['stored_filename'], 0, strlen($p_options[PCLZIP_OPT_BY_NAME][$j])) == $p_options[PCLZIP_OPT_BY_NAME][$j])) { |
4784 | 4784 | $v_found = true; |
4785 | 4785 | } |
4786 | - elseif ( (($v_header_list[$v_nb_extracted]['external']&0x00000010)==0x00000010) /* Indicates a folder */ |
|
4786 | + elseif ((($v_header_list[$v_nb_extracted]['external'] & 0x00000010) == 0x00000010) /* Indicates a folder */ |
|
4787 | 4787 | && ($v_header_list[$v_nb_extracted]['stored_filename'].'/' == $p_options[PCLZIP_OPT_BY_NAME][$j])) { |
4788 | 4788 | $v_found = true; |
4789 | 4789 | } |
@@ -4808,7 +4808,7 @@ discard block |
||
4808 | 4808 | */ |
4809 | 4809 | |
4810 | 4810 | // ----- Look for extract by preg rule |
4811 | - else if ( (isset($p_options[PCLZIP_OPT_BY_PREG])) |
|
4811 | + else if ((isset($p_options[PCLZIP_OPT_BY_PREG])) |
|
4812 | 4812 | && ($p_options[PCLZIP_OPT_BY_PREG] != "")) { |
4813 | 4813 | |
4814 | 4814 | if (preg_match($p_options[PCLZIP_OPT_BY_PREG], $v_header_list[$v_nb_extracted]['stored_filename'])) { |
@@ -4817,20 +4817,20 @@ discard block |
||
4817 | 4817 | } |
4818 | 4818 | |
4819 | 4819 | // ----- Look for extract by index rule |
4820 | - else if ( (isset($p_options[PCLZIP_OPT_BY_INDEX])) |
|
4820 | + else if ((isset($p_options[PCLZIP_OPT_BY_INDEX])) |
|
4821 | 4821 | && ($p_options[PCLZIP_OPT_BY_INDEX] != 0)) { |
4822 | 4822 | |
4823 | 4823 | // ----- Look if the index is in the list |
4824 | - for ($j=$j_start; ($j<sizeof($p_options[PCLZIP_OPT_BY_INDEX])) && (!$v_found); $j++) { |
|
4824 | + for ($j = $j_start; ($j < sizeof($p_options[PCLZIP_OPT_BY_INDEX])) && (!$v_found); $j++) { |
|
4825 | 4825 | |
4826 | - if (($i>=$p_options[PCLZIP_OPT_BY_INDEX][$j]['start']) && ($i<=$p_options[PCLZIP_OPT_BY_INDEX][$j]['end'])) { |
|
4826 | + if (($i >= $p_options[PCLZIP_OPT_BY_INDEX][$j]['start']) && ($i <= $p_options[PCLZIP_OPT_BY_INDEX][$j]['end'])) { |
|
4827 | 4827 | $v_found = true; |
4828 | 4828 | } |
4829 | - if ($i>=$p_options[PCLZIP_OPT_BY_INDEX][$j]['end']) { |
|
4830 | - $j_start = $j+1; |
|
4829 | + if ($i >= $p_options[PCLZIP_OPT_BY_INDEX][$j]['end']) { |
|
4830 | + $j_start = $j + 1; |
|
4831 | 4831 | } |
4832 | 4832 | |
4833 | - if ($p_options[PCLZIP_OPT_BY_INDEX][$j]['start']>$i) { |
|
4833 | + if ($p_options[PCLZIP_OPT_BY_INDEX][$j]['start'] > $i) { |
|
4834 | 4834 | break; |
4835 | 4835 | } |
4836 | 4836 | } |
@@ -4868,11 +4868,11 @@ discard block |
||
4868 | 4868 | } |
4869 | 4869 | |
4870 | 4870 | // ----- Look which file need to be kept |
4871 | - for ($i=0; $i<sizeof($v_header_list); $i++) { |
|
4871 | + for ($i = 0; $i < sizeof($v_header_list); $i++) { |
|
4872 | 4872 | |
4873 | 4873 | // ----- Calculate the position of the header |
4874 | 4874 | @rewind($this->zip_fd); |
4875 | - if (@fseek($this->zip_fd, $v_header_list[$i]['offset'])) { |
|
4875 | + if (@fseek($this->zip_fd, $v_header_list[$i]['offset'])) { |
|
4876 | 4876 | // ----- Close the zip file |
4877 | 4877 | $this->privCloseFd(); |
4878 | 4878 | $v_temp_zip->privCloseFd(); |
@@ -4931,7 +4931,7 @@ discard block |
||
4931 | 4931 | $v_offset = @ftell($v_temp_zip->zip_fd); |
4932 | 4932 | |
4933 | 4933 | // ----- Re-Create the Central Dir files header |
4934 | - for ($i=0; $i<sizeof($v_header_list); $i++) { |
|
4934 | + for ($i = 0; $i < sizeof($v_header_list); $i++) { |
|
4935 | 4935 | // ----- Create the file header |
4936 | 4936 | if (($v_result = $v_temp_zip->privWriteCentralFileHeader($v_header_list[$i])) != 1) { |
4937 | 4937 | $v_temp_zip->privCloseFd(); |
@@ -4954,7 +4954,7 @@ discard block |
||
4954 | 4954 | } |
4955 | 4955 | |
4956 | 4956 | // ----- Calculate the size of the central header |
4957 | - $v_size = @ftell($v_temp_zip->zip_fd)-$v_offset; |
|
4957 | + $v_size = @ftell($v_temp_zip->zip_fd) - $v_offset; |
|
4958 | 4958 | |
4959 | 4959 | // ----- Create the central dir footer |
4960 | 4960 | if (($v_result = $v_temp_zip->privWriteCentralHeader(sizeof($v_header_list), $v_size, $v_offset, $v_comment)) != 1) { |
@@ -5016,15 +5016,15 @@ discard block |
||
5016 | 5016 | // 1 : OK |
5017 | 5017 | // -1 : Unable to create directory |
5018 | 5018 | // -------------------------------------------------------------------------------- |
5019 | - function privDirCheck($p_dir, $p_is_dir=false) |
|
5019 | + function privDirCheck($p_dir, $p_is_dir = false) |
|
5020 | 5020 | { |
5021 | 5021 | $v_result = 1; |
5022 | 5022 | |
5023 | 5023 | |
5024 | 5024 | // ----- Remove the final '/' |
5025 | - if (($p_is_dir) && (substr($p_dir, -1)=='/')) |
|
5025 | + if (($p_is_dir) && (substr($p_dir, -1) == '/')) |
|
5026 | 5026 | { |
5027 | - $p_dir = substr($p_dir, 0, strlen($p_dir)-1); |
|
5027 | + $p_dir = substr($p_dir, 0, strlen($p_dir) - 1); |
|
5028 | 5028 | } |
5029 | 5029 | |
5030 | 5030 | // ----- Check the directory availability |
@@ -5073,7 +5073,7 @@ discard block |
||
5073 | 5073 | // -------------------------------------------------------------------------------- |
5074 | 5074 | function privMerge(&$p_archive_to_add) |
5075 | 5075 | { |
5076 | - $v_result=1; |
|
5076 | + $v_result = 1; |
|
5077 | 5077 | |
5078 | 5078 | // ----- Look if the archive_to_add exists |
5079 | 5079 | if (!is_file($p_archive_to_add->zipname)) |
@@ -5098,7 +5098,7 @@ discard block |
||
5098 | 5098 | } |
5099 | 5099 | |
5100 | 5100 | // ----- Open the zip file |
5101 | - if (($v_result=$this->privOpenFd('rb')) != 1) |
|
5101 | + if (($v_result = $this->privOpenFd('rb')) != 1) |
|
5102 | 5102 | { |
5103 | 5103 | // ----- Return |
5104 | 5104 | return $v_result; |
@@ -5116,7 +5116,7 @@ discard block |
||
5116 | 5116 | @rewind($this->zip_fd); |
5117 | 5117 | |
5118 | 5118 | // ----- Open the archive_to_add file |
5119 | - if (($v_result=$p_archive_to_add->privOpenFd('rb')) != 1) |
|
5119 | + if (($v_result = $p_archive_to_add->privOpenFd('rb')) != 1) |
|
5120 | 5120 | { |
5121 | 5121 | $this->privCloseFd(); |
5122 | 5122 | |
@@ -5200,7 +5200,7 @@ discard block |
||
5200 | 5200 | $v_comment = $v_central_dir['comment'].' '.$v_central_dir_to_add['comment']; |
5201 | 5201 | |
5202 | 5202 | // ----- Calculate the size of the (new) central header |
5203 | - $v_size = @ftell($v_zip_temp_fd)-$v_offset; |
|
5203 | + $v_size = @ftell($v_zip_temp_fd) - $v_offset; |
|
5204 | 5204 | |
5205 | 5205 | // ----- Swap the file descriptor |
5206 | 5206 | // Here is a trick : I swap the temporary fd with the zip fd, in order to use |
@@ -5210,7 +5210,7 @@ discard block |
||
5210 | 5210 | $v_zip_temp_fd = $v_swap; |
5211 | 5211 | |
5212 | 5212 | // ----- Create the central dir footer |
5213 | - if (($v_result = $this->privWriteCentralHeader($v_central_dir['entries']+$v_central_dir_to_add['entries'], $v_size, $v_offset, $v_comment)) != 1) |
|
5213 | + if (($v_result = $this->privWriteCentralHeader($v_central_dir['entries'] + $v_central_dir_to_add['entries'], $v_size, $v_offset, $v_comment)) != 1) |
|
5214 | 5214 | { |
5215 | 5215 | $this->privCloseFd(); |
5216 | 5216 | $p_archive_to_add->privCloseFd(); |
@@ -5258,7 +5258,7 @@ discard block |
||
5258 | 5258 | // -------------------------------------------------------------------------------- |
5259 | 5259 | function privDuplicate($p_archive_filename) |
5260 | 5260 | { |
5261 | - $v_result=1; |
|
5261 | + $v_result = 1; |
|
5262 | 5262 | |
5263 | 5263 | // ----- Look if the $p_archive_filename exists |
5264 | 5264 | if (!is_file($p_archive_filename)) |
@@ -5272,7 +5272,7 @@ discard block |
||
5272 | 5272 | } |
5273 | 5273 | |
5274 | 5274 | // ----- Open the zip file |
5275 | - if (($v_result=$this->privOpenFd('wb')) != 1) |
|
5275 | + if (($v_result = $this->privOpenFd('wb')) != 1) |
|
5276 | 5276 | { |
5277 | 5277 | // ----- Return |
5278 | 5278 | return $v_result; |
@@ -5316,7 +5316,7 @@ discard block |
||
5316 | 5316 | // Description : |
5317 | 5317 | // Parameters : |
5318 | 5318 | // -------------------------------------------------------------------------------- |
5319 | - function privErrorLog($p_error_code=0, $p_error_string='') |
|
5319 | + function privErrorLog($p_error_code = 0, $p_error_string = '') |
|
5320 | 5320 | { |
5321 | 5321 | if (PCLZIP_ERROR_EXTERNAL == 1) { |
5322 | 5322 | PclError($p_error_code, $p_error_string); |
@@ -5353,10 +5353,10 @@ discard block |
||
5353 | 5353 | // -------------------------------------------------------------------------------- |
5354 | 5354 | function privDisableMagicQuotes() |
5355 | 5355 | { |
5356 | - $v_result=1; |
|
5356 | + $v_result = 1; |
|
5357 | 5357 | |
5358 | 5358 | // ----- Look if function exists |
5359 | - if ( (!function_exists("get_magic_quotes_runtime")) |
|
5359 | + if ((!function_exists("get_magic_quotes_runtime")) |
|
5360 | 5360 | || (!function_exists("set_magic_quotes_runtime"))) { |
5361 | 5361 | return $v_result; |
5362 | 5362 | } |
@@ -5387,10 +5387,10 @@ discard block |
||
5387 | 5387 | // -------------------------------------------------------------------------------- |
5388 | 5388 | function privSwapBackMagicQuotes() |
5389 | 5389 | { |
5390 | - $v_result=1; |
|
5390 | + $v_result = 1; |
|
5391 | 5391 | |
5392 | 5392 | // ----- Look if function exists |
5393 | - if ( (!function_exists("get_magic_quotes_runtime")) |
|
5393 | + if ((!function_exists("get_magic_quotes_runtime")) |
|
5394 | 5394 | || (!function_exists("set_magic_quotes_runtime"))) { |
5395 | 5395 | return $v_result; |
5396 | 5396 | } |
@@ -5431,7 +5431,7 @@ discard block |
||
5431 | 5431 | |
5432 | 5432 | // ----- Study directories from last to first |
5433 | 5433 | $v_skip = 0; |
5434 | - for ($i=sizeof($v_list)-1; $i>=0; $i--) { |
|
5434 | + for ($i = sizeof($v_list) - 1; $i >= 0; $i--) { |
|
5435 | 5435 | // ----- Look for current path |
5436 | 5436 | if ($v_list[$i] == ".") { |
5437 | 5437 | // ----- Ignore this directory |
@@ -5452,7 +5452,7 @@ discard block |
||
5452 | 5452 | } |
5453 | 5453 | } |
5454 | 5454 | // ----- Last '/' i.e. indicates a directory |
5455 | - else if ($i == (sizeof($v_list)-1)) { |
|
5455 | + else if ($i == (sizeof($v_list) - 1)) { |
|
5456 | 5456 | $v_result = $v_list[$i]; |
5457 | 5457 | } |
5458 | 5458 | // ----- Double '/' inside the path |
@@ -5467,7 +5467,7 @@ discard block |
||
5467 | 5467 | $v_skip--; |
5468 | 5468 | } |
5469 | 5469 | else { |
5470 | - $v_result = $v_list[$i].($i!=(sizeof($v_list)-1)?"/".$v_result:""); |
|
5470 | + $v_result = $v_list[$i].($i != (sizeof($v_list) - 1) ? "/".$v_result : ""); |
|
5471 | 5471 | } |
5472 | 5472 | } |
5473 | 5473 | } |
@@ -5506,12 +5506,12 @@ discard block |
||
5506 | 5506 | $v_result = 1; |
5507 | 5507 | |
5508 | 5508 | // ----- Look for path beginning by ./ |
5509 | - if ( ($p_dir == '.') |
|
5510 | - || ((strlen($p_dir) >=2) && (substr($p_dir, 0, 2) == './'))) { |
|
5509 | + if (($p_dir == '.') |
|
5510 | + || ((strlen($p_dir) >= 2) && (substr($p_dir, 0, 2) == './'))) { |
|
5511 | 5511 | $p_dir = PclZipUtilTranslateWinPath(getcwd(), FALSE).'/'.substr($p_dir, 1); |
5512 | 5512 | } |
5513 | - if ( ($p_path == '.') |
|
5514 | - || ((strlen($p_path) >=2) && (substr($p_path, 0, 2) == './'))) { |
|
5513 | + if (($p_path == '.') |
|
5514 | + || ((strlen($p_path) >= 2) && (substr($p_path, 0, 2) == './'))) { |
|
5515 | 5515 | $p_path = PclZipUtilTranslateWinPath(getcwd(), FALSE).'/'.substr($p_path, 1); |
5516 | 5516 | } |
5517 | 5517 | |
@@ -5537,7 +5537,7 @@ discard block |
||
5537 | 5537 | } |
5538 | 5538 | |
5539 | 5539 | // ----- Compare the items |
5540 | - if (($v_list_dir[$i] != $v_list_path[$j]) && ($v_list_dir[$i] != '') && ( $v_list_path[$j] != '')) { |
|
5540 | + if (($v_list_dir[$i] != $v_list_path[$j]) && ($v_list_dir[$i] != '') && ($v_list_path[$j] != '')) { |
|
5541 | 5541 | $v_result = 0; |
5542 | 5542 | } |
5543 | 5543 | |
@@ -5578,11 +5578,11 @@ discard block |
||
5578 | 5578 | // 3 : src & dest gzip |
5579 | 5579 | // Return Values : |
5580 | 5580 | // -------------------------------------------------------------------------------- |
5581 | - function PclZipUtilCopyBlock($p_src, $p_dest, $p_size, $p_mode=0) |
|
5581 | + function PclZipUtilCopyBlock($p_src, $p_dest, $p_size, $p_mode = 0) |
|
5582 | 5582 | { |
5583 | 5583 | $v_result = 1; |
5584 | 5584 | |
5585 | - if ($p_mode==0) |
|
5585 | + if ($p_mode == 0) |
|
5586 | 5586 | { |
5587 | 5587 | while ($p_size != 0) |
5588 | 5588 | { |
@@ -5592,7 +5592,7 @@ discard block |
||
5592 | 5592 | $p_size -= $v_read_size; |
5593 | 5593 | } |
5594 | 5594 | } |
5595 | - else if ($p_mode==1) |
|
5595 | + else if ($p_mode == 1) |
|
5596 | 5596 | { |
5597 | 5597 | while ($p_size != 0) |
5598 | 5598 | { |
@@ -5602,7 +5602,7 @@ discard block |
||
5602 | 5602 | $p_size -= $v_read_size; |
5603 | 5603 | } |
5604 | 5604 | } |
5605 | - else if ($p_mode==2) |
|
5605 | + else if ($p_mode == 2) |
|
5606 | 5606 | { |
5607 | 5607 | while ($p_size != 0) |
5608 | 5608 | { |
@@ -5612,7 +5612,7 @@ discard block |
||
5612 | 5612 | $p_size -= $v_read_size; |
5613 | 5613 | } |
5614 | 5614 | } |
5615 | - else if ($p_mode==3) |
|
5615 | + else if ($p_mode == 3) |
|
5616 | 5616 | { |
5617 | 5617 | while ($p_size != 0) |
5618 | 5618 | { |
@@ -5676,7 +5676,7 @@ discard block |
||
5676 | 5676 | $v_list = get_defined_constants(); |
5677 | 5677 | for (reset($v_list); $v_key = key($v_list); next($v_list)) { |
5678 | 5678 | $v_prefix = substr($v_key, 0, 10); |
5679 | - if (( ($v_prefix == 'PCLZIP_OPT') |
|
5679 | + if ((($v_prefix == 'PCLZIP_OPT') |
|
5680 | 5680 | || ($v_prefix == 'PCLZIP_CB_') |
5681 | 5681 | || ($v_prefix == 'PCLZIP_ATT')) |
5682 | 5682 | && ($v_list[$v_key] == $p_option)) { |
@@ -5701,15 +5701,15 @@ discard block |
||
5701 | 5701 | // Return Values : |
5702 | 5702 | // The path translated. |
5703 | 5703 | // -------------------------------------------------------------------------------- |
5704 | - function PclZipUtilTranslateWinPath($p_path, $p_remove_disk_letter=true) |
|
5704 | + function PclZipUtilTranslateWinPath($p_path, $p_remove_disk_letter = true) |
|
5705 | 5705 | { |
5706 | 5706 | if (stristr(php_uname(), 'windows')) { |
5707 | 5707 | // ----- Look for potential disk letter |
5708 | 5708 | if (($p_remove_disk_letter) && (($v_position = strpos($p_path, ':')) != false)) { |
5709 | - $p_path = substr($p_path, $v_position+1); |
|
5709 | + $p_path = substr($p_path, $v_position + 1); |
|
5710 | 5710 | } |
5711 | 5711 | // ----- Change potential windows directory separator |
5712 | - if ((strpos($p_path, '\\') > 0) || (substr($p_path, 0,1) == '\\')) { |
|
5712 | + if ((strpos($p_path, '\\') > 0) || (substr($p_path, 0, 1) == '\\')) { |
|
5713 | 5713 | $p_path = strtr($p_path, '\\', '/'); |
5714 | 5714 | } |
5715 | 5715 | } |
@@ -344,8 +344,7 @@ discard block |
||
344 | 344 | // ----- Look for the optional second argument |
345 | 345 | if ($v_size == 2) { |
346 | 346 | $v_options[PCLZIP_OPT_REMOVE_PATH] = $v_arg_list[1]; |
347 | - } |
|
348 | - else if ($v_size > 2) { |
|
347 | + } else if ($v_size > 2) { |
|
349 | 348 | PclZip::privErrorLog(PCLZIP_ERR_INVALID_PARAMETER, |
350 | 349 | "Invalid number / type of arguments"); |
351 | 350 | return 0; |
@@ -394,8 +393,7 @@ discard block |
||
394 | 393 | foreach ($v_string_list as $v_string) { |
395 | 394 | if ($v_string != '') { |
396 | 395 | $v_att_list[][PCLZIP_ATT_FILE_NAME] = $v_string; |
397 | - } |
|
398 | - else { |
|
396 | + } else { |
|
399 | 397 | } |
400 | 398 | } |
401 | 399 | } |
@@ -529,8 +527,7 @@ discard block |
||
529 | 527 | // ----- Look for the optional second argument |
530 | 528 | if ($v_size == 2) { |
531 | 529 | $v_options[PCLZIP_OPT_REMOVE_PATH] = $v_arg_list[1]; |
532 | - } |
|
533 | - else if ($v_size > 2) { |
|
530 | + } else if ($v_size > 2) { |
|
534 | 531 | // ----- Error log |
535 | 532 | PclZip::privErrorLog(PCLZIP_ERR_INVALID_PARAMETER, "Invalid number / type of arguments"); |
536 | 533 | |
@@ -806,8 +803,7 @@ discard block |
||
806 | 803 | // ----- Look for the optional second argument |
807 | 804 | if ($v_size == 2) { |
808 | 805 | $v_remove_path = $v_arg_list[1]; |
809 | - } |
|
810 | - else if ($v_size > 2) { |
|
806 | + } else if ($v_size > 2) { |
|
811 | 807 | // ----- Error log |
812 | 808 | PclZip::privErrorLog(PCLZIP_ERR_INVALID_PARAMETER, "Invalid number / type of arguments"); |
813 | 809 | |
@@ -951,8 +947,7 @@ discard block |
||
951 | 947 | } |
952 | 948 | if (!isset($v_options[PCLZIP_OPT_EXTRACT_AS_STRING])) { |
953 | 949 | $v_options[PCLZIP_OPT_EXTRACT_AS_STRING] = FALSE; |
954 | - } |
|
955 | - else { |
|
950 | + } else { |
|
956 | 951 | } |
957 | 952 | } |
958 | 953 | |
@@ -967,8 +962,7 @@ discard block |
||
967 | 962 | // ----- Look for the optional second argument |
968 | 963 | if ($v_size == 2) { |
969 | 964 | $v_remove_path = $v_arg_list[1]; |
970 | - } |
|
971 | - else if ($v_size > 2) { |
|
965 | + } else if ($v_size > 2) { |
|
972 | 966 | // ----- Error log |
973 | 967 | PclZip::privErrorLog(PCLZIP_ERR_INVALID_PARAMETER, "Invalid number / type of arguments"); |
974 | 968 | |
@@ -1204,8 +1198,7 @@ discard block |
||
1204 | 1198 | // ----- Error log |
1205 | 1199 | PclZip::privErrorLog(PCLZIP_ERR_MISSING_FILE, "No file with filename '".$p_archive."'"); |
1206 | 1200 | $v_result = PCLZIP_ERR_MISSING_FILE; |
1207 | - } |
|
1208 | - else { |
|
1201 | + } else { |
|
1209 | 1202 | // ----- Duplicate the archive |
1210 | 1203 | $v_result = $this->privDuplicate($p_archive); |
1211 | 1204 | } |
@@ -1293,8 +1286,7 @@ discard block |
||
1293 | 1286 | { |
1294 | 1287 | if (PCLZIP_ERROR_EXTERNAL == 1) { |
1295 | 1288 | return(PclErrorCode()); |
1296 | - } |
|
1297 | - else { |
|
1289 | + } else { |
|
1298 | 1290 | return($this->error_code); |
1299 | 1291 | } |
1300 | 1292 | } |
@@ -1332,15 +1324,13 @@ discard block |
||
1332 | 1324 | |
1333 | 1325 | if (isset($v_name[$this->error_code])) { |
1334 | 1326 | $v_value = $v_name[$this->error_code]; |
1335 | - } |
|
1336 | - else { |
|
1327 | + } else { |
|
1337 | 1328 | $v_value = 'NoName'; |
1338 | 1329 | } |
1339 | 1330 | |
1340 | 1331 | if ($p_with_code) { |
1341 | 1332 | return($v_value.' ('.$this->error_code.')'); |
1342 | - } |
|
1343 | - else { |
|
1333 | + } else { |
|
1344 | 1334 | return($v_value); |
1345 | 1335 | } |
1346 | 1336 | } |
@@ -1355,12 +1345,10 @@ discard block |
||
1355 | 1345 | { |
1356 | 1346 | if (PCLZIP_ERROR_EXTERNAL == 1) { |
1357 | 1347 | return(PclErrorString()); |
1358 | - } |
|
1359 | - else { |
|
1348 | + } else { |
|
1360 | 1349 | if ($p_full) { |
1361 | 1350 | return($this->errorName(true)." : ".$this->error_string); |
1362 | - } |
|
1363 | - else { |
|
1351 | + } else { |
|
1364 | 1352 | return($this->error_string." [code ".$this->error_code."]"); |
1365 | 1353 | } |
1366 | 1354 | } |
@@ -1545,8 +1533,7 @@ discard block |
||
1545 | 1533 | && ($p_options_list[$i+1] != '')) { |
1546 | 1534 | $v_result_list[$p_options_list[$i]] = PclZipUtilTranslateWinPath($p_options_list[$i+1], FALSE); |
1547 | 1535 | $i++; |
1548 | - } |
|
1549 | - else { |
|
1536 | + } else { |
|
1550 | 1537 | } |
1551 | 1538 | break; |
1552 | 1539 | |
@@ -1564,11 +1551,9 @@ discard block |
||
1564 | 1551 | // ----- Get the value |
1565 | 1552 | if (is_string($p_options_list[$i+1])) { |
1566 | 1553 | $v_result_list[$p_options_list[$i]][0] = $p_options_list[$i+1]; |
1567 | - } |
|
1568 | - else if (is_array($p_options_list[$i+1])) { |
|
1554 | + } else if (is_array($p_options_list[$i+1])) { |
|
1569 | 1555 | $v_result_list[$p_options_list[$i]] = $p_options_list[$i+1]; |
1570 | - } |
|
1571 | - else { |
|
1556 | + } else { |
|
1572 | 1557 | // ----- Error log |
1573 | 1558 | PclZip::privErrorLog(PCLZIP_ERR_INVALID_OPTION_VALUE, "Wrong parameter value for option '".PclZipUtilOptionText($p_options_list[$i])."'"); |
1574 | 1559 | |
@@ -1597,8 +1582,7 @@ discard block |
||
1597 | 1582 | // ----- Get the value |
1598 | 1583 | if (is_string($p_options_list[$i+1])) { |
1599 | 1584 | $v_result_list[$p_options_list[$i]] = $p_options_list[$i+1]; |
1600 | - } |
|
1601 | - else { |
|
1585 | + } else { |
|
1602 | 1586 | // ----- Error log |
1603 | 1587 | PclZip::privErrorLog(PCLZIP_ERR_INVALID_OPTION_VALUE, "Wrong parameter value for option '".PclZipUtilOptionText($p_options_list[$i])."'"); |
1604 | 1588 | |
@@ -1627,8 +1611,7 @@ discard block |
||
1627 | 1611 | // ----- Get the value |
1628 | 1612 | if (is_string($p_options_list[$i+1])) { |
1629 | 1613 | $v_result_list[$p_options_list[$i]] = $p_options_list[$i+1]; |
1630 | - } |
|
1631 | - else { |
|
1614 | + } else { |
|
1632 | 1615 | // ----- Error log |
1633 | 1616 | PclZip::privErrorLog(PCLZIP_ERR_INVALID_OPTION_VALUE, |
1634 | 1617 | "Wrong parameter value for option '" |
@@ -1661,14 +1644,11 @@ discard block |
||
1661 | 1644 | |
1662 | 1645 | // ----- Parse items |
1663 | 1646 | $v_work_list = explode(",", $p_options_list[$i+1]); |
1664 | - } |
|
1665 | - else if (is_integer($p_options_list[$i+1])) { |
|
1647 | + } else if (is_integer($p_options_list[$i+1])) { |
|
1666 | 1648 | $v_work_list[0] = $p_options_list[$i+1].'-'.$p_options_list[$i+1]; |
1667 | - } |
|
1668 | - else if (is_array($p_options_list[$i+1])) { |
|
1649 | + } else if (is_array($p_options_list[$i+1])) { |
|
1669 | 1650 | $v_work_list = $p_options_list[$i+1]; |
1670 | - } |
|
1671 | - else { |
|
1651 | + } else { |
|
1672 | 1652 | // ----- Error log |
1673 | 1653 | PclZip::privErrorLog(PCLZIP_ERR_INVALID_OPTION_VALUE, "Value must be integer, string or array for option '".PclZipUtilOptionText($p_options_list[$i])."'"); |
1674 | 1654 | |
@@ -1695,13 +1675,11 @@ discard block |
||
1695 | 1675 | // ----- Set the option value |
1696 | 1676 | $v_result_list[$p_options_list[$i]][$j]['start'] = $v_item_list[0]; |
1697 | 1677 | $v_result_list[$p_options_list[$i]][$j]['end'] = $v_item_list[0]; |
1698 | - } |
|
1699 | - elseif ($v_size_item_list == 2) { |
|
1678 | + } elseif ($v_size_item_list == 2) { |
|
1700 | 1679 | // ----- Set the option value |
1701 | 1680 | $v_result_list[$p_options_list[$i]][$j]['start'] = $v_item_list[0]; |
1702 | 1681 | $v_result_list[$p_options_list[$i]][$j]['end'] = $v_item_list[1]; |
1703 | - } |
|
1704 | - else { |
|
1682 | + } else { |
|
1705 | 1683 | // ----- Error log |
1706 | 1684 | PclZip::privErrorLog(PCLZIP_ERR_INVALID_OPTION_VALUE, "Too many values in index range for option '".PclZipUtilOptionText($p_options_list[$i])."'"); |
1707 | 1685 | |
@@ -1857,14 +1835,17 @@ discard block |
||
1857 | 1835 | $v_memory_limit = trim($v_memory_limit); |
1858 | 1836 | $last = strtolower(substr($v_memory_limit, -1)); |
1859 | 1837 | |
1860 | - if($last == 'g') |
|
1861 | - //$v_memory_limit = $v_memory_limit*1024*1024*1024; |
|
1862 | - $v_memory_limit = $v_memory_limit*1073741824; |
|
1863 | - if($last == 'm') |
|
1864 | - //$v_memory_limit = $v_memory_limit*1024*1024; |
|
1865 | - $v_memory_limit = $v_memory_limit*1048576; |
|
1866 | - if($last == 'k') |
|
1867 | - $v_memory_limit = $v_memory_limit*1024; |
|
1838 | + if($last == 'g') { |
|
1839 | + //$v_memory_limit = $v_memory_limit*1024*1024*1024; |
|
1840 | + $v_memory_limit = $v_memory_limit*1073741824; |
|
1841 | + } |
|
1842 | + if($last == 'm') { |
|
1843 | + //$v_memory_limit = $v_memory_limit*1024*1024; |
|
1844 | + $v_memory_limit = $v_memory_limit*1048576; |
|
1845 | + } |
|
1846 | + if($last == 'k') { |
|
1847 | + $v_memory_limit = $v_memory_limit*1024; |
|
1848 | + } |
|
1868 | 1849 | |
1869 | 1850 | $p_options[PCLZIP_OPT_TEMP_FILE_THRESHOLD] = floor($v_memory_limit*PCLZIP_TEMPORARY_FILE_RATIO); |
1870 | 1851 | |
@@ -2037,15 +2018,12 @@ discard block |
||
2037 | 2018 | if (file_exists($v_descr['filename'])) { |
2038 | 2019 | if (@is_file($v_descr['filename'])) { |
2039 | 2020 | $v_descr['type'] = 'file'; |
2040 | - } |
|
2041 | - else if (@is_dir($v_descr['filename'])) { |
|
2021 | + } else if (@is_dir($v_descr['filename'])) { |
|
2042 | 2022 | $v_descr['type'] = 'folder'; |
2043 | - } |
|
2044 | - else if (@is_link($v_descr['filename'])) { |
|
2023 | + } else if (@is_link($v_descr['filename'])) { |
|
2045 | 2024 | // skip |
2046 | 2025 | continue; |
2047 | - } |
|
2048 | - else { |
|
2026 | + } else { |
|
2049 | 2027 | // skip |
2050 | 2028 | continue; |
2051 | 2029 | } |
@@ -2094,8 +2072,7 @@ discard block |
||
2094 | 2072 | && (!isset($p_options[PCLZIP_OPT_REMOVE_ALL_PATH]))) { |
2095 | 2073 | if ($v_descr['stored_filename'] != '') { |
2096 | 2074 | $v_dirlist_descr[$v_dirlist_nb]['new_full_name'] = $v_descr['stored_filename'].'/'.$v_item_handler; |
2097 | - } |
|
2098 | - else { |
|
2075 | + } else { |
|
2099 | 2076 | $v_dirlist_descr[$v_dirlist_nb]['new_full_name'] = $v_item_handler; |
2100 | 2077 | } |
2101 | 2078 | } |
@@ -2104,8 +2081,7 @@ discard block |
||
2104 | 2081 | } |
2105 | 2082 | |
2106 | 2083 | @closedir($v_folder_handler); |
2107 | - } |
|
2108 | - else { |
|
2084 | + } else { |
|
2109 | 2085 | // TBC : unable to open folder in read mode |
2110 | 2086 | } |
2111 | 2087 | |
@@ -2118,8 +2094,7 @@ discard block |
||
2118 | 2094 | |
2119 | 2095 | // ----- Concat the resulting list |
2120 | 2096 | $v_result_list = array_merge($v_result_list, $v_dirlist_descr); |
2121 | - } |
|
2122 | - else { |
|
2097 | + } else { |
|
2123 | 2098 | } |
2124 | 2099 | |
2125 | 2100 | // ----- Free local array |
@@ -2393,8 +2368,9 @@ discard block |
||
2393 | 2368 | { |
2394 | 2369 | $v_result=1; |
2395 | 2370 | |
2396 | - if ($this->zip_fd != 0) |
|
2397 | - @fclose($this->zip_fd); |
|
2371 | + if ($this->zip_fd != 0) { |
|
2372 | + @fclose($this->zip_fd); |
|
2373 | + } |
|
2398 | 2374 | $this->zip_fd = 0; |
2399 | 2375 | |
2400 | 2376 | // ----- Return |
@@ -2611,11 +2587,9 @@ discard block |
||
2611 | 2587 | // ----- Look for filetime |
2612 | 2588 | if (isset($p_filedescr['mtime'])) { |
2613 | 2589 | $p_header['mtime'] = $p_filedescr['mtime']; |
2614 | - } |
|
2615 | - else if ($p_filedescr['type'] == 'virtual_file') { |
|
2590 | + } else if ($p_filedescr['type'] == 'virtual_file') { |
|
2616 | 2591 | $p_header['mtime'] = time(); |
2617 | - } |
|
2618 | - else { |
|
2592 | + } else { |
|
2619 | 2593 | $p_header['mtime'] = filemtime($p_filename); |
2620 | 2594 | } |
2621 | 2595 | |
@@ -2623,8 +2597,7 @@ discard block |
||
2623 | 2597 | if (isset($p_filedescr['comment'])) { |
2624 | 2598 | $p_header['comment_len'] = strlen($p_filedescr['comment']); |
2625 | 2599 | $p_header['comment'] = $p_filedescr['comment']; |
2626 | - } |
|
2627 | - else { |
|
2600 | + } else { |
|
2628 | 2601 | $p_header['comment_len'] = 0; |
2629 | 2602 | $p_header['comment'] = ''; |
2630 | 2603 | } |
@@ -2935,20 +2908,17 @@ discard block |
||
2935 | 2908 | $p_filename = $p_filedescr['filename']; |
2936 | 2909 | if (isset($p_options[PCLZIP_OPT_ADD_PATH])) { |
2937 | 2910 | $p_add_dir = $p_options[PCLZIP_OPT_ADD_PATH]; |
2938 | - } |
|
2939 | - else { |
|
2911 | + } else { |
|
2940 | 2912 | $p_add_dir = ''; |
2941 | 2913 | } |
2942 | 2914 | if (isset($p_options[PCLZIP_OPT_REMOVE_PATH])) { |
2943 | 2915 | $p_remove_dir = $p_options[PCLZIP_OPT_REMOVE_PATH]; |
2944 | - } |
|
2945 | - else { |
|
2916 | + } else { |
|
2946 | 2917 | $p_remove_dir = ''; |
2947 | 2918 | } |
2948 | 2919 | if (isset($p_options[PCLZIP_OPT_REMOVE_ALL_PATH])) { |
2949 | 2920 | $p_remove_all_dir = $p_options[PCLZIP_OPT_REMOVE_ALL_PATH]; |
2950 | - } |
|
2951 | - else { |
|
2921 | + } else { |
|
2952 | 2922 | $p_remove_all_dir = 0; |
2953 | 2923 | } |
2954 | 2924 | |
@@ -2971,8 +2941,7 @@ discard block |
||
2971 | 2941 | $v_dir = $v_path_info['dirname'].'/'; |
2972 | 2942 | } |
2973 | 2943 | $v_stored_filename = $v_dir.$p_filedescr['new_short_name']; |
2974 | - } |
|
2975 | - else { |
|
2944 | + } else { |
|
2976 | 2945 | // ----- Calculate the stored filename |
2977 | 2946 | $v_stored_filename = $p_filename; |
2978 | 2947 | } |
@@ -2983,8 +2952,9 @@ discard block |
||
2983 | 2952 | } |
2984 | 2953 | // ----- Look for partial path remove |
2985 | 2954 | else if ($p_remove_dir != "") { |
2986 | - if (substr($p_remove_dir, -1) != '/') |
|
2987 | - $p_remove_dir .= "/"; |
|
2955 | + if (substr($p_remove_dir, -1) != '/') { |
|
2956 | + $p_remove_dir .= "/"; |
|
2957 | + } |
|
2988 | 2958 | |
2989 | 2959 | if ( (substr($p_filename, 0, 2) == "./") |
2990 | 2960 | || (substr($p_remove_dir, 0, 2) == "./")) { |
@@ -3004,8 +2974,7 @@ discard block |
||
3004 | 2974 | if ($v_compare > 0) { |
3005 | 2975 | if ($v_compare == 2) { |
3006 | 2976 | $v_stored_filename = ""; |
3007 | - } |
|
3008 | - else { |
|
2977 | + } else { |
|
3009 | 2978 | $v_stored_filename = substr($v_stored_filename, |
3010 | 2979 | strlen($p_remove_dir)); |
3011 | 2980 | } |
@@ -3017,10 +2986,11 @@ discard block |
||
3017 | 2986 | |
3018 | 2987 | // ----- Look for path to add |
3019 | 2988 | if ($p_add_dir != "") { |
3020 | - if (substr($p_add_dir, -1) == "/") |
|
3021 | - $v_stored_filename = $p_add_dir.$v_stored_filename; |
|
3022 | - else |
|
3023 | - $v_stored_filename = $p_add_dir."/".$v_stored_filename; |
|
2989 | + if (substr($p_add_dir, -1) == "/") { |
|
2990 | + $v_stored_filename = $p_add_dir.$v_stored_filename; |
|
2991 | + } else { |
|
2992 | + $v_stored_filename = $p_add_dir."/".$v_stored_filename; |
|
2993 | + } |
|
3024 | 2994 | } |
3025 | 2995 | } |
3026 | 2996 | |
@@ -3303,8 +3273,9 @@ discard block |
||
3303 | 3273 | if ( ($p_path == "") |
3304 | 3274 | || ( (substr($p_path, 0, 1) != "/") |
3305 | 3275 | && (substr($p_path, 0, 3) != "../") |
3306 | - && (substr($p_path,1,2)!=":/"))) |
|
3307 | - $p_path = "./".$p_path; |
|
3276 | + && (substr($p_path,1,2)!=":/"))) { |
|
3277 | + $p_path = "./".$p_path; |
|
3278 | + } |
|
3308 | 3279 | |
3309 | 3280 | // ----- Reduce the path last (and duplicated) '/' |
3310 | 3281 | if (($p_path != "./") && ($p_path != "/")) |
@@ -3791,8 +3762,7 @@ discard block |
||
3791 | 3762 | // ----- Change the file status |
3792 | 3763 | if ( (isset($p_options[PCLZIP_OPT_REPLACE_NEWER])) |
3793 | 3764 | && ($p_options[PCLZIP_OPT_REPLACE_NEWER]===true)) { |
3794 | - } |
|
3795 | - else { |
|
3765 | + } else { |
|
3796 | 3766 | $p_entry['status'] = "newer_exist"; |
3797 | 3767 | |
3798 | 3768 | // ----- Look for PCLZIP_OPT_STOP_ON_ERROR |
@@ -3808,19 +3778,19 @@ discard block |
||
3808 | 3778 | return PclZip::errorCode(); |
3809 | 3779 | } |
3810 | 3780 | } |
3811 | - } |
|
3812 | - else { |
|
3781 | + } else { |
|
3813 | 3782 | } |
3814 | 3783 | } |
3815 | 3784 | |
3816 | 3785 | // ----- Check the directory availability and create it if necessary |
3817 | 3786 | else { |
3818 | - if ((($p_entry['external']&0x00000010)==0x00000010) || (substr($p_entry['filename'], -1) == '/')) |
|
3819 | - $v_dir_to_check = $p_entry['filename']; |
|
3820 | - else if (!strstr($p_entry['filename'], "/")) |
|
3821 | - $v_dir_to_check = ""; |
|
3822 | - else |
|
3823 | - $v_dir_to_check = dirname($p_entry['filename']); |
|
3787 | + if ((($p_entry['external']&0x00000010)==0x00000010) || (substr($p_entry['filename'], -1) == '/')) { |
|
3788 | + $v_dir_to_check = $p_entry['filename']; |
|
3789 | + } else if (!strstr($p_entry['filename'], "/")) { |
|
3790 | + $v_dir_to_check = ""; |
|
3791 | + } else { |
|
3792 | + $v_dir_to_check = dirname($p_entry['filename']); |
|
3793 | + } |
|
3824 | 3794 | |
3825 | 3795 | if (($v_result = $this->privDirCheck($v_dir_to_check, (($p_entry['external']&0x00000010)==0x00000010))) != 1) { |
3826 | 3796 | |
@@ -3876,8 +3846,7 @@ discard block |
||
3876 | 3846 | touch($p_entry['filename'], $p_entry['mtime']); |
3877 | 3847 | |
3878 | 3848 | |
3879 | - } |
|
3880 | - else { |
|
3849 | + } else { |
|
3881 | 3850 | // ----- TBC |
3882 | 3851 | // Need to be finished |
3883 | 3852 | if (($p_entry['flag'] & 1) == 1) { |
@@ -4120,8 +4089,7 @@ discard block |
||
4120 | 4089 | // ----- Send the file to the output |
4121 | 4090 | echo $v_buffer; |
4122 | 4091 | unset($v_buffer); |
4123 | - } |
|
4124 | - else { |
|
4092 | + } else { |
|
4125 | 4093 | |
4126 | 4094 | // ----- Read the compressed file in a buffer (one shot) |
4127 | 4095 | $v_buffer = @fread($this->zip_fd, $p_entry['compressed_size']); |
@@ -4231,8 +4199,7 @@ discard block |
||
4231 | 4199 | |
4232 | 4200 | // ----- Reading the file |
4233 | 4201 | $p_string = @fread($this->zip_fd, $p_entry['compressed_size']); |
4234 | - } |
|
4235 | - else { |
|
4202 | + } else { |
|
4236 | 4203 | |
4237 | 4204 | // ----- Reading the file |
4238 | 4205 | $v_data = @fread($this->zip_fd, $p_entry['compressed_size']); |
@@ -4244,8 +4211,7 @@ discard block |
||
4244 | 4211 | } |
4245 | 4212 | |
4246 | 4213 | // ----- Trace |
4247 | - } |
|
4248 | - else { |
|
4214 | + } else { |
|
4249 | 4215 | // TBC : error : can not extract a folder in a string |
4250 | 4216 | } |
4251 | 4217 | |
@@ -4338,8 +4304,7 @@ discard block |
||
4338 | 4304 | // ----- Get extra_fields |
4339 | 4305 | if ($v_data['extra_len'] != 0) { |
4340 | 4306 | $p_header['extra'] = fread($this->zip_fd, $v_data['extra_len']); |
4341 | - } |
|
4342 | - else { |
|
4307 | + } else { |
|
4343 | 4308 | $p_header['extra'] = ''; |
4344 | 4309 | } |
4345 | 4310 | |
@@ -4370,8 +4335,7 @@ discard block |
||
4370 | 4335 | // ----- Get UNIX date format |
4371 | 4336 | $p_header['mtime'] = @mktime($v_hour, $v_minute, $v_seconde, $v_month, $v_day, $v_year); |
4372 | 4337 | |
4373 | - } |
|
4374 | - else |
|
4338 | + } else |
|
4375 | 4339 | { |
4376 | 4340 | $p_header['mtime'] = time(); |
4377 | 4341 | } |
@@ -4436,29 +4400,33 @@ discard block |
||
4436 | 4400 | $p_header = unpack('vversion/vversion_extracted/vflag/vcompression/vmtime/vmdate/Vcrc/Vcompressed_size/Vsize/vfilename_len/vextra_len/vcomment_len/vdisk/vinternal/Vexternal/Voffset', $v_binary_data); |
4437 | 4401 | |
4438 | 4402 | // ----- Get filename |
4439 | - if ($p_header['filename_len'] != 0) |
|
4440 | - // |
|
4403 | + if ($p_header['filename_len'] != 0) { |
|
4404 | + // |
|
4441 | 4405 | // -------------------------------------------------------------------------------- |
4442 | 4406 | // A patch about stored filenames with backslash directory separator (Windows style). |
4443 | 4407 | // Archives created by the utility IZArc 3.81 (possibly new versions too) need this patch. |
4444 | 4408 | //$p_header['filename'] = fread($this->zip_fd, $p_header['filename_len']); |
4445 | - $p_header['filename'] = str_replace("\\", '/', fread($this->zip_fd, $p_header['filename_len'])); |
|
4409 | + $p_header['filename'] = str_replace("\\", '/', fread($this->zip_fd, $p_header['filename_len'])); |
|
4410 | + } |
|
4446 | 4411 | // -------------------------------------------------------------------------------- |
4447 | 4412 | // |
4448 | - else |
|
4449 | - $p_header['filename'] = ''; |
|
4413 | + else { |
|
4414 | + $p_header['filename'] = ''; |
|
4415 | + } |
|
4450 | 4416 | |
4451 | 4417 | // ----- Get extra |
4452 | - if ($p_header['extra_len'] != 0) |
|
4453 | - $p_header['extra'] = fread($this->zip_fd, $p_header['extra_len']); |
|
4454 | - else |
|
4455 | - $p_header['extra'] = ''; |
|
4418 | + if ($p_header['extra_len'] != 0) { |
|
4419 | + $p_header['extra'] = fread($this->zip_fd, $p_header['extra_len']); |
|
4420 | + } else { |
|
4421 | + $p_header['extra'] = ''; |
|
4422 | + } |
|
4456 | 4423 | |
4457 | 4424 | // ----- Get comment |
4458 | - if ($p_header['comment_len'] != 0) |
|
4459 | - $p_header['comment'] = fread($this->zip_fd, $p_header['comment_len']); |
|
4460 | - else |
|
4461 | - $p_header['comment'] = ''; |
|
4425 | + if ($p_header['comment_len'] != 0) { |
|
4426 | + $p_header['comment'] = fread($this->zip_fd, $p_header['comment_len']); |
|
4427 | + } else { |
|
4428 | + $p_header['comment'] = ''; |
|
4429 | + } |
|
4462 | 4430 | |
4463 | 4431 | // ----- Extract properties |
4464 | 4432 | |
@@ -4480,8 +4448,7 @@ discard block |
||
4480 | 4448 | // ----- Get UNIX date format |
4481 | 4449 | $p_header['mtime'] = @mktime($v_hour, $v_minute, $v_seconde, $v_month, $v_day, $v_year); |
4482 | 4450 | |
4483 | - } |
|
4484 | - else |
|
4451 | + } else |
|
4485 | 4452 | { |
4486 | 4453 | $p_header['mtime'] = time(); |
4487 | 4454 | } |
@@ -4594,8 +4561,9 @@ discard block |
||
4594 | 4561 | // ----- Go back to the maximum possible size of the Central Dir End Record |
4595 | 4562 | if (!$v_found) { |
4596 | 4563 | $v_maximum_size = 65557; // 0xFFFF + 22; |
4597 | - if ($v_maximum_size > $v_size) |
|
4598 | - $v_maximum_size = $v_size; |
|
4564 | + if ($v_maximum_size > $v_size) { |
|
4565 | + $v_maximum_size = $v_size; |
|
4566 | + } |
|
4599 | 4567 | @fseek($this->zip_fd, $v_size-$v_maximum_size); |
4600 | 4568 | if (@ftell($this->zip_fd) != ($v_size-$v_maximum_size)) |
4601 | 4569 | { |
@@ -4680,9 +4648,9 @@ discard block |
||
4680 | 4648 | // ----- Get comment |
4681 | 4649 | if ($v_data['comment_size'] != 0) { |
4682 | 4650 | $p_central_dir['comment'] = fread($this->zip_fd, $v_data['comment_size']); |
4683 | - } |
|
4684 | - else |
|
4685 | - $p_central_dir['comment'] = ''; |
|
4651 | + } else { |
|
4652 | + $p_central_dir['comment'] = ''; |
|
4653 | + } |
|
4686 | 4654 | |
4687 | 4655 | $p_central_dir['entries'] = $v_data['entries']; |
4688 | 4656 | $p_central_dir['disk_entries'] = $v_data['disk_entries']; |
@@ -4782,8 +4750,7 @@ discard block |
||
4782 | 4750 | if ( (strlen($v_header_list[$v_nb_extracted]['stored_filename']) > strlen($p_options[PCLZIP_OPT_BY_NAME][$j])) |
4783 | 4751 | && (substr($v_header_list[$v_nb_extracted]['stored_filename'], 0, strlen($p_options[PCLZIP_OPT_BY_NAME][$j])) == $p_options[PCLZIP_OPT_BY_NAME][$j])) { |
4784 | 4752 | $v_found = true; |
4785 | - } |
|
4786 | - elseif ( (($v_header_list[$v_nb_extracted]['external']&0x00000010)==0x00000010) /* Indicates a folder */ |
|
4753 | + } elseif ( (($v_header_list[$v_nb_extracted]['external']&0x00000010)==0x00000010) /* Indicates a folder */ |
|
4787 | 4754 | && ($v_header_list[$v_nb_extracted]['stored_filename'].'/' == $p_options[PCLZIP_OPT_BY_NAME][$j])) { |
4788 | 4755 | $v_found = true; |
4789 | 4756 | } |
@@ -4834,8 +4801,7 @@ discard block |
||
4834 | 4801 | break; |
4835 | 4802 | } |
4836 | 4803 | } |
4837 | - } |
|
4838 | - else { |
|
4804 | + } else { |
|
4839 | 4805 | $v_found = true; |
4840 | 4806 | } |
4841 | 4807 | |
@@ -4843,8 +4809,7 @@ discard block |
||
4843 | 4809 | if ($v_found) |
4844 | 4810 | { |
4845 | 4811 | unset($v_header_list[$v_nb_extracted]); |
4846 | - } |
|
4847 | - else |
|
4812 | + } else |
|
4848 | 4813 | { |
4849 | 4814 | $v_nb_extracted++; |
4850 | 4815 | } |
@@ -5320,8 +5285,7 @@ discard block |
||
5320 | 5285 | { |
5321 | 5286 | if (PCLZIP_ERROR_EXTERNAL == 1) { |
5322 | 5287 | PclError($p_error_code, $p_error_string); |
5323 | - } |
|
5324 | - else { |
|
5288 | + } else { |
|
5325 | 5289 | $this->error_code = $p_error_code; |
5326 | 5290 | $this->error_string = $p_error_string; |
5327 | 5291 | } |
@@ -5337,8 +5301,7 @@ discard block |
||
5337 | 5301 | { |
5338 | 5302 | if (PCLZIP_ERROR_EXTERNAL == 1) { |
5339 | 5303 | PclErrorReset(); |
5340 | - } |
|
5341 | - else { |
|
5304 | + } else { |
|
5342 | 5305 | $this->error_code = 0; |
5343 | 5306 | $this->error_string = ''; |
5344 | 5307 | } |
@@ -5436,11 +5399,9 @@ discard block |
||
5436 | 5399 | if ($v_list[$i] == ".") { |
5437 | 5400 | // ----- Ignore this directory |
5438 | 5401 | // Should be the first $i=0, but no check is done |
5439 | - } |
|
5440 | - else if ($v_list[$i] == "..") { |
|
5402 | + } else if ($v_list[$i] == "..") { |
|
5441 | 5403 | $v_skip++; |
5442 | - } |
|
5443 | - else if ($v_list[$i] == "") { |
|
5404 | + } else if ($v_list[$i] == "") { |
|
5444 | 5405 | // ----- First '/' i.e. root slash |
5445 | 5406 | if ($i == 0) { |
5446 | 5407 | $v_result = "/".$v_result; |
@@ -5460,13 +5421,11 @@ discard block |
||
5460 | 5421 | // ----- Ignore only the double '//' in path, |
5461 | 5422 | // but not the first and last '/' |
5462 | 5423 | } |
5463 | - } |
|
5464 | - else { |
|
5424 | + } else { |
|
5465 | 5425 | // ----- Look for item to skip |
5466 | 5426 | if ($v_skip > 0) { |
5467 | 5427 | $v_skip--; |
5468 | - } |
|
5469 | - else { |
|
5428 | + } else { |
|
5470 | 5429 | $v_result = $v_list[$i].($i!=(sizeof($v_list)-1)?"/".$v_result:""); |
5471 | 5430 | } |
5472 | 5431 | } |
@@ -5549,14 +5508,17 @@ discard block |
||
5549 | 5508 | // ----- Look if everything seems to be the same |
5550 | 5509 | if ($v_result) { |
5551 | 5510 | // ----- Skip all the empty items |
5552 | - while (($j < $v_list_path_size) && ($v_list_path[$j] == '')) $j++; |
|
5553 | - while (($i < $v_list_dir_size) && ($v_list_dir[$i] == '')) $i++; |
|
5511 | + while (($j < $v_list_path_size) && ($v_list_path[$j] == '')) { |
|
5512 | + $j++; |
|
5513 | + } |
|
5514 | + while (($i < $v_list_dir_size) && ($v_list_dir[$i] == '')) { |
|
5515 | + $i++; |
|
5516 | + } |
|
5554 | 5517 | |
5555 | 5518 | if (($i >= $v_list_dir_size) && ($j >= $v_list_path_size)) { |
5556 | 5519 | // ----- There are exactly the same |
5557 | 5520 | $v_result = 2; |
5558 | - } |
|
5559 | - else if ($i < $v_list_dir_size) { |
|
5521 | + } else if ($i < $v_list_dir_size) { |
|
5560 | 5522 | // ----- The path is shorter than the dir |
5561 | 5523 | $v_result = 0; |
5562 | 5524 | } |
@@ -5591,8 +5553,7 @@ discard block |
||
5591 | 5553 | @fwrite($p_dest, $v_buffer, $v_read_size); |
5592 | 5554 | $p_size -= $v_read_size; |
5593 | 5555 | } |
5594 | - } |
|
5595 | - else if ($p_mode==1) |
|
5556 | + } else if ($p_mode==1) |
|
5596 | 5557 | { |
5597 | 5558 | while ($p_size != 0) |
5598 | 5559 | { |
@@ -5601,8 +5562,7 @@ discard block |
||
5601 | 5562 | @fwrite($p_dest, $v_buffer, $v_read_size); |
5602 | 5563 | $p_size -= $v_read_size; |
5603 | 5564 | } |
5604 | - } |
|
5605 | - else if ($p_mode==2) |
|
5565 | + } else if ($p_mode==2) |
|
5606 | 5566 | { |
5607 | 5567 | while ($p_size != 0) |
5608 | 5568 | { |
@@ -5611,8 +5571,7 @@ discard block |
||
5611 | 5571 | @gzwrite($p_dest, $v_buffer, $v_read_size); |
5612 | 5572 | $p_size -= $v_read_size; |
5613 | 5573 | } |
5614 | - } |
|
5615 | - else if ($p_mode==3) |
|
5574 | + } else if ($p_mode==3) |
|
5616 | 5575 | { |
5617 | 5576 | while ($p_size != 0) |
5618 | 5577 | { |
@@ -5650,8 +5609,7 @@ discard block |
||
5650 | 5609 | // ----- Try to copy & unlink the src |
5651 | 5610 | if (!@copy($p_src, $p_dest)) { |
5652 | 5611 | $v_result = 0; |
5653 | - } |
|
5654 | - else if (!@unlink($p_src)) { |
|
5612 | + } else if (!@unlink($p_src)) { |
|
5655 | 5613 | $v_result = 0; |
5656 | 5614 | } |
5657 | 5615 | } |
@@ -39,154 +39,154 @@ discard block |
||
39 | 39 | // http://php.net/manual/en/function.gzopen.php |
40 | 40 | // -------------------------------------------------------------------------------- |
41 | 41 | if (!function_exists('gzopen') && function_exists('gzopen64')) { |
42 | - function gzopen($filename, $mode, $use_include_path = 0) { |
|
43 | - return gzopen64($filename, $mode, $use_include_path); |
|
44 | - } |
|
42 | + function gzopen($filename, $mode, $use_include_path = 0) { |
|
43 | + return gzopen64($filename, $mode, $use_include_path); |
|
44 | + } |
|
45 | 45 | } |
46 | 46 | // -------------------------------------------------------------------------------- |
47 | 47 | |
48 | - // ----- Constants |
|
49 | - if (!defined('PCLZIP_READ_BLOCK_SIZE')) { |
|
48 | + // ----- Constants |
|
49 | + if (!defined('PCLZIP_READ_BLOCK_SIZE')) { |
|
50 | 50 | define( 'PCLZIP_READ_BLOCK_SIZE', 2048 ); |
51 | - } |
|
52 | - |
|
53 | - // ----- File list separator |
|
54 | - // In version 1.x of PclZip, the separator for file list is a space |
|
55 | - // (which is not a very smart choice, specifically for windows paths !). |
|
56 | - // A better separator should be a comma (,). This constant gives you the |
|
57 | - // abilty to change that. |
|
58 | - // However notice that changing this value, may have impact on existing |
|
59 | - // scripts, using space separated filenames. |
|
60 | - // Recommanded values for compatibility with older versions : |
|
61 | - //define( 'PCLZIP_SEPARATOR', ' ' ); |
|
62 | - // Recommanded values for smart separation of filenames. |
|
63 | - if (!defined('PCLZIP_SEPARATOR')) { |
|
51 | + } |
|
52 | + |
|
53 | + // ----- File list separator |
|
54 | + // In version 1.x of PclZip, the separator for file list is a space |
|
55 | + // (which is not a very smart choice, specifically for windows paths !). |
|
56 | + // A better separator should be a comma (,). This constant gives you the |
|
57 | + // abilty to change that. |
|
58 | + // However notice that changing this value, may have impact on existing |
|
59 | + // scripts, using space separated filenames. |
|
60 | + // Recommanded values for compatibility with older versions : |
|
61 | + //define( 'PCLZIP_SEPARATOR', ' ' ); |
|
62 | + // Recommanded values for smart separation of filenames. |
|
63 | + if (!defined('PCLZIP_SEPARATOR')) { |
|
64 | 64 | define( 'PCLZIP_SEPARATOR', '|' ); |
65 | - } |
|
66 | - |
|
67 | - // ----- Error configuration |
|
68 | - // 0 : PclZip Class integrated error handling |
|
69 | - // 1 : PclError external library error handling. By enabling this |
|
70 | - // you must ensure that you have included PclError library. |
|
71 | - // [2,...] : reserved for futur use |
|
72 | - if (!defined('PCLZIP_ERROR_EXTERNAL')) { |
|
65 | + } |
|
66 | + |
|
67 | + // ----- Error configuration |
|
68 | + // 0 : PclZip Class integrated error handling |
|
69 | + // 1 : PclError external library error handling. By enabling this |
|
70 | + // you must ensure that you have included PclError library. |
|
71 | + // [2,...] : reserved for futur use |
|
72 | + if (!defined('PCLZIP_ERROR_EXTERNAL')) { |
|
73 | 73 | define( 'PCLZIP_ERROR_EXTERNAL', 0 ); |
74 | - } |
|
75 | - |
|
76 | - // ----- Optional static temporary directory |
|
77 | - // By default temporary files are generated in the script current |
|
78 | - // path. |
|
79 | - // If defined : |
|
80 | - // - MUST BE terminated by a '/'. |
|
81 | - // - MUST be a valid, already created directory |
|
82 | - // Samples : |
|
83 | - // define( 'PCLZIP_TEMPORARY_DIR', '/temp/' ); |
|
84 | - // define( 'PCLZIP_TEMPORARY_DIR', 'C:/Temp/' ); |
|
85 | - if (!defined('PCLZIP_TEMPORARY_DIR')) { |
|
74 | + } |
|
75 | + |
|
76 | + // ----- Optional static temporary directory |
|
77 | + // By default temporary files are generated in the script current |
|
78 | + // path. |
|
79 | + // If defined : |
|
80 | + // - MUST BE terminated by a '/'. |
|
81 | + // - MUST be a valid, already created directory |
|
82 | + // Samples : |
|
83 | + // define( 'PCLZIP_TEMPORARY_DIR', '/temp/' ); |
|
84 | + // define( 'PCLZIP_TEMPORARY_DIR', 'C:/Temp/' ); |
|
85 | + if (!defined('PCLZIP_TEMPORARY_DIR')) { |
|
86 | 86 | define( 'PCLZIP_TEMPORARY_DIR', '' ); |
87 | - } |
|
88 | - |
|
89 | - // ----- Optional threshold ratio for use of temporary files |
|
90 | - // Pclzip sense the size of the file to add/extract and decide to |
|
91 | - // use or not temporary file. The algorythm is looking for |
|
92 | - // memory_limit of PHP and apply a ratio. |
|
93 | - // threshold = memory_limit * ratio. |
|
94 | - // Recommended values are under 0.5. Default 0.47. |
|
95 | - // Samples : |
|
96 | - // define( 'PCLZIP_TEMPORARY_FILE_RATIO', 0.5 ); |
|
97 | - if (!defined('PCLZIP_TEMPORARY_FILE_RATIO')) { |
|
87 | + } |
|
88 | + |
|
89 | + // ----- Optional threshold ratio for use of temporary files |
|
90 | + // Pclzip sense the size of the file to add/extract and decide to |
|
91 | + // use or not temporary file. The algorythm is looking for |
|
92 | + // memory_limit of PHP and apply a ratio. |
|
93 | + // threshold = memory_limit * ratio. |
|
94 | + // Recommended values are under 0.5. Default 0.47. |
|
95 | + // Samples : |
|
96 | + // define( 'PCLZIP_TEMPORARY_FILE_RATIO', 0.5 ); |
|
97 | + if (!defined('PCLZIP_TEMPORARY_FILE_RATIO')) { |
|
98 | 98 | define( 'PCLZIP_TEMPORARY_FILE_RATIO', 0.47 ); |
99 | - } |
|
99 | + } |
|
100 | 100 | |
101 | 101 | // -------------------------------------------------------------------------------- |
102 | 102 | // ***** UNDER THIS LINE NOTHING NEEDS TO BE MODIFIED ***** |
103 | 103 | // -------------------------------------------------------------------------------- |
104 | 104 | |
105 | - // ----- Global variables |
|
106 | - $g_pclzip_version = "2.8.2"; |
|
107 | - |
|
108 | - // ----- Error codes |
|
109 | - // -1 : Unable to open file in binary write mode |
|
110 | - // -2 : Unable to open file in binary read mode |
|
111 | - // -3 : Invalid parameters |
|
112 | - // -4 : File does not exist |
|
113 | - // -5 : Filename is too long (max. 255) |
|
114 | - // -6 : Not a valid zip file |
|
115 | - // -7 : Invalid extracted file size |
|
116 | - // -8 : Unable to create directory |
|
117 | - // -9 : Invalid archive extension |
|
118 | - // -10 : Invalid archive format |
|
119 | - // -11 : Unable to delete file (unlink) |
|
120 | - // -12 : Unable to rename file (rename) |
|
121 | - // -13 : Invalid header checksum |
|
122 | - // -14 : Invalid archive size |
|
123 | - define( 'PCLZIP_ERR_USER_ABORTED', 2 ); |
|
124 | - define( 'PCLZIP_ERR_NO_ERROR', 0 ); |
|
125 | - define( 'PCLZIP_ERR_WRITE_OPEN_FAIL', -1 ); |
|
126 | - define( 'PCLZIP_ERR_READ_OPEN_FAIL', -2 ); |
|
127 | - define( 'PCLZIP_ERR_INVALID_PARAMETER', -3 ); |
|
128 | - define( 'PCLZIP_ERR_MISSING_FILE', -4 ); |
|
129 | - define( 'PCLZIP_ERR_FILENAME_TOO_LONG', -5 ); |
|
130 | - define( 'PCLZIP_ERR_INVALID_ZIP', -6 ); |
|
131 | - define( 'PCLZIP_ERR_BAD_EXTRACTED_FILE', -7 ); |
|
132 | - define( 'PCLZIP_ERR_DIR_CREATE_FAIL', -8 ); |
|
133 | - define( 'PCLZIP_ERR_BAD_EXTENSION', -9 ); |
|
134 | - define( 'PCLZIP_ERR_BAD_FORMAT', -10 ); |
|
135 | - define( 'PCLZIP_ERR_DELETE_FILE_FAIL', -11 ); |
|
136 | - define( 'PCLZIP_ERR_RENAME_FILE_FAIL', -12 ); |
|
137 | - define( 'PCLZIP_ERR_BAD_CHECKSUM', -13 ); |
|
138 | - define( 'PCLZIP_ERR_INVALID_ARCHIVE_ZIP', -14 ); |
|
139 | - define( 'PCLZIP_ERR_MISSING_OPTION_VALUE', -15 ); |
|
140 | - define( 'PCLZIP_ERR_INVALID_OPTION_VALUE', -16 ); |
|
141 | - define( 'PCLZIP_ERR_ALREADY_A_DIRECTORY', -17 ); |
|
142 | - define( 'PCLZIP_ERR_UNSUPPORTED_COMPRESSION', -18 ); |
|
143 | - define( 'PCLZIP_ERR_UNSUPPORTED_ENCRYPTION', -19 ); |
|
144 | - define( 'PCLZIP_ERR_INVALID_ATTRIBUTE_VALUE', -20 ); |
|
145 | - define( 'PCLZIP_ERR_DIRECTORY_RESTRICTION', -21 ); |
|
146 | - |
|
147 | - // ----- Options values |
|
148 | - define( 'PCLZIP_OPT_PATH', 77001 ); |
|
149 | - define( 'PCLZIP_OPT_ADD_PATH', 77002 ); |
|
150 | - define( 'PCLZIP_OPT_REMOVE_PATH', 77003 ); |
|
151 | - define( 'PCLZIP_OPT_REMOVE_ALL_PATH', 77004 ); |
|
152 | - define( 'PCLZIP_OPT_SET_CHMOD', 77005 ); |
|
153 | - define( 'PCLZIP_OPT_EXTRACT_AS_STRING', 77006 ); |
|
154 | - define( 'PCLZIP_OPT_NO_COMPRESSION', 77007 ); |
|
155 | - define( 'PCLZIP_OPT_BY_NAME', 77008 ); |
|
156 | - define( 'PCLZIP_OPT_BY_INDEX', 77009 ); |
|
157 | - define( 'PCLZIP_OPT_BY_EREG', 77010 ); |
|
158 | - define( 'PCLZIP_OPT_BY_PREG', 77011 ); |
|
159 | - define( 'PCLZIP_OPT_COMMENT', 77012 ); |
|
160 | - define( 'PCLZIP_OPT_ADD_COMMENT', 77013 ); |
|
161 | - define( 'PCLZIP_OPT_PREPEND_COMMENT', 77014 ); |
|
162 | - define( 'PCLZIP_OPT_EXTRACT_IN_OUTPUT', 77015 ); |
|
163 | - define( 'PCLZIP_OPT_REPLACE_NEWER', 77016 ); |
|
164 | - define( 'PCLZIP_OPT_STOP_ON_ERROR', 77017 ); |
|
165 | - // Having big trouble with crypt. Need to multiply 2 long int |
|
166 | - // which is not correctly supported by PHP ... |
|
167 | - //define( 'PCLZIP_OPT_CRYPT', 77018 ); |
|
168 | - define( 'PCLZIP_OPT_EXTRACT_DIR_RESTRICTION', 77019 ); |
|
169 | - define( 'PCLZIP_OPT_TEMP_FILE_THRESHOLD', 77020 ); |
|
170 | - define( 'PCLZIP_OPT_ADD_TEMP_FILE_THRESHOLD', 77020 ); // alias |
|
171 | - define( 'PCLZIP_OPT_TEMP_FILE_ON', 77021 ); |
|
172 | - define( 'PCLZIP_OPT_ADD_TEMP_FILE_ON', 77021 ); // alias |
|
173 | - define( 'PCLZIP_OPT_TEMP_FILE_OFF', 77022 ); |
|
174 | - define( 'PCLZIP_OPT_ADD_TEMP_FILE_OFF', 77022 ); // alias |
|
175 | - |
|
176 | - // ----- File description attributes |
|
177 | - define( 'PCLZIP_ATT_FILE_NAME', 79001 ); |
|
178 | - define( 'PCLZIP_ATT_FILE_NEW_SHORT_NAME', 79002 ); |
|
179 | - define( 'PCLZIP_ATT_FILE_NEW_FULL_NAME', 79003 ); |
|
180 | - define( 'PCLZIP_ATT_FILE_MTIME', 79004 ); |
|
181 | - define( 'PCLZIP_ATT_FILE_CONTENT', 79005 ); |
|
182 | - define( 'PCLZIP_ATT_FILE_COMMENT', 79006 ); |
|
183 | - |
|
184 | - // ----- Call backs values |
|
185 | - define( 'PCLZIP_CB_PRE_EXTRACT', 78001 ); |
|
186 | - define( 'PCLZIP_CB_POST_EXTRACT', 78002 ); |
|
187 | - define( 'PCLZIP_CB_PRE_ADD', 78003 ); |
|
188 | - define( 'PCLZIP_CB_POST_ADD', 78004 ); |
|
189 | - /* For futur use |
|
105 | + // ----- Global variables |
|
106 | + $g_pclzip_version = "2.8.2"; |
|
107 | + |
|
108 | + // ----- Error codes |
|
109 | + // -1 : Unable to open file in binary write mode |
|
110 | + // -2 : Unable to open file in binary read mode |
|
111 | + // -3 : Invalid parameters |
|
112 | + // -4 : File does not exist |
|
113 | + // -5 : Filename is too long (max. 255) |
|
114 | + // -6 : Not a valid zip file |
|
115 | + // -7 : Invalid extracted file size |
|
116 | + // -8 : Unable to create directory |
|
117 | + // -9 : Invalid archive extension |
|
118 | + // -10 : Invalid archive format |
|
119 | + // -11 : Unable to delete file (unlink) |
|
120 | + // -12 : Unable to rename file (rename) |
|
121 | + // -13 : Invalid header checksum |
|
122 | + // -14 : Invalid archive size |
|
123 | + define( 'PCLZIP_ERR_USER_ABORTED', 2 ); |
|
124 | + define( 'PCLZIP_ERR_NO_ERROR', 0 ); |
|
125 | + define( 'PCLZIP_ERR_WRITE_OPEN_FAIL', -1 ); |
|
126 | + define( 'PCLZIP_ERR_READ_OPEN_FAIL', -2 ); |
|
127 | + define( 'PCLZIP_ERR_INVALID_PARAMETER', -3 ); |
|
128 | + define( 'PCLZIP_ERR_MISSING_FILE', -4 ); |
|
129 | + define( 'PCLZIP_ERR_FILENAME_TOO_LONG', -5 ); |
|
130 | + define( 'PCLZIP_ERR_INVALID_ZIP', -6 ); |
|
131 | + define( 'PCLZIP_ERR_BAD_EXTRACTED_FILE', -7 ); |
|
132 | + define( 'PCLZIP_ERR_DIR_CREATE_FAIL', -8 ); |
|
133 | + define( 'PCLZIP_ERR_BAD_EXTENSION', -9 ); |
|
134 | + define( 'PCLZIP_ERR_BAD_FORMAT', -10 ); |
|
135 | + define( 'PCLZIP_ERR_DELETE_FILE_FAIL', -11 ); |
|
136 | + define( 'PCLZIP_ERR_RENAME_FILE_FAIL', -12 ); |
|
137 | + define( 'PCLZIP_ERR_BAD_CHECKSUM', -13 ); |
|
138 | + define( 'PCLZIP_ERR_INVALID_ARCHIVE_ZIP', -14 ); |
|
139 | + define( 'PCLZIP_ERR_MISSING_OPTION_VALUE', -15 ); |
|
140 | + define( 'PCLZIP_ERR_INVALID_OPTION_VALUE', -16 ); |
|
141 | + define( 'PCLZIP_ERR_ALREADY_A_DIRECTORY', -17 ); |
|
142 | + define( 'PCLZIP_ERR_UNSUPPORTED_COMPRESSION', -18 ); |
|
143 | + define( 'PCLZIP_ERR_UNSUPPORTED_ENCRYPTION', -19 ); |
|
144 | + define( 'PCLZIP_ERR_INVALID_ATTRIBUTE_VALUE', -20 ); |
|
145 | + define( 'PCLZIP_ERR_DIRECTORY_RESTRICTION', -21 ); |
|
146 | + |
|
147 | + // ----- Options values |
|
148 | + define( 'PCLZIP_OPT_PATH', 77001 ); |
|
149 | + define( 'PCLZIP_OPT_ADD_PATH', 77002 ); |
|
150 | + define( 'PCLZIP_OPT_REMOVE_PATH', 77003 ); |
|
151 | + define( 'PCLZIP_OPT_REMOVE_ALL_PATH', 77004 ); |
|
152 | + define( 'PCLZIP_OPT_SET_CHMOD', 77005 ); |
|
153 | + define( 'PCLZIP_OPT_EXTRACT_AS_STRING', 77006 ); |
|
154 | + define( 'PCLZIP_OPT_NO_COMPRESSION', 77007 ); |
|
155 | + define( 'PCLZIP_OPT_BY_NAME', 77008 ); |
|
156 | + define( 'PCLZIP_OPT_BY_INDEX', 77009 ); |
|
157 | + define( 'PCLZIP_OPT_BY_EREG', 77010 ); |
|
158 | + define( 'PCLZIP_OPT_BY_PREG', 77011 ); |
|
159 | + define( 'PCLZIP_OPT_COMMENT', 77012 ); |
|
160 | + define( 'PCLZIP_OPT_ADD_COMMENT', 77013 ); |
|
161 | + define( 'PCLZIP_OPT_PREPEND_COMMENT', 77014 ); |
|
162 | + define( 'PCLZIP_OPT_EXTRACT_IN_OUTPUT', 77015 ); |
|
163 | + define( 'PCLZIP_OPT_REPLACE_NEWER', 77016 ); |
|
164 | + define( 'PCLZIP_OPT_STOP_ON_ERROR', 77017 ); |
|
165 | + // Having big trouble with crypt. Need to multiply 2 long int |
|
166 | + // which is not correctly supported by PHP ... |
|
167 | + //define( 'PCLZIP_OPT_CRYPT', 77018 ); |
|
168 | + define( 'PCLZIP_OPT_EXTRACT_DIR_RESTRICTION', 77019 ); |
|
169 | + define( 'PCLZIP_OPT_TEMP_FILE_THRESHOLD', 77020 ); |
|
170 | + define( 'PCLZIP_OPT_ADD_TEMP_FILE_THRESHOLD', 77020 ); // alias |
|
171 | + define( 'PCLZIP_OPT_TEMP_FILE_ON', 77021 ); |
|
172 | + define( 'PCLZIP_OPT_ADD_TEMP_FILE_ON', 77021 ); // alias |
|
173 | + define( 'PCLZIP_OPT_TEMP_FILE_OFF', 77022 ); |
|
174 | + define( 'PCLZIP_OPT_ADD_TEMP_FILE_OFF', 77022 ); // alias |
|
175 | + |
|
176 | + // ----- File description attributes |
|
177 | + define( 'PCLZIP_ATT_FILE_NAME', 79001 ); |
|
178 | + define( 'PCLZIP_ATT_FILE_NEW_SHORT_NAME', 79002 ); |
|
179 | + define( 'PCLZIP_ATT_FILE_NEW_FULL_NAME', 79003 ); |
|
180 | + define( 'PCLZIP_ATT_FILE_MTIME', 79004 ); |
|
181 | + define( 'PCLZIP_ATT_FILE_CONTENT', 79005 ); |
|
182 | + define( 'PCLZIP_ATT_FILE_COMMENT', 79006 ); |
|
183 | + |
|
184 | + // ----- Call backs values |
|
185 | + define( 'PCLZIP_CB_PRE_EXTRACT', 78001 ); |
|
186 | + define( 'PCLZIP_CB_POST_EXTRACT', 78002 ); |
|
187 | + define( 'PCLZIP_CB_PRE_ADD', 78003 ); |
|
188 | + define( 'PCLZIP_CB_POST_ADD', 78004 ); |
|
189 | + /* For futur use |
|
190 | 190 | define( 'PCLZIP_CB_PRE_LIST', 78005 ); |
191 | 191 | define( 'PCLZIP_CB_POST_LIST', 78006 ); |
192 | 192 | define( 'PCLZIP_CB_PRE_DELETE', 78007 ); |
@@ -224,21 +224,21 @@ discard block |
||
224 | 224 | // The class can then disable the magic_quotes and reset it after |
225 | 225 | var $magic_quotes_status; |
226 | 226 | |
227 | - // -------------------------------------------------------------------------------- |
|
228 | - // Function : PclZip() |
|
229 | - // Description : |
|
230 | - // Creates a PclZip object and set the name of the associated Zip archive |
|
231 | - // filename. |
|
232 | - // Note that no real action is taken, if the archive does not exist it is not |
|
233 | - // created. Use create() for that. |
|
234 | - // -------------------------------------------------------------------------------- |
|
235 | - function PclZip($p_zipname) |
|
236 | - { |
|
227 | + // -------------------------------------------------------------------------------- |
|
228 | + // Function : PclZip() |
|
229 | + // Description : |
|
230 | + // Creates a PclZip object and set the name of the associated Zip archive |
|
231 | + // filename. |
|
232 | + // Note that no real action is taken, if the archive does not exist it is not |
|
233 | + // created. Use create() for that. |
|
234 | + // -------------------------------------------------------------------------------- |
|
235 | + function PclZip($p_zipname) |
|
236 | + { |
|
237 | 237 | |
238 | 238 | // ----- Tests the zlib |
239 | 239 | if (!function_exists('gzopen')) |
240 | 240 | { |
241 | - die('Abort '.basename(__FILE__).' : Missing zlib extensions'); |
|
241 | + die('Abort '.basename(__FILE__).' : Missing zlib extensions'); |
|
242 | 242 | } |
243 | 243 | |
244 | 244 | // ----- Set the attributes |
@@ -248,48 +248,48 @@ discard block |
||
248 | 248 | |
249 | 249 | // ----- Return |
250 | 250 | return; |
251 | - } |
|
252 | - // -------------------------------------------------------------------------------- |
|
253 | - |
|
254 | - // -------------------------------------------------------------------------------- |
|
255 | - // Function : |
|
256 | - // create($p_filelist, $p_add_dir="", $p_remove_dir="") |
|
257 | - // create($p_filelist, $p_option, $p_option_value, ...) |
|
258 | - // Description : |
|
259 | - // This method supports two different synopsis. The first one is historical. |
|
260 | - // This method creates a Zip Archive. The Zip file is created in the |
|
261 | - // filesystem. The files and directories indicated in $p_filelist |
|
262 | - // are added in the archive. See the parameters description for the |
|
263 | - // supported format of $p_filelist. |
|
264 | - // When a directory is in the list, the directory and its content is added |
|
265 | - // in the archive. |
|
266 | - // In this synopsis, the function takes an optional variable list of |
|
267 | - // options. See bellow the supported options. |
|
268 | - // Parameters : |
|
269 | - // $p_filelist : An array containing file or directory names, or |
|
270 | - // a string containing one filename or one directory name, or |
|
271 | - // a string containing a list of filenames and/or directory |
|
272 | - // names separated by spaces. |
|
273 | - // $p_add_dir : A path to add before the real path of the archived file, |
|
274 | - // in order to have it memorized in the archive. |
|
275 | - // $p_remove_dir : A path to remove from the real path of the file to archive, |
|
276 | - // in order to have a shorter path memorized in the archive. |
|
277 | - // When $p_add_dir and $p_remove_dir are set, $p_remove_dir |
|
278 | - // is removed first, before $p_add_dir is added. |
|
279 | - // Options : |
|
280 | - // PCLZIP_OPT_ADD_PATH : |
|
281 | - // PCLZIP_OPT_REMOVE_PATH : |
|
282 | - // PCLZIP_OPT_REMOVE_ALL_PATH : |
|
283 | - // PCLZIP_OPT_COMMENT : |
|
284 | - // PCLZIP_CB_PRE_ADD : |
|
285 | - // PCLZIP_CB_POST_ADD : |
|
286 | - // Return Values : |
|
287 | - // 0 on failure, |
|
288 | - // The list of the added files, with a status of the add action. |
|
289 | - // (see PclZip::listContent() for list entry format) |
|
290 | - // -------------------------------------------------------------------------------- |
|
291 | - function create($p_filelist) |
|
292 | - { |
|
251 | + } |
|
252 | + // -------------------------------------------------------------------------------- |
|
253 | + |
|
254 | + // -------------------------------------------------------------------------------- |
|
255 | + // Function : |
|
256 | + // create($p_filelist, $p_add_dir="", $p_remove_dir="") |
|
257 | + // create($p_filelist, $p_option, $p_option_value, ...) |
|
258 | + // Description : |
|
259 | + // This method supports two different synopsis. The first one is historical. |
|
260 | + // This method creates a Zip Archive. The Zip file is created in the |
|
261 | + // filesystem. The files and directories indicated in $p_filelist |
|
262 | + // are added in the archive. See the parameters description for the |
|
263 | + // supported format of $p_filelist. |
|
264 | + // When a directory is in the list, the directory and its content is added |
|
265 | + // in the archive. |
|
266 | + // In this synopsis, the function takes an optional variable list of |
|
267 | + // options. See bellow the supported options. |
|
268 | + // Parameters : |
|
269 | + // $p_filelist : An array containing file or directory names, or |
|
270 | + // a string containing one filename or one directory name, or |
|
271 | + // a string containing a list of filenames and/or directory |
|
272 | + // names separated by spaces. |
|
273 | + // $p_add_dir : A path to add before the real path of the archived file, |
|
274 | + // in order to have it memorized in the archive. |
|
275 | + // $p_remove_dir : A path to remove from the real path of the file to archive, |
|
276 | + // in order to have a shorter path memorized in the archive. |
|
277 | + // When $p_add_dir and $p_remove_dir are set, $p_remove_dir |
|
278 | + // is removed first, before $p_add_dir is added. |
|
279 | + // Options : |
|
280 | + // PCLZIP_OPT_ADD_PATH : |
|
281 | + // PCLZIP_OPT_REMOVE_PATH : |
|
282 | + // PCLZIP_OPT_REMOVE_ALL_PATH : |
|
283 | + // PCLZIP_OPT_COMMENT : |
|
284 | + // PCLZIP_CB_PRE_ADD : |
|
285 | + // PCLZIP_CB_POST_ADD : |
|
286 | + // Return Values : |
|
287 | + // 0 on failure, |
|
288 | + // The list of the added files, with a status of the add action. |
|
289 | + // (see PclZip::listContent() for list entry format) |
|
290 | + // -------------------------------------------------------------------------------- |
|
291 | + function create($p_filelist) |
|
292 | + { |
|
293 | 293 | $v_result=1; |
294 | 294 | |
295 | 295 | // ----- Reset the error handler |
@@ -304,53 +304,53 @@ discard block |
||
304 | 304 | |
305 | 305 | // ----- Look for arguments |
306 | 306 | if ($v_size > 1) { |
307 | - // ----- Get the arguments |
|
308 | - $v_arg_list = func_get_args(); |
|
307 | + // ----- Get the arguments |
|
308 | + $v_arg_list = func_get_args(); |
|
309 | 309 | |
310 | - // ----- Remove from the options list the first argument |
|
311 | - array_shift($v_arg_list); |
|
312 | - $v_size--; |
|
310 | + // ----- Remove from the options list the first argument |
|
311 | + array_shift($v_arg_list); |
|
312 | + $v_size--; |
|
313 | 313 | |
314 | - // ----- Look for first arg |
|
315 | - if ((is_integer($v_arg_list[0])) && ($v_arg_list[0] > 77000)) { |
|
314 | + // ----- Look for first arg |
|
315 | + if ((is_integer($v_arg_list[0])) && ($v_arg_list[0] > 77000)) { |
|
316 | 316 | |
317 | 317 | // ----- Parse the options |
318 | 318 | $v_result = $this->privParseOptions($v_arg_list, $v_size, $v_options, |
319 | 319 | array (PCLZIP_OPT_REMOVE_PATH => 'optional', |
320 | - PCLZIP_OPT_REMOVE_ALL_PATH => 'optional', |
|
321 | - PCLZIP_OPT_ADD_PATH => 'optional', |
|
322 | - PCLZIP_CB_PRE_ADD => 'optional', |
|
323 | - PCLZIP_CB_POST_ADD => 'optional', |
|
324 | - PCLZIP_OPT_NO_COMPRESSION => 'optional', |
|
325 | - PCLZIP_OPT_COMMENT => 'optional', |
|
326 | - PCLZIP_OPT_TEMP_FILE_THRESHOLD => 'optional', |
|
327 | - PCLZIP_OPT_TEMP_FILE_ON => 'optional', |
|
328 | - PCLZIP_OPT_TEMP_FILE_OFF => 'optional' |
|
329 | - //, PCLZIP_OPT_CRYPT => 'optional' |
|
330 | - )); |
|
320 | + PCLZIP_OPT_REMOVE_ALL_PATH => 'optional', |
|
321 | + PCLZIP_OPT_ADD_PATH => 'optional', |
|
322 | + PCLZIP_CB_PRE_ADD => 'optional', |
|
323 | + PCLZIP_CB_POST_ADD => 'optional', |
|
324 | + PCLZIP_OPT_NO_COMPRESSION => 'optional', |
|
325 | + PCLZIP_OPT_COMMENT => 'optional', |
|
326 | + PCLZIP_OPT_TEMP_FILE_THRESHOLD => 'optional', |
|
327 | + PCLZIP_OPT_TEMP_FILE_ON => 'optional', |
|
328 | + PCLZIP_OPT_TEMP_FILE_OFF => 'optional' |
|
329 | + //, PCLZIP_OPT_CRYPT => 'optional' |
|
330 | + )); |
|
331 | 331 | if ($v_result != 1) { |
332 | - return 0; |
|
332 | + return 0; |
|
333 | + } |
|
333 | 334 | } |
334 | - } |
|
335 | 335 | |
336 | - // ----- Look for 2 args |
|
337 | - // Here we need to support the first historic synopsis of the |
|
338 | - // method. |
|
339 | - else { |
|
336 | + // ----- Look for 2 args |
|
337 | + // Here we need to support the first historic synopsis of the |
|
338 | + // method. |
|
339 | + else { |
|
340 | 340 | |
341 | 341 | // ----- Get the first argument |
342 | 342 | $v_options[PCLZIP_OPT_ADD_PATH] = $v_arg_list[0]; |
343 | 343 | |
344 | 344 | // ----- Look for the optional second argument |
345 | 345 | if ($v_size == 2) { |
346 | - $v_options[PCLZIP_OPT_REMOVE_PATH] = $v_arg_list[1]; |
|
346 | + $v_options[PCLZIP_OPT_REMOVE_PATH] = $v_arg_list[1]; |
|
347 | 347 | } |
348 | 348 | else if ($v_size > 2) { |
349 | - PclZip::privErrorLog(PCLZIP_ERR_INVALID_PARAMETER, |
|
350 | - "Invalid number / type of arguments"); |
|
351 | - return 0; |
|
349 | + PclZip::privErrorLog(PCLZIP_ERR_INVALID_PARAMETER, |
|
350 | + "Invalid number / type of arguments"); |
|
351 | + return 0; |
|
352 | + } |
|
352 | 353 | } |
353 | - } |
|
354 | 354 | } |
355 | 355 | |
356 | 356 | // ----- Look for default option values |
@@ -365,114 +365,114 @@ discard block |
||
365 | 365 | // ----- Look if the $p_filelist is really an array |
366 | 366 | if (is_array($p_filelist)) { |
367 | 367 | |
368 | - // ----- Look if the first element is also an array |
|
369 | - // This will mean that this is a file description entry |
|
370 | - if (isset($p_filelist[0]) && is_array($p_filelist[0])) { |
|
368 | + // ----- Look if the first element is also an array |
|
369 | + // This will mean that this is a file description entry |
|
370 | + if (isset($p_filelist[0]) && is_array($p_filelist[0])) { |
|
371 | 371 | $v_att_list = $p_filelist; |
372 | - } |
|
372 | + } |
|
373 | 373 | |
374 | - // ----- The list is a list of string names |
|
375 | - else { |
|
374 | + // ----- The list is a list of string names |
|
375 | + else { |
|
376 | 376 | $v_string_list = $p_filelist; |
377 | - } |
|
377 | + } |
|
378 | 378 | } |
379 | 379 | |
380 | 380 | // ----- Look if the $p_filelist is a string |
381 | 381 | else if (is_string($p_filelist)) { |
382 | - // ----- Create a list from the string |
|
383 | - $v_string_list = explode(PCLZIP_SEPARATOR, $p_filelist); |
|
382 | + // ----- Create a list from the string |
|
383 | + $v_string_list = explode(PCLZIP_SEPARATOR, $p_filelist); |
|
384 | 384 | } |
385 | 385 | |
386 | 386 | // ----- Invalid variable type for $p_filelist |
387 | 387 | else { |
388 | - PclZip::privErrorLog(PCLZIP_ERR_INVALID_PARAMETER, "Invalid variable type p_filelist"); |
|
389 | - return 0; |
|
388 | + PclZip::privErrorLog(PCLZIP_ERR_INVALID_PARAMETER, "Invalid variable type p_filelist"); |
|
389 | + return 0; |
|
390 | 390 | } |
391 | 391 | |
392 | 392 | // ----- Reformat the string list |
393 | 393 | if (sizeof($v_string_list) != 0) { |
394 | - foreach ($v_string_list as $v_string) { |
|
394 | + foreach ($v_string_list as $v_string) { |
|
395 | 395 | if ($v_string != '') { |
396 | - $v_att_list[][PCLZIP_ATT_FILE_NAME] = $v_string; |
|
396 | + $v_att_list[][PCLZIP_ATT_FILE_NAME] = $v_string; |
|
397 | 397 | } |
398 | 398 | else { |
399 | 399 | } |
400 | - } |
|
400 | + } |
|
401 | 401 | } |
402 | 402 | |
403 | 403 | // ----- For each file in the list check the attributes |
404 | 404 | $v_supported_attributes |
405 | 405 | = array ( PCLZIP_ATT_FILE_NAME => 'mandatory' |
406 | - ,PCLZIP_ATT_FILE_NEW_SHORT_NAME => 'optional' |
|
407 | - ,PCLZIP_ATT_FILE_NEW_FULL_NAME => 'optional' |
|
408 | - ,PCLZIP_ATT_FILE_MTIME => 'optional' |
|
409 | - ,PCLZIP_ATT_FILE_CONTENT => 'optional' |
|
410 | - ,PCLZIP_ATT_FILE_COMMENT => 'optional' |
|
411 | - ); |
|
406 | + ,PCLZIP_ATT_FILE_NEW_SHORT_NAME => 'optional' |
|
407 | + ,PCLZIP_ATT_FILE_NEW_FULL_NAME => 'optional' |
|
408 | + ,PCLZIP_ATT_FILE_MTIME => 'optional' |
|
409 | + ,PCLZIP_ATT_FILE_CONTENT => 'optional' |
|
410 | + ,PCLZIP_ATT_FILE_COMMENT => 'optional' |
|
411 | + ); |
|
412 | 412 | foreach ($v_att_list as $v_entry) { |
413 | - $v_result = $this->privFileDescrParseAtt($v_entry, |
|
414 | - $v_filedescr_list[], |
|
415 | - $v_options, |
|
416 | - $v_supported_attributes); |
|
417 | - if ($v_result != 1) { |
|
413 | + $v_result = $this->privFileDescrParseAtt($v_entry, |
|
414 | + $v_filedescr_list[], |
|
415 | + $v_options, |
|
416 | + $v_supported_attributes); |
|
417 | + if ($v_result != 1) { |
|
418 | 418 | return 0; |
419 | - } |
|
419 | + } |
|
420 | 420 | } |
421 | 421 | |
422 | 422 | // ----- Expand the filelist (expand directories) |
423 | 423 | $v_result = $this->privFileDescrExpand($v_filedescr_list, $v_options); |
424 | 424 | if ($v_result != 1) { |
425 | - return 0; |
|
425 | + return 0; |
|
426 | 426 | } |
427 | 427 | |
428 | 428 | // ----- Call the create fct |
429 | 429 | $v_result = $this->privCreate($v_filedescr_list, $p_result_list, $v_options); |
430 | 430 | if ($v_result != 1) { |
431 | - return 0; |
|
431 | + return 0; |
|
432 | 432 | } |
433 | 433 | |
434 | 434 | // ----- Return |
435 | 435 | return $p_result_list; |
436 | - } |
|
437 | - // -------------------------------------------------------------------------------- |
|
438 | - |
|
439 | - // -------------------------------------------------------------------------------- |
|
440 | - // Function : |
|
441 | - // add($p_filelist, $p_add_dir="", $p_remove_dir="") |
|
442 | - // add($p_filelist, $p_option, $p_option_value, ...) |
|
443 | - // Description : |
|
444 | - // This method supports two synopsis. The first one is historical. |
|
445 | - // This methods add the list of files in an existing archive. |
|
446 | - // If a file with the same name already exists, it is added at the end of the |
|
447 | - // archive, the first one is still present. |
|
448 | - // If the archive does not exist, it is created. |
|
449 | - // Parameters : |
|
450 | - // $p_filelist : An array containing file or directory names, or |
|
451 | - // a string containing one filename or one directory name, or |
|
452 | - // a string containing a list of filenames and/or directory |
|
453 | - // names separated by spaces. |
|
454 | - // $p_add_dir : A path to add before the real path of the archived file, |
|
455 | - // in order to have it memorized in the archive. |
|
456 | - // $p_remove_dir : A path to remove from the real path of the file to archive, |
|
457 | - // in order to have a shorter path memorized in the archive. |
|
458 | - // When $p_add_dir and $p_remove_dir are set, $p_remove_dir |
|
459 | - // is removed first, before $p_add_dir is added. |
|
460 | - // Options : |
|
461 | - // PCLZIP_OPT_ADD_PATH : |
|
462 | - // PCLZIP_OPT_REMOVE_PATH : |
|
463 | - // PCLZIP_OPT_REMOVE_ALL_PATH : |
|
464 | - // PCLZIP_OPT_COMMENT : |
|
465 | - // PCLZIP_OPT_ADD_COMMENT : |
|
466 | - // PCLZIP_OPT_PREPEND_COMMENT : |
|
467 | - // PCLZIP_CB_PRE_ADD : |
|
468 | - // PCLZIP_CB_POST_ADD : |
|
469 | - // Return Values : |
|
470 | - // 0 on failure, |
|
471 | - // The list of the added files, with a status of the add action. |
|
472 | - // (see PclZip::listContent() for list entry format) |
|
473 | - // -------------------------------------------------------------------------------- |
|
474 | - function add($p_filelist) |
|
475 | - { |
|
436 | + } |
|
437 | + // -------------------------------------------------------------------------------- |
|
438 | + |
|
439 | + // -------------------------------------------------------------------------------- |
|
440 | + // Function : |
|
441 | + // add($p_filelist, $p_add_dir="", $p_remove_dir="") |
|
442 | + // add($p_filelist, $p_option, $p_option_value, ...) |
|
443 | + // Description : |
|
444 | + // This method supports two synopsis. The first one is historical. |
|
445 | + // This methods add the list of files in an existing archive. |
|
446 | + // If a file with the same name already exists, it is added at the end of the |
|
447 | + // archive, the first one is still present. |
|
448 | + // If the archive does not exist, it is created. |
|
449 | + // Parameters : |
|
450 | + // $p_filelist : An array containing file or directory names, or |
|
451 | + // a string containing one filename or one directory name, or |
|
452 | + // a string containing a list of filenames and/or directory |
|
453 | + // names separated by spaces. |
|
454 | + // $p_add_dir : A path to add before the real path of the archived file, |
|
455 | + // in order to have it memorized in the archive. |
|
456 | + // $p_remove_dir : A path to remove from the real path of the file to archive, |
|
457 | + // in order to have a shorter path memorized in the archive. |
|
458 | + // When $p_add_dir and $p_remove_dir are set, $p_remove_dir |
|
459 | + // is removed first, before $p_add_dir is added. |
|
460 | + // Options : |
|
461 | + // PCLZIP_OPT_ADD_PATH : |
|
462 | + // PCLZIP_OPT_REMOVE_PATH : |
|
463 | + // PCLZIP_OPT_REMOVE_ALL_PATH : |
|
464 | + // PCLZIP_OPT_COMMENT : |
|
465 | + // PCLZIP_OPT_ADD_COMMENT : |
|
466 | + // PCLZIP_OPT_PREPEND_COMMENT : |
|
467 | + // PCLZIP_CB_PRE_ADD : |
|
468 | + // PCLZIP_CB_POST_ADD : |
|
469 | + // Return Values : |
|
470 | + // 0 on failure, |
|
471 | + // The list of the added files, with a status of the add action. |
|
472 | + // (see PclZip::listContent() for list entry format) |
|
473 | + // -------------------------------------------------------------------------------- |
|
474 | + function add($p_filelist) |
|
475 | + { |
|
476 | 476 | $v_result=1; |
477 | 477 | |
478 | 478 | // ----- Reset the error handler |
@@ -487,57 +487,57 @@ discard block |
||
487 | 487 | |
488 | 488 | // ----- Look for arguments |
489 | 489 | if ($v_size > 1) { |
490 | - // ----- Get the arguments |
|
491 | - $v_arg_list = func_get_args(); |
|
490 | + // ----- Get the arguments |
|
491 | + $v_arg_list = func_get_args(); |
|
492 | 492 | |
493 | - // ----- Remove form the options list the first argument |
|
494 | - array_shift($v_arg_list); |
|
495 | - $v_size--; |
|
493 | + // ----- Remove form the options list the first argument |
|
494 | + array_shift($v_arg_list); |
|
495 | + $v_size--; |
|
496 | 496 | |
497 | - // ----- Look for first arg |
|
498 | - if ((is_integer($v_arg_list[0])) && ($v_arg_list[0] > 77000)) { |
|
497 | + // ----- Look for first arg |
|
498 | + if ((is_integer($v_arg_list[0])) && ($v_arg_list[0] > 77000)) { |
|
499 | 499 | |
500 | 500 | // ----- Parse the options |
501 | 501 | $v_result = $this->privParseOptions($v_arg_list, $v_size, $v_options, |
502 | 502 | array (PCLZIP_OPT_REMOVE_PATH => 'optional', |
503 | - PCLZIP_OPT_REMOVE_ALL_PATH => 'optional', |
|
504 | - PCLZIP_OPT_ADD_PATH => 'optional', |
|
505 | - PCLZIP_CB_PRE_ADD => 'optional', |
|
506 | - PCLZIP_CB_POST_ADD => 'optional', |
|
507 | - PCLZIP_OPT_NO_COMPRESSION => 'optional', |
|
508 | - PCLZIP_OPT_COMMENT => 'optional', |
|
509 | - PCLZIP_OPT_ADD_COMMENT => 'optional', |
|
510 | - PCLZIP_OPT_PREPEND_COMMENT => 'optional', |
|
511 | - PCLZIP_OPT_TEMP_FILE_THRESHOLD => 'optional', |
|
512 | - PCLZIP_OPT_TEMP_FILE_ON => 'optional', |
|
513 | - PCLZIP_OPT_TEMP_FILE_OFF => 'optional' |
|
514 | - //, PCLZIP_OPT_CRYPT => 'optional' |
|
515 | - )); |
|
503 | + PCLZIP_OPT_REMOVE_ALL_PATH => 'optional', |
|
504 | + PCLZIP_OPT_ADD_PATH => 'optional', |
|
505 | + PCLZIP_CB_PRE_ADD => 'optional', |
|
506 | + PCLZIP_CB_POST_ADD => 'optional', |
|
507 | + PCLZIP_OPT_NO_COMPRESSION => 'optional', |
|
508 | + PCLZIP_OPT_COMMENT => 'optional', |
|
509 | + PCLZIP_OPT_ADD_COMMENT => 'optional', |
|
510 | + PCLZIP_OPT_PREPEND_COMMENT => 'optional', |
|
511 | + PCLZIP_OPT_TEMP_FILE_THRESHOLD => 'optional', |
|
512 | + PCLZIP_OPT_TEMP_FILE_ON => 'optional', |
|
513 | + PCLZIP_OPT_TEMP_FILE_OFF => 'optional' |
|
514 | + //, PCLZIP_OPT_CRYPT => 'optional' |
|
515 | + )); |
|
516 | 516 | if ($v_result != 1) { |
517 | - return 0; |
|
517 | + return 0; |
|
518 | + } |
|
518 | 519 | } |
519 | - } |
|
520 | 520 | |
521 | - // ----- Look for 2 args |
|
522 | - // Here we need to support the first historic synopsis of the |
|
523 | - // method. |
|
524 | - else { |
|
521 | + // ----- Look for 2 args |
|
522 | + // Here we need to support the first historic synopsis of the |
|
523 | + // method. |
|
524 | + else { |
|
525 | 525 | |
526 | 526 | // ----- Get the first argument |
527 | 527 | $v_options[PCLZIP_OPT_ADD_PATH] = $v_add_path = $v_arg_list[0]; |
528 | 528 | |
529 | 529 | // ----- Look for the optional second argument |
530 | 530 | if ($v_size == 2) { |
531 | - $v_options[PCLZIP_OPT_REMOVE_PATH] = $v_arg_list[1]; |
|
531 | + $v_options[PCLZIP_OPT_REMOVE_PATH] = $v_arg_list[1]; |
|
532 | 532 | } |
533 | 533 | else if ($v_size > 2) { |
534 | - // ----- Error log |
|
535 | - PclZip::privErrorLog(PCLZIP_ERR_INVALID_PARAMETER, "Invalid number / type of arguments"); |
|
534 | + // ----- Error log |
|
535 | + PclZip::privErrorLog(PCLZIP_ERR_INVALID_PARAMETER, "Invalid number / type of arguments"); |
|
536 | 536 | |
537 | - // ----- Return |
|
538 | - return 0; |
|
537 | + // ----- Return |
|
538 | + return 0; |
|
539 | + } |
|
539 | 540 | } |
540 | - } |
|
541 | 541 | } |
542 | 542 | |
543 | 543 | // ----- Look for default option values |
@@ -552,116 +552,116 @@ discard block |
||
552 | 552 | // ----- Look if the $p_filelist is really an array |
553 | 553 | if (is_array($p_filelist)) { |
554 | 554 | |
555 | - // ----- Look if the first element is also an array |
|
556 | - // This will mean that this is a file description entry |
|
557 | - if (isset($p_filelist[0]) && is_array($p_filelist[0])) { |
|
555 | + // ----- Look if the first element is also an array |
|
556 | + // This will mean that this is a file description entry |
|
557 | + if (isset($p_filelist[0]) && is_array($p_filelist[0])) { |
|
558 | 558 | $v_att_list = $p_filelist; |
559 | - } |
|
559 | + } |
|
560 | 560 | |
561 | - // ----- The list is a list of string names |
|
562 | - else { |
|
561 | + // ----- The list is a list of string names |
|
562 | + else { |
|
563 | 563 | $v_string_list = $p_filelist; |
564 | - } |
|
564 | + } |
|
565 | 565 | } |
566 | 566 | |
567 | 567 | // ----- Look if the $p_filelist is a string |
568 | 568 | else if (is_string($p_filelist)) { |
569 | - // ----- Create a list from the string |
|
570 | - $v_string_list = explode(PCLZIP_SEPARATOR, $p_filelist); |
|
569 | + // ----- Create a list from the string |
|
570 | + $v_string_list = explode(PCLZIP_SEPARATOR, $p_filelist); |
|
571 | 571 | } |
572 | 572 | |
573 | 573 | // ----- Invalid variable type for $p_filelist |
574 | 574 | else { |
575 | - PclZip::privErrorLog(PCLZIP_ERR_INVALID_PARAMETER, "Invalid variable type '".gettype($p_filelist)."' for p_filelist"); |
|
576 | - return 0; |
|
575 | + PclZip::privErrorLog(PCLZIP_ERR_INVALID_PARAMETER, "Invalid variable type '".gettype($p_filelist)."' for p_filelist"); |
|
576 | + return 0; |
|
577 | 577 | } |
578 | 578 | |
579 | 579 | // ----- Reformat the string list |
580 | 580 | if (sizeof($v_string_list) != 0) { |
581 | - foreach ($v_string_list as $v_string) { |
|
581 | + foreach ($v_string_list as $v_string) { |
|
582 | 582 | $v_att_list[][PCLZIP_ATT_FILE_NAME] = $v_string; |
583 | - } |
|
583 | + } |
|
584 | 584 | } |
585 | 585 | |
586 | 586 | // ----- For each file in the list check the attributes |
587 | 587 | $v_supported_attributes |
588 | 588 | = array ( PCLZIP_ATT_FILE_NAME => 'mandatory' |
589 | - ,PCLZIP_ATT_FILE_NEW_SHORT_NAME => 'optional' |
|
590 | - ,PCLZIP_ATT_FILE_NEW_FULL_NAME => 'optional' |
|
591 | - ,PCLZIP_ATT_FILE_MTIME => 'optional' |
|
592 | - ,PCLZIP_ATT_FILE_CONTENT => 'optional' |
|
593 | - ,PCLZIP_ATT_FILE_COMMENT => 'optional' |
|
594 | - ); |
|
589 | + ,PCLZIP_ATT_FILE_NEW_SHORT_NAME => 'optional' |
|
590 | + ,PCLZIP_ATT_FILE_NEW_FULL_NAME => 'optional' |
|
591 | + ,PCLZIP_ATT_FILE_MTIME => 'optional' |
|
592 | + ,PCLZIP_ATT_FILE_CONTENT => 'optional' |
|
593 | + ,PCLZIP_ATT_FILE_COMMENT => 'optional' |
|
594 | + ); |
|
595 | 595 | foreach ($v_att_list as $v_entry) { |
596 | - $v_result = $this->privFileDescrParseAtt($v_entry, |
|
597 | - $v_filedescr_list[], |
|
598 | - $v_options, |
|
599 | - $v_supported_attributes); |
|
600 | - if ($v_result != 1) { |
|
596 | + $v_result = $this->privFileDescrParseAtt($v_entry, |
|
597 | + $v_filedescr_list[], |
|
598 | + $v_options, |
|
599 | + $v_supported_attributes); |
|
600 | + if ($v_result != 1) { |
|
601 | 601 | return 0; |
602 | - } |
|
602 | + } |
|
603 | 603 | } |
604 | 604 | |
605 | 605 | // ----- Expand the filelist (expand directories) |
606 | 606 | $v_result = $this->privFileDescrExpand($v_filedescr_list, $v_options); |
607 | 607 | if ($v_result != 1) { |
608 | - return 0; |
|
608 | + return 0; |
|
609 | 609 | } |
610 | 610 | |
611 | 611 | // ----- Call the create fct |
612 | 612 | $v_result = $this->privAdd($v_filedescr_list, $p_result_list, $v_options); |
613 | 613 | if ($v_result != 1) { |
614 | - return 0; |
|
614 | + return 0; |
|
615 | 615 | } |
616 | 616 | |
617 | 617 | // ----- Return |
618 | 618 | return $p_result_list; |
619 | - } |
|
620 | - // -------------------------------------------------------------------------------- |
|
621 | - |
|
622 | - // -------------------------------------------------------------------------------- |
|
623 | - // Function : listContent() |
|
624 | - // Description : |
|
625 | - // This public method, gives the list of the files and directories, with their |
|
626 | - // properties. |
|
627 | - // The properties of each entries in the list are (used also in other functions) : |
|
628 | - // filename : Name of the file. For a create or add action it is the filename |
|
629 | - // given by the user. For an extract function it is the filename |
|
630 | - // of the extracted file. |
|
631 | - // stored_filename : Name of the file / directory stored in the archive. |
|
632 | - // size : Size of the stored file. |
|
633 | - // compressed_size : Size of the file's data compressed in the archive |
|
634 | - // (without the headers overhead) |
|
635 | - // mtime : Last known modification date of the file (UNIX timestamp) |
|
636 | - // comment : Comment associated with the file |
|
637 | - // folder : true | false |
|
638 | - // index : index of the file in the archive |
|
639 | - // status : status of the action (depending of the action) : |
|
640 | - // Values are : |
|
641 | - // ok : OK ! |
|
642 | - // filtered : the file / dir is not extracted (filtered by user) |
|
643 | - // already_a_directory : the file can not be extracted because a |
|
644 | - // directory with the same name already exists |
|
645 | - // write_protected : the file can not be extracted because a file |
|
646 | - // with the same name already exists and is |
|
647 | - // write protected |
|
648 | - // newer_exist : the file was not extracted because a newer file exists |
|
649 | - // path_creation_fail : the file is not extracted because the folder |
|
650 | - // does not exist and can not be created |
|
651 | - // write_error : the file was not extracted because there was a |
|
652 | - // error while writing the file |
|
653 | - // read_error : the file was not extracted because there was a error |
|
654 | - // while reading the file |
|
655 | - // invalid_header : the file was not extracted because of an archive |
|
656 | - // format error (bad file header) |
|
657 | - // Note that each time a method can continue operating when there |
|
658 | - // is an action error on a file, the error is only logged in the file status. |
|
659 | - // Return Values : |
|
660 | - // 0 on an unrecoverable failure, |
|
661 | - // The list of the files in the archive. |
|
662 | - // -------------------------------------------------------------------------------- |
|
663 | - function listContent() |
|
664 | - { |
|
619 | + } |
|
620 | + // -------------------------------------------------------------------------------- |
|
621 | + |
|
622 | + // -------------------------------------------------------------------------------- |
|
623 | + // Function : listContent() |
|
624 | + // Description : |
|
625 | + // This public method, gives the list of the files and directories, with their |
|
626 | + // properties. |
|
627 | + // The properties of each entries in the list are (used also in other functions) : |
|
628 | + // filename : Name of the file. For a create or add action it is the filename |
|
629 | + // given by the user. For an extract function it is the filename |
|
630 | + // of the extracted file. |
|
631 | + // stored_filename : Name of the file / directory stored in the archive. |
|
632 | + // size : Size of the stored file. |
|
633 | + // compressed_size : Size of the file's data compressed in the archive |
|
634 | + // (without the headers overhead) |
|
635 | + // mtime : Last known modification date of the file (UNIX timestamp) |
|
636 | + // comment : Comment associated with the file |
|
637 | + // folder : true | false |
|
638 | + // index : index of the file in the archive |
|
639 | + // status : status of the action (depending of the action) : |
|
640 | + // Values are : |
|
641 | + // ok : OK ! |
|
642 | + // filtered : the file / dir is not extracted (filtered by user) |
|
643 | + // already_a_directory : the file can not be extracted because a |
|
644 | + // directory with the same name already exists |
|
645 | + // write_protected : the file can not be extracted because a file |
|
646 | + // with the same name already exists and is |
|
647 | + // write protected |
|
648 | + // newer_exist : the file was not extracted because a newer file exists |
|
649 | + // path_creation_fail : the file is not extracted because the folder |
|
650 | + // does not exist and can not be created |
|
651 | + // write_error : the file was not extracted because there was a |
|
652 | + // error while writing the file |
|
653 | + // read_error : the file was not extracted because there was a error |
|
654 | + // while reading the file |
|
655 | + // invalid_header : the file was not extracted because of an archive |
|
656 | + // format error (bad file header) |
|
657 | + // Note that each time a method can continue operating when there |
|
658 | + // is an action error on a file, the error is only logged in the file status. |
|
659 | + // Return Values : |
|
660 | + // 0 on an unrecoverable failure, |
|
661 | + // The list of the files in the archive. |
|
662 | + // -------------------------------------------------------------------------------- |
|
663 | + function listContent() |
|
664 | + { |
|
665 | 665 | $v_result=1; |
666 | 666 | |
667 | 667 | // ----- Reset the error handler |
@@ -669,56 +669,56 @@ discard block |
||
669 | 669 | |
670 | 670 | // ----- Check archive |
671 | 671 | if (!$this->privCheckFormat()) { |
672 | - return(0); |
|
672 | + return(0); |
|
673 | 673 | } |
674 | 674 | |
675 | 675 | // ----- Call the extracting fct |
676 | 676 | $p_list = array(); |
677 | 677 | if (($v_result = $this->privList($p_list)) != 1) |
678 | 678 | { |
679 | - unset($p_list); |
|
680 | - return(0); |
|
679 | + unset($p_list); |
|
680 | + return(0); |
|
681 | 681 | } |
682 | 682 | |
683 | 683 | // ----- Return |
684 | 684 | return $p_list; |
685 | - } |
|
686 | - // -------------------------------------------------------------------------------- |
|
687 | - |
|
688 | - // -------------------------------------------------------------------------------- |
|
689 | - // Function : |
|
690 | - // extract($p_path="./", $p_remove_path="") |
|
691 | - // extract([$p_option, $p_option_value, ...]) |
|
692 | - // Description : |
|
693 | - // This method supports two synopsis. The first one is historical. |
|
694 | - // This method extract all the files / directories from the archive to the |
|
695 | - // folder indicated in $p_path. |
|
696 | - // If you want to ignore the 'root' part of path of the memorized files |
|
697 | - // you can indicate this in the optional $p_remove_path parameter. |
|
698 | - // By default, if a newer file with the same name already exists, the |
|
699 | - // file is not extracted. |
|
700 | - // |
|
701 | - // If both PCLZIP_OPT_PATH and PCLZIP_OPT_ADD_PATH aoptions |
|
702 | - // are used, the path indicated in PCLZIP_OPT_ADD_PATH is append |
|
703 | - // at the end of the path value of PCLZIP_OPT_PATH. |
|
704 | - // Parameters : |
|
705 | - // $p_path : Path where the files and directories are to be extracted |
|
706 | - // $p_remove_path : First part ('root' part) of the memorized path |
|
707 | - // (if any similar) to remove while extracting. |
|
708 | - // Options : |
|
709 | - // PCLZIP_OPT_PATH : |
|
710 | - // PCLZIP_OPT_ADD_PATH : |
|
711 | - // PCLZIP_OPT_REMOVE_PATH : |
|
712 | - // PCLZIP_OPT_REMOVE_ALL_PATH : |
|
713 | - // PCLZIP_CB_PRE_EXTRACT : |
|
714 | - // PCLZIP_CB_POST_EXTRACT : |
|
715 | - // Return Values : |
|
716 | - // 0 or a negative value on failure, |
|
717 | - // The list of the extracted files, with a status of the action. |
|
718 | - // (see PclZip::listContent() for list entry format) |
|
719 | - // -------------------------------------------------------------------------------- |
|
720 | - function extract() |
|
721 | - { |
|
685 | + } |
|
686 | + // -------------------------------------------------------------------------------- |
|
687 | + |
|
688 | + // -------------------------------------------------------------------------------- |
|
689 | + // Function : |
|
690 | + // extract($p_path="./", $p_remove_path="") |
|
691 | + // extract([$p_option, $p_option_value, ...]) |
|
692 | + // Description : |
|
693 | + // This method supports two synopsis. The first one is historical. |
|
694 | + // This method extract all the files / directories from the archive to the |
|
695 | + // folder indicated in $p_path. |
|
696 | + // If you want to ignore the 'root' part of path of the memorized files |
|
697 | + // you can indicate this in the optional $p_remove_path parameter. |
|
698 | + // By default, if a newer file with the same name already exists, the |
|
699 | + // file is not extracted. |
|
700 | + // |
|
701 | + // If both PCLZIP_OPT_PATH and PCLZIP_OPT_ADD_PATH aoptions |
|
702 | + // are used, the path indicated in PCLZIP_OPT_ADD_PATH is append |
|
703 | + // at the end of the path value of PCLZIP_OPT_PATH. |
|
704 | + // Parameters : |
|
705 | + // $p_path : Path where the files and directories are to be extracted |
|
706 | + // $p_remove_path : First part ('root' part) of the memorized path |
|
707 | + // (if any similar) to remove while extracting. |
|
708 | + // Options : |
|
709 | + // PCLZIP_OPT_PATH : |
|
710 | + // PCLZIP_OPT_ADD_PATH : |
|
711 | + // PCLZIP_OPT_REMOVE_PATH : |
|
712 | + // PCLZIP_OPT_REMOVE_ALL_PATH : |
|
713 | + // PCLZIP_CB_PRE_EXTRACT : |
|
714 | + // PCLZIP_CB_POST_EXTRACT : |
|
715 | + // Return Values : |
|
716 | + // 0 or a negative value on failure, |
|
717 | + // The list of the extracted files, with a status of the action. |
|
718 | + // (see PclZip::listContent() for list entry format) |
|
719 | + // -------------------------------------------------------------------------------- |
|
720 | + function extract() |
|
721 | + { |
|
722 | 722 | $v_result=1; |
723 | 723 | |
724 | 724 | // ----- Reset the error handler |
@@ -726,7 +726,7 @@ discard block |
||
726 | 726 | |
727 | 727 | // ----- Check archive |
728 | 728 | if (!$this->privCheckFormat()) { |
729 | - return(0); |
|
729 | + return(0); |
|
730 | 730 | } |
731 | 731 | |
732 | 732 | // ----- Set default values |
@@ -744,77 +744,77 @@ discard block |
||
744 | 744 | |
745 | 745 | // ----- Look for arguments |
746 | 746 | if ($v_size > 0) { |
747 | - // ----- Get the arguments |
|
748 | - $v_arg_list = func_get_args(); |
|
747 | + // ----- Get the arguments |
|
748 | + $v_arg_list = func_get_args(); |
|
749 | 749 | |
750 | - // ----- Look for first arg |
|
751 | - if ((is_integer($v_arg_list[0])) && ($v_arg_list[0] > 77000)) { |
|
750 | + // ----- Look for first arg |
|
751 | + if ((is_integer($v_arg_list[0])) && ($v_arg_list[0] > 77000)) { |
|
752 | 752 | |
753 | 753 | // ----- Parse the options |
754 | 754 | $v_result = $this->privParseOptions($v_arg_list, $v_size, $v_options, |
755 | 755 | array (PCLZIP_OPT_PATH => 'optional', |
756 | - PCLZIP_OPT_REMOVE_PATH => 'optional', |
|
757 | - PCLZIP_OPT_REMOVE_ALL_PATH => 'optional', |
|
758 | - PCLZIP_OPT_ADD_PATH => 'optional', |
|
759 | - PCLZIP_CB_PRE_EXTRACT => 'optional', |
|
760 | - PCLZIP_CB_POST_EXTRACT => 'optional', |
|
761 | - PCLZIP_OPT_SET_CHMOD => 'optional', |
|
762 | - PCLZIP_OPT_BY_NAME => 'optional', |
|
763 | - PCLZIP_OPT_BY_EREG => 'optional', |
|
764 | - PCLZIP_OPT_BY_PREG => 'optional', |
|
765 | - PCLZIP_OPT_BY_INDEX => 'optional', |
|
766 | - PCLZIP_OPT_EXTRACT_AS_STRING => 'optional', |
|
767 | - PCLZIP_OPT_EXTRACT_IN_OUTPUT => 'optional', |
|
768 | - PCLZIP_OPT_REPLACE_NEWER => 'optional' |
|
769 | - ,PCLZIP_OPT_STOP_ON_ERROR => 'optional' |
|
770 | - ,PCLZIP_OPT_EXTRACT_DIR_RESTRICTION => 'optional', |
|
771 | - PCLZIP_OPT_TEMP_FILE_THRESHOLD => 'optional', |
|
772 | - PCLZIP_OPT_TEMP_FILE_ON => 'optional', |
|
773 | - PCLZIP_OPT_TEMP_FILE_OFF => 'optional' |
|
774 | - )); |
|
756 | + PCLZIP_OPT_REMOVE_PATH => 'optional', |
|
757 | + PCLZIP_OPT_REMOVE_ALL_PATH => 'optional', |
|
758 | + PCLZIP_OPT_ADD_PATH => 'optional', |
|
759 | + PCLZIP_CB_PRE_EXTRACT => 'optional', |
|
760 | + PCLZIP_CB_POST_EXTRACT => 'optional', |
|
761 | + PCLZIP_OPT_SET_CHMOD => 'optional', |
|
762 | + PCLZIP_OPT_BY_NAME => 'optional', |
|
763 | + PCLZIP_OPT_BY_EREG => 'optional', |
|
764 | + PCLZIP_OPT_BY_PREG => 'optional', |
|
765 | + PCLZIP_OPT_BY_INDEX => 'optional', |
|
766 | + PCLZIP_OPT_EXTRACT_AS_STRING => 'optional', |
|
767 | + PCLZIP_OPT_EXTRACT_IN_OUTPUT => 'optional', |
|
768 | + PCLZIP_OPT_REPLACE_NEWER => 'optional' |
|
769 | + ,PCLZIP_OPT_STOP_ON_ERROR => 'optional' |
|
770 | + ,PCLZIP_OPT_EXTRACT_DIR_RESTRICTION => 'optional', |
|
771 | + PCLZIP_OPT_TEMP_FILE_THRESHOLD => 'optional', |
|
772 | + PCLZIP_OPT_TEMP_FILE_ON => 'optional', |
|
773 | + PCLZIP_OPT_TEMP_FILE_OFF => 'optional' |
|
774 | + )); |
|
775 | 775 | if ($v_result != 1) { |
776 | - return 0; |
|
776 | + return 0; |
|
777 | 777 | } |
778 | 778 | |
779 | 779 | // ----- Set the arguments |
780 | 780 | if (isset($v_options[PCLZIP_OPT_PATH])) { |
781 | - $v_path = $v_options[PCLZIP_OPT_PATH]; |
|
781 | + $v_path = $v_options[PCLZIP_OPT_PATH]; |
|
782 | 782 | } |
783 | 783 | if (isset($v_options[PCLZIP_OPT_REMOVE_PATH])) { |
784 | - $v_remove_path = $v_options[PCLZIP_OPT_REMOVE_PATH]; |
|
784 | + $v_remove_path = $v_options[PCLZIP_OPT_REMOVE_PATH]; |
|
785 | 785 | } |
786 | 786 | if (isset($v_options[PCLZIP_OPT_REMOVE_ALL_PATH])) { |
787 | - $v_remove_all_path = $v_options[PCLZIP_OPT_REMOVE_ALL_PATH]; |
|
787 | + $v_remove_all_path = $v_options[PCLZIP_OPT_REMOVE_ALL_PATH]; |
|
788 | 788 | } |
789 | 789 | if (isset($v_options[PCLZIP_OPT_ADD_PATH])) { |
790 | - // ----- Check for '/' in last path char |
|
791 | - if ((strlen($v_path) > 0) && (substr($v_path, -1) != '/')) { |
|
790 | + // ----- Check for '/' in last path char |
|
791 | + if ((strlen($v_path) > 0) && (substr($v_path, -1) != '/')) { |
|
792 | 792 | $v_path .= '/'; |
793 | - } |
|
794 | - $v_path .= $v_options[PCLZIP_OPT_ADD_PATH]; |
|
793 | + } |
|
794 | + $v_path .= $v_options[PCLZIP_OPT_ADD_PATH]; |
|
795 | + } |
|
795 | 796 | } |
796 | - } |
|
797 | 797 | |
798 | - // ----- Look for 2 args |
|
799 | - // Here we need to support the first historic synopsis of the |
|
800 | - // method. |
|
801 | - else { |
|
798 | + // ----- Look for 2 args |
|
799 | + // Here we need to support the first historic synopsis of the |
|
800 | + // method. |
|
801 | + else { |
|
802 | 802 | |
803 | 803 | // ----- Get the first argument |
804 | 804 | $v_path = $v_arg_list[0]; |
805 | 805 | |
806 | 806 | // ----- Look for the optional second argument |
807 | 807 | if ($v_size == 2) { |
808 | - $v_remove_path = $v_arg_list[1]; |
|
808 | + $v_remove_path = $v_arg_list[1]; |
|
809 | 809 | } |
810 | 810 | else if ($v_size > 2) { |
811 | - // ----- Error log |
|
812 | - PclZip::privErrorLog(PCLZIP_ERR_INVALID_PARAMETER, "Invalid number / type of arguments"); |
|
811 | + // ----- Error log |
|
812 | + PclZip::privErrorLog(PCLZIP_ERR_INVALID_PARAMETER, "Invalid number / type of arguments"); |
|
813 | 813 | |
814 | - // ----- Return |
|
815 | - return 0; |
|
814 | + // ----- Return |
|
815 | + return 0; |
|
816 | + } |
|
816 | 817 | } |
817 | - } |
|
818 | 818 | } |
819 | 819 | |
820 | 820 | // ----- Look for default option values |
@@ -825,57 +825,57 @@ discard block |
||
825 | 825 | // ----- Call the extracting fct |
826 | 826 | $p_list = array(); |
827 | 827 | $v_result = $this->privExtractByRule($p_list, $v_path, $v_remove_path, |
828 | - $v_remove_all_path, $v_options); |
|
828 | + $v_remove_all_path, $v_options); |
|
829 | 829 | if ($v_result < 1) { |
830 | - unset($p_list); |
|
831 | - return(0); |
|
830 | + unset($p_list); |
|
831 | + return(0); |
|
832 | 832 | } |
833 | 833 | |
834 | 834 | // ----- Return |
835 | 835 | return $p_list; |
836 | - } |
|
837 | - // -------------------------------------------------------------------------------- |
|
838 | - |
|
839 | - |
|
840 | - // -------------------------------------------------------------------------------- |
|
841 | - // Function : |
|
842 | - // extractByIndex($p_index, $p_path="./", $p_remove_path="") |
|
843 | - // extractByIndex($p_index, [$p_option, $p_option_value, ...]) |
|
844 | - // Description : |
|
845 | - // This method supports two synopsis. The first one is historical. |
|
846 | - // This method is doing a partial extract of the archive. |
|
847 | - // The extracted files or folders are identified by their index in the |
|
848 | - // archive (from 0 to n). |
|
849 | - // Note that if the index identify a folder, only the folder entry is |
|
850 | - // extracted, not all the files included in the archive. |
|
851 | - // Parameters : |
|
852 | - // $p_index : A single index (integer) or a string of indexes of files to |
|
853 | - // extract. The form of the string is "0,4-6,8-12" with only numbers |
|
854 | - // and '-' for range or ',' to separate ranges. No spaces or ';' |
|
855 | - // are allowed. |
|
856 | - // $p_path : Path where the files and directories are to be extracted |
|
857 | - // $p_remove_path : First part ('root' part) of the memorized path |
|
858 | - // (if any similar) to remove while extracting. |
|
859 | - // Options : |
|
860 | - // PCLZIP_OPT_PATH : |
|
861 | - // PCLZIP_OPT_ADD_PATH : |
|
862 | - // PCLZIP_OPT_REMOVE_PATH : |
|
863 | - // PCLZIP_OPT_REMOVE_ALL_PATH : |
|
864 | - // PCLZIP_OPT_EXTRACT_AS_STRING : The files are extracted as strings and |
|
865 | - // not as files. |
|
866 | - // The resulting content is in a new field 'content' in the file |
|
867 | - // structure. |
|
868 | - // This option must be used alone (any other options are ignored). |
|
869 | - // PCLZIP_CB_PRE_EXTRACT : |
|
870 | - // PCLZIP_CB_POST_EXTRACT : |
|
871 | - // Return Values : |
|
872 | - // 0 on failure, |
|
873 | - // The list of the extracted files, with a status of the action. |
|
874 | - // (see PclZip::listContent() for list entry format) |
|
875 | - // -------------------------------------------------------------------------------- |
|
876 | - //function extractByIndex($p_index, options...) |
|
877 | - function extractByIndex($p_index) |
|
878 | - { |
|
836 | + } |
|
837 | + // -------------------------------------------------------------------------------- |
|
838 | + |
|
839 | + |
|
840 | + // -------------------------------------------------------------------------------- |
|
841 | + // Function : |
|
842 | + // extractByIndex($p_index, $p_path="./", $p_remove_path="") |
|
843 | + // extractByIndex($p_index, [$p_option, $p_option_value, ...]) |
|
844 | + // Description : |
|
845 | + // This method supports two synopsis. The first one is historical. |
|
846 | + // This method is doing a partial extract of the archive. |
|
847 | + // The extracted files or folders are identified by their index in the |
|
848 | + // archive (from 0 to n). |
|
849 | + // Note that if the index identify a folder, only the folder entry is |
|
850 | + // extracted, not all the files included in the archive. |
|
851 | + // Parameters : |
|
852 | + // $p_index : A single index (integer) or a string of indexes of files to |
|
853 | + // extract. The form of the string is "0,4-6,8-12" with only numbers |
|
854 | + // and '-' for range or ',' to separate ranges. No spaces or ';' |
|
855 | + // are allowed. |
|
856 | + // $p_path : Path where the files and directories are to be extracted |
|
857 | + // $p_remove_path : First part ('root' part) of the memorized path |
|
858 | + // (if any similar) to remove while extracting. |
|
859 | + // Options : |
|
860 | + // PCLZIP_OPT_PATH : |
|
861 | + // PCLZIP_OPT_ADD_PATH : |
|
862 | + // PCLZIP_OPT_REMOVE_PATH : |
|
863 | + // PCLZIP_OPT_REMOVE_ALL_PATH : |
|
864 | + // PCLZIP_OPT_EXTRACT_AS_STRING : The files are extracted as strings and |
|
865 | + // not as files. |
|
866 | + // The resulting content is in a new field 'content' in the file |
|
867 | + // structure. |
|
868 | + // This option must be used alone (any other options are ignored). |
|
869 | + // PCLZIP_CB_PRE_EXTRACT : |
|
870 | + // PCLZIP_CB_POST_EXTRACT : |
|
871 | + // Return Values : |
|
872 | + // 0 on failure, |
|
873 | + // The list of the extracted files, with a status of the action. |
|
874 | + // (see PclZip::listContent() for list entry format) |
|
875 | + // -------------------------------------------------------------------------------- |
|
876 | + //function extractByIndex($p_index, options...) |
|
877 | + function extractByIndex($p_index) |
|
878 | + { |
|
879 | 879 | $v_result=1; |
880 | 880 | |
881 | 881 | // ----- Reset the error handler |
@@ -883,7 +883,7 @@ discard block |
||
883 | 883 | |
884 | 884 | // ----- Check archive |
885 | 885 | if (!$this->privCheckFormat()) { |
886 | - return(0); |
|
886 | + return(0); |
|
887 | 887 | } |
888 | 888 | |
889 | 889 | // ----- Set default values |
@@ -901,81 +901,81 @@ discard block |
||
901 | 901 | |
902 | 902 | // ----- Look for arguments |
903 | 903 | if ($v_size > 1) { |
904 | - // ----- Get the arguments |
|
905 | - $v_arg_list = func_get_args(); |
|
904 | + // ----- Get the arguments |
|
905 | + $v_arg_list = func_get_args(); |
|
906 | 906 | |
907 | - // ----- Remove form the options list the first argument |
|
908 | - array_shift($v_arg_list); |
|
909 | - $v_size--; |
|
907 | + // ----- Remove form the options list the first argument |
|
908 | + array_shift($v_arg_list); |
|
909 | + $v_size--; |
|
910 | 910 | |
911 | - // ----- Look for first arg |
|
912 | - if ((is_integer($v_arg_list[0])) && ($v_arg_list[0] > 77000)) { |
|
911 | + // ----- Look for first arg |
|
912 | + if ((is_integer($v_arg_list[0])) && ($v_arg_list[0] > 77000)) { |
|
913 | 913 | |
914 | 914 | // ----- Parse the options |
915 | 915 | $v_result = $this->privParseOptions($v_arg_list, $v_size, $v_options, |
916 | 916 | array (PCLZIP_OPT_PATH => 'optional', |
917 | - PCLZIP_OPT_REMOVE_PATH => 'optional', |
|
918 | - PCLZIP_OPT_REMOVE_ALL_PATH => 'optional', |
|
919 | - PCLZIP_OPT_EXTRACT_AS_STRING => 'optional', |
|
920 | - PCLZIP_OPT_ADD_PATH => 'optional', |
|
921 | - PCLZIP_CB_PRE_EXTRACT => 'optional', |
|
922 | - PCLZIP_CB_POST_EXTRACT => 'optional', |
|
923 | - PCLZIP_OPT_SET_CHMOD => 'optional', |
|
924 | - PCLZIP_OPT_REPLACE_NEWER => 'optional' |
|
925 | - ,PCLZIP_OPT_STOP_ON_ERROR => 'optional' |
|
926 | - ,PCLZIP_OPT_EXTRACT_DIR_RESTRICTION => 'optional', |
|
927 | - PCLZIP_OPT_TEMP_FILE_THRESHOLD => 'optional', |
|
928 | - PCLZIP_OPT_TEMP_FILE_ON => 'optional', |
|
929 | - PCLZIP_OPT_TEMP_FILE_OFF => 'optional' |
|
930 | - )); |
|
917 | + PCLZIP_OPT_REMOVE_PATH => 'optional', |
|
918 | + PCLZIP_OPT_REMOVE_ALL_PATH => 'optional', |
|
919 | + PCLZIP_OPT_EXTRACT_AS_STRING => 'optional', |
|
920 | + PCLZIP_OPT_ADD_PATH => 'optional', |
|
921 | + PCLZIP_CB_PRE_EXTRACT => 'optional', |
|
922 | + PCLZIP_CB_POST_EXTRACT => 'optional', |
|
923 | + PCLZIP_OPT_SET_CHMOD => 'optional', |
|
924 | + PCLZIP_OPT_REPLACE_NEWER => 'optional' |
|
925 | + ,PCLZIP_OPT_STOP_ON_ERROR => 'optional' |
|
926 | + ,PCLZIP_OPT_EXTRACT_DIR_RESTRICTION => 'optional', |
|
927 | + PCLZIP_OPT_TEMP_FILE_THRESHOLD => 'optional', |
|
928 | + PCLZIP_OPT_TEMP_FILE_ON => 'optional', |
|
929 | + PCLZIP_OPT_TEMP_FILE_OFF => 'optional' |
|
930 | + )); |
|
931 | 931 | if ($v_result != 1) { |
932 | - return 0; |
|
932 | + return 0; |
|
933 | 933 | } |
934 | 934 | |
935 | 935 | // ----- Set the arguments |
936 | 936 | if (isset($v_options[PCLZIP_OPT_PATH])) { |
937 | - $v_path = $v_options[PCLZIP_OPT_PATH]; |
|
937 | + $v_path = $v_options[PCLZIP_OPT_PATH]; |
|
938 | 938 | } |
939 | 939 | if (isset($v_options[PCLZIP_OPT_REMOVE_PATH])) { |
940 | - $v_remove_path = $v_options[PCLZIP_OPT_REMOVE_PATH]; |
|
940 | + $v_remove_path = $v_options[PCLZIP_OPT_REMOVE_PATH]; |
|
941 | 941 | } |
942 | 942 | if (isset($v_options[PCLZIP_OPT_REMOVE_ALL_PATH])) { |
943 | - $v_remove_all_path = $v_options[PCLZIP_OPT_REMOVE_ALL_PATH]; |
|
943 | + $v_remove_all_path = $v_options[PCLZIP_OPT_REMOVE_ALL_PATH]; |
|
944 | 944 | } |
945 | 945 | if (isset($v_options[PCLZIP_OPT_ADD_PATH])) { |
946 | - // ----- Check for '/' in last path char |
|
947 | - if ((strlen($v_path) > 0) && (substr($v_path, -1) != '/')) { |
|
946 | + // ----- Check for '/' in last path char |
|
947 | + if ((strlen($v_path) > 0) && (substr($v_path, -1) != '/')) { |
|
948 | 948 | $v_path .= '/'; |
949 | - } |
|
950 | - $v_path .= $v_options[PCLZIP_OPT_ADD_PATH]; |
|
949 | + } |
|
950 | + $v_path .= $v_options[PCLZIP_OPT_ADD_PATH]; |
|
951 | 951 | } |
952 | 952 | if (!isset($v_options[PCLZIP_OPT_EXTRACT_AS_STRING])) { |
953 | - $v_options[PCLZIP_OPT_EXTRACT_AS_STRING] = FALSE; |
|
953 | + $v_options[PCLZIP_OPT_EXTRACT_AS_STRING] = FALSE; |
|
954 | 954 | } |
955 | 955 | else { |
956 | 956 | } |
957 | - } |
|
957 | + } |
|
958 | 958 | |
959 | - // ----- Look for 2 args |
|
960 | - // Here we need to support the first historic synopsis of the |
|
961 | - // method. |
|
962 | - else { |
|
959 | + // ----- Look for 2 args |
|
960 | + // Here we need to support the first historic synopsis of the |
|
961 | + // method. |
|
962 | + else { |
|
963 | 963 | |
964 | 964 | // ----- Get the first argument |
965 | 965 | $v_path = $v_arg_list[0]; |
966 | 966 | |
967 | 967 | // ----- Look for the optional second argument |
968 | 968 | if ($v_size == 2) { |
969 | - $v_remove_path = $v_arg_list[1]; |
|
969 | + $v_remove_path = $v_arg_list[1]; |
|
970 | 970 | } |
971 | 971 | else if ($v_size > 2) { |
972 | - // ----- Error log |
|
973 | - PclZip::privErrorLog(PCLZIP_ERR_INVALID_PARAMETER, "Invalid number / type of arguments"); |
|
972 | + // ----- Error log |
|
973 | + PclZip::privErrorLog(PCLZIP_ERR_INVALID_PARAMETER, "Invalid number / type of arguments"); |
|
974 | 974 | |
975 | - // ----- Return |
|
976 | - return 0; |
|
975 | + // ----- Return |
|
976 | + return 0; |
|
977 | + } |
|
977 | 978 | } |
978 | - } |
|
979 | 979 | } |
980 | 980 | |
981 | 981 | // ----- Trace |
@@ -1002,29 +1002,29 @@ discard block |
||
1002 | 1002 | |
1003 | 1003 | // ----- Return |
1004 | 1004 | return $p_list; |
1005 | - } |
|
1006 | - // -------------------------------------------------------------------------------- |
|
1007 | - |
|
1008 | - // -------------------------------------------------------------------------------- |
|
1009 | - // Function : |
|
1010 | - // delete([$p_option, $p_option_value, ...]) |
|
1011 | - // Description : |
|
1012 | - // This method removes files from the archive. |
|
1013 | - // If no parameters are given, then all the archive is emptied. |
|
1014 | - // Parameters : |
|
1015 | - // None or optional arguments. |
|
1016 | - // Options : |
|
1017 | - // PCLZIP_OPT_BY_INDEX : |
|
1018 | - // PCLZIP_OPT_BY_NAME : |
|
1019 | - // PCLZIP_OPT_BY_EREG : |
|
1020 | - // PCLZIP_OPT_BY_PREG : |
|
1021 | - // Return Values : |
|
1022 | - // 0 on failure, |
|
1023 | - // The list of the files which are still present in the archive. |
|
1024 | - // (see PclZip::listContent() for list entry format) |
|
1025 | - // -------------------------------------------------------------------------------- |
|
1026 | - function delete() |
|
1027 | - { |
|
1005 | + } |
|
1006 | + // -------------------------------------------------------------------------------- |
|
1007 | + |
|
1008 | + // -------------------------------------------------------------------------------- |
|
1009 | + // Function : |
|
1010 | + // delete([$p_option, $p_option_value, ...]) |
|
1011 | + // Description : |
|
1012 | + // This method removes files from the archive. |
|
1013 | + // If no parameters are given, then all the archive is emptied. |
|
1014 | + // Parameters : |
|
1015 | + // None or optional arguments. |
|
1016 | + // Options : |
|
1017 | + // PCLZIP_OPT_BY_INDEX : |
|
1018 | + // PCLZIP_OPT_BY_NAME : |
|
1019 | + // PCLZIP_OPT_BY_EREG : |
|
1020 | + // PCLZIP_OPT_BY_PREG : |
|
1021 | + // Return Values : |
|
1022 | + // 0 on failure, |
|
1023 | + // The list of the files which are still present in the archive. |
|
1024 | + // (see PclZip::listContent() for list entry format) |
|
1025 | + // -------------------------------------------------------------------------------- |
|
1026 | + function delete() |
|
1027 | + { |
|
1028 | 1028 | $v_result=1; |
1029 | 1029 | |
1030 | 1030 | // ----- Reset the error handler |
@@ -1032,7 +1032,7 @@ discard block |
||
1032 | 1032 | |
1033 | 1033 | // ----- Check archive |
1034 | 1034 | if (!$this->privCheckFormat()) { |
1035 | - return(0); |
|
1035 | + return(0); |
|
1036 | 1036 | } |
1037 | 1037 | |
1038 | 1038 | // ----- Set default values |
@@ -1043,18 +1043,18 @@ discard block |
||
1043 | 1043 | |
1044 | 1044 | // ----- Look for arguments |
1045 | 1045 | if ($v_size > 0) { |
1046 | - // ----- Get the arguments |
|
1047 | - $v_arg_list = func_get_args(); |
|
1046 | + // ----- Get the arguments |
|
1047 | + $v_arg_list = func_get_args(); |
|
1048 | 1048 | |
1049 | - // ----- Parse the options |
|
1050 | - $v_result = $this->privParseOptions($v_arg_list, $v_size, $v_options, |
|
1049 | + // ----- Parse the options |
|
1050 | + $v_result = $this->privParseOptions($v_arg_list, $v_size, $v_options, |
|
1051 | 1051 | array (PCLZIP_OPT_BY_NAME => 'optional', |
1052 | - PCLZIP_OPT_BY_EREG => 'optional', |
|
1053 | - PCLZIP_OPT_BY_PREG => 'optional', |
|
1054 | - PCLZIP_OPT_BY_INDEX => 'optional' )); |
|
1055 | - if ($v_result != 1) { |
|
1056 | - return 0; |
|
1057 | - } |
|
1052 | + PCLZIP_OPT_BY_EREG => 'optional', |
|
1053 | + PCLZIP_OPT_BY_PREG => 'optional', |
|
1054 | + PCLZIP_OPT_BY_INDEX => 'optional' )); |
|
1055 | + if ($v_result != 1) { |
|
1056 | + return 0; |
|
1057 | + } |
|
1058 | 1058 | } |
1059 | 1059 | |
1060 | 1060 | // ----- Magic quotes trick |
@@ -1063,9 +1063,9 @@ discard block |
||
1063 | 1063 | // ----- Call the delete fct |
1064 | 1064 | $v_list = array(); |
1065 | 1065 | if (($v_result = $this->privDeleteByRule($v_list, $v_options)) != 1) { |
1066 | - $this->privSwapBackMagicQuotes(); |
|
1067 | - unset($v_list); |
|
1068 | - return(0); |
|
1066 | + $this->privSwapBackMagicQuotes(); |
|
1067 | + unset($v_list); |
|
1068 | + return(0); |
|
1069 | 1069 | } |
1070 | 1070 | |
1071 | 1071 | // ----- Magic quotes trick |
@@ -1073,41 +1073,41 @@ discard block |
||
1073 | 1073 | |
1074 | 1074 | // ----- Return |
1075 | 1075 | return $v_list; |
1076 | - } |
|
1077 | - // -------------------------------------------------------------------------------- |
|
1078 | - |
|
1079 | - // -------------------------------------------------------------------------------- |
|
1080 | - // Function : deleteByIndex() |
|
1081 | - // Description : |
|
1082 | - // ***** Deprecated ***** |
|
1083 | - // delete(PCLZIP_OPT_BY_INDEX, $p_index) should be prefered. |
|
1084 | - // -------------------------------------------------------------------------------- |
|
1085 | - function deleteByIndex($p_index) |
|
1086 | - { |
|
1076 | + } |
|
1077 | + // -------------------------------------------------------------------------------- |
|
1078 | + |
|
1079 | + // -------------------------------------------------------------------------------- |
|
1080 | + // Function : deleteByIndex() |
|
1081 | + // Description : |
|
1082 | + // ***** Deprecated ***** |
|
1083 | + // delete(PCLZIP_OPT_BY_INDEX, $p_index) should be prefered. |
|
1084 | + // -------------------------------------------------------------------------------- |
|
1085 | + function deleteByIndex($p_index) |
|
1086 | + { |
|
1087 | 1087 | |
1088 | 1088 | $p_list = $this->delete(PCLZIP_OPT_BY_INDEX, $p_index); |
1089 | 1089 | |
1090 | 1090 | // ----- Return |
1091 | 1091 | return $p_list; |
1092 | - } |
|
1093 | - // -------------------------------------------------------------------------------- |
|
1094 | - |
|
1095 | - // -------------------------------------------------------------------------------- |
|
1096 | - // Function : properties() |
|
1097 | - // Description : |
|
1098 | - // This method gives the properties of the archive. |
|
1099 | - // The properties are : |
|
1100 | - // nb : Number of files in the archive |
|
1101 | - // comment : Comment associated with the archive file |
|
1102 | - // status : not_exist, ok |
|
1103 | - // Parameters : |
|
1104 | - // None |
|
1105 | - // Return Values : |
|
1106 | - // 0 on failure, |
|
1107 | - // An array with the archive properties. |
|
1108 | - // -------------------------------------------------------------------------------- |
|
1109 | - function properties() |
|
1110 | - { |
|
1092 | + } |
|
1093 | + // -------------------------------------------------------------------------------- |
|
1094 | + |
|
1095 | + // -------------------------------------------------------------------------------- |
|
1096 | + // Function : properties() |
|
1097 | + // Description : |
|
1098 | + // This method gives the properties of the archive. |
|
1099 | + // The properties are : |
|
1100 | + // nb : Number of files in the archive |
|
1101 | + // comment : Comment associated with the archive file |
|
1102 | + // status : not_exist, ok |
|
1103 | + // Parameters : |
|
1104 | + // None |
|
1105 | + // Return Values : |
|
1106 | + // 0 on failure, |
|
1107 | + // An array with the archive properties. |
|
1108 | + // -------------------------------------------------------------------------------- |
|
1109 | + function properties() |
|
1110 | + { |
|
1111 | 1111 | |
1112 | 1112 | // ----- Reset the error handler |
1113 | 1113 | $this->privErrorReset(); |
@@ -1117,8 +1117,8 @@ discard block |
||
1117 | 1117 | |
1118 | 1118 | // ----- Check archive |
1119 | 1119 | if (!$this->privCheckFormat()) { |
1120 | - $this->privSwapBackMagicQuotes(); |
|
1121 | - return(0); |
|
1120 | + $this->privSwapBackMagicQuotes(); |
|
1121 | + return(0); |
|
1122 | 1122 | } |
1123 | 1123 | |
1124 | 1124 | // ----- Default properties |
@@ -1130,9 +1130,9 @@ discard block |
||
1130 | 1130 | // ----- Look if file exists |
1131 | 1131 | if (@is_file($this->zipname)) |
1132 | 1132 | { |
1133 | - // ----- Open the zip file |
|
1134 | - if (($this->zip_fd = @fopen($this->zipname, 'rb')) == 0) |
|
1135 | - { |
|
1133 | + // ----- Open the zip file |
|
1134 | + if (($this->zip_fd = @fopen($this->zipname, 'rb')) == 0) |
|
1135 | + { |
|
1136 | 1136 | $this->privSwapBackMagicQuotes(); |
1137 | 1137 | |
1138 | 1138 | // ----- Error log |
@@ -1140,23 +1140,23 @@ discard block |
||
1140 | 1140 | |
1141 | 1141 | // ----- Return |
1142 | 1142 | return 0; |
1143 | - } |
|
1143 | + } |
|
1144 | 1144 | |
1145 | - // ----- Read the central directory informations |
|
1146 | - $v_central_dir = array(); |
|
1147 | - if (($v_result = $this->privReadEndCentralDir($v_central_dir)) != 1) |
|
1148 | - { |
|
1145 | + // ----- Read the central directory informations |
|
1146 | + $v_central_dir = array(); |
|
1147 | + if (($v_result = $this->privReadEndCentralDir($v_central_dir)) != 1) |
|
1148 | + { |
|
1149 | 1149 | $this->privSwapBackMagicQuotes(); |
1150 | 1150 | return 0; |
1151 | - } |
|
1151 | + } |
|
1152 | 1152 | |
1153 | - // ----- Close the zip file |
|
1154 | - $this->privCloseFd(); |
|
1153 | + // ----- Close the zip file |
|
1154 | + $this->privCloseFd(); |
|
1155 | 1155 | |
1156 | - // ----- Set the user attributes |
|
1157 | - $v_prop['comment'] = $v_central_dir['comment']; |
|
1158 | - $v_prop['nb'] = $v_central_dir['entries']; |
|
1159 | - $v_prop['status'] = 'ok'; |
|
1156 | + // ----- Set the user attributes |
|
1157 | + $v_prop['comment'] = $v_central_dir['comment']; |
|
1158 | + $v_prop['nb'] = $v_central_dir['entries']; |
|
1159 | + $v_prop['status'] = 'ok'; |
|
1160 | 1160 | } |
1161 | 1161 | |
1162 | 1162 | // ----- Magic quotes trick |
@@ -1164,23 +1164,23 @@ discard block |
||
1164 | 1164 | |
1165 | 1165 | // ----- Return |
1166 | 1166 | return $v_prop; |
1167 | - } |
|
1168 | - // -------------------------------------------------------------------------------- |
|
1169 | - |
|
1170 | - // -------------------------------------------------------------------------------- |
|
1171 | - // Function : duplicate() |
|
1172 | - // Description : |
|
1173 | - // This method creates an archive by copying the content of an other one. If |
|
1174 | - // the archive already exist, it is replaced by the new one without any warning. |
|
1175 | - // Parameters : |
|
1176 | - // $p_archive : The filename of a valid archive, or |
|
1177 | - // a valid PclZip object. |
|
1178 | - // Return Values : |
|
1179 | - // 1 on success. |
|
1180 | - // 0 or a negative value on error (error code). |
|
1181 | - // -------------------------------------------------------------------------------- |
|
1182 | - function duplicate($p_archive) |
|
1183 | - { |
|
1167 | + } |
|
1168 | + // -------------------------------------------------------------------------------- |
|
1169 | + |
|
1170 | + // -------------------------------------------------------------------------------- |
|
1171 | + // Function : duplicate() |
|
1172 | + // Description : |
|
1173 | + // This method creates an archive by copying the content of an other one. If |
|
1174 | + // the archive already exist, it is replaced by the new one without any warning. |
|
1175 | + // Parameters : |
|
1176 | + // $p_archive : The filename of a valid archive, or |
|
1177 | + // a valid PclZip object. |
|
1178 | + // Return Values : |
|
1179 | + // 1 on success. |
|
1180 | + // 0 or a negative value on error (error code). |
|
1181 | + // -------------------------------------------------------------------------------- |
|
1182 | + function duplicate($p_archive) |
|
1183 | + { |
|
1184 | 1184 | $v_result = 1; |
1185 | 1185 | |
1186 | 1186 | // ----- Reset the error handler |
@@ -1190,56 +1190,56 @@ discard block |
||
1190 | 1190 | if ((is_object($p_archive)) && (get_class($p_archive) == 'pclzip')) |
1191 | 1191 | { |
1192 | 1192 | |
1193 | - // ----- Duplicate the archive |
|
1194 | - $v_result = $this->privDuplicate($p_archive->zipname); |
|
1193 | + // ----- Duplicate the archive |
|
1194 | + $v_result = $this->privDuplicate($p_archive->zipname); |
|
1195 | 1195 | } |
1196 | 1196 | |
1197 | 1197 | // ----- Look if the $p_archive is a string (so a filename) |
1198 | 1198 | else if (is_string($p_archive)) |
1199 | 1199 | { |
1200 | 1200 | |
1201 | - // ----- Check that $p_archive is a valid zip file |
|
1202 | - // TBC : Should also check the archive format |
|
1203 | - if (!is_file($p_archive)) { |
|
1201 | + // ----- Check that $p_archive is a valid zip file |
|
1202 | + // TBC : Should also check the archive format |
|
1203 | + if (!is_file($p_archive)) { |
|
1204 | 1204 | // ----- Error log |
1205 | 1205 | PclZip::privErrorLog(PCLZIP_ERR_MISSING_FILE, "No file with filename '".$p_archive."'"); |
1206 | 1206 | $v_result = PCLZIP_ERR_MISSING_FILE; |
1207 | - } |
|
1208 | - else { |
|
1207 | + } |
|
1208 | + else { |
|
1209 | 1209 | // ----- Duplicate the archive |
1210 | 1210 | $v_result = $this->privDuplicate($p_archive); |
1211 | - } |
|
1211 | + } |
|
1212 | 1212 | } |
1213 | 1213 | |
1214 | 1214 | // ----- Invalid variable |
1215 | 1215 | else |
1216 | 1216 | { |
1217 | - // ----- Error log |
|
1218 | - PclZip::privErrorLog(PCLZIP_ERR_INVALID_PARAMETER, "Invalid variable type p_archive_to_add"); |
|
1219 | - $v_result = PCLZIP_ERR_INVALID_PARAMETER; |
|
1217 | + // ----- Error log |
|
1218 | + PclZip::privErrorLog(PCLZIP_ERR_INVALID_PARAMETER, "Invalid variable type p_archive_to_add"); |
|
1219 | + $v_result = PCLZIP_ERR_INVALID_PARAMETER; |
|
1220 | 1220 | } |
1221 | 1221 | |
1222 | 1222 | // ----- Return |
1223 | 1223 | return $v_result; |
1224 | - } |
|
1225 | - // -------------------------------------------------------------------------------- |
|
1226 | - |
|
1227 | - // -------------------------------------------------------------------------------- |
|
1228 | - // Function : merge() |
|
1229 | - // Description : |
|
1230 | - // This method merge the $p_archive_to_add archive at the end of the current |
|
1231 | - // one ($this). |
|
1232 | - // If the archive ($this) does not exist, the merge becomes a duplicate. |
|
1233 | - // If the $p_archive_to_add archive does not exist, the merge is a success. |
|
1234 | - // Parameters : |
|
1235 | - // $p_archive_to_add : It can be directly the filename of a valid zip archive, |
|
1236 | - // or a PclZip object archive. |
|
1237 | - // Return Values : |
|
1238 | - // 1 on success, |
|
1239 | - // 0 or negative values on error (see below). |
|
1240 | - // -------------------------------------------------------------------------------- |
|
1241 | - function merge($p_archive_to_add) |
|
1242 | - { |
|
1224 | + } |
|
1225 | + // -------------------------------------------------------------------------------- |
|
1226 | + |
|
1227 | + // -------------------------------------------------------------------------------- |
|
1228 | + // Function : merge() |
|
1229 | + // Description : |
|
1230 | + // This method merge the $p_archive_to_add archive at the end of the current |
|
1231 | + // one ($this). |
|
1232 | + // If the archive ($this) does not exist, the merge becomes a duplicate. |
|
1233 | + // If the $p_archive_to_add archive does not exist, the merge is a success. |
|
1234 | + // Parameters : |
|
1235 | + // $p_archive_to_add : It can be directly the filename of a valid zip archive, |
|
1236 | + // or a PclZip object archive. |
|
1237 | + // Return Values : |
|
1238 | + // 1 on success, |
|
1239 | + // 0 or negative values on error (see below). |
|
1240 | + // -------------------------------------------------------------------------------- |
|
1241 | + function merge($p_archive_to_add) |
|
1242 | + { |
|
1243 | 1243 | $v_result = 1; |
1244 | 1244 | |
1245 | 1245 | // ----- Reset the error handler |
@@ -1247,125 +1247,125 @@ discard block |
||
1247 | 1247 | |
1248 | 1248 | // ----- Check archive |
1249 | 1249 | if (!$this->privCheckFormat()) { |
1250 | - return(0); |
|
1250 | + return(0); |
|
1251 | 1251 | } |
1252 | 1252 | |
1253 | 1253 | // ----- Look if the $p_archive_to_add is a PclZip object |
1254 | 1254 | if ((is_object($p_archive_to_add)) && (get_class($p_archive_to_add) == 'pclzip')) |
1255 | 1255 | { |
1256 | 1256 | |
1257 | - // ----- Merge the archive |
|
1258 | - $v_result = $this->privMerge($p_archive_to_add); |
|
1257 | + // ----- Merge the archive |
|
1258 | + $v_result = $this->privMerge($p_archive_to_add); |
|
1259 | 1259 | } |
1260 | 1260 | |
1261 | 1261 | // ----- Look if the $p_archive_to_add is a string (so a filename) |
1262 | 1262 | else if (is_string($p_archive_to_add)) |
1263 | 1263 | { |
1264 | 1264 | |
1265 | - // ----- Create a temporary archive |
|
1266 | - $v_object_archive = new PclZip($p_archive_to_add); |
|
1265 | + // ----- Create a temporary archive |
|
1266 | + $v_object_archive = new PclZip($p_archive_to_add); |
|
1267 | 1267 | |
1268 | - // ----- Merge the archive |
|
1269 | - $v_result = $this->privMerge($v_object_archive); |
|
1268 | + // ----- Merge the archive |
|
1269 | + $v_result = $this->privMerge($v_object_archive); |
|
1270 | 1270 | } |
1271 | 1271 | |
1272 | 1272 | // ----- Invalid variable |
1273 | 1273 | else |
1274 | 1274 | { |
1275 | - // ----- Error log |
|
1276 | - PclZip::privErrorLog(PCLZIP_ERR_INVALID_PARAMETER, "Invalid variable type p_archive_to_add"); |
|
1277 | - $v_result = PCLZIP_ERR_INVALID_PARAMETER; |
|
1275 | + // ----- Error log |
|
1276 | + PclZip::privErrorLog(PCLZIP_ERR_INVALID_PARAMETER, "Invalid variable type p_archive_to_add"); |
|
1277 | + $v_result = PCLZIP_ERR_INVALID_PARAMETER; |
|
1278 | 1278 | } |
1279 | 1279 | |
1280 | 1280 | // ----- Return |
1281 | 1281 | return $v_result; |
1282 | - } |
|
1283 | - // -------------------------------------------------------------------------------- |
|
1282 | + } |
|
1283 | + // -------------------------------------------------------------------------------- |
|
1284 | 1284 | |
1285 | 1285 | |
1286 | 1286 | |
1287 | - // -------------------------------------------------------------------------------- |
|
1288 | - // Function : errorCode() |
|
1289 | - // Description : |
|
1290 | - // Parameters : |
|
1291 | - // -------------------------------------------------------------------------------- |
|
1292 | - function errorCode() |
|
1293 | - { |
|
1287 | + // -------------------------------------------------------------------------------- |
|
1288 | + // Function : errorCode() |
|
1289 | + // Description : |
|
1290 | + // Parameters : |
|
1291 | + // -------------------------------------------------------------------------------- |
|
1292 | + function errorCode() |
|
1293 | + { |
|
1294 | 1294 | if (PCLZIP_ERROR_EXTERNAL == 1) { |
1295 | - return(PclErrorCode()); |
|
1295 | + return(PclErrorCode()); |
|
1296 | 1296 | } |
1297 | 1297 | else { |
1298 | - return($this->error_code); |
|
1299 | - } |
|
1300 | - } |
|
1301 | - // -------------------------------------------------------------------------------- |
|
1302 | - |
|
1303 | - // -------------------------------------------------------------------------------- |
|
1304 | - // Function : errorName() |
|
1305 | - // Description : |
|
1306 | - // Parameters : |
|
1307 | - // -------------------------------------------------------------------------------- |
|
1308 | - function errorName($p_with_code=false) |
|
1309 | - { |
|
1298 | + return($this->error_code); |
|
1299 | + } |
|
1300 | + } |
|
1301 | + // -------------------------------------------------------------------------------- |
|
1302 | + |
|
1303 | + // -------------------------------------------------------------------------------- |
|
1304 | + // Function : errorName() |
|
1305 | + // Description : |
|
1306 | + // Parameters : |
|
1307 | + // -------------------------------------------------------------------------------- |
|
1308 | + function errorName($p_with_code=false) |
|
1309 | + { |
|
1310 | 1310 | $v_name = array ( PCLZIP_ERR_NO_ERROR => 'PCLZIP_ERR_NO_ERROR', |
1311 | - PCLZIP_ERR_WRITE_OPEN_FAIL => 'PCLZIP_ERR_WRITE_OPEN_FAIL', |
|
1312 | - PCLZIP_ERR_READ_OPEN_FAIL => 'PCLZIP_ERR_READ_OPEN_FAIL', |
|
1313 | - PCLZIP_ERR_INVALID_PARAMETER => 'PCLZIP_ERR_INVALID_PARAMETER', |
|
1314 | - PCLZIP_ERR_MISSING_FILE => 'PCLZIP_ERR_MISSING_FILE', |
|
1315 | - PCLZIP_ERR_FILENAME_TOO_LONG => 'PCLZIP_ERR_FILENAME_TOO_LONG', |
|
1316 | - PCLZIP_ERR_INVALID_ZIP => 'PCLZIP_ERR_INVALID_ZIP', |
|
1317 | - PCLZIP_ERR_BAD_EXTRACTED_FILE => 'PCLZIP_ERR_BAD_EXTRACTED_FILE', |
|
1318 | - PCLZIP_ERR_DIR_CREATE_FAIL => 'PCLZIP_ERR_DIR_CREATE_FAIL', |
|
1319 | - PCLZIP_ERR_BAD_EXTENSION => 'PCLZIP_ERR_BAD_EXTENSION', |
|
1320 | - PCLZIP_ERR_BAD_FORMAT => 'PCLZIP_ERR_BAD_FORMAT', |
|
1321 | - PCLZIP_ERR_DELETE_FILE_FAIL => 'PCLZIP_ERR_DELETE_FILE_FAIL', |
|
1322 | - PCLZIP_ERR_RENAME_FILE_FAIL => 'PCLZIP_ERR_RENAME_FILE_FAIL', |
|
1323 | - PCLZIP_ERR_BAD_CHECKSUM => 'PCLZIP_ERR_BAD_CHECKSUM', |
|
1324 | - PCLZIP_ERR_INVALID_ARCHIVE_ZIP => 'PCLZIP_ERR_INVALID_ARCHIVE_ZIP', |
|
1325 | - PCLZIP_ERR_MISSING_OPTION_VALUE => 'PCLZIP_ERR_MISSING_OPTION_VALUE', |
|
1326 | - PCLZIP_ERR_INVALID_OPTION_VALUE => 'PCLZIP_ERR_INVALID_OPTION_VALUE', |
|
1327 | - PCLZIP_ERR_UNSUPPORTED_COMPRESSION => 'PCLZIP_ERR_UNSUPPORTED_COMPRESSION', |
|
1328 | - PCLZIP_ERR_UNSUPPORTED_ENCRYPTION => 'PCLZIP_ERR_UNSUPPORTED_ENCRYPTION' |
|
1329 | - ,PCLZIP_ERR_INVALID_ATTRIBUTE_VALUE => 'PCLZIP_ERR_INVALID_ATTRIBUTE_VALUE' |
|
1330 | - ,PCLZIP_ERR_DIRECTORY_RESTRICTION => 'PCLZIP_ERR_DIRECTORY_RESTRICTION' |
|
1311 | + PCLZIP_ERR_WRITE_OPEN_FAIL => 'PCLZIP_ERR_WRITE_OPEN_FAIL', |
|
1312 | + PCLZIP_ERR_READ_OPEN_FAIL => 'PCLZIP_ERR_READ_OPEN_FAIL', |
|
1313 | + PCLZIP_ERR_INVALID_PARAMETER => 'PCLZIP_ERR_INVALID_PARAMETER', |
|
1314 | + PCLZIP_ERR_MISSING_FILE => 'PCLZIP_ERR_MISSING_FILE', |
|
1315 | + PCLZIP_ERR_FILENAME_TOO_LONG => 'PCLZIP_ERR_FILENAME_TOO_LONG', |
|
1316 | + PCLZIP_ERR_INVALID_ZIP => 'PCLZIP_ERR_INVALID_ZIP', |
|
1317 | + PCLZIP_ERR_BAD_EXTRACTED_FILE => 'PCLZIP_ERR_BAD_EXTRACTED_FILE', |
|
1318 | + PCLZIP_ERR_DIR_CREATE_FAIL => 'PCLZIP_ERR_DIR_CREATE_FAIL', |
|
1319 | + PCLZIP_ERR_BAD_EXTENSION => 'PCLZIP_ERR_BAD_EXTENSION', |
|
1320 | + PCLZIP_ERR_BAD_FORMAT => 'PCLZIP_ERR_BAD_FORMAT', |
|
1321 | + PCLZIP_ERR_DELETE_FILE_FAIL => 'PCLZIP_ERR_DELETE_FILE_FAIL', |
|
1322 | + PCLZIP_ERR_RENAME_FILE_FAIL => 'PCLZIP_ERR_RENAME_FILE_FAIL', |
|
1323 | + PCLZIP_ERR_BAD_CHECKSUM => 'PCLZIP_ERR_BAD_CHECKSUM', |
|
1324 | + PCLZIP_ERR_INVALID_ARCHIVE_ZIP => 'PCLZIP_ERR_INVALID_ARCHIVE_ZIP', |
|
1325 | + PCLZIP_ERR_MISSING_OPTION_VALUE => 'PCLZIP_ERR_MISSING_OPTION_VALUE', |
|
1326 | + PCLZIP_ERR_INVALID_OPTION_VALUE => 'PCLZIP_ERR_INVALID_OPTION_VALUE', |
|
1327 | + PCLZIP_ERR_UNSUPPORTED_COMPRESSION => 'PCLZIP_ERR_UNSUPPORTED_COMPRESSION', |
|
1328 | + PCLZIP_ERR_UNSUPPORTED_ENCRYPTION => 'PCLZIP_ERR_UNSUPPORTED_ENCRYPTION' |
|
1329 | + ,PCLZIP_ERR_INVALID_ATTRIBUTE_VALUE => 'PCLZIP_ERR_INVALID_ATTRIBUTE_VALUE' |
|
1330 | + ,PCLZIP_ERR_DIRECTORY_RESTRICTION => 'PCLZIP_ERR_DIRECTORY_RESTRICTION' |
|
1331 | 1331 | ); |
1332 | 1332 | |
1333 | 1333 | if (isset($v_name[$this->error_code])) { |
1334 | - $v_value = $v_name[$this->error_code]; |
|
1334 | + $v_value = $v_name[$this->error_code]; |
|
1335 | 1335 | } |
1336 | 1336 | else { |
1337 | - $v_value = 'NoName'; |
|
1337 | + $v_value = 'NoName'; |
|
1338 | 1338 | } |
1339 | 1339 | |
1340 | 1340 | if ($p_with_code) { |
1341 | - return($v_value.' ('.$this->error_code.')'); |
|
1341 | + return($v_value.' ('.$this->error_code.')'); |
|
1342 | 1342 | } |
1343 | 1343 | else { |
1344 | - return($v_value); |
|
1345 | - } |
|
1346 | - } |
|
1347 | - // -------------------------------------------------------------------------------- |
|
1348 | - |
|
1349 | - // -------------------------------------------------------------------------------- |
|
1350 | - // Function : errorInfo() |
|
1351 | - // Description : |
|
1352 | - // Parameters : |
|
1353 | - // -------------------------------------------------------------------------------- |
|
1354 | - function errorInfo($p_full=false) |
|
1355 | - { |
|
1344 | + return($v_value); |
|
1345 | + } |
|
1346 | + } |
|
1347 | + // -------------------------------------------------------------------------------- |
|
1348 | + |
|
1349 | + // -------------------------------------------------------------------------------- |
|
1350 | + // Function : errorInfo() |
|
1351 | + // Description : |
|
1352 | + // Parameters : |
|
1353 | + // -------------------------------------------------------------------------------- |
|
1354 | + function errorInfo($p_full=false) |
|
1355 | + { |
|
1356 | 1356 | if (PCLZIP_ERROR_EXTERNAL == 1) { |
1357 | - return(PclErrorString()); |
|
1357 | + return(PclErrorString()); |
|
1358 | 1358 | } |
1359 | 1359 | else { |
1360 | - if ($p_full) { |
|
1360 | + if ($p_full) { |
|
1361 | 1361 | return($this->errorName(true)." : ".$this->error_string); |
1362 | - } |
|
1363 | - else { |
|
1362 | + } |
|
1363 | + else { |
|
1364 | 1364 | return($this->error_string." [code ".$this->error_code."]"); |
1365 | - } |
|
1365 | + } |
|
1366 | + } |
|
1366 | 1367 | } |
1367 | - } |
|
1368 | - // -------------------------------------------------------------------------------- |
|
1368 | + // -------------------------------------------------------------------------------- |
|
1369 | 1369 | |
1370 | 1370 | |
1371 | 1371 | // -------------------------------------------------------------------------------- |
@@ -1376,25 +1376,25 @@ discard block |
||
1376 | 1376 | |
1377 | 1377 | |
1378 | 1378 | |
1379 | - // -------------------------------------------------------------------------------- |
|
1380 | - // Function : privCheckFormat() |
|
1381 | - // Description : |
|
1382 | - // This method check that the archive exists and is a valid zip archive. |
|
1383 | - // Several level of check exists. (futur) |
|
1384 | - // Parameters : |
|
1385 | - // $p_level : Level of check. Default 0. |
|
1386 | - // 0 : Check the first bytes (magic codes) (default value)) |
|
1387 | - // 1 : 0 + Check the central directory (futur) |
|
1388 | - // 2 : 1 + Check each file header (futur) |
|
1389 | - // Return Values : |
|
1390 | - // true on success, |
|
1391 | - // false on error, the error code is set. |
|
1392 | - // -------------------------------------------------------------------------------- |
|
1393 | - function privCheckFormat($p_level=0) |
|
1394 | - { |
|
1379 | + // -------------------------------------------------------------------------------- |
|
1380 | + // Function : privCheckFormat() |
|
1381 | + // Description : |
|
1382 | + // This method check that the archive exists and is a valid zip archive. |
|
1383 | + // Several level of check exists. (futur) |
|
1384 | + // Parameters : |
|
1385 | + // $p_level : Level of check. Default 0. |
|
1386 | + // 0 : Check the first bytes (magic codes) (default value)) |
|
1387 | + // 1 : 0 + Check the central directory (futur) |
|
1388 | + // 2 : 1 + Check each file header (futur) |
|
1389 | + // Return Values : |
|
1390 | + // true on success, |
|
1391 | + // false on error, the error code is set. |
|
1392 | + // -------------------------------------------------------------------------------- |
|
1393 | + function privCheckFormat($p_level=0) |
|
1394 | + { |
|
1395 | 1395 | $v_result = true; |
1396 | 1396 | |
1397 | - // ----- Reset the file system cache |
|
1397 | + // ----- Reset the file system cache |
|
1398 | 1398 | clearstatcache(); |
1399 | 1399 | |
1400 | 1400 | // ----- Reset the error handler |
@@ -1402,16 +1402,16 @@ discard block |
||
1402 | 1402 | |
1403 | 1403 | // ----- Look if the file exits |
1404 | 1404 | if (!is_file($this->zipname)) { |
1405 | - // ----- Error log |
|
1406 | - PclZip::privErrorLog(PCLZIP_ERR_MISSING_FILE, "Missing archive file '".$this->zipname."'"); |
|
1407 | - return(false); |
|
1405 | + // ----- Error log |
|
1406 | + PclZip::privErrorLog(PCLZIP_ERR_MISSING_FILE, "Missing archive file '".$this->zipname."'"); |
|
1407 | + return(false); |
|
1408 | 1408 | } |
1409 | 1409 | |
1410 | 1410 | // ----- Check that the file is readeable |
1411 | 1411 | if (!is_readable($this->zipname)) { |
1412 | - // ----- Error log |
|
1413 | - PclZip::privErrorLog(PCLZIP_ERR_READ_OPEN_FAIL, "Unable to read archive '".$this->zipname."'"); |
|
1414 | - return(false); |
|
1412 | + // ----- Error log |
|
1413 | + PclZip::privErrorLog(PCLZIP_ERR_READ_OPEN_FAIL, "Unable to read archive '".$this->zipname."'"); |
|
1414 | + return(false); |
|
1415 | 1415 | } |
1416 | 1416 | |
1417 | 1417 | // ----- Check the magic code |
@@ -1425,43 +1425,43 @@ discard block |
||
1425 | 1425 | |
1426 | 1426 | // ----- Return |
1427 | 1427 | return $v_result; |
1428 | - } |
|
1429 | - // -------------------------------------------------------------------------------- |
|
1430 | - |
|
1431 | - // -------------------------------------------------------------------------------- |
|
1432 | - // Function : privParseOptions() |
|
1433 | - // Description : |
|
1434 | - // This internal methods reads the variable list of arguments ($p_options_list, |
|
1435 | - // $p_size) and generate an array with the options and values ($v_result_list). |
|
1436 | - // $v_requested_options contains the options that can be present and those that |
|
1437 | - // must be present. |
|
1438 | - // $v_requested_options is an array, with the option value as key, and 'optional', |
|
1439 | - // or 'mandatory' as value. |
|
1440 | - // Parameters : |
|
1441 | - // See above. |
|
1442 | - // Return Values : |
|
1443 | - // 1 on success. |
|
1444 | - // 0 on failure. |
|
1445 | - // -------------------------------------------------------------------------------- |
|
1446 | - function privParseOptions(&$p_options_list, $p_size, &$v_result_list, $v_requested_options=false) |
|
1447 | - { |
|
1428 | + } |
|
1429 | + // -------------------------------------------------------------------------------- |
|
1430 | + |
|
1431 | + // -------------------------------------------------------------------------------- |
|
1432 | + // Function : privParseOptions() |
|
1433 | + // Description : |
|
1434 | + // This internal methods reads the variable list of arguments ($p_options_list, |
|
1435 | + // $p_size) and generate an array with the options and values ($v_result_list). |
|
1436 | + // $v_requested_options contains the options that can be present and those that |
|
1437 | + // must be present. |
|
1438 | + // $v_requested_options is an array, with the option value as key, and 'optional', |
|
1439 | + // or 'mandatory' as value. |
|
1440 | + // Parameters : |
|
1441 | + // See above. |
|
1442 | + // Return Values : |
|
1443 | + // 1 on success. |
|
1444 | + // 0 on failure. |
|
1445 | + // -------------------------------------------------------------------------------- |
|
1446 | + function privParseOptions(&$p_options_list, $p_size, &$v_result_list, $v_requested_options=false) |
|
1447 | + { |
|
1448 | 1448 | $v_result=1; |
1449 | 1449 | |
1450 | 1450 | // ----- Read the options |
1451 | 1451 | $i=0; |
1452 | 1452 | while ($i<$p_size) { |
1453 | 1453 | |
1454 | - // ----- Check if the option is supported |
|
1455 | - if (!isset($v_requested_options[$p_options_list[$i]])) { |
|
1454 | + // ----- Check if the option is supported |
|
1455 | + if (!isset($v_requested_options[$p_options_list[$i]])) { |
|
1456 | 1456 | // ----- Error log |
1457 | 1457 | PclZip::privErrorLog(PCLZIP_ERR_INVALID_PARAMETER, "Invalid optional parameter '".$p_options_list[$i]."' for this method"); |
1458 | 1458 | |
1459 | 1459 | // ----- Return |
1460 | 1460 | return PclZip::errorCode(); |
1461 | - } |
|
1461 | + } |
|
1462 | 1462 | |
1463 | - // ----- Look for next option |
|
1464 | - switch ($p_options_list[$i]) { |
|
1463 | + // ----- Look for next option |
|
1464 | + switch ($p_options_list[$i]) { |
|
1465 | 1465 | // ----- Look for options that request a path value |
1466 | 1466 | case PCLZIP_OPT_PATH : |
1467 | 1467 | case PCLZIP_OPT_REMOVE_PATH : |
@@ -1473,11 +1473,11 @@ discard block |
||
1473 | 1473 | |
1474 | 1474 | // ----- Return |
1475 | 1475 | return PclZip::errorCode(); |
1476 | - } |
|
1476 | + } |
|
1477 | 1477 | |
1478 | - // ----- Get the value |
|
1479 | - $v_result_list[$p_options_list[$i]] = PclZipUtilTranslateWinPath($p_options_list[$i+1], FALSE); |
|
1480 | - $i++; |
|
1478 | + // ----- Get the value |
|
1479 | + $v_result_list[$p_options_list[$i]] = PclZipUtilTranslateWinPath($p_options_list[$i+1], FALSE); |
|
1480 | + $i++; |
|
1481 | 1481 | break; |
1482 | 1482 | |
1483 | 1483 | case PCLZIP_OPT_TEMP_FILE_THRESHOLD : |
@@ -1485,24 +1485,24 @@ discard block |
||
1485 | 1485 | if (($i+1) >= $p_size) { |
1486 | 1486 | PclZip::privErrorLog(PCLZIP_ERR_MISSING_OPTION_VALUE, "Missing parameter value for option '".PclZipUtilOptionText($p_options_list[$i])."'"); |
1487 | 1487 | return PclZip::errorCode(); |
1488 | - } |
|
1488 | + } |
|
1489 | 1489 | |
1490 | - // ----- Check for incompatible options |
|
1491 | - if (isset($v_result_list[PCLZIP_OPT_TEMP_FILE_OFF])) { |
|
1490 | + // ----- Check for incompatible options |
|
1491 | + if (isset($v_result_list[PCLZIP_OPT_TEMP_FILE_OFF])) { |
|
1492 | 1492 | PclZip::privErrorLog(PCLZIP_ERR_INVALID_PARAMETER, "Option '".PclZipUtilOptionText($p_options_list[$i])."' can not be used with option 'PCLZIP_OPT_TEMP_FILE_OFF'"); |
1493 | 1493 | return PclZip::errorCode(); |
1494 | - } |
|
1494 | + } |
|
1495 | 1495 | |
1496 | - // ----- Check the value |
|
1497 | - $v_value = $p_options_list[$i+1]; |
|
1498 | - if ((!is_integer($v_value)) || ($v_value<0)) { |
|
1496 | + // ----- Check the value |
|
1497 | + $v_value = $p_options_list[$i+1]; |
|
1498 | + if ((!is_integer($v_value)) || ($v_value<0)) { |
|
1499 | 1499 | PclZip::privErrorLog(PCLZIP_ERR_INVALID_OPTION_VALUE, "Integer expected for option '".PclZipUtilOptionText($p_options_list[$i])."'"); |
1500 | 1500 | return PclZip::errorCode(); |
1501 | - } |
|
1501 | + } |
|
1502 | 1502 | |
1503 | - // ----- Get the value (and convert it in bytes) |
|
1504 | - $v_result_list[$p_options_list[$i]] = $v_value*1048576; |
|
1505 | - $i++; |
|
1503 | + // ----- Get the value (and convert it in bytes) |
|
1504 | + $v_result_list[$p_options_list[$i]] = $v_value*1048576; |
|
1505 | + $i++; |
|
1506 | 1506 | break; |
1507 | 1507 | |
1508 | 1508 | case PCLZIP_OPT_TEMP_FILE_ON : |
@@ -1510,9 +1510,9 @@ discard block |
||
1510 | 1510 | if (isset($v_result_list[PCLZIP_OPT_TEMP_FILE_OFF])) { |
1511 | 1511 | PclZip::privErrorLog(PCLZIP_ERR_INVALID_PARAMETER, "Option '".PclZipUtilOptionText($p_options_list[$i])."' can not be used with option 'PCLZIP_OPT_TEMP_FILE_OFF'"); |
1512 | 1512 | return PclZip::errorCode(); |
1513 | - } |
|
1513 | + } |
|
1514 | 1514 | |
1515 | - $v_result_list[$p_options_list[$i]] = true; |
|
1515 | + $v_result_list[$p_options_list[$i]] = true; |
|
1516 | 1516 | break; |
1517 | 1517 | |
1518 | 1518 | case PCLZIP_OPT_TEMP_FILE_OFF : |
@@ -1520,14 +1520,14 @@ discard block |
||
1520 | 1520 | if (isset($v_result_list[PCLZIP_OPT_TEMP_FILE_ON])) { |
1521 | 1521 | PclZip::privErrorLog(PCLZIP_ERR_INVALID_PARAMETER, "Option '".PclZipUtilOptionText($p_options_list[$i])."' can not be used with option 'PCLZIP_OPT_TEMP_FILE_ON'"); |
1522 | 1522 | return PclZip::errorCode(); |
1523 | - } |
|
1524 | - // ----- Check for incompatible options |
|
1525 | - if (isset($v_result_list[PCLZIP_OPT_TEMP_FILE_THRESHOLD])) { |
|
1523 | + } |
|
1524 | + // ----- Check for incompatible options |
|
1525 | + if (isset($v_result_list[PCLZIP_OPT_TEMP_FILE_THRESHOLD])) { |
|
1526 | 1526 | PclZip::privErrorLog(PCLZIP_ERR_INVALID_PARAMETER, "Option '".PclZipUtilOptionText($p_options_list[$i])."' can not be used with option 'PCLZIP_OPT_TEMP_FILE_THRESHOLD'"); |
1527 | 1527 | return PclZip::errorCode(); |
1528 | - } |
|
1528 | + } |
|
1529 | 1529 | |
1530 | - $v_result_list[$p_options_list[$i]] = true; |
|
1530 | + $v_result_list[$p_options_list[$i]] = true; |
|
1531 | 1531 | break; |
1532 | 1532 | |
1533 | 1533 | case PCLZIP_OPT_EXTRACT_DIR_RESTRICTION : |
@@ -1538,16 +1538,16 @@ discard block |
||
1538 | 1538 | |
1539 | 1539 | // ----- Return |
1540 | 1540 | return PclZip::errorCode(); |
1541 | - } |
|
1541 | + } |
|
1542 | 1542 | |
1543 | - // ----- Get the value |
|
1544 | - if ( is_string($p_options_list[$i+1]) |
|
1543 | + // ----- Get the value |
|
1544 | + if ( is_string($p_options_list[$i+1]) |
|
1545 | 1545 | && ($p_options_list[$i+1] != '')) { |
1546 | 1546 | $v_result_list[$p_options_list[$i]] = PclZipUtilTranslateWinPath($p_options_list[$i+1], FALSE); |
1547 | 1547 | $i++; |
1548 | - } |
|
1549 | - else { |
|
1550 | - } |
|
1548 | + } |
|
1549 | + else { |
|
1550 | + } |
|
1551 | 1551 | break; |
1552 | 1552 | |
1553 | 1553 | // ----- Look for options that request an array of string for value |
@@ -1559,23 +1559,23 @@ discard block |
||
1559 | 1559 | |
1560 | 1560 | // ----- Return |
1561 | 1561 | return PclZip::errorCode(); |
1562 | - } |
|
1562 | + } |
|
1563 | 1563 | |
1564 | - // ----- Get the value |
|
1565 | - if (is_string($p_options_list[$i+1])) { |
|
1566 | - $v_result_list[$p_options_list[$i]][0] = $p_options_list[$i+1]; |
|
1567 | - } |
|
1568 | - else if (is_array($p_options_list[$i+1])) { |
|
1569 | - $v_result_list[$p_options_list[$i]] = $p_options_list[$i+1]; |
|
1570 | - } |
|
1571 | - else { |
|
1564 | + // ----- Get the value |
|
1565 | + if (is_string($p_options_list[$i+1])) { |
|
1566 | + $v_result_list[$p_options_list[$i]][0] = $p_options_list[$i+1]; |
|
1567 | + } |
|
1568 | + else if (is_array($p_options_list[$i+1])) { |
|
1569 | + $v_result_list[$p_options_list[$i]] = $p_options_list[$i+1]; |
|
1570 | + } |
|
1571 | + else { |
|
1572 | 1572 | // ----- Error log |
1573 | 1573 | PclZip::privErrorLog(PCLZIP_ERR_INVALID_OPTION_VALUE, "Wrong parameter value for option '".PclZipUtilOptionText($p_options_list[$i])."'"); |
1574 | 1574 | |
1575 | 1575 | // ----- Return |
1576 | 1576 | return PclZip::errorCode(); |
1577 | - } |
|
1578 | - $i++; |
|
1577 | + } |
|
1578 | + $i++; |
|
1579 | 1579 | break; |
1580 | 1580 | |
1581 | 1581 | // ----- Look for options that request an EREG or PREG expression |
@@ -1592,20 +1592,20 @@ discard block |
||
1592 | 1592 | |
1593 | 1593 | // ----- Return |
1594 | 1594 | return PclZip::errorCode(); |
1595 | - } |
|
1595 | + } |
|
1596 | 1596 | |
1597 | - // ----- Get the value |
|
1598 | - if (is_string($p_options_list[$i+1])) { |
|
1599 | - $v_result_list[$p_options_list[$i]] = $p_options_list[$i+1]; |
|
1600 | - } |
|
1601 | - else { |
|
1597 | + // ----- Get the value |
|
1598 | + if (is_string($p_options_list[$i+1])) { |
|
1599 | + $v_result_list[$p_options_list[$i]] = $p_options_list[$i+1]; |
|
1600 | + } |
|
1601 | + else { |
|
1602 | 1602 | // ----- Error log |
1603 | 1603 | PclZip::privErrorLog(PCLZIP_ERR_INVALID_OPTION_VALUE, "Wrong parameter value for option '".PclZipUtilOptionText($p_options_list[$i])."'"); |
1604 | 1604 | |
1605 | 1605 | // ----- Return |
1606 | 1606 | return PclZip::errorCode(); |
1607 | - } |
|
1608 | - $i++; |
|
1607 | + } |
|
1608 | + $i++; |
|
1609 | 1609 | break; |
1610 | 1610 | |
1611 | 1611 | // ----- Look for options that takes a string |
@@ -1616,29 +1616,29 @@ discard block |
||
1616 | 1616 | if (($i+1) >= $p_size) { |
1617 | 1617 | // ----- Error log |
1618 | 1618 | PclZip::privErrorLog(PCLZIP_ERR_MISSING_OPTION_VALUE, |
1619 | - "Missing parameter value for option '" |
|
1620 | - .PclZipUtilOptionText($p_options_list[$i]) |
|
1621 | - ."'"); |
|
1619 | + "Missing parameter value for option '" |
|
1620 | + .PclZipUtilOptionText($p_options_list[$i]) |
|
1621 | + ."'"); |
|
1622 | 1622 | |
1623 | 1623 | // ----- Return |
1624 | 1624 | return PclZip::errorCode(); |
1625 | - } |
|
1625 | + } |
|
1626 | 1626 | |
1627 | - // ----- Get the value |
|
1628 | - if (is_string($p_options_list[$i+1])) { |
|
1629 | - $v_result_list[$p_options_list[$i]] = $p_options_list[$i+1]; |
|
1630 | - } |
|
1631 | - else { |
|
1627 | + // ----- Get the value |
|
1628 | + if (is_string($p_options_list[$i+1])) { |
|
1629 | + $v_result_list[$p_options_list[$i]] = $p_options_list[$i+1]; |
|
1630 | + } |
|
1631 | + else { |
|
1632 | 1632 | // ----- Error log |
1633 | 1633 | PclZip::privErrorLog(PCLZIP_ERR_INVALID_OPTION_VALUE, |
1634 | - "Wrong parameter value for option '" |
|
1635 | - .PclZipUtilOptionText($p_options_list[$i]) |
|
1636 | - ."'"); |
|
1634 | + "Wrong parameter value for option '" |
|
1635 | + .PclZipUtilOptionText($p_options_list[$i]) |
|
1636 | + ."'"); |
|
1637 | 1637 | |
1638 | 1638 | // ----- Return |
1639 | 1639 | return PclZip::errorCode(); |
1640 | - } |
|
1641 | - $i++; |
|
1640 | + } |
|
1641 | + $i++; |
|
1642 | 1642 | break; |
1643 | 1643 | |
1644 | 1644 | // ----- Look for options that request an array of index |
@@ -1650,87 +1650,87 @@ discard block |
||
1650 | 1650 | |
1651 | 1651 | // ----- Return |
1652 | 1652 | return PclZip::errorCode(); |
1653 | - } |
|
1653 | + } |
|
1654 | 1654 | |
1655 | - // ----- Get the value |
|
1656 | - $v_work_list = array(); |
|
1657 | - if (is_string($p_options_list[$i+1])) { |
|
1655 | + // ----- Get the value |
|
1656 | + $v_work_list = array(); |
|
1657 | + if (is_string($p_options_list[$i+1])) { |
|
1658 | 1658 | |
1659 | - // ----- Remove spaces |
|
1660 | - $p_options_list[$i+1] = strtr($p_options_list[$i+1], ' ', ''); |
|
1659 | + // ----- Remove spaces |
|
1660 | + $p_options_list[$i+1] = strtr($p_options_list[$i+1], ' ', ''); |
|
1661 | 1661 | |
1662 | - // ----- Parse items |
|
1663 | - $v_work_list = explode(",", $p_options_list[$i+1]); |
|
1664 | - } |
|
1665 | - else if (is_integer($p_options_list[$i+1])) { |
|
1666 | - $v_work_list[0] = $p_options_list[$i+1].'-'.$p_options_list[$i+1]; |
|
1667 | - } |
|
1668 | - else if (is_array($p_options_list[$i+1])) { |
|
1669 | - $v_work_list = $p_options_list[$i+1]; |
|
1670 | - } |
|
1671 | - else { |
|
1662 | + // ----- Parse items |
|
1663 | + $v_work_list = explode(",", $p_options_list[$i+1]); |
|
1664 | + } |
|
1665 | + else if (is_integer($p_options_list[$i+1])) { |
|
1666 | + $v_work_list[0] = $p_options_list[$i+1].'-'.$p_options_list[$i+1]; |
|
1667 | + } |
|
1668 | + else if (is_array($p_options_list[$i+1])) { |
|
1669 | + $v_work_list = $p_options_list[$i+1]; |
|
1670 | + } |
|
1671 | + else { |
|
1672 | 1672 | // ----- Error log |
1673 | 1673 | PclZip::privErrorLog(PCLZIP_ERR_INVALID_OPTION_VALUE, "Value must be integer, string or array for option '".PclZipUtilOptionText($p_options_list[$i])."'"); |
1674 | 1674 | |
1675 | 1675 | // ----- Return |
1676 | 1676 | return PclZip::errorCode(); |
1677 | - } |
|
1677 | + } |
|
1678 | 1678 | |
1679 | - // ----- Reduce the index list |
|
1680 | - // each index item in the list must be a couple with a start and |
|
1681 | - // an end value : [0,3], [5-5], [8-10], ... |
|
1682 | - // ----- Check the format of each item |
|
1683 | - $v_sort_flag=false; |
|
1684 | - $v_sort_value=0; |
|
1685 | - for ($j=0; $j<sizeof($v_work_list); $j++) { |
|
1686 | - // ----- Explode the item |
|
1687 | - $v_item_list = explode("-", $v_work_list[$j]); |
|
1688 | - $v_size_item_list = sizeof($v_item_list); |
|
1689 | - |
|
1690 | - // ----- TBC : Here we might check that each item is a |
|
1691 | - // real integer ... |
|
1692 | - |
|
1693 | - // ----- Look for single value |
|
1694 | - if ($v_size_item_list == 1) { |
|
1695 | - // ----- Set the option value |
|
1696 | - $v_result_list[$p_options_list[$i]][$j]['start'] = $v_item_list[0]; |
|
1697 | - $v_result_list[$p_options_list[$i]][$j]['end'] = $v_item_list[0]; |
|
1698 | - } |
|
1699 | - elseif ($v_size_item_list == 2) { |
|
1700 | - // ----- Set the option value |
|
1701 | - $v_result_list[$p_options_list[$i]][$j]['start'] = $v_item_list[0]; |
|
1702 | - $v_result_list[$p_options_list[$i]][$j]['end'] = $v_item_list[1]; |
|
1703 | - } |
|
1704 | - else { |
|
1705 | - // ----- Error log |
|
1706 | - PclZip::privErrorLog(PCLZIP_ERR_INVALID_OPTION_VALUE, "Too many values in index range for option '".PclZipUtilOptionText($p_options_list[$i])."'"); |
|
1707 | - |
|
1708 | - // ----- Return |
|
1709 | - return PclZip::errorCode(); |
|
1710 | - } |
|
1711 | - |
|
1712 | - |
|
1713 | - // ----- Look for list sort |
|
1714 | - if ($v_result_list[$p_options_list[$i]][$j]['start'] < $v_sort_value) { |
|
1715 | - $v_sort_flag=true; |
|
1716 | - |
|
1717 | - // ----- TBC : An automatic sort should be writen ... |
|
1718 | - // ----- Error log |
|
1719 | - PclZip::privErrorLog(PCLZIP_ERR_INVALID_OPTION_VALUE, "Invalid order of index range for option '".PclZipUtilOptionText($p_options_list[$i])."'"); |
|
1720 | - |
|
1721 | - // ----- Return |
|
1722 | - return PclZip::errorCode(); |
|
1723 | - } |
|
1724 | - $v_sort_value = $v_result_list[$p_options_list[$i]][$j]['start']; |
|
1725 | - } |
|
1679 | + // ----- Reduce the index list |
|
1680 | + // each index item in the list must be a couple with a start and |
|
1681 | + // an end value : [0,3], [5-5], [8-10], ... |
|
1682 | + // ----- Check the format of each item |
|
1683 | + $v_sort_flag=false; |
|
1684 | + $v_sort_value=0; |
|
1685 | + for ($j=0; $j<sizeof($v_work_list); $j++) { |
|
1686 | + // ----- Explode the item |
|
1687 | + $v_item_list = explode("-", $v_work_list[$j]); |
|
1688 | + $v_size_item_list = sizeof($v_item_list); |
|
1689 | + |
|
1690 | + // ----- TBC : Here we might check that each item is a |
|
1691 | + // real integer ... |
|
1692 | + |
|
1693 | + // ----- Look for single value |
|
1694 | + if ($v_size_item_list == 1) { |
|
1695 | + // ----- Set the option value |
|
1696 | + $v_result_list[$p_options_list[$i]][$j]['start'] = $v_item_list[0]; |
|
1697 | + $v_result_list[$p_options_list[$i]][$j]['end'] = $v_item_list[0]; |
|
1698 | + } |
|
1699 | + elseif ($v_size_item_list == 2) { |
|
1700 | + // ----- Set the option value |
|
1701 | + $v_result_list[$p_options_list[$i]][$j]['start'] = $v_item_list[0]; |
|
1702 | + $v_result_list[$p_options_list[$i]][$j]['end'] = $v_item_list[1]; |
|
1703 | + } |
|
1704 | + else { |
|
1705 | + // ----- Error log |
|
1706 | + PclZip::privErrorLog(PCLZIP_ERR_INVALID_OPTION_VALUE, "Too many values in index range for option '".PclZipUtilOptionText($p_options_list[$i])."'"); |
|
1707 | + |
|
1708 | + // ----- Return |
|
1709 | + return PclZip::errorCode(); |
|
1710 | + } |
|
1711 | + |
|
1712 | + |
|
1713 | + // ----- Look for list sort |
|
1714 | + if ($v_result_list[$p_options_list[$i]][$j]['start'] < $v_sort_value) { |
|
1715 | + $v_sort_flag=true; |
|
1716 | + |
|
1717 | + // ----- TBC : An automatic sort should be writen ... |
|
1718 | + // ----- Error log |
|
1719 | + PclZip::privErrorLog(PCLZIP_ERR_INVALID_OPTION_VALUE, "Invalid order of index range for option '".PclZipUtilOptionText($p_options_list[$i])."'"); |
|
1720 | + |
|
1721 | + // ----- Return |
|
1722 | + return PclZip::errorCode(); |
|
1723 | + } |
|
1724 | + $v_sort_value = $v_result_list[$p_options_list[$i]][$j]['start']; |
|
1725 | + } |
|
1726 | 1726 | |
1727 | - // ----- Sort the items |
|
1728 | - if ($v_sort_flag) { |
|
1729 | - // TBC : To Be Completed |
|
1730 | - } |
|
1727 | + // ----- Sort the items |
|
1728 | + if ($v_sort_flag) { |
|
1729 | + // TBC : To Be Completed |
|
1730 | + } |
|
1731 | 1731 | |
1732 | - // ----- Next option |
|
1733 | - $i++; |
|
1732 | + // ----- Next option |
|
1733 | + $i++; |
|
1734 | 1734 | break; |
1735 | 1735 | |
1736 | 1736 | // ----- Look for options that request no value |
@@ -1752,11 +1752,11 @@ discard block |
||
1752 | 1752 | |
1753 | 1753 | // ----- Return |
1754 | 1754 | return PclZip::errorCode(); |
1755 | - } |
|
1755 | + } |
|
1756 | 1756 | |
1757 | - // ----- Get the value |
|
1758 | - $v_result_list[$p_options_list[$i]] = $p_options_list[$i+1]; |
|
1759 | - $i++; |
|
1757 | + // ----- Get the value |
|
1758 | + $v_result_list[$p_options_list[$i]] = $p_options_list[$i+1]; |
|
1759 | + $i++; |
|
1760 | 1760 | break; |
1761 | 1761 | |
1762 | 1762 | // ----- Look for options that request a call-back |
@@ -1777,54 +1777,54 @@ discard block |
||
1777 | 1777 | |
1778 | 1778 | // ----- Return |
1779 | 1779 | return PclZip::errorCode(); |
1780 | - } |
|
1780 | + } |
|
1781 | 1781 | |
1782 | - // ----- Get the value |
|
1783 | - $v_function_name = $p_options_list[$i+1]; |
|
1782 | + // ----- Get the value |
|
1783 | + $v_function_name = $p_options_list[$i+1]; |
|
1784 | 1784 | |
1785 | - // ----- Check that the value is a valid existing function |
|
1786 | - if (!function_exists($v_function_name)) { |
|
1785 | + // ----- Check that the value is a valid existing function |
|
1786 | + if (!function_exists($v_function_name)) { |
|
1787 | 1787 | // ----- Error log |
1788 | 1788 | PclZip::privErrorLog(PCLZIP_ERR_INVALID_OPTION_VALUE, "Function '".$v_function_name."()' is not an existing function for option '".PclZipUtilOptionText($p_options_list[$i])."'"); |
1789 | 1789 | |
1790 | 1790 | // ----- Return |
1791 | 1791 | return PclZip::errorCode(); |
1792 | - } |
|
1792 | + } |
|
1793 | 1793 | |
1794 | - // ----- Set the attribute |
|
1795 | - $v_result_list[$p_options_list[$i]] = $v_function_name; |
|
1796 | - $i++; |
|
1794 | + // ----- Set the attribute |
|
1795 | + $v_result_list[$p_options_list[$i]] = $v_function_name; |
|
1796 | + $i++; |
|
1797 | 1797 | break; |
1798 | 1798 | |
1799 | 1799 | default : |
1800 | 1800 | // ----- Error log |
1801 | 1801 | PclZip::privErrorLog(PCLZIP_ERR_INVALID_PARAMETER, |
1802 | - "Unknown parameter '" |
|
1803 | - .$p_options_list[$i]."'"); |
|
1802 | + "Unknown parameter '" |
|
1803 | + .$p_options_list[$i]."'"); |
|
1804 | 1804 | |
1805 | - // ----- Return |
|
1806 | - return PclZip::errorCode(); |
|
1807 | - } |
|
1805 | + // ----- Return |
|
1806 | + return PclZip::errorCode(); |
|
1807 | + } |
|
1808 | 1808 | |
1809 | - // ----- Next options |
|
1810 | - $i++; |
|
1809 | + // ----- Next options |
|
1810 | + $i++; |
|
1811 | 1811 | } |
1812 | 1812 | |
1813 | 1813 | // ----- Look for mandatory options |
1814 | 1814 | if ($v_requested_options !== false) { |
1815 | - for ($key=reset($v_requested_options); $key=key($v_requested_options); $key=next($v_requested_options)) { |
|
1815 | + for ($key=reset($v_requested_options); $key=key($v_requested_options); $key=next($v_requested_options)) { |
|
1816 | 1816 | // ----- Look for mandatory option |
1817 | 1817 | if ($v_requested_options[$key] == 'mandatory') { |
1818 | - // ----- Look if present |
|
1819 | - if (!isset($v_result_list[$key])) { |
|
1818 | + // ----- Look if present |
|
1819 | + if (!isset($v_result_list[$key])) { |
|
1820 | 1820 | // ----- Error log |
1821 | 1821 | PclZip::privErrorLog(PCLZIP_ERR_INVALID_PARAMETER, "Missing mandatory parameter ".PclZipUtilOptionText($key)."(".$key.")"); |
1822 | 1822 | |
1823 | 1823 | // ----- Return |
1824 | 1824 | return PclZip::errorCode(); |
1825 | - } |
|
1825 | + } |
|
1826 | + } |
|
1826 | 1827 | } |
1827 | - } |
|
1828 | 1828 | } |
1829 | 1829 | |
1830 | 1830 | // ----- Look for default values |
@@ -1834,22 +1834,22 @@ discard block |
||
1834 | 1834 | |
1835 | 1835 | // ----- Return |
1836 | 1836 | return $v_result; |
1837 | - } |
|
1838 | - // -------------------------------------------------------------------------------- |
|
1839 | - |
|
1840 | - // -------------------------------------------------------------------------------- |
|
1841 | - // Function : privOptionDefaultThreshold() |
|
1842 | - // Description : |
|
1843 | - // Parameters : |
|
1844 | - // Return Values : |
|
1845 | - // -------------------------------------------------------------------------------- |
|
1846 | - function privOptionDefaultThreshold(&$p_options) |
|
1847 | - { |
|
1837 | + } |
|
1838 | + // -------------------------------------------------------------------------------- |
|
1839 | + |
|
1840 | + // -------------------------------------------------------------------------------- |
|
1841 | + // Function : privOptionDefaultThreshold() |
|
1842 | + // Description : |
|
1843 | + // Parameters : |
|
1844 | + // Return Values : |
|
1845 | + // -------------------------------------------------------------------------------- |
|
1846 | + function privOptionDefaultThreshold(&$p_options) |
|
1847 | + { |
|
1848 | 1848 | $v_result=1; |
1849 | 1849 | |
1850 | 1850 | if (isset($p_options[PCLZIP_OPT_TEMP_FILE_THRESHOLD]) |
1851 | 1851 | || isset($p_options[PCLZIP_OPT_TEMP_FILE_OFF])) { |
1852 | - return $v_result; |
|
1852 | + return $v_result; |
|
1853 | 1853 | } |
1854 | 1854 | |
1855 | 1855 | // ----- Get 'memory_limit' configuration value |
@@ -1871,52 +1871,52 @@ discard block |
||
1871 | 1871 | |
1872 | 1872 | // ----- Sanity check : No threshold if value lower than 1M |
1873 | 1873 | if ($p_options[PCLZIP_OPT_TEMP_FILE_THRESHOLD] < 1048576) { |
1874 | - unset($p_options[PCLZIP_OPT_TEMP_FILE_THRESHOLD]); |
|
1874 | + unset($p_options[PCLZIP_OPT_TEMP_FILE_THRESHOLD]); |
|
1875 | 1875 | } |
1876 | 1876 | |
1877 | 1877 | // ----- Return |
1878 | 1878 | return $v_result; |
1879 | - } |
|
1880 | - // -------------------------------------------------------------------------------- |
|
1881 | - |
|
1882 | - // -------------------------------------------------------------------------------- |
|
1883 | - // Function : privFileDescrParseAtt() |
|
1884 | - // Description : |
|
1885 | - // Parameters : |
|
1886 | - // Return Values : |
|
1887 | - // 1 on success. |
|
1888 | - // 0 on failure. |
|
1889 | - // -------------------------------------------------------------------------------- |
|
1890 | - function privFileDescrParseAtt(&$p_file_list, &$p_filedescr, $v_options, $v_requested_options=false) |
|
1891 | - { |
|
1879 | + } |
|
1880 | + // -------------------------------------------------------------------------------- |
|
1881 | + |
|
1882 | + // -------------------------------------------------------------------------------- |
|
1883 | + // Function : privFileDescrParseAtt() |
|
1884 | + // Description : |
|
1885 | + // Parameters : |
|
1886 | + // Return Values : |
|
1887 | + // 1 on success. |
|
1888 | + // 0 on failure. |
|
1889 | + // -------------------------------------------------------------------------------- |
|
1890 | + function privFileDescrParseAtt(&$p_file_list, &$p_filedescr, $v_options, $v_requested_options=false) |
|
1891 | + { |
|
1892 | 1892 | $v_result=1; |
1893 | 1893 | |
1894 | 1894 | // ----- For each file in the list check the attributes |
1895 | 1895 | foreach ($p_file_list as $v_key => $v_value) { |
1896 | 1896 | |
1897 | - // ----- Check if the option is supported |
|
1898 | - if (!isset($v_requested_options[$v_key])) { |
|
1897 | + // ----- Check if the option is supported |
|
1898 | + if (!isset($v_requested_options[$v_key])) { |
|
1899 | 1899 | // ----- Error log |
1900 | 1900 | PclZip::privErrorLog(PCLZIP_ERR_INVALID_PARAMETER, "Invalid file attribute '".$v_key."' for this file"); |
1901 | 1901 | |
1902 | 1902 | // ----- Return |
1903 | 1903 | return PclZip::errorCode(); |
1904 | - } |
|
1904 | + } |
|
1905 | 1905 | |
1906 | - // ----- Look for attribute |
|
1907 | - switch ($v_key) { |
|
1906 | + // ----- Look for attribute |
|
1907 | + switch ($v_key) { |
|
1908 | 1908 | case PCLZIP_ATT_FILE_NAME : |
1909 | 1909 | if (!is_string($v_value)) { |
1910 | 1910 | PclZip::privErrorLog(PCLZIP_ERR_INVALID_ATTRIBUTE_VALUE, "Invalid type ".gettype($v_value).". String expected for attribute '".PclZipUtilOptionText($v_key)."'"); |
1911 | 1911 | return PclZip::errorCode(); |
1912 | - } |
|
1912 | + } |
|
1913 | 1913 | |
1914 | - $p_filedescr['filename'] = PclZipUtilPathReduction($v_value); |
|
1914 | + $p_filedescr['filename'] = PclZipUtilPathReduction($v_value); |
|
1915 | 1915 | |
1916 | - if ($p_filedescr['filename'] == '') { |
|
1916 | + if ($p_filedescr['filename'] == '') { |
|
1917 | 1917 | PclZip::privErrorLog(PCLZIP_ERR_INVALID_ATTRIBUTE_VALUE, "Invalid empty filename for attribute '".PclZipUtilOptionText($v_key)."'"); |
1918 | 1918 | return PclZip::errorCode(); |
1919 | - } |
|
1919 | + } |
|
1920 | 1920 | |
1921 | 1921 | break; |
1922 | 1922 | |
@@ -1924,28 +1924,28 @@ discard block |
||
1924 | 1924 | if (!is_string($v_value)) { |
1925 | 1925 | PclZip::privErrorLog(PCLZIP_ERR_INVALID_ATTRIBUTE_VALUE, "Invalid type ".gettype($v_value).". String expected for attribute '".PclZipUtilOptionText($v_key)."'"); |
1926 | 1926 | return PclZip::errorCode(); |
1927 | - } |
|
1927 | + } |
|
1928 | 1928 | |
1929 | - $p_filedescr['new_short_name'] = PclZipUtilPathReduction($v_value); |
|
1929 | + $p_filedescr['new_short_name'] = PclZipUtilPathReduction($v_value); |
|
1930 | 1930 | |
1931 | - if ($p_filedescr['new_short_name'] == '') { |
|
1931 | + if ($p_filedescr['new_short_name'] == '') { |
|
1932 | 1932 | PclZip::privErrorLog(PCLZIP_ERR_INVALID_ATTRIBUTE_VALUE, "Invalid empty short filename for attribute '".PclZipUtilOptionText($v_key)."'"); |
1933 | 1933 | return PclZip::errorCode(); |
1934 | - } |
|
1934 | + } |
|
1935 | 1935 | break; |
1936 | 1936 | |
1937 | 1937 | case PCLZIP_ATT_FILE_NEW_FULL_NAME : |
1938 | 1938 | if (!is_string($v_value)) { |
1939 | 1939 | PclZip::privErrorLog(PCLZIP_ERR_INVALID_ATTRIBUTE_VALUE, "Invalid type ".gettype($v_value).". String expected for attribute '".PclZipUtilOptionText($v_key)."'"); |
1940 | 1940 | return PclZip::errorCode(); |
1941 | - } |
|
1941 | + } |
|
1942 | 1942 | |
1943 | - $p_filedescr['new_full_name'] = PclZipUtilPathReduction($v_value); |
|
1943 | + $p_filedescr['new_full_name'] = PclZipUtilPathReduction($v_value); |
|
1944 | 1944 | |
1945 | - if ($p_filedescr['new_full_name'] == '') { |
|
1945 | + if ($p_filedescr['new_full_name'] == '') { |
|
1946 | 1946 | PclZip::privErrorLog(PCLZIP_ERR_INVALID_ATTRIBUTE_VALUE, "Invalid empty full filename for attribute '".PclZipUtilOptionText($v_key)."'"); |
1947 | 1947 | return PclZip::errorCode(); |
1948 | - } |
|
1948 | + } |
|
1949 | 1949 | break; |
1950 | 1950 | |
1951 | 1951 | // ----- Look for options that takes a string |
@@ -1953,18 +1953,18 @@ discard block |
||
1953 | 1953 | if (!is_string($v_value)) { |
1954 | 1954 | PclZip::privErrorLog(PCLZIP_ERR_INVALID_ATTRIBUTE_VALUE, "Invalid type ".gettype($v_value).". String expected for attribute '".PclZipUtilOptionText($v_key)."'"); |
1955 | 1955 | return PclZip::errorCode(); |
1956 | - } |
|
1956 | + } |
|
1957 | 1957 | |
1958 | - $p_filedescr['comment'] = $v_value; |
|
1958 | + $p_filedescr['comment'] = $v_value; |
|
1959 | 1959 | break; |
1960 | 1960 | |
1961 | 1961 | case PCLZIP_ATT_FILE_MTIME : |
1962 | 1962 | if (!is_integer($v_value)) { |
1963 | 1963 | PclZip::privErrorLog(PCLZIP_ERR_INVALID_ATTRIBUTE_VALUE, "Invalid type ".gettype($v_value).". Integer expected for attribute '".PclZipUtilOptionText($v_key)."'"); |
1964 | 1964 | return PclZip::errorCode(); |
1965 | - } |
|
1965 | + } |
|
1966 | 1966 | |
1967 | - $p_filedescr['mtime'] = $v_value; |
|
1967 | + $p_filedescr['mtime'] = $v_value; |
|
1968 | 1968 | break; |
1969 | 1969 | |
1970 | 1970 | case PCLZIP_ATT_FILE_CONTENT : |
@@ -1974,50 +1974,50 @@ discard block |
||
1974 | 1974 | default : |
1975 | 1975 | // ----- Error log |
1976 | 1976 | PclZip::privErrorLog(PCLZIP_ERR_INVALID_PARAMETER, |
1977 | - "Unknown parameter '".$v_key."'"); |
|
1977 | + "Unknown parameter '".$v_key."'"); |
|
1978 | 1978 | |
1979 | - // ----- Return |
|
1980 | - return PclZip::errorCode(); |
|
1981 | - } |
|
1979 | + // ----- Return |
|
1980 | + return PclZip::errorCode(); |
|
1981 | + } |
|
1982 | 1982 | |
1983 | - // ----- Look for mandatory options |
|
1984 | - if ($v_requested_options !== false) { |
|
1983 | + // ----- Look for mandatory options |
|
1984 | + if ($v_requested_options !== false) { |
|
1985 | 1985 | for ($key=reset($v_requested_options); $key=key($v_requested_options); $key=next($v_requested_options)) { |
1986 | - // ----- Look for mandatory option |
|
1987 | - if ($v_requested_options[$key] == 'mandatory') { |
|
1986 | + // ----- Look for mandatory option |
|
1987 | + if ($v_requested_options[$key] == 'mandatory') { |
|
1988 | 1988 | // ----- Look if present |
1989 | 1989 | if (!isset($p_file_list[$key])) { |
1990 | - PclZip::privErrorLog(PCLZIP_ERR_INVALID_PARAMETER, "Missing mandatory parameter ".PclZipUtilOptionText($key)."(".$key.")"); |
|
1991 | - return PclZip::errorCode(); |
|
1990 | + PclZip::privErrorLog(PCLZIP_ERR_INVALID_PARAMETER, "Missing mandatory parameter ".PclZipUtilOptionText($key)."(".$key.")"); |
|
1991 | + return PclZip::errorCode(); |
|
1992 | + } |
|
1992 | 1993 | } |
1993 | - } |
|
1994 | 1994 | } |
1995 | - } |
|
1995 | + } |
|
1996 | 1996 | |
1997 | 1997 | // end foreach |
1998 | 1998 | } |
1999 | 1999 | |
2000 | 2000 | // ----- Return |
2001 | 2001 | return $v_result; |
2002 | - } |
|
2003 | - // -------------------------------------------------------------------------------- |
|
2004 | - |
|
2005 | - // -------------------------------------------------------------------------------- |
|
2006 | - // Function : privFileDescrExpand() |
|
2007 | - // Description : |
|
2008 | - // This method look for each item of the list to see if its a file, a folder |
|
2009 | - // or a string to be added as file. For any other type of files (link, other) |
|
2010 | - // just ignore the item. |
|
2011 | - // Then prepare the information that will be stored for that file. |
|
2012 | - // When its a folder, expand the folder with all the files that are in that |
|
2013 | - // folder (recursively). |
|
2014 | - // Parameters : |
|
2015 | - // Return Values : |
|
2016 | - // 1 on success. |
|
2017 | - // 0 on failure. |
|
2018 | - // -------------------------------------------------------------------------------- |
|
2019 | - function privFileDescrExpand(&$p_filedescr_list, &$p_options) |
|
2020 | - { |
|
2002 | + } |
|
2003 | + // -------------------------------------------------------------------------------- |
|
2004 | + |
|
2005 | + // -------------------------------------------------------------------------------- |
|
2006 | + // Function : privFileDescrExpand() |
|
2007 | + // Description : |
|
2008 | + // This method look for each item of the list to see if its a file, a folder |
|
2009 | + // or a string to be added as file. For any other type of files (link, other) |
|
2010 | + // just ignore the item. |
|
2011 | + // Then prepare the information that will be stored for that file. |
|
2012 | + // When its a folder, expand the folder with all the files that are in that |
|
2013 | + // folder (recursively). |
|
2014 | + // Parameters : |
|
2015 | + // Return Values : |
|
2016 | + // 1 on success. |
|
2017 | + // 0 on failure. |
|
2018 | + // -------------------------------------------------------------------------------- |
|
2019 | + function privFileDescrExpand(&$p_filedescr_list, &$p_options) |
|
2020 | + { |
|
2021 | 2021 | $v_result=1; |
2022 | 2022 | |
2023 | 2023 | // ----- Create a result list |
@@ -2026,58 +2026,58 @@ discard block |
||
2026 | 2026 | // ----- Look each entry |
2027 | 2027 | for ($i=0; $i<sizeof($p_filedescr_list); $i++) { |
2028 | 2028 | |
2029 | - // ----- Get filedescr |
|
2030 | - $v_descr = $p_filedescr_list[$i]; |
|
2029 | + // ----- Get filedescr |
|
2030 | + $v_descr = $p_filedescr_list[$i]; |
|
2031 | 2031 | |
2032 | - // ----- Reduce the filename |
|
2033 | - $v_descr['filename'] = PclZipUtilTranslateWinPath($v_descr['filename'], false); |
|
2034 | - $v_descr['filename'] = PclZipUtilPathReduction($v_descr['filename']); |
|
2032 | + // ----- Reduce the filename |
|
2033 | + $v_descr['filename'] = PclZipUtilTranslateWinPath($v_descr['filename'], false); |
|
2034 | + $v_descr['filename'] = PclZipUtilPathReduction($v_descr['filename']); |
|
2035 | 2035 | |
2036 | - // ----- Look for real file or folder |
|
2037 | - if (file_exists($v_descr['filename'])) { |
|
2036 | + // ----- Look for real file or folder |
|
2037 | + if (file_exists($v_descr['filename'])) { |
|
2038 | 2038 | if (@is_file($v_descr['filename'])) { |
2039 | - $v_descr['type'] = 'file'; |
|
2039 | + $v_descr['type'] = 'file'; |
|
2040 | 2040 | } |
2041 | 2041 | else if (@is_dir($v_descr['filename'])) { |
2042 | - $v_descr['type'] = 'folder'; |
|
2042 | + $v_descr['type'] = 'folder'; |
|
2043 | 2043 | } |
2044 | 2044 | else if (@is_link($v_descr['filename'])) { |
2045 | - // skip |
|
2046 | - continue; |
|
2045 | + // skip |
|
2046 | + continue; |
|
2047 | 2047 | } |
2048 | 2048 | else { |
2049 | - // skip |
|
2050 | - continue; |
|
2049 | + // skip |
|
2050 | + continue; |
|
2051 | + } |
|
2051 | 2052 | } |
2052 | - } |
|
2053 | 2053 | |
2054 | - // ----- Look for string added as file |
|
2055 | - else if (isset($v_descr['content'])) { |
|
2054 | + // ----- Look for string added as file |
|
2055 | + else if (isset($v_descr['content'])) { |
|
2056 | 2056 | $v_descr['type'] = 'virtual_file'; |
2057 | - } |
|
2057 | + } |
|
2058 | 2058 | |
2059 | - // ----- Missing file |
|
2060 | - else { |
|
2059 | + // ----- Missing file |
|
2060 | + else { |
|
2061 | 2061 | // ----- Error log |
2062 | 2062 | PclZip::privErrorLog(PCLZIP_ERR_MISSING_FILE, "File '".$v_descr['filename']."' does not exist"); |
2063 | 2063 | |
2064 | 2064 | // ----- Return |
2065 | 2065 | return PclZip::errorCode(); |
2066 | - } |
|
2066 | + } |
|
2067 | 2067 | |
2068 | - // ----- Calculate the stored filename |
|
2069 | - $this->privCalculateStoredFilename($v_descr, $p_options); |
|
2068 | + // ----- Calculate the stored filename |
|
2069 | + $this->privCalculateStoredFilename($v_descr, $p_options); |
|
2070 | 2070 | |
2071 | - // ----- Add the descriptor in result list |
|
2072 | - $v_result_list[sizeof($v_result_list)] = $v_descr; |
|
2071 | + // ----- Add the descriptor in result list |
|
2072 | + $v_result_list[sizeof($v_result_list)] = $v_descr; |
|
2073 | 2073 | |
2074 | - // ----- Look for folder |
|
2075 | - if ($v_descr['type'] == 'folder') { |
|
2074 | + // ----- Look for folder |
|
2075 | + if ($v_descr['type'] == 'folder') { |
|
2076 | 2076 | // ----- List of items in folder |
2077 | 2077 | $v_dirlist_descr = array(); |
2078 | 2078 | $v_dirlist_nb = 0; |
2079 | 2079 | if ($v_folder_handler = @opendir($v_descr['filename'])) { |
2080 | - while (($v_item_handler = @readdir($v_folder_handler)) !== false) { |
|
2080 | + while (($v_item_handler = @readdir($v_folder_handler)) !== false) { |
|
2081 | 2081 | |
2082 | 2082 | // ----- Skip '.' and '..' |
2083 | 2083 | if (($v_item_handler == '.') || ($v_item_handler == '..')) { |
@@ -2092,39 +2092,39 @@ discard block |
||
2092 | 2092 | // files/sub-folders also change |
2093 | 2093 | if (($v_descr['stored_filename'] != $v_descr['filename']) |
2094 | 2094 | && (!isset($p_options[PCLZIP_OPT_REMOVE_ALL_PATH]))) { |
2095 | - if ($v_descr['stored_filename'] != '') { |
|
2095 | + if ($v_descr['stored_filename'] != '') { |
|
2096 | 2096 | $v_dirlist_descr[$v_dirlist_nb]['new_full_name'] = $v_descr['stored_filename'].'/'.$v_item_handler; |
2097 | - } |
|
2098 | - else { |
|
2097 | + } |
|
2098 | + else { |
|
2099 | 2099 | $v_dirlist_descr[$v_dirlist_nb]['new_full_name'] = $v_item_handler; |
2100 | - } |
|
2100 | + } |
|
2101 | 2101 | } |
2102 | 2102 | |
2103 | 2103 | $v_dirlist_nb++; |
2104 | - } |
|
2104 | + } |
|
2105 | 2105 | |
2106 | - @closedir($v_folder_handler); |
|
2106 | + @closedir($v_folder_handler); |
|
2107 | 2107 | } |
2108 | 2108 | else { |
2109 | - // TBC : unable to open folder in read mode |
|
2109 | + // TBC : unable to open folder in read mode |
|
2110 | 2110 | } |
2111 | 2111 | |
2112 | 2112 | // ----- Expand each element of the list |
2113 | 2113 | if ($v_dirlist_nb != 0) { |
2114 | - // ----- Expand |
|
2115 | - if (($v_result = $this->privFileDescrExpand($v_dirlist_descr, $p_options)) != 1) { |
|
2114 | + // ----- Expand |
|
2115 | + if (($v_result = $this->privFileDescrExpand($v_dirlist_descr, $p_options)) != 1) { |
|
2116 | 2116 | return $v_result; |
2117 | - } |
|
2117 | + } |
|
2118 | 2118 | |
2119 | - // ----- Concat the resulting list |
|
2120 | - $v_result_list = array_merge($v_result_list, $v_dirlist_descr); |
|
2119 | + // ----- Concat the resulting list |
|
2120 | + $v_result_list = array_merge($v_result_list, $v_dirlist_descr); |
|
2121 | 2121 | } |
2122 | 2122 | else { |
2123 | 2123 | } |
2124 | 2124 | |
2125 | 2125 | // ----- Free local array |
2126 | 2126 | unset($v_dirlist_descr); |
2127 | - } |
|
2127 | + } |
|
2128 | 2128 | } |
2129 | 2129 | |
2130 | 2130 | // ----- Get the result list |
@@ -2132,17 +2132,17 @@ discard block |
||
2132 | 2132 | |
2133 | 2133 | // ----- Return |
2134 | 2134 | return $v_result; |
2135 | - } |
|
2136 | - // -------------------------------------------------------------------------------- |
|
2137 | - |
|
2138 | - // -------------------------------------------------------------------------------- |
|
2139 | - // Function : privCreate() |
|
2140 | - // Description : |
|
2141 | - // Parameters : |
|
2142 | - // Return Values : |
|
2143 | - // -------------------------------------------------------------------------------- |
|
2144 | - function privCreate($p_filedescr_list, &$p_result_list, &$p_options) |
|
2145 | - { |
|
2135 | + } |
|
2136 | + // -------------------------------------------------------------------------------- |
|
2137 | + |
|
2138 | + // -------------------------------------------------------------------------------- |
|
2139 | + // Function : privCreate() |
|
2140 | + // Description : |
|
2141 | + // Parameters : |
|
2142 | + // Return Values : |
|
2143 | + // -------------------------------------------------------------------------------- |
|
2144 | + function privCreate($p_filedescr_list, &$p_result_list, &$p_options) |
|
2145 | + { |
|
2146 | 2146 | $v_result=1; |
2147 | 2147 | $v_list_detail = array(); |
2148 | 2148 | |
@@ -2152,8 +2152,8 @@ discard block |
||
2152 | 2152 | // ----- Open the file in write mode |
2153 | 2153 | if (($v_result = $this->privOpenFd('wb')) != 1) |
2154 | 2154 | { |
2155 | - // ----- Return |
|
2156 | - return $v_result; |
|
2155 | + // ----- Return |
|
2156 | + return $v_result; |
|
2157 | 2157 | } |
2158 | 2158 | |
2159 | 2159 | // ----- Add the list of files |
@@ -2167,17 +2167,17 @@ discard block |
||
2167 | 2167 | |
2168 | 2168 | // ----- Return |
2169 | 2169 | return $v_result; |
2170 | - } |
|
2171 | - // -------------------------------------------------------------------------------- |
|
2172 | - |
|
2173 | - // -------------------------------------------------------------------------------- |
|
2174 | - // Function : privAdd() |
|
2175 | - // Description : |
|
2176 | - // Parameters : |
|
2177 | - // Return Values : |
|
2178 | - // -------------------------------------------------------------------------------- |
|
2179 | - function privAdd($p_filedescr_list, &$p_result_list, &$p_options) |
|
2180 | - { |
|
2170 | + } |
|
2171 | + // -------------------------------------------------------------------------------- |
|
2172 | + |
|
2173 | + // -------------------------------------------------------------------------------- |
|
2174 | + // Function : privAdd() |
|
2175 | + // Description : |
|
2176 | + // Parameters : |
|
2177 | + // Return Values : |
|
2178 | + // -------------------------------------------------------------------------------- |
|
2179 | + function privAdd($p_filedescr_list, &$p_result_list, &$p_options) |
|
2180 | + { |
|
2181 | 2181 | $v_result=1; |
2182 | 2182 | $v_list_detail = array(); |
2183 | 2183 | |
@@ -2185,11 +2185,11 @@ discard block |
||
2185 | 2185 | if ((!is_file($this->zipname)) || (filesize($this->zipname) == 0)) |
2186 | 2186 | { |
2187 | 2187 | |
2188 | - // ----- Do a create |
|
2189 | - $v_result = $this->privCreate($p_filedescr_list, $p_result_list, $p_options); |
|
2188 | + // ----- Do a create |
|
2189 | + $v_result = $this->privCreate($p_filedescr_list, $p_result_list, $p_options); |
|
2190 | 2190 | |
2191 | - // ----- Return |
|
2192 | - return $v_result; |
|
2191 | + // ----- Return |
|
2192 | + return $v_result; |
|
2193 | 2193 | } |
2194 | 2194 | // ----- Magic quotes trick |
2195 | 2195 | $this->privDisableMagicQuotes(); |
@@ -2197,20 +2197,20 @@ discard block |
||
2197 | 2197 | // ----- Open the zip file |
2198 | 2198 | if (($v_result=$this->privOpenFd('rb')) != 1) |
2199 | 2199 | { |
2200 | - // ----- Magic quotes trick |
|
2201 | - $this->privSwapBackMagicQuotes(); |
|
2200 | + // ----- Magic quotes trick |
|
2201 | + $this->privSwapBackMagicQuotes(); |
|
2202 | 2202 | |
2203 | - // ----- Return |
|
2204 | - return $v_result; |
|
2203 | + // ----- Return |
|
2204 | + return $v_result; |
|
2205 | 2205 | } |
2206 | 2206 | |
2207 | 2207 | // ----- Read the central directory informations |
2208 | 2208 | $v_central_dir = array(); |
2209 | 2209 | if (($v_result = $this->privReadEndCentralDir($v_central_dir)) != 1) |
2210 | 2210 | { |
2211 | - $this->privCloseFd(); |
|
2212 | - $this->privSwapBackMagicQuotes(); |
|
2213 | - return $v_result; |
|
2211 | + $this->privCloseFd(); |
|
2212 | + $this->privSwapBackMagicQuotes(); |
|
2213 | + return $v_result; |
|
2214 | 2214 | } |
2215 | 2215 | |
2216 | 2216 | // ----- Go to beginning of File |
@@ -2222,13 +2222,13 @@ discard block |
||
2222 | 2222 | // ----- Open the temporary file in write mode |
2223 | 2223 | if (($v_zip_temp_fd = @fopen($v_zip_temp_name, 'wb')) == 0) |
2224 | 2224 | { |
2225 | - $this->privCloseFd(); |
|
2226 | - $this->privSwapBackMagicQuotes(); |
|
2225 | + $this->privCloseFd(); |
|
2226 | + $this->privSwapBackMagicQuotes(); |
|
2227 | 2227 | |
2228 | - PclZip::privErrorLog(PCLZIP_ERR_READ_OPEN_FAIL, 'Unable to open temporary file \''.$v_zip_temp_name.'\' in binary write mode'); |
|
2228 | + PclZip::privErrorLog(PCLZIP_ERR_READ_OPEN_FAIL, 'Unable to open temporary file \''.$v_zip_temp_name.'\' in binary write mode'); |
|
2229 | 2229 | |
2230 | - // ----- Return |
|
2231 | - return PclZip::errorCode(); |
|
2230 | + // ----- Return |
|
2231 | + return PclZip::errorCode(); |
|
2232 | 2232 | } |
2233 | 2233 | |
2234 | 2234 | // ----- Copy the files from the archive to the temporary file |
@@ -2236,10 +2236,10 @@ discard block |
||
2236 | 2236 | $v_size = $v_central_dir['offset']; |
2237 | 2237 | while ($v_size != 0) |
2238 | 2238 | { |
2239 | - $v_read_size = ($v_size < PCLZIP_READ_BLOCK_SIZE ? $v_size : PCLZIP_READ_BLOCK_SIZE); |
|
2240 | - $v_buffer = fread($this->zip_fd, $v_read_size); |
|
2241 | - @fwrite($v_zip_temp_fd, $v_buffer, $v_read_size); |
|
2242 | - $v_size -= $v_read_size; |
|
2239 | + $v_read_size = ($v_size < PCLZIP_READ_BLOCK_SIZE ? $v_size : PCLZIP_READ_BLOCK_SIZE); |
|
2240 | + $v_buffer = fread($this->zip_fd, $v_read_size); |
|
2241 | + @fwrite($v_zip_temp_fd, $v_buffer, $v_read_size); |
|
2242 | + $v_size -= $v_read_size; |
|
2243 | 2243 | } |
2244 | 2244 | |
2245 | 2245 | // ----- Swap the file descriptor |
@@ -2253,13 +2253,13 @@ discard block |
||
2253 | 2253 | $v_header_list = array(); |
2254 | 2254 | if (($v_result = $this->privAddFileList($p_filedescr_list, $v_header_list, $p_options)) != 1) |
2255 | 2255 | { |
2256 | - fclose($v_zip_temp_fd); |
|
2257 | - $this->privCloseFd(); |
|
2258 | - @unlink($v_zip_temp_name); |
|
2259 | - $this->privSwapBackMagicQuotes(); |
|
2256 | + fclose($v_zip_temp_fd); |
|
2257 | + $this->privCloseFd(); |
|
2258 | + @unlink($v_zip_temp_name); |
|
2259 | + $this->privSwapBackMagicQuotes(); |
|
2260 | 2260 | |
2261 | - // ----- Return |
|
2262 | - return $v_result; |
|
2261 | + // ----- Return |
|
2262 | + return $v_result; |
|
2263 | 2263 | } |
2264 | 2264 | |
2265 | 2265 | // ----- Store the offset of the central dir |
@@ -2269,43 +2269,43 @@ discard block |
||
2269 | 2269 | $v_size = $v_central_dir['size']; |
2270 | 2270 | while ($v_size != 0) |
2271 | 2271 | { |
2272 | - $v_read_size = ($v_size < PCLZIP_READ_BLOCK_SIZE ? $v_size : PCLZIP_READ_BLOCK_SIZE); |
|
2273 | - $v_buffer = @fread($v_zip_temp_fd, $v_read_size); |
|
2274 | - @fwrite($this->zip_fd, $v_buffer, $v_read_size); |
|
2275 | - $v_size -= $v_read_size; |
|
2272 | + $v_read_size = ($v_size < PCLZIP_READ_BLOCK_SIZE ? $v_size : PCLZIP_READ_BLOCK_SIZE); |
|
2273 | + $v_buffer = @fread($v_zip_temp_fd, $v_read_size); |
|
2274 | + @fwrite($this->zip_fd, $v_buffer, $v_read_size); |
|
2275 | + $v_size -= $v_read_size; |
|
2276 | 2276 | } |
2277 | 2277 | |
2278 | 2278 | // ----- Create the Central Dir files header |
2279 | 2279 | for ($i=0, $v_count=0; $i<sizeof($v_header_list); $i++) |
2280 | 2280 | { |
2281 | - // ----- Create the file header |
|
2282 | - if ($v_header_list[$i]['status'] == 'ok') { |
|
2281 | + // ----- Create the file header |
|
2282 | + if ($v_header_list[$i]['status'] == 'ok') { |
|
2283 | 2283 | if (($v_result = $this->privWriteCentralFileHeader($v_header_list[$i])) != 1) { |
2284 | - fclose($v_zip_temp_fd); |
|
2285 | - $this->privCloseFd(); |
|
2286 | - @unlink($v_zip_temp_name); |
|
2287 | - $this->privSwapBackMagicQuotes(); |
|
2284 | + fclose($v_zip_temp_fd); |
|
2285 | + $this->privCloseFd(); |
|
2286 | + @unlink($v_zip_temp_name); |
|
2287 | + $this->privSwapBackMagicQuotes(); |
|
2288 | 2288 | |
2289 | - // ----- Return |
|
2290 | - return $v_result; |
|
2289 | + // ----- Return |
|
2290 | + return $v_result; |
|
2291 | 2291 | } |
2292 | 2292 | $v_count++; |
2293 | - } |
|
2293 | + } |
|
2294 | 2294 | |
2295 | - // ----- Transform the header to a 'usable' info |
|
2296 | - $this->privConvertHeader2FileInfo($v_header_list[$i], $p_result_list[$i]); |
|
2295 | + // ----- Transform the header to a 'usable' info |
|
2296 | + $this->privConvertHeader2FileInfo($v_header_list[$i], $p_result_list[$i]); |
|
2297 | 2297 | } |
2298 | 2298 | |
2299 | 2299 | // ----- Zip file comment |
2300 | 2300 | $v_comment = $v_central_dir['comment']; |
2301 | 2301 | if (isset($p_options[PCLZIP_OPT_COMMENT])) { |
2302 | - $v_comment = $p_options[PCLZIP_OPT_COMMENT]; |
|
2302 | + $v_comment = $p_options[PCLZIP_OPT_COMMENT]; |
|
2303 | 2303 | } |
2304 | 2304 | if (isset($p_options[PCLZIP_OPT_ADD_COMMENT])) { |
2305 | - $v_comment = $v_comment.$p_options[PCLZIP_OPT_ADD_COMMENT]; |
|
2305 | + $v_comment = $v_comment.$p_options[PCLZIP_OPT_ADD_COMMENT]; |
|
2306 | 2306 | } |
2307 | 2307 | if (isset($p_options[PCLZIP_OPT_PREPEND_COMMENT])) { |
2308 | - $v_comment = $p_options[PCLZIP_OPT_PREPEND_COMMENT].$v_comment; |
|
2308 | + $v_comment = $p_options[PCLZIP_OPT_PREPEND_COMMENT].$v_comment; |
|
2309 | 2309 | } |
2310 | 2310 | |
2311 | 2311 | // ----- Calculate the size of the central header |
@@ -2314,12 +2314,12 @@ discard block |
||
2314 | 2314 | // ----- Create the central dir footer |
2315 | 2315 | if (($v_result = $this->privWriteCentralHeader($v_count+$v_central_dir['entries'], $v_size, $v_offset, $v_comment)) != 1) |
2316 | 2316 | { |
2317 | - // ----- Reset the file list |
|
2318 | - unset($v_header_list); |
|
2319 | - $this->privSwapBackMagicQuotes(); |
|
2317 | + // ----- Reset the file list |
|
2318 | + unset($v_header_list); |
|
2319 | + $this->privSwapBackMagicQuotes(); |
|
2320 | 2320 | |
2321 | - // ----- Return |
|
2322 | - return $v_result; |
|
2321 | + // ----- Return |
|
2322 | + return $v_result; |
|
2323 | 2323 | } |
2324 | 2324 | |
2325 | 2325 | // ----- Swap back the file descriptor |
@@ -2347,85 +2347,85 @@ discard block |
||
2347 | 2347 | |
2348 | 2348 | // ----- Return |
2349 | 2349 | return $v_result; |
2350 | - } |
|
2351 | - // -------------------------------------------------------------------------------- |
|
2352 | - |
|
2353 | - // -------------------------------------------------------------------------------- |
|
2354 | - // Function : privOpenFd() |
|
2355 | - // Description : |
|
2356 | - // Parameters : |
|
2357 | - // -------------------------------------------------------------------------------- |
|
2358 | - function privOpenFd($p_mode) |
|
2359 | - { |
|
2350 | + } |
|
2351 | + // -------------------------------------------------------------------------------- |
|
2352 | + |
|
2353 | + // -------------------------------------------------------------------------------- |
|
2354 | + // Function : privOpenFd() |
|
2355 | + // Description : |
|
2356 | + // Parameters : |
|
2357 | + // -------------------------------------------------------------------------------- |
|
2358 | + function privOpenFd($p_mode) |
|
2359 | + { |
|
2360 | 2360 | $v_result=1; |
2361 | 2361 | |
2362 | 2362 | // ----- Look if already open |
2363 | 2363 | if ($this->zip_fd != 0) |
2364 | 2364 | { |
2365 | - // ----- Error log |
|
2366 | - PclZip::privErrorLog(PCLZIP_ERR_READ_OPEN_FAIL, 'Zip file \''.$this->zipname.'\' already open'); |
|
2365 | + // ----- Error log |
|
2366 | + PclZip::privErrorLog(PCLZIP_ERR_READ_OPEN_FAIL, 'Zip file \''.$this->zipname.'\' already open'); |
|
2367 | 2367 | |
2368 | - // ----- Return |
|
2369 | - return PclZip::errorCode(); |
|
2368 | + // ----- Return |
|
2369 | + return PclZip::errorCode(); |
|
2370 | 2370 | } |
2371 | 2371 | |
2372 | 2372 | // ----- Open the zip file |
2373 | 2373 | if (($this->zip_fd = @fopen($this->zipname, $p_mode)) == 0) |
2374 | 2374 | { |
2375 | - // ----- Error log |
|
2376 | - PclZip::privErrorLog(PCLZIP_ERR_READ_OPEN_FAIL, 'Unable to open archive \''.$this->zipname.'\' in '.$p_mode.' mode'); |
|
2375 | + // ----- Error log |
|
2376 | + PclZip::privErrorLog(PCLZIP_ERR_READ_OPEN_FAIL, 'Unable to open archive \''.$this->zipname.'\' in '.$p_mode.' mode'); |
|
2377 | 2377 | |
2378 | - // ----- Return |
|
2379 | - return PclZip::errorCode(); |
|
2378 | + // ----- Return |
|
2379 | + return PclZip::errorCode(); |
|
2380 | 2380 | } |
2381 | 2381 | |
2382 | 2382 | // ----- Return |
2383 | 2383 | return $v_result; |
2384 | - } |
|
2385 | - // -------------------------------------------------------------------------------- |
|
2386 | - |
|
2387 | - // -------------------------------------------------------------------------------- |
|
2388 | - // Function : privCloseFd() |
|
2389 | - // Description : |
|
2390 | - // Parameters : |
|
2391 | - // -------------------------------------------------------------------------------- |
|
2392 | - function privCloseFd() |
|
2393 | - { |
|
2384 | + } |
|
2385 | + // -------------------------------------------------------------------------------- |
|
2386 | + |
|
2387 | + // -------------------------------------------------------------------------------- |
|
2388 | + // Function : privCloseFd() |
|
2389 | + // Description : |
|
2390 | + // Parameters : |
|
2391 | + // -------------------------------------------------------------------------------- |
|
2392 | + function privCloseFd() |
|
2393 | + { |
|
2394 | 2394 | $v_result=1; |
2395 | 2395 | |
2396 | 2396 | if ($this->zip_fd != 0) |
2397 | - @fclose($this->zip_fd); |
|
2397 | + @fclose($this->zip_fd); |
|
2398 | 2398 | $this->zip_fd = 0; |
2399 | 2399 | |
2400 | 2400 | // ----- Return |
2401 | 2401 | return $v_result; |
2402 | - } |
|
2403 | - // -------------------------------------------------------------------------------- |
|
2404 | - |
|
2405 | - // -------------------------------------------------------------------------------- |
|
2406 | - // Function : privAddList() |
|
2407 | - // Description : |
|
2408 | - // $p_add_dir and $p_remove_dir will give the ability to memorize a path which is |
|
2409 | - // different from the real path of the file. This is usefull if you want to have PclTar |
|
2410 | - // running in any directory, and memorize relative path from an other directory. |
|
2411 | - // Parameters : |
|
2412 | - // $p_list : An array containing the file or directory names to add in the tar |
|
2413 | - // $p_result_list : list of added files with their properties (specially the status field) |
|
2414 | - // $p_add_dir : Path to add in the filename path archived |
|
2415 | - // $p_remove_dir : Path to remove in the filename path archived |
|
2416 | - // Return Values : |
|
2417 | - // -------------------------------------------------------------------------------- |
|
2402 | + } |
|
2403 | + // -------------------------------------------------------------------------------- |
|
2404 | + |
|
2405 | + // -------------------------------------------------------------------------------- |
|
2406 | + // Function : privAddList() |
|
2407 | + // Description : |
|
2408 | + // $p_add_dir and $p_remove_dir will give the ability to memorize a path which is |
|
2409 | + // different from the real path of the file. This is usefull if you want to have PclTar |
|
2410 | + // running in any directory, and memorize relative path from an other directory. |
|
2411 | + // Parameters : |
|
2412 | + // $p_list : An array containing the file or directory names to add in the tar |
|
2413 | + // $p_result_list : list of added files with their properties (specially the status field) |
|
2414 | + // $p_add_dir : Path to add in the filename path archived |
|
2415 | + // $p_remove_dir : Path to remove in the filename path archived |
|
2416 | + // Return Values : |
|
2417 | + // -------------------------------------------------------------------------------- |
|
2418 | 2418 | // function privAddList($p_list, &$p_result_list, $p_add_dir, $p_remove_dir, $p_remove_all_dir, &$p_options) |
2419 | - function privAddList($p_filedescr_list, &$p_result_list, &$p_options) |
|
2420 | - { |
|
2419 | + function privAddList($p_filedescr_list, &$p_result_list, &$p_options) |
|
2420 | + { |
|
2421 | 2421 | $v_result=1; |
2422 | 2422 | |
2423 | 2423 | // ----- Add the files |
2424 | 2424 | $v_header_list = array(); |
2425 | 2425 | if (($v_result = $this->privAddFileList($p_filedescr_list, $v_header_list, $p_options)) != 1) |
2426 | 2426 | { |
2427 | - // ----- Return |
|
2428 | - return $v_result; |
|
2427 | + // ----- Return |
|
2428 | + return $v_result; |
|
2429 | 2429 | } |
2430 | 2430 | |
2431 | 2431 | // ----- Store the offset of the central dir |
@@ -2434,23 +2434,23 @@ discard block |
||
2434 | 2434 | // ----- Create the Central Dir files header |
2435 | 2435 | for ($i=0,$v_count=0; $i<sizeof($v_header_list); $i++) |
2436 | 2436 | { |
2437 | - // ----- Create the file header |
|
2438 | - if ($v_header_list[$i]['status'] == 'ok') { |
|
2437 | + // ----- Create the file header |
|
2438 | + if ($v_header_list[$i]['status'] == 'ok') { |
|
2439 | 2439 | if (($v_result = $this->privWriteCentralFileHeader($v_header_list[$i])) != 1) { |
2440 | - // ----- Return |
|
2441 | - return $v_result; |
|
2440 | + // ----- Return |
|
2441 | + return $v_result; |
|
2442 | 2442 | } |
2443 | 2443 | $v_count++; |
2444 | - } |
|
2444 | + } |
|
2445 | 2445 | |
2446 | - // ----- Transform the header to a 'usable' info |
|
2447 | - $this->privConvertHeader2FileInfo($v_header_list[$i], $p_result_list[$i]); |
|
2446 | + // ----- Transform the header to a 'usable' info |
|
2447 | + $this->privConvertHeader2FileInfo($v_header_list[$i], $p_result_list[$i]); |
|
2448 | 2448 | } |
2449 | 2449 | |
2450 | 2450 | // ----- Zip file comment |
2451 | 2451 | $v_comment = ''; |
2452 | 2452 | if (isset($p_options[PCLZIP_OPT_COMMENT])) { |
2453 | - $v_comment = $p_options[PCLZIP_OPT_COMMENT]; |
|
2453 | + $v_comment = $p_options[PCLZIP_OPT_COMMENT]; |
|
2454 | 2454 | } |
2455 | 2455 | |
2456 | 2456 | // ----- Calculate the size of the central header |
@@ -2459,29 +2459,29 @@ discard block |
||
2459 | 2459 | // ----- Create the central dir footer |
2460 | 2460 | if (($v_result = $this->privWriteCentralHeader($v_count, $v_size, $v_offset, $v_comment)) != 1) |
2461 | 2461 | { |
2462 | - // ----- Reset the file list |
|
2463 | - unset($v_header_list); |
|
2462 | + // ----- Reset the file list |
|
2463 | + unset($v_header_list); |
|
2464 | 2464 | |
2465 | - // ----- Return |
|
2466 | - return $v_result; |
|
2465 | + // ----- Return |
|
2466 | + return $v_result; |
|
2467 | 2467 | } |
2468 | 2468 | |
2469 | 2469 | // ----- Return |
2470 | 2470 | return $v_result; |
2471 | - } |
|
2472 | - // -------------------------------------------------------------------------------- |
|
2473 | - |
|
2474 | - // -------------------------------------------------------------------------------- |
|
2475 | - // Function : privAddFileList() |
|
2476 | - // Description : |
|
2477 | - // Parameters : |
|
2478 | - // $p_filedescr_list : An array containing the file description |
|
2479 | - // or directory names to add in the zip |
|
2480 | - // $p_result_list : list of added files with their properties (specially the status field) |
|
2481 | - // Return Values : |
|
2482 | - // -------------------------------------------------------------------------------- |
|
2483 | - function privAddFileList($p_filedescr_list, &$p_result_list, &$p_options) |
|
2484 | - { |
|
2471 | + } |
|
2472 | + // -------------------------------------------------------------------------------- |
|
2473 | + |
|
2474 | + // -------------------------------------------------------------------------------- |
|
2475 | + // Function : privAddFileList() |
|
2476 | + // Description : |
|
2477 | + // Parameters : |
|
2478 | + // $p_filedescr_list : An array containing the file description |
|
2479 | + // or directory names to add in the zip |
|
2480 | + // $p_result_list : list of added files with their properties (specially the status field) |
|
2481 | + // Return Values : |
|
2482 | + // -------------------------------------------------------------------------------- |
|
2483 | + function privAddFileList($p_filedescr_list, &$p_result_list, &$p_options) |
|
2484 | + { |
|
2485 | 2485 | $v_result=1; |
2486 | 2486 | $v_header = array(); |
2487 | 2487 | |
@@ -2490,60 +2490,60 @@ discard block |
||
2490 | 2490 | |
2491 | 2491 | // ----- Loop on the files |
2492 | 2492 | for ($j=0; ($j<sizeof($p_filedescr_list)) && ($v_result==1); $j++) { |
2493 | - // ----- Format the filename |
|
2494 | - $p_filedescr_list[$j]['filename'] |
|
2495 | - = PclZipUtilTranslateWinPath($p_filedescr_list[$j]['filename'], false); |
|
2493 | + // ----- Format the filename |
|
2494 | + $p_filedescr_list[$j]['filename'] |
|
2495 | + = PclZipUtilTranslateWinPath($p_filedescr_list[$j]['filename'], false); |
|
2496 | 2496 | |
2497 | 2497 | |
2498 | - // ----- Skip empty file names |
|
2499 | - // TBC : Can this be possible ? not checked in DescrParseAtt ? |
|
2500 | - if ($p_filedescr_list[$j]['filename'] == "") { |
|
2498 | + // ----- Skip empty file names |
|
2499 | + // TBC : Can this be possible ? not checked in DescrParseAtt ? |
|
2500 | + if ($p_filedescr_list[$j]['filename'] == "") { |
|
2501 | 2501 | continue; |
2502 | - } |
|
2502 | + } |
|
2503 | 2503 | |
2504 | - // ----- Check the filename |
|
2505 | - if ( ($p_filedescr_list[$j]['type'] != 'virtual_file') |
|
2504 | + // ----- Check the filename |
|
2505 | + if ( ($p_filedescr_list[$j]['type'] != 'virtual_file') |
|
2506 | 2506 | && (!file_exists($p_filedescr_list[$j]['filename']))) { |
2507 | 2507 | PclZip::privErrorLog(PCLZIP_ERR_MISSING_FILE, "File '".$p_filedescr_list[$j]['filename']."' does not exist"); |
2508 | 2508 | return PclZip::errorCode(); |
2509 | - } |
|
2509 | + } |
|
2510 | 2510 | |
2511 | - // ----- Look if it is a file or a dir with no all path remove option |
|
2512 | - // or a dir with all its path removed |
|
2511 | + // ----- Look if it is a file or a dir with no all path remove option |
|
2512 | + // or a dir with all its path removed |
|
2513 | 2513 | // if ( (is_file($p_filedescr_list[$j]['filename'])) |
2514 | 2514 | // || ( is_dir($p_filedescr_list[$j]['filename']) |
2515 | - if ( ($p_filedescr_list[$j]['type'] == 'file') |
|
2515 | + if ( ($p_filedescr_list[$j]['type'] == 'file') |
|
2516 | 2516 | || ($p_filedescr_list[$j]['type'] == 'virtual_file') |
2517 | 2517 | || ( ($p_filedescr_list[$j]['type'] == 'folder') |
2518 | 2518 | && ( !isset($p_options[PCLZIP_OPT_REMOVE_ALL_PATH]) |
2519 | 2519 | || !$p_options[PCLZIP_OPT_REMOVE_ALL_PATH])) |
2520 | - ) { |
|
2520 | + ) { |
|
2521 | 2521 | |
2522 | 2522 | // ----- Add the file |
2523 | 2523 | $v_result = $this->privAddFile($p_filedescr_list[$j], $v_header, |
2524 | - $p_options); |
|
2524 | + $p_options); |
|
2525 | 2525 | if ($v_result != 1) { |
2526 | - return $v_result; |
|
2526 | + return $v_result; |
|
2527 | 2527 | } |
2528 | 2528 | |
2529 | 2529 | // ----- Store the file infos |
2530 | 2530 | $p_result_list[$v_nb++] = $v_header; |
2531 | - } |
|
2531 | + } |
|
2532 | 2532 | } |
2533 | 2533 | |
2534 | 2534 | // ----- Return |
2535 | 2535 | return $v_result; |
2536 | - } |
|
2537 | - // -------------------------------------------------------------------------------- |
|
2538 | - |
|
2539 | - // -------------------------------------------------------------------------------- |
|
2540 | - // Function : privAddFile() |
|
2541 | - // Description : |
|
2542 | - // Parameters : |
|
2543 | - // Return Values : |
|
2544 | - // -------------------------------------------------------------------------------- |
|
2545 | - function privAddFile($p_filedescr, &$p_header, &$p_options) |
|
2546 | - { |
|
2536 | + } |
|
2537 | + // -------------------------------------------------------------------------------- |
|
2538 | + |
|
2539 | + // -------------------------------------------------------------------------------- |
|
2540 | + // Function : privAddFile() |
|
2541 | + // Description : |
|
2542 | + // Parameters : |
|
2543 | + // Return Values : |
|
2544 | + // -------------------------------------------------------------------------------- |
|
2545 | + function privAddFile($p_filedescr, &$p_header, &$p_options) |
|
2546 | + { |
|
2547 | 2547 | $v_result=1; |
2548 | 2548 | |
2549 | 2549 | // ----- Working variable |
@@ -2551,11 +2551,11 @@ discard block |
||
2551 | 2551 | |
2552 | 2552 | // TBC : Already done in the fileAtt check ... ? |
2553 | 2553 | if ($p_filename == "") { |
2554 | - // ----- Error log |
|
2555 | - PclZip::privErrorLog(PCLZIP_ERR_INVALID_PARAMETER, "Invalid file list parameter (invalid or empty list)"); |
|
2554 | + // ----- Error log |
|
2555 | + PclZip::privErrorLog(PCLZIP_ERR_INVALID_PARAMETER, "Invalid file list parameter (invalid or empty list)"); |
|
2556 | 2556 | |
2557 | - // ----- Return |
|
2558 | - return PclZip::errorCode(); |
|
2557 | + // ----- Return |
|
2558 | + return PclZip::errorCode(); |
|
2559 | 2559 | } |
2560 | 2560 | |
2561 | 2561 | // ----- Look for a stored different filename |
@@ -2590,94 +2590,94 @@ discard block |
||
2590 | 2590 | |
2591 | 2591 | // ----- Look for regular file |
2592 | 2592 | if ($p_filedescr['type']=='file') { |
2593 | - $p_header['external'] = 0x00000000; |
|
2594 | - $p_header['size'] = filesize($p_filename); |
|
2593 | + $p_header['external'] = 0x00000000; |
|
2594 | + $p_header['size'] = filesize($p_filename); |
|
2595 | 2595 | } |
2596 | 2596 | |
2597 | 2597 | // ----- Look for regular folder |
2598 | 2598 | else if ($p_filedescr['type']=='folder') { |
2599 | - $p_header['external'] = 0x00000010; |
|
2600 | - $p_header['mtime'] = filemtime($p_filename); |
|
2601 | - $p_header['size'] = filesize($p_filename); |
|
2599 | + $p_header['external'] = 0x00000010; |
|
2600 | + $p_header['mtime'] = filemtime($p_filename); |
|
2601 | + $p_header['size'] = filesize($p_filename); |
|
2602 | 2602 | } |
2603 | 2603 | |
2604 | 2604 | // ----- Look for virtual file |
2605 | 2605 | else if ($p_filedescr['type'] == 'virtual_file') { |
2606 | - $p_header['external'] = 0x00000000; |
|
2607 | - $p_header['size'] = strlen($p_filedescr['content']); |
|
2606 | + $p_header['external'] = 0x00000000; |
|
2607 | + $p_header['size'] = strlen($p_filedescr['content']); |
|
2608 | 2608 | } |
2609 | 2609 | |
2610 | 2610 | |
2611 | 2611 | // ----- Look for filetime |
2612 | 2612 | if (isset($p_filedescr['mtime'])) { |
2613 | - $p_header['mtime'] = $p_filedescr['mtime']; |
|
2613 | + $p_header['mtime'] = $p_filedescr['mtime']; |
|
2614 | 2614 | } |
2615 | 2615 | else if ($p_filedescr['type'] == 'virtual_file') { |
2616 | - $p_header['mtime'] = time(); |
|
2616 | + $p_header['mtime'] = time(); |
|
2617 | 2617 | } |
2618 | 2618 | else { |
2619 | - $p_header['mtime'] = filemtime($p_filename); |
|
2619 | + $p_header['mtime'] = filemtime($p_filename); |
|
2620 | 2620 | } |
2621 | 2621 | |
2622 | 2622 | // ------ Look for file comment |
2623 | 2623 | if (isset($p_filedescr['comment'])) { |
2624 | - $p_header['comment_len'] = strlen($p_filedescr['comment']); |
|
2625 | - $p_header['comment'] = $p_filedescr['comment']; |
|
2624 | + $p_header['comment_len'] = strlen($p_filedescr['comment']); |
|
2625 | + $p_header['comment'] = $p_filedescr['comment']; |
|
2626 | 2626 | } |
2627 | 2627 | else { |
2628 | - $p_header['comment_len'] = 0; |
|
2629 | - $p_header['comment'] = ''; |
|
2628 | + $p_header['comment_len'] = 0; |
|
2629 | + $p_header['comment'] = ''; |
|
2630 | 2630 | } |
2631 | 2631 | |
2632 | 2632 | // ----- Look for pre-add callback |
2633 | 2633 | if (isset($p_options[PCLZIP_CB_PRE_ADD])) { |
2634 | 2634 | |
2635 | - // ----- Generate a local information |
|
2636 | - $v_local_header = array(); |
|
2637 | - $this->privConvertHeader2FileInfo($p_header, $v_local_header); |
|
2635 | + // ----- Generate a local information |
|
2636 | + $v_local_header = array(); |
|
2637 | + $this->privConvertHeader2FileInfo($p_header, $v_local_header); |
|
2638 | 2638 | |
2639 | - // ----- Call the callback |
|
2640 | - // Here I do not use call_user_func() because I need to send a reference to the |
|
2641 | - // header. |
|
2639 | + // ----- Call the callback |
|
2640 | + // Here I do not use call_user_func() because I need to send a reference to the |
|
2641 | + // header. |
|
2642 | 2642 | // eval('$v_result = '.$p_options[PCLZIP_CB_PRE_ADD].'(PCLZIP_CB_PRE_ADD, $v_local_header);'); |
2643 | - $v_result = $p_options[PCLZIP_CB_PRE_ADD](PCLZIP_CB_PRE_ADD, $v_local_header); |
|
2644 | - if ($v_result == 0) { |
|
2643 | + $v_result = $p_options[PCLZIP_CB_PRE_ADD](PCLZIP_CB_PRE_ADD, $v_local_header); |
|
2644 | + if ($v_result == 0) { |
|
2645 | 2645 | // ----- Change the file status |
2646 | 2646 | $p_header['status'] = "skipped"; |
2647 | 2647 | $v_result = 1; |
2648 | - } |
|
2648 | + } |
|
2649 | 2649 | |
2650 | - // ----- Update the informations |
|
2651 | - // Only some fields can be modified |
|
2652 | - if ($p_header['stored_filename'] != $v_local_header['stored_filename']) { |
|
2650 | + // ----- Update the informations |
|
2651 | + // Only some fields can be modified |
|
2652 | + if ($p_header['stored_filename'] != $v_local_header['stored_filename']) { |
|
2653 | 2653 | $p_header['stored_filename'] = PclZipUtilPathReduction($v_local_header['stored_filename']); |
2654 | - } |
|
2654 | + } |
|
2655 | 2655 | } |
2656 | 2656 | |
2657 | 2657 | // ----- Look for empty stored filename |
2658 | 2658 | if ($p_header['stored_filename'] == "") { |
2659 | - $p_header['status'] = "filtered"; |
|
2659 | + $p_header['status'] = "filtered"; |
|
2660 | 2660 | } |
2661 | 2661 | |
2662 | 2662 | // ----- Check the path length |
2663 | 2663 | if (strlen($p_header['stored_filename']) > 0xFF) { |
2664 | - $p_header['status'] = 'filename_too_long'; |
|
2664 | + $p_header['status'] = 'filename_too_long'; |
|
2665 | 2665 | } |
2666 | 2666 | |
2667 | 2667 | // ----- Look if no error, or file not skipped |
2668 | 2668 | if ($p_header['status'] == 'ok') { |
2669 | 2669 | |
2670 | - // ----- Look for a file |
|
2671 | - if ($p_filedescr['type'] == 'file') { |
|
2670 | + // ----- Look for a file |
|
2671 | + if ($p_filedescr['type'] == 'file') { |
|
2672 | 2672 | // ----- Look for using temporary file to zip |
2673 | 2673 | if ( (!isset($p_options[PCLZIP_OPT_TEMP_FILE_OFF])) |
2674 | 2674 | && (isset($p_options[PCLZIP_OPT_TEMP_FILE_ON]) |
2675 | 2675 | || (isset($p_options[PCLZIP_OPT_TEMP_FILE_THRESHOLD]) |
2676 | 2676 | && ($p_options[PCLZIP_OPT_TEMP_FILE_THRESHOLD] <= $p_header['size'])) ) ) { |
2677 | - $v_result = $this->privAddFileUsingTempFile($p_filedescr, $p_header, $p_options); |
|
2678 | - if ($v_result < PCLZIP_ERR_NO_ERROR) { |
|
2677 | + $v_result = $this->privAddFileUsingTempFile($p_filedescr, $p_header, $p_options); |
|
2678 | + if ($v_result < PCLZIP_ERR_NO_ERROR) { |
|
2679 | 2679 | return $v_result; |
2680 | - } |
|
2680 | + } |
|
2681 | 2681 | } |
2682 | 2682 | |
2683 | 2683 | // ----- Use "in memory" zip algo |
@@ -2685,8 +2685,8 @@ discard block |
||
2685 | 2685 | |
2686 | 2686 | // ----- Open the source file |
2687 | 2687 | if (($v_file = @fopen($p_filename, "rb")) == 0) { |
2688 | - PclZip::privErrorLog(PCLZIP_ERR_READ_OPEN_FAIL, "Unable to open file '$p_filename' in binary read mode"); |
|
2689 | - return PclZip::errorCode(); |
|
2688 | + PclZip::privErrorLog(PCLZIP_ERR_READ_OPEN_FAIL, "Unable to open file '$p_filename' in binary read mode"); |
|
2689 | + return PclZip::errorCode(); |
|
2690 | 2690 | } |
2691 | 2691 | |
2692 | 2692 | // ----- Read the file content |
@@ -2700,25 +2700,25 @@ discard block |
||
2700 | 2700 | |
2701 | 2701 | // ----- Look for no compression |
2702 | 2702 | if ($p_options[PCLZIP_OPT_NO_COMPRESSION]) { |
2703 | - // ----- Set header parameters |
|
2704 | - $p_header['compressed_size'] = $p_header['size']; |
|
2705 | - $p_header['compression'] = 0; |
|
2703 | + // ----- Set header parameters |
|
2704 | + $p_header['compressed_size'] = $p_header['size']; |
|
2705 | + $p_header['compression'] = 0; |
|
2706 | 2706 | } |
2707 | 2707 | |
2708 | 2708 | // ----- Look for normal compression |
2709 | 2709 | else { |
2710 | - // ----- Compress the content |
|
2711 | - $v_content = @gzdeflate($v_content); |
|
2710 | + // ----- Compress the content |
|
2711 | + $v_content = @gzdeflate($v_content); |
|
2712 | 2712 | |
2713 | - // ----- Set header parameters |
|
2714 | - $p_header['compressed_size'] = strlen($v_content); |
|
2715 | - $p_header['compression'] = 8; |
|
2713 | + // ----- Set header parameters |
|
2714 | + $p_header['compressed_size'] = strlen($v_content); |
|
2715 | + $p_header['compression'] = 8; |
|
2716 | 2716 | } |
2717 | 2717 | |
2718 | 2718 | // ----- Call the header generation |
2719 | 2719 | if (($v_result = $this->privWriteFileHeader($p_header)) != 1) { |
2720 | - @fclose($v_file); |
|
2721 | - return $v_result; |
|
2720 | + @fclose($v_file); |
|
2721 | + return $v_result; |
|
2722 | 2722 | } |
2723 | 2723 | |
2724 | 2724 | // ----- Write the compressed (or not) content |
@@ -2726,10 +2726,10 @@ discard block |
||
2726 | 2726 | |
2727 | 2727 | } |
2728 | 2728 | |
2729 | - } |
|
2729 | + } |
|
2730 | 2730 | |
2731 | - // ----- Look for a virtual file (a file from string) |
|
2732 | - else if ($p_filedescr['type'] == 'virtual_file') { |
|
2731 | + // ----- Look for a virtual file (a file from string) |
|
2732 | + else if ($p_filedescr['type'] == 'virtual_file') { |
|
2733 | 2733 | |
2734 | 2734 | $v_content = $p_filedescr['content']; |
2735 | 2735 | |
@@ -2738,36 +2738,36 @@ discard block |
||
2738 | 2738 | |
2739 | 2739 | // ----- Look for no compression |
2740 | 2740 | if ($p_options[PCLZIP_OPT_NO_COMPRESSION]) { |
2741 | - // ----- Set header parameters |
|
2742 | - $p_header['compressed_size'] = $p_header['size']; |
|
2743 | - $p_header['compression'] = 0; |
|
2741 | + // ----- Set header parameters |
|
2742 | + $p_header['compressed_size'] = $p_header['size']; |
|
2743 | + $p_header['compression'] = 0; |
|
2744 | 2744 | } |
2745 | 2745 | |
2746 | 2746 | // ----- Look for normal compression |
2747 | 2747 | else { |
2748 | - // ----- Compress the content |
|
2749 | - $v_content = @gzdeflate($v_content); |
|
2748 | + // ----- Compress the content |
|
2749 | + $v_content = @gzdeflate($v_content); |
|
2750 | 2750 | |
2751 | - // ----- Set header parameters |
|
2752 | - $p_header['compressed_size'] = strlen($v_content); |
|
2753 | - $p_header['compression'] = 8; |
|
2751 | + // ----- Set header parameters |
|
2752 | + $p_header['compressed_size'] = strlen($v_content); |
|
2753 | + $p_header['compression'] = 8; |
|
2754 | 2754 | } |
2755 | 2755 | |
2756 | 2756 | // ----- Call the header generation |
2757 | 2757 | if (($v_result = $this->privWriteFileHeader($p_header)) != 1) { |
2758 | - @fclose($v_file); |
|
2759 | - return $v_result; |
|
2758 | + @fclose($v_file); |
|
2759 | + return $v_result; |
|
2760 | 2760 | } |
2761 | 2761 | |
2762 | 2762 | // ----- Write the compressed (or not) content |
2763 | 2763 | @fwrite($this->zip_fd, $v_content, $p_header['compressed_size']); |
2764 | - } |
|
2764 | + } |
|
2765 | 2765 | |
2766 | - // ----- Look for a directory |
|
2767 | - else if ($p_filedescr['type'] == 'folder') { |
|
2766 | + // ----- Look for a directory |
|
2767 | + else if ($p_filedescr['type'] == 'folder') { |
|
2768 | 2768 | // ----- Look for directory last '/' |
2769 | 2769 | if (@substr($p_header['stored_filename'], -1) != '/') { |
2770 | - $p_header['stored_filename'] .= '/'; |
|
2770 | + $p_header['stored_filename'] .= '/'; |
|
2771 | 2771 | } |
2772 | 2772 | |
2773 | 2773 | // ----- Set the file properties |
@@ -2778,45 +2778,45 @@ discard block |
||
2778 | 2778 | // ----- Call the header generation |
2779 | 2779 | if (($v_result = $this->privWriteFileHeader($p_header)) != 1) |
2780 | 2780 | { |
2781 | - return $v_result; |
|
2781 | + return $v_result; |
|
2782 | + } |
|
2782 | 2783 | } |
2783 | - } |
|
2784 | 2784 | } |
2785 | 2785 | |
2786 | 2786 | // ----- Look for post-add callback |
2787 | 2787 | if (isset($p_options[PCLZIP_CB_POST_ADD])) { |
2788 | 2788 | |
2789 | - // ----- Generate a local information |
|
2790 | - $v_local_header = array(); |
|
2791 | - $this->privConvertHeader2FileInfo($p_header, $v_local_header); |
|
2789 | + // ----- Generate a local information |
|
2790 | + $v_local_header = array(); |
|
2791 | + $this->privConvertHeader2FileInfo($p_header, $v_local_header); |
|
2792 | 2792 | |
2793 | - // ----- Call the callback |
|
2794 | - // Here I do not use call_user_func() because I need to send a reference to the |
|
2795 | - // header. |
|
2793 | + // ----- Call the callback |
|
2794 | + // Here I do not use call_user_func() because I need to send a reference to the |
|
2795 | + // header. |
|
2796 | 2796 | // eval('$v_result = '.$p_options[PCLZIP_CB_POST_ADD].'(PCLZIP_CB_POST_ADD, $v_local_header);'); |
2797 | - $v_result = $p_options[PCLZIP_CB_POST_ADD](PCLZIP_CB_POST_ADD, $v_local_header); |
|
2798 | - if ($v_result == 0) { |
|
2797 | + $v_result = $p_options[PCLZIP_CB_POST_ADD](PCLZIP_CB_POST_ADD, $v_local_header); |
|
2798 | + if ($v_result == 0) { |
|
2799 | 2799 | // ----- Ignored |
2800 | 2800 | $v_result = 1; |
2801 | - } |
|
2801 | + } |
|
2802 | 2802 | |
2803 | - // ----- Update the informations |
|
2804 | - // Nothing can be modified |
|
2803 | + // ----- Update the informations |
|
2804 | + // Nothing can be modified |
|
2805 | 2805 | } |
2806 | 2806 | |
2807 | 2807 | // ----- Return |
2808 | 2808 | return $v_result; |
2809 | - } |
|
2810 | - // -------------------------------------------------------------------------------- |
|
2811 | - |
|
2812 | - // -------------------------------------------------------------------------------- |
|
2813 | - // Function : privAddFileUsingTempFile() |
|
2814 | - // Description : |
|
2815 | - // Parameters : |
|
2816 | - // Return Values : |
|
2817 | - // -------------------------------------------------------------------------------- |
|
2818 | - function privAddFileUsingTempFile($p_filedescr, &$p_header, &$p_options) |
|
2819 | - { |
|
2809 | + } |
|
2810 | + // -------------------------------------------------------------------------------- |
|
2811 | + |
|
2812 | + // -------------------------------------------------------------------------------- |
|
2813 | + // Function : privAddFileUsingTempFile() |
|
2814 | + // Description : |
|
2815 | + // Parameters : |
|
2816 | + // Return Values : |
|
2817 | + // -------------------------------------------------------------------------------- |
|
2818 | + function privAddFileUsingTempFile($p_filedescr, &$p_header, &$p_options) |
|
2819 | + { |
|
2820 | 2820 | $v_result=PCLZIP_ERR_NO_ERROR; |
2821 | 2821 | |
2822 | 2822 | // ----- Working variable |
@@ -2825,26 +2825,26 @@ discard block |
||
2825 | 2825 | |
2826 | 2826 | // ----- Open the source file |
2827 | 2827 | if (($v_file = @fopen($p_filename, "rb")) == 0) { |
2828 | - PclZip::privErrorLog(PCLZIP_ERR_READ_OPEN_FAIL, "Unable to open file '$p_filename' in binary read mode"); |
|
2829 | - return PclZip::errorCode(); |
|
2828 | + PclZip::privErrorLog(PCLZIP_ERR_READ_OPEN_FAIL, "Unable to open file '$p_filename' in binary read mode"); |
|
2829 | + return PclZip::errorCode(); |
|
2830 | 2830 | } |
2831 | 2831 | |
2832 | 2832 | // ----- Creates a compressed temporary file |
2833 | 2833 | $v_gzip_temp_name = PCLZIP_TEMPORARY_DIR.uniqid('pclzip-').'.gz'; |
2834 | 2834 | if (($v_file_compressed = @gzopen($v_gzip_temp_name, "wb")) == 0) { |
2835 | - fclose($v_file); |
|
2836 | - PclZip::privErrorLog(PCLZIP_ERR_WRITE_OPEN_FAIL, 'Unable to open temporary file \''.$v_gzip_temp_name.'\' in binary write mode'); |
|
2837 | - return PclZip::errorCode(); |
|
2835 | + fclose($v_file); |
|
2836 | + PclZip::privErrorLog(PCLZIP_ERR_WRITE_OPEN_FAIL, 'Unable to open temporary file \''.$v_gzip_temp_name.'\' in binary write mode'); |
|
2837 | + return PclZip::errorCode(); |
|
2838 | 2838 | } |
2839 | 2839 | |
2840 | 2840 | // ----- Read the file by PCLZIP_READ_BLOCK_SIZE octets blocks |
2841 | 2841 | $v_size = filesize($p_filename); |
2842 | 2842 | while ($v_size != 0) { |
2843 | - $v_read_size = ($v_size < PCLZIP_READ_BLOCK_SIZE ? $v_size : PCLZIP_READ_BLOCK_SIZE); |
|
2844 | - $v_buffer = @fread($v_file, $v_read_size); |
|
2845 | - //$v_binary_data = pack('a'.$v_read_size, $v_buffer); |
|
2846 | - @gzputs($v_file_compressed, $v_buffer, $v_read_size); |
|
2847 | - $v_size -= $v_read_size; |
|
2843 | + $v_read_size = ($v_size < PCLZIP_READ_BLOCK_SIZE ? $v_size : PCLZIP_READ_BLOCK_SIZE); |
|
2844 | + $v_buffer = @fread($v_file, $v_read_size); |
|
2845 | + //$v_binary_data = pack('a'.$v_read_size, $v_buffer); |
|
2846 | + @gzputs($v_file_compressed, $v_buffer, $v_read_size); |
|
2847 | + $v_size -= $v_read_size; |
|
2848 | 2848 | } |
2849 | 2849 | |
2850 | 2850 | // ----- Close the file |
@@ -2853,14 +2853,14 @@ discard block |
||
2853 | 2853 | |
2854 | 2854 | // ----- Check the minimum file size |
2855 | 2855 | if (filesize($v_gzip_temp_name) < 18) { |
2856 | - PclZip::privErrorLog(PCLZIP_ERR_BAD_FORMAT, 'gzip temporary file \''.$v_gzip_temp_name.'\' has invalid filesize - should be minimum 18 bytes'); |
|
2857 | - return PclZip::errorCode(); |
|
2856 | + PclZip::privErrorLog(PCLZIP_ERR_BAD_FORMAT, 'gzip temporary file \''.$v_gzip_temp_name.'\' has invalid filesize - should be minimum 18 bytes'); |
|
2857 | + return PclZip::errorCode(); |
|
2858 | 2858 | } |
2859 | 2859 | |
2860 | 2860 | // ----- Extract the compressed attributes |
2861 | 2861 | if (($v_file_compressed = @fopen($v_gzip_temp_name, "rb")) == 0) { |
2862 | - PclZip::privErrorLog(PCLZIP_ERR_READ_OPEN_FAIL, 'Unable to open temporary file \''.$v_gzip_temp_name.'\' in binary read mode'); |
|
2863 | - return PclZip::errorCode(); |
|
2862 | + PclZip::privErrorLog(PCLZIP_ERR_READ_OPEN_FAIL, 'Unable to open temporary file \''.$v_gzip_temp_name.'\' in binary read mode'); |
|
2863 | + return PclZip::errorCode(); |
|
2864 | 2864 | } |
2865 | 2865 | |
2866 | 2866 | // ----- Read the gzip file header |
@@ -2886,14 +2886,14 @@ discard block |
||
2886 | 2886 | |
2887 | 2887 | // ----- Call the header generation |
2888 | 2888 | if (($v_result = $this->privWriteFileHeader($p_header)) != 1) { |
2889 | - return $v_result; |
|
2889 | + return $v_result; |
|
2890 | 2890 | } |
2891 | 2891 | |
2892 | 2892 | // ----- Add the compressed data |
2893 | 2893 | if (($v_file_compressed = @fopen($v_gzip_temp_name, "rb")) == 0) |
2894 | 2894 | { |
2895 | - PclZip::privErrorLog(PCLZIP_ERR_READ_OPEN_FAIL, 'Unable to open temporary file \''.$v_gzip_temp_name.'\' in binary read mode'); |
|
2896 | - return PclZip::errorCode(); |
|
2895 | + PclZip::privErrorLog(PCLZIP_ERR_READ_OPEN_FAIL, 'Unable to open temporary file \''.$v_gzip_temp_name.'\' in binary read mode'); |
|
2896 | + return PclZip::errorCode(); |
|
2897 | 2897 | } |
2898 | 2898 | |
2899 | 2899 | // ----- Read the file by PCLZIP_READ_BLOCK_SIZE octets blocks |
@@ -2901,11 +2901,11 @@ discard block |
||
2901 | 2901 | $v_size = $p_header['compressed_size']; |
2902 | 2902 | while ($v_size != 0) |
2903 | 2903 | { |
2904 | - $v_read_size = ($v_size < PCLZIP_READ_BLOCK_SIZE ? $v_size : PCLZIP_READ_BLOCK_SIZE); |
|
2905 | - $v_buffer = @fread($v_file_compressed, $v_read_size); |
|
2906 | - //$v_binary_data = pack('a'.$v_read_size, $v_buffer); |
|
2907 | - @fwrite($this->zip_fd, $v_buffer, $v_read_size); |
|
2908 | - $v_size -= $v_read_size; |
|
2904 | + $v_read_size = ($v_size < PCLZIP_READ_BLOCK_SIZE ? $v_size : PCLZIP_READ_BLOCK_SIZE); |
|
2905 | + $v_buffer = @fread($v_file_compressed, $v_read_size); |
|
2906 | + //$v_binary_data = pack('a'.$v_read_size, $v_buffer); |
|
2907 | + @fwrite($this->zip_fd, $v_buffer, $v_read_size); |
|
2908 | + $v_size -= $v_read_size; |
|
2909 | 2909 | } |
2910 | 2910 | |
2911 | 2911 | // ----- Close the file |
@@ -2916,112 +2916,112 @@ discard block |
||
2916 | 2916 | |
2917 | 2917 | // ----- Return |
2918 | 2918 | return $v_result; |
2919 | - } |
|
2920 | - // -------------------------------------------------------------------------------- |
|
2921 | - |
|
2922 | - // -------------------------------------------------------------------------------- |
|
2923 | - // Function : privCalculateStoredFilename() |
|
2924 | - // Description : |
|
2925 | - // Based on file descriptor properties and global options, this method |
|
2926 | - // calculate the filename that will be stored in the archive. |
|
2927 | - // Parameters : |
|
2928 | - // Return Values : |
|
2929 | - // -------------------------------------------------------------------------------- |
|
2930 | - function privCalculateStoredFilename(&$p_filedescr, &$p_options) |
|
2931 | - { |
|
2919 | + } |
|
2920 | + // -------------------------------------------------------------------------------- |
|
2921 | + |
|
2922 | + // -------------------------------------------------------------------------------- |
|
2923 | + // Function : privCalculateStoredFilename() |
|
2924 | + // Description : |
|
2925 | + // Based on file descriptor properties and global options, this method |
|
2926 | + // calculate the filename that will be stored in the archive. |
|
2927 | + // Parameters : |
|
2928 | + // Return Values : |
|
2929 | + // -------------------------------------------------------------------------------- |
|
2930 | + function privCalculateStoredFilename(&$p_filedescr, &$p_options) |
|
2931 | + { |
|
2932 | 2932 | $v_result=1; |
2933 | 2933 | |
2934 | 2934 | // ----- Working variables |
2935 | 2935 | $p_filename = $p_filedescr['filename']; |
2936 | 2936 | if (isset($p_options[PCLZIP_OPT_ADD_PATH])) { |
2937 | - $p_add_dir = $p_options[PCLZIP_OPT_ADD_PATH]; |
|
2937 | + $p_add_dir = $p_options[PCLZIP_OPT_ADD_PATH]; |
|
2938 | 2938 | } |
2939 | 2939 | else { |
2940 | - $p_add_dir = ''; |
|
2940 | + $p_add_dir = ''; |
|
2941 | 2941 | } |
2942 | 2942 | if (isset($p_options[PCLZIP_OPT_REMOVE_PATH])) { |
2943 | - $p_remove_dir = $p_options[PCLZIP_OPT_REMOVE_PATH]; |
|
2943 | + $p_remove_dir = $p_options[PCLZIP_OPT_REMOVE_PATH]; |
|
2944 | 2944 | } |
2945 | 2945 | else { |
2946 | - $p_remove_dir = ''; |
|
2946 | + $p_remove_dir = ''; |
|
2947 | 2947 | } |
2948 | 2948 | if (isset($p_options[PCLZIP_OPT_REMOVE_ALL_PATH])) { |
2949 | - $p_remove_all_dir = $p_options[PCLZIP_OPT_REMOVE_ALL_PATH]; |
|
2949 | + $p_remove_all_dir = $p_options[PCLZIP_OPT_REMOVE_ALL_PATH]; |
|
2950 | 2950 | } |
2951 | 2951 | else { |
2952 | - $p_remove_all_dir = 0; |
|
2952 | + $p_remove_all_dir = 0; |
|
2953 | 2953 | } |
2954 | 2954 | |
2955 | 2955 | |
2956 | 2956 | // ----- Look for full name change |
2957 | 2957 | if (isset($p_filedescr['new_full_name'])) { |
2958 | - // ----- Remove drive letter if any |
|
2959 | - $v_stored_filename = PclZipUtilTranslateWinPath($p_filedescr['new_full_name']); |
|
2958 | + // ----- Remove drive letter if any |
|
2959 | + $v_stored_filename = PclZipUtilTranslateWinPath($p_filedescr['new_full_name']); |
|
2960 | 2960 | } |
2961 | 2961 | |
2962 | 2962 | // ----- Look for path and/or short name change |
2963 | 2963 | else { |
2964 | 2964 | |
2965 | - // ----- Look for short name change |
|
2966 | - // Its when we cahnge just the filename but not the path |
|
2967 | - if (isset($p_filedescr['new_short_name'])) { |
|
2965 | + // ----- Look for short name change |
|
2966 | + // Its when we cahnge just the filename but not the path |
|
2967 | + if (isset($p_filedescr['new_short_name'])) { |
|
2968 | 2968 | $v_path_info = pathinfo($p_filename); |
2969 | 2969 | $v_dir = ''; |
2970 | 2970 | if ($v_path_info['dirname'] != '') { |
2971 | - $v_dir = $v_path_info['dirname'].'/'; |
|
2971 | + $v_dir = $v_path_info['dirname'].'/'; |
|
2972 | 2972 | } |
2973 | 2973 | $v_stored_filename = $v_dir.$p_filedescr['new_short_name']; |
2974 | - } |
|
2975 | - else { |
|
2974 | + } |
|
2975 | + else { |
|
2976 | 2976 | // ----- Calculate the stored filename |
2977 | 2977 | $v_stored_filename = $p_filename; |
2978 | - } |
|
2978 | + } |
|
2979 | 2979 | |
2980 | - // ----- Look for all path to remove |
|
2981 | - if ($p_remove_all_dir) { |
|
2980 | + // ----- Look for all path to remove |
|
2981 | + if ($p_remove_all_dir) { |
|
2982 | 2982 | $v_stored_filename = basename($p_filename); |
2983 | - } |
|
2984 | - // ----- Look for partial path remove |
|
2985 | - else if ($p_remove_dir != "") { |
|
2983 | + } |
|
2984 | + // ----- Look for partial path remove |
|
2985 | + else if ($p_remove_dir != "") { |
|
2986 | 2986 | if (substr($p_remove_dir, -1) != '/') |
2987 | - $p_remove_dir .= "/"; |
|
2987 | + $p_remove_dir .= "/"; |
|
2988 | 2988 | |
2989 | 2989 | if ( (substr($p_filename, 0, 2) == "./") |
2990 | 2990 | || (substr($p_remove_dir, 0, 2) == "./")) { |
2991 | 2991 | |
2992 | - if ( (substr($p_filename, 0, 2) == "./") |
|
2992 | + if ( (substr($p_filename, 0, 2) == "./") |
|
2993 | 2993 | && (substr($p_remove_dir, 0, 2) != "./")) { |
2994 | 2994 | $p_remove_dir = "./".$p_remove_dir; |
2995 | - } |
|
2996 | - if ( (substr($p_filename, 0, 2) != "./") |
|
2995 | + } |
|
2996 | + if ( (substr($p_filename, 0, 2) != "./") |
|
2997 | 2997 | && (substr($p_remove_dir, 0, 2) == "./")) { |
2998 | 2998 | $p_remove_dir = substr($p_remove_dir, 2); |
2999 | - } |
|
2999 | + } |
|
3000 | 3000 | } |
3001 | 3001 | |
3002 | 3002 | $v_compare = PclZipUtilPathInclusion($p_remove_dir, |
3003 | - $v_stored_filename); |
|
3003 | + $v_stored_filename); |
|
3004 | 3004 | if ($v_compare > 0) { |
3005 | - if ($v_compare == 2) { |
|
3005 | + if ($v_compare == 2) { |
|
3006 | 3006 | $v_stored_filename = ""; |
3007 | - } |
|
3008 | - else { |
|
3007 | + } |
|
3008 | + else { |
|
3009 | 3009 | $v_stored_filename = substr($v_stored_filename, |
3010 | 3010 | strlen($p_remove_dir)); |
3011 | - } |
|
3011 | + } |
|
3012 | + } |
|
3012 | 3013 | } |
3013 | - } |
|
3014 | 3014 | |
3015 | - // ----- Remove drive letter if any |
|
3016 | - $v_stored_filename = PclZipUtilTranslateWinPath($v_stored_filename); |
|
3015 | + // ----- Remove drive letter if any |
|
3016 | + $v_stored_filename = PclZipUtilTranslateWinPath($v_stored_filename); |
|
3017 | 3017 | |
3018 | - // ----- Look for path to add |
|
3019 | - if ($p_add_dir != "") { |
|
3018 | + // ----- Look for path to add |
|
3019 | + if ($p_add_dir != "") { |
|
3020 | 3020 | if (substr($p_add_dir, -1) == "/") |
3021 | - $v_stored_filename = $p_add_dir.$v_stored_filename; |
|
3021 | + $v_stored_filename = $p_add_dir.$v_stored_filename; |
|
3022 | 3022 | else |
3023 | - $v_stored_filename = $p_add_dir."/".$v_stored_filename; |
|
3024 | - } |
|
3023 | + $v_stored_filename = $p_add_dir."/".$v_stored_filename; |
|
3024 | + } |
|
3025 | 3025 | } |
3026 | 3026 | |
3027 | 3027 | // ----- Filename (reduce the path of stored name) |
@@ -3030,17 +3030,17 @@ discard block |
||
3030 | 3030 | |
3031 | 3031 | // ----- Return |
3032 | 3032 | return $v_result; |
3033 | - } |
|
3034 | - // -------------------------------------------------------------------------------- |
|
3035 | - |
|
3036 | - // -------------------------------------------------------------------------------- |
|
3037 | - // Function : privWriteFileHeader() |
|
3038 | - // Description : |
|
3039 | - // Parameters : |
|
3040 | - // Return Values : |
|
3041 | - // -------------------------------------------------------------------------------- |
|
3042 | - function privWriteFileHeader(&$p_header) |
|
3043 | - { |
|
3033 | + } |
|
3034 | + // -------------------------------------------------------------------------------- |
|
3035 | + |
|
3036 | + // -------------------------------------------------------------------------------- |
|
3037 | + // Function : privWriteFileHeader() |
|
3038 | + // Description : |
|
3039 | + // Parameters : |
|
3040 | + // Return Values : |
|
3041 | + // -------------------------------------------------------------------------------- |
|
3042 | + function privWriteFileHeader(&$p_header) |
|
3043 | + { |
|
3044 | 3044 | $v_result=1; |
3045 | 3045 | |
3046 | 3046 | // ----- Store the offset position of the file |
@@ -3053,12 +3053,12 @@ discard block |
||
3053 | 3053 | |
3054 | 3054 | // ----- Packed data |
3055 | 3055 | $v_binary_data = pack("VvvvvvVVVvv", 0x04034b50, |
3056 | - $p_header['version_extracted'], $p_header['flag'], |
|
3057 | - $p_header['compression'], $v_mtime, $v_mdate, |
|
3058 | - $p_header['crc'], $p_header['compressed_size'], |
|
3059 | - $p_header['size'], |
|
3060 | - strlen($p_header['stored_filename']), |
|
3061 | - $p_header['extra_len']); |
|
3056 | + $p_header['version_extracted'], $p_header['flag'], |
|
3057 | + $p_header['compression'], $v_mtime, $v_mdate, |
|
3058 | + $p_header['crc'], $p_header['compressed_size'], |
|
3059 | + $p_header['size'], |
|
3060 | + strlen($p_header['stored_filename']), |
|
3061 | + $p_header['extra_len']); |
|
3062 | 3062 | |
3063 | 3063 | // ----- Write the first 148 bytes of the header in the archive |
3064 | 3064 | fputs($this->zip_fd, $v_binary_data, 30); |
@@ -3066,26 +3066,26 @@ discard block |
||
3066 | 3066 | // ----- Write the variable fields |
3067 | 3067 | if (strlen($p_header['stored_filename']) != 0) |
3068 | 3068 | { |
3069 | - fputs($this->zip_fd, $p_header['stored_filename'], strlen($p_header['stored_filename'])); |
|
3069 | + fputs($this->zip_fd, $p_header['stored_filename'], strlen($p_header['stored_filename'])); |
|
3070 | 3070 | } |
3071 | 3071 | if ($p_header['extra_len'] != 0) |
3072 | 3072 | { |
3073 | - fputs($this->zip_fd, $p_header['extra'], $p_header['extra_len']); |
|
3073 | + fputs($this->zip_fd, $p_header['extra'], $p_header['extra_len']); |
|
3074 | 3074 | } |
3075 | 3075 | |
3076 | 3076 | // ----- Return |
3077 | 3077 | return $v_result; |
3078 | - } |
|
3079 | - // -------------------------------------------------------------------------------- |
|
3080 | - |
|
3081 | - // -------------------------------------------------------------------------------- |
|
3082 | - // Function : privWriteCentralFileHeader() |
|
3083 | - // Description : |
|
3084 | - // Parameters : |
|
3085 | - // Return Values : |
|
3086 | - // -------------------------------------------------------------------------------- |
|
3087 | - function privWriteCentralFileHeader(&$p_header) |
|
3088 | - { |
|
3078 | + } |
|
3079 | + // -------------------------------------------------------------------------------- |
|
3080 | + |
|
3081 | + // -------------------------------------------------------------------------------- |
|
3082 | + // Function : privWriteCentralFileHeader() |
|
3083 | + // Description : |
|
3084 | + // Parameters : |
|
3085 | + // Return Values : |
|
3086 | + // -------------------------------------------------------------------------------- |
|
3087 | + function privWriteCentralFileHeader(&$p_header) |
|
3088 | + { |
|
3089 | 3089 | $v_result=1; |
3090 | 3090 | |
3091 | 3091 | // TBC |
@@ -3100,14 +3100,14 @@ discard block |
||
3100 | 3100 | |
3101 | 3101 | // ----- Packed data |
3102 | 3102 | $v_binary_data = pack("VvvvvvvVVVvvvvvVV", 0x02014b50, |
3103 | - $p_header['version'], $p_header['version_extracted'], |
|
3104 | - $p_header['flag'], $p_header['compression'], |
|
3105 | - $v_mtime, $v_mdate, $p_header['crc'], |
|
3106 | - $p_header['compressed_size'], $p_header['size'], |
|
3107 | - strlen($p_header['stored_filename']), |
|
3108 | - $p_header['extra_len'], $p_header['comment_len'], |
|
3109 | - $p_header['disk'], $p_header['internal'], |
|
3110 | - $p_header['external'], $p_header['offset']); |
|
3103 | + $p_header['version'], $p_header['version_extracted'], |
|
3104 | + $p_header['flag'], $p_header['compression'], |
|
3105 | + $v_mtime, $v_mdate, $p_header['crc'], |
|
3106 | + $p_header['compressed_size'], $p_header['size'], |
|
3107 | + strlen($p_header['stored_filename']), |
|
3108 | + $p_header['extra_len'], $p_header['comment_len'], |
|
3109 | + $p_header['disk'], $p_header['internal'], |
|
3110 | + $p_header['external'], $p_header['offset']); |
|
3111 | 3111 | |
3112 | 3112 | // ----- Write the 42 bytes of the header in the zip file |
3113 | 3113 | fputs($this->zip_fd, $v_binary_data, 46); |
@@ -3115,36 +3115,36 @@ discard block |
||
3115 | 3115 | // ----- Write the variable fields |
3116 | 3116 | if (strlen($p_header['stored_filename']) != 0) |
3117 | 3117 | { |
3118 | - fputs($this->zip_fd, $p_header['stored_filename'], strlen($p_header['stored_filename'])); |
|
3118 | + fputs($this->zip_fd, $p_header['stored_filename'], strlen($p_header['stored_filename'])); |
|
3119 | 3119 | } |
3120 | 3120 | if ($p_header['extra_len'] != 0) |
3121 | 3121 | { |
3122 | - fputs($this->zip_fd, $p_header['extra'], $p_header['extra_len']); |
|
3122 | + fputs($this->zip_fd, $p_header['extra'], $p_header['extra_len']); |
|
3123 | 3123 | } |
3124 | 3124 | if ($p_header['comment_len'] != 0) |
3125 | 3125 | { |
3126 | - fputs($this->zip_fd, $p_header['comment'], $p_header['comment_len']); |
|
3126 | + fputs($this->zip_fd, $p_header['comment'], $p_header['comment_len']); |
|
3127 | 3127 | } |
3128 | 3128 | |
3129 | 3129 | // ----- Return |
3130 | 3130 | return $v_result; |
3131 | - } |
|
3132 | - // -------------------------------------------------------------------------------- |
|
3133 | - |
|
3134 | - // -------------------------------------------------------------------------------- |
|
3135 | - // Function : privWriteCentralHeader() |
|
3136 | - // Description : |
|
3137 | - // Parameters : |
|
3138 | - // Return Values : |
|
3139 | - // -------------------------------------------------------------------------------- |
|
3140 | - function privWriteCentralHeader($p_nb_entries, $p_size, $p_offset, $p_comment) |
|
3141 | - { |
|
3131 | + } |
|
3132 | + // -------------------------------------------------------------------------------- |
|
3133 | + |
|
3134 | + // -------------------------------------------------------------------------------- |
|
3135 | + // Function : privWriteCentralHeader() |
|
3136 | + // Description : |
|
3137 | + // Parameters : |
|
3138 | + // Return Values : |
|
3139 | + // -------------------------------------------------------------------------------- |
|
3140 | + function privWriteCentralHeader($p_nb_entries, $p_size, $p_offset, $p_comment) |
|
3141 | + { |
|
3142 | 3142 | $v_result=1; |
3143 | 3143 | |
3144 | 3144 | // ----- Packed data |
3145 | 3145 | $v_binary_data = pack("VvvvvVVv", 0x06054b50, 0, 0, $p_nb_entries, |
3146 | - $p_nb_entries, $p_size, |
|
3147 | - $p_offset, strlen($p_comment)); |
|
3146 | + $p_nb_entries, $p_size, |
|
3147 | + $p_offset, strlen($p_comment)); |
|
3148 | 3148 | |
3149 | 3149 | // ----- Write the 22 bytes of the header in the zip file |
3150 | 3150 | fputs($this->zip_fd, $v_binary_data, 22); |
@@ -3152,22 +3152,22 @@ discard block |
||
3152 | 3152 | // ----- Write the variable fields |
3153 | 3153 | if (strlen($p_comment) != 0) |
3154 | 3154 | { |
3155 | - fputs($this->zip_fd, $p_comment, strlen($p_comment)); |
|
3155 | + fputs($this->zip_fd, $p_comment, strlen($p_comment)); |
|
3156 | 3156 | } |
3157 | 3157 | |
3158 | 3158 | // ----- Return |
3159 | 3159 | return $v_result; |
3160 | - } |
|
3161 | - // -------------------------------------------------------------------------------- |
|
3162 | - |
|
3163 | - // -------------------------------------------------------------------------------- |
|
3164 | - // Function : privList() |
|
3165 | - // Description : |
|
3166 | - // Parameters : |
|
3167 | - // Return Values : |
|
3168 | - // -------------------------------------------------------------------------------- |
|
3169 | - function privList(&$p_list) |
|
3170 | - { |
|
3160 | + } |
|
3161 | + // -------------------------------------------------------------------------------- |
|
3162 | + |
|
3163 | + // -------------------------------------------------------------------------------- |
|
3164 | + // Function : privList() |
|
3165 | + // Description : |
|
3166 | + // Parameters : |
|
3167 | + // Return Values : |
|
3168 | + // -------------------------------------------------------------------------------- |
|
3169 | + function privList(&$p_list) |
|
3170 | + { |
|
3171 | 3171 | $v_result=1; |
3172 | 3172 | |
3173 | 3173 | // ----- Magic quotes trick |
@@ -3176,51 +3176,51 @@ discard block |
||
3176 | 3176 | // ----- Open the zip file |
3177 | 3177 | if (($this->zip_fd = @fopen($this->zipname, 'rb')) == 0) |
3178 | 3178 | { |
3179 | - // ----- Magic quotes trick |
|
3180 | - $this->privSwapBackMagicQuotes(); |
|
3179 | + // ----- Magic quotes trick |
|
3180 | + $this->privSwapBackMagicQuotes(); |
|
3181 | 3181 | |
3182 | - // ----- Error log |
|
3183 | - PclZip::privErrorLog(PCLZIP_ERR_READ_OPEN_FAIL, 'Unable to open archive \''.$this->zipname.'\' in binary read mode'); |
|
3182 | + // ----- Error log |
|
3183 | + PclZip::privErrorLog(PCLZIP_ERR_READ_OPEN_FAIL, 'Unable to open archive \''.$this->zipname.'\' in binary read mode'); |
|
3184 | 3184 | |
3185 | - // ----- Return |
|
3186 | - return PclZip::errorCode(); |
|
3185 | + // ----- Return |
|
3186 | + return PclZip::errorCode(); |
|
3187 | 3187 | } |
3188 | 3188 | |
3189 | 3189 | // ----- Read the central directory informations |
3190 | 3190 | $v_central_dir = array(); |
3191 | 3191 | if (($v_result = $this->privReadEndCentralDir($v_central_dir)) != 1) |
3192 | 3192 | { |
3193 | - $this->privSwapBackMagicQuotes(); |
|
3194 | - return $v_result; |
|
3193 | + $this->privSwapBackMagicQuotes(); |
|
3194 | + return $v_result; |
|
3195 | 3195 | } |
3196 | 3196 | |
3197 | 3197 | // ----- Go to beginning of Central Dir |
3198 | 3198 | @rewind($this->zip_fd); |
3199 | 3199 | if (@fseek($this->zip_fd, $v_central_dir['offset'])) |
3200 | 3200 | { |
3201 | - $this->privSwapBackMagicQuotes(); |
|
3201 | + $this->privSwapBackMagicQuotes(); |
|
3202 | 3202 | |
3203 | - // ----- Error log |
|
3204 | - PclZip::privErrorLog(PCLZIP_ERR_INVALID_ARCHIVE_ZIP, 'Invalid archive size'); |
|
3203 | + // ----- Error log |
|
3204 | + PclZip::privErrorLog(PCLZIP_ERR_INVALID_ARCHIVE_ZIP, 'Invalid archive size'); |
|
3205 | 3205 | |
3206 | - // ----- Return |
|
3207 | - return PclZip::errorCode(); |
|
3206 | + // ----- Return |
|
3207 | + return PclZip::errorCode(); |
|
3208 | 3208 | } |
3209 | 3209 | |
3210 | 3210 | // ----- Read each entry |
3211 | 3211 | for ($i=0; $i<$v_central_dir['entries']; $i++) |
3212 | 3212 | { |
3213 | - // ----- Read the file header |
|
3214 | - if (($v_result = $this->privReadCentralFileHeader($v_header)) != 1) |
|
3215 | - { |
|
3213 | + // ----- Read the file header |
|
3214 | + if (($v_result = $this->privReadCentralFileHeader($v_header)) != 1) |
|
3215 | + { |
|
3216 | 3216 | $this->privSwapBackMagicQuotes(); |
3217 | 3217 | return $v_result; |
3218 | - } |
|
3219 | - $v_header['index'] = $i; |
|
3218 | + } |
|
3219 | + $v_header['index'] = $i; |
|
3220 | 3220 | |
3221 | - // ----- Get the only interesting attributes |
|
3222 | - $this->privConvertHeader2FileInfo($v_header, $p_list[$i]); |
|
3223 | - unset($v_header); |
|
3221 | + // ----- Get the only interesting attributes |
|
3222 | + $this->privConvertHeader2FileInfo($v_header, $p_list[$i]); |
|
3223 | + unset($v_header); |
|
3224 | 3224 | } |
3225 | 3225 | |
3226 | 3226 | // ----- Close the zip file |
@@ -3231,30 +3231,30 @@ discard block |
||
3231 | 3231 | |
3232 | 3232 | // ----- Return |
3233 | 3233 | return $v_result; |
3234 | - } |
|
3235 | - // -------------------------------------------------------------------------------- |
|
3236 | - |
|
3237 | - // -------------------------------------------------------------------------------- |
|
3238 | - // Function : privConvertHeader2FileInfo() |
|
3239 | - // Description : |
|
3240 | - // This function takes the file informations from the central directory |
|
3241 | - // entries and extract the interesting parameters that will be given back. |
|
3242 | - // The resulting file infos are set in the array $p_info |
|
3243 | - // $p_info['filename'] : Filename with full path. Given by user (add), |
|
3244 | - // extracted in the filesystem (extract). |
|
3245 | - // $p_info['stored_filename'] : Stored filename in the archive. |
|
3246 | - // $p_info['size'] = Size of the file. |
|
3247 | - // $p_info['compressed_size'] = Compressed size of the file. |
|
3248 | - // $p_info['mtime'] = Last modification date of the file. |
|
3249 | - // $p_info['comment'] = Comment associated with the file. |
|
3250 | - // $p_info['folder'] = true/false : indicates if the entry is a folder or not. |
|
3251 | - // $p_info['status'] = status of the action on the file. |
|
3252 | - // $p_info['crc'] = CRC of the file content. |
|
3253 | - // Parameters : |
|
3254 | - // Return Values : |
|
3255 | - // -------------------------------------------------------------------------------- |
|
3256 | - function privConvertHeader2FileInfo($p_header, &$p_info) |
|
3257 | - { |
|
3234 | + } |
|
3235 | + // -------------------------------------------------------------------------------- |
|
3236 | + |
|
3237 | + // -------------------------------------------------------------------------------- |
|
3238 | + // Function : privConvertHeader2FileInfo() |
|
3239 | + // Description : |
|
3240 | + // This function takes the file informations from the central directory |
|
3241 | + // entries and extract the interesting parameters that will be given back. |
|
3242 | + // The resulting file infos are set in the array $p_info |
|
3243 | + // $p_info['filename'] : Filename with full path. Given by user (add), |
|
3244 | + // extracted in the filesystem (extract). |
|
3245 | + // $p_info['stored_filename'] : Stored filename in the archive. |
|
3246 | + // $p_info['size'] = Size of the file. |
|
3247 | + // $p_info['compressed_size'] = Compressed size of the file. |
|
3248 | + // $p_info['mtime'] = Last modification date of the file. |
|
3249 | + // $p_info['comment'] = Comment associated with the file. |
|
3250 | + // $p_info['folder'] = true/false : indicates if the entry is a folder or not. |
|
3251 | + // $p_info['status'] = status of the action on the file. |
|
3252 | + // $p_info['crc'] = CRC of the file content. |
|
3253 | + // Parameters : |
|
3254 | + // Return Values : |
|
3255 | + // -------------------------------------------------------------------------------- |
|
3256 | + function privConvertHeader2FileInfo($p_header, &$p_info) |
|
3257 | + { |
|
3258 | 3258 | $v_result=1; |
3259 | 3259 | |
3260 | 3260 | // ----- Get the interesting attributes |
@@ -3273,27 +3273,27 @@ discard block |
||
3273 | 3273 | |
3274 | 3274 | // ----- Return |
3275 | 3275 | return $v_result; |
3276 | - } |
|
3277 | - // -------------------------------------------------------------------------------- |
|
3278 | - |
|
3279 | - // -------------------------------------------------------------------------------- |
|
3280 | - // Function : privExtractByRule() |
|
3281 | - // Description : |
|
3282 | - // Extract a file or directory depending of rules (by index, by name, ...) |
|
3283 | - // Parameters : |
|
3284 | - // $p_file_list : An array where will be placed the properties of each |
|
3285 | - // extracted file |
|
3286 | - // $p_path : Path to add while writing the extracted files |
|
3287 | - // $p_remove_path : Path to remove (from the file memorized path) while writing the |
|
3288 | - // extracted files. If the path does not match the file path, |
|
3289 | - // the file is extracted with its memorized path. |
|
3290 | - // $p_remove_path does not apply to 'list' mode. |
|
3291 | - // $p_path and $p_remove_path are commulative. |
|
3292 | - // Return Values : |
|
3293 | - // 1 on success,0 or less on error (see error code list) |
|
3294 | - // -------------------------------------------------------------------------------- |
|
3295 | - function privExtractByRule(&$p_file_list, $p_path, $p_remove_path, $p_remove_all_path, &$p_options) |
|
3296 | - { |
|
3276 | + } |
|
3277 | + // -------------------------------------------------------------------------------- |
|
3278 | + |
|
3279 | + // -------------------------------------------------------------------------------- |
|
3280 | + // Function : privExtractByRule() |
|
3281 | + // Description : |
|
3282 | + // Extract a file or directory depending of rules (by index, by name, ...) |
|
3283 | + // Parameters : |
|
3284 | + // $p_file_list : An array where will be placed the properties of each |
|
3285 | + // extracted file |
|
3286 | + // $p_path : Path to add while writing the extracted files |
|
3287 | + // $p_remove_path : Path to remove (from the file memorized path) while writing the |
|
3288 | + // extracted files. If the path does not match the file path, |
|
3289 | + // the file is extracted with its memorized path. |
|
3290 | + // $p_remove_path does not apply to 'list' mode. |
|
3291 | + // $p_path and $p_remove_path are commulative. |
|
3292 | + // Return Values : |
|
3293 | + // 1 on success,0 or less on error (see error code list) |
|
3294 | + // -------------------------------------------------------------------------------- |
|
3295 | + function privExtractByRule(&$p_file_list, $p_path, $p_remove_path, $p_remove_all_path, &$p_options) |
|
3296 | + { |
|
3297 | 3297 | $v_result=1; |
3298 | 3298 | |
3299 | 3299 | // ----- Magic quotes trick |
@@ -3301,44 +3301,44 @@ discard block |
||
3301 | 3301 | |
3302 | 3302 | // ----- Check the path |
3303 | 3303 | if ( ($p_path == "") |
3304 | - || ( (substr($p_path, 0, 1) != "/") |
|
3305 | - && (substr($p_path, 0, 3) != "../") |
|
3306 | - && (substr($p_path,1,2)!=":/"))) |
|
3307 | - $p_path = "./".$p_path; |
|
3304 | + || ( (substr($p_path, 0, 1) != "/") |
|
3305 | + && (substr($p_path, 0, 3) != "../") |
|
3306 | + && (substr($p_path,1,2)!=":/"))) |
|
3307 | + $p_path = "./".$p_path; |
|
3308 | 3308 | |
3309 | 3309 | // ----- Reduce the path last (and duplicated) '/' |
3310 | 3310 | if (($p_path != "./") && ($p_path != "/")) |
3311 | 3311 | { |
3312 | - // ----- Look for the path end '/' |
|
3313 | - while (substr($p_path, -1) == "/") |
|
3314 | - { |
|
3312 | + // ----- Look for the path end '/' |
|
3313 | + while (substr($p_path, -1) == "/") |
|
3314 | + { |
|
3315 | 3315 | $p_path = substr($p_path, 0, strlen($p_path)-1); |
3316 | - } |
|
3316 | + } |
|
3317 | 3317 | } |
3318 | 3318 | |
3319 | 3319 | // ----- Look for path to remove format (should end by /) |
3320 | 3320 | if (($p_remove_path != "") && (substr($p_remove_path, -1) != '/')) |
3321 | 3321 | { |
3322 | - $p_remove_path .= '/'; |
|
3322 | + $p_remove_path .= '/'; |
|
3323 | 3323 | } |
3324 | 3324 | $p_remove_path_size = strlen($p_remove_path); |
3325 | 3325 | |
3326 | 3326 | // ----- Open the zip file |
3327 | 3327 | if (($v_result = $this->privOpenFd('rb')) != 1) |
3328 | 3328 | { |
3329 | - $this->privSwapBackMagicQuotes(); |
|
3330 | - return $v_result; |
|
3329 | + $this->privSwapBackMagicQuotes(); |
|
3330 | + return $v_result; |
|
3331 | 3331 | } |
3332 | 3332 | |
3333 | 3333 | // ----- Read the central directory informations |
3334 | 3334 | $v_central_dir = array(); |
3335 | 3335 | if (($v_result = $this->privReadEndCentralDir($v_central_dir)) != 1) |
3336 | 3336 | { |
3337 | - // ----- Close the zip file |
|
3338 | - $this->privCloseFd(); |
|
3339 | - $this->privSwapBackMagicQuotes(); |
|
3337 | + // ----- Close the zip file |
|
3338 | + $this->privCloseFd(); |
|
3339 | + $this->privSwapBackMagicQuotes(); |
|
3340 | 3340 | |
3341 | - return $v_result; |
|
3341 | + return $v_result; |
|
3342 | 3342 | } |
3343 | 3343 | |
3344 | 3344 | // ----- Start at beginning of Central Dir |
@@ -3349,10 +3349,10 @@ discard block |
||
3349 | 3349 | for ($i=0, $v_nb_extracted=0; $i<$v_central_dir['entries']; $i++) |
3350 | 3350 | { |
3351 | 3351 | |
3352 | - // ----- Read next Central dir entry |
|
3353 | - @rewind($this->zip_fd); |
|
3354 | - if (@fseek($this->zip_fd, $v_pos_entry)) |
|
3355 | - { |
|
3352 | + // ----- Read next Central dir entry |
|
3353 | + @rewind($this->zip_fd); |
|
3354 | + if (@fseek($this->zip_fd, $v_pos_entry)) |
|
3355 | + { |
|
3356 | 3356 | // ----- Close the zip file |
3357 | 3357 | $this->privCloseFd(); |
3358 | 3358 | $this->privSwapBackMagicQuotes(); |
@@ -3362,54 +3362,54 @@ discard block |
||
3362 | 3362 | |
3363 | 3363 | // ----- Return |
3364 | 3364 | return PclZip::errorCode(); |
3365 | - } |
|
3365 | + } |
|
3366 | 3366 | |
3367 | - // ----- Read the file header |
|
3368 | - $v_header = array(); |
|
3369 | - if (($v_result = $this->privReadCentralFileHeader($v_header)) != 1) |
|
3370 | - { |
|
3367 | + // ----- Read the file header |
|
3368 | + $v_header = array(); |
|
3369 | + if (($v_result = $this->privReadCentralFileHeader($v_header)) != 1) |
|
3370 | + { |
|
3371 | 3371 | // ----- Close the zip file |
3372 | 3372 | $this->privCloseFd(); |
3373 | 3373 | $this->privSwapBackMagicQuotes(); |
3374 | 3374 | |
3375 | 3375 | return $v_result; |
3376 | - } |
|
3376 | + } |
|
3377 | 3377 | |
3378 | - // ----- Store the index |
|
3379 | - $v_header['index'] = $i; |
|
3378 | + // ----- Store the index |
|
3379 | + $v_header['index'] = $i; |
|
3380 | 3380 | |
3381 | - // ----- Store the file position |
|
3382 | - $v_pos_entry = ftell($this->zip_fd); |
|
3381 | + // ----- Store the file position |
|
3382 | + $v_pos_entry = ftell($this->zip_fd); |
|
3383 | 3383 | |
3384 | - // ----- Look for the specific extract rules |
|
3385 | - $v_extract = false; |
|
3384 | + // ----- Look for the specific extract rules |
|
3385 | + $v_extract = false; |
|
3386 | 3386 | |
3387 | - // ----- Look for extract by name rule |
|
3388 | - if ( (isset($p_options[PCLZIP_OPT_BY_NAME])) |
|
3387 | + // ----- Look for extract by name rule |
|
3388 | + if ( (isset($p_options[PCLZIP_OPT_BY_NAME])) |
|
3389 | 3389 | && ($p_options[PCLZIP_OPT_BY_NAME] != 0)) { |
3390 | 3390 | |
3391 | - // ----- Look if the filename is in the list |
|
3392 | - for ($j=0; ($j<sizeof($p_options[PCLZIP_OPT_BY_NAME])) && (!$v_extract); $j++) { |
|
3391 | + // ----- Look if the filename is in the list |
|
3392 | + for ($j=0; ($j<sizeof($p_options[PCLZIP_OPT_BY_NAME])) && (!$v_extract); $j++) { |
|
3393 | 3393 | |
3394 | - // ----- Look for a directory |
|
3395 | - if (substr($p_options[PCLZIP_OPT_BY_NAME][$j], -1) == "/") { |
|
3394 | + // ----- Look for a directory |
|
3395 | + if (substr($p_options[PCLZIP_OPT_BY_NAME][$j], -1) == "/") { |
|
3396 | 3396 | |
3397 | - // ----- Look if the directory is in the filename path |
|
3398 | - if ( (strlen($v_header['stored_filename']) > strlen($p_options[PCLZIP_OPT_BY_NAME][$j])) |
|
3397 | + // ----- Look if the directory is in the filename path |
|
3398 | + if ( (strlen($v_header['stored_filename']) > strlen($p_options[PCLZIP_OPT_BY_NAME][$j])) |
|
3399 | 3399 | && (substr($v_header['stored_filename'], 0, strlen($p_options[PCLZIP_OPT_BY_NAME][$j])) == $p_options[PCLZIP_OPT_BY_NAME][$j])) { |
3400 | - $v_extract = true; |
|
3401 | - } |
|
3402 | - } |
|
3403 | - // ----- Look for a filename |
|
3404 | - elseif ($v_header['stored_filename'] == $p_options[PCLZIP_OPT_BY_NAME][$j]) { |
|
3405 | - $v_extract = true; |
|
3406 | - } |
|
3407 | - } |
|
3408 | - } |
|
3400 | + $v_extract = true; |
|
3401 | + } |
|
3402 | + } |
|
3403 | + // ----- Look for a filename |
|
3404 | + elseif ($v_header['stored_filename'] == $p_options[PCLZIP_OPT_BY_NAME][$j]) { |
|
3405 | + $v_extract = true; |
|
3406 | + } |
|
3407 | + } |
|
3408 | + } |
|
3409 | 3409 | |
3410 | - // ----- Look for extract by ereg rule |
|
3411 | - // ereg() is deprecated with PHP 5.3 |
|
3412 | - /* |
|
3410 | + // ----- Look for extract by ereg rule |
|
3411 | + // ereg() is deprecated with PHP 5.3 |
|
3412 | + /* |
|
3413 | 3413 | else if ( (isset($p_options[PCLZIP_OPT_BY_EREG])) |
3414 | 3414 | && ($p_options[PCLZIP_OPT_BY_EREG] != "")) { |
3415 | 3415 | |
@@ -3419,199 +3419,199 @@ discard block |
||
3419 | 3419 | } |
3420 | 3420 | */ |
3421 | 3421 | |
3422 | - // ----- Look for extract by preg rule |
|
3423 | - else if ( (isset($p_options[PCLZIP_OPT_BY_PREG])) |
|
3422 | + // ----- Look for extract by preg rule |
|
3423 | + else if ( (isset($p_options[PCLZIP_OPT_BY_PREG])) |
|
3424 | 3424 | && ($p_options[PCLZIP_OPT_BY_PREG] != "")) { |
3425 | 3425 | |
3426 | - if (preg_match($p_options[PCLZIP_OPT_BY_PREG], $v_header['stored_filename'])) { |
|
3427 | - $v_extract = true; |
|
3428 | - } |
|
3429 | - } |
|
3426 | + if (preg_match($p_options[PCLZIP_OPT_BY_PREG], $v_header['stored_filename'])) { |
|
3427 | + $v_extract = true; |
|
3428 | + } |
|
3429 | + } |
|
3430 | 3430 | |
3431 | - // ----- Look for extract by index rule |
|
3432 | - else if ( (isset($p_options[PCLZIP_OPT_BY_INDEX])) |
|
3431 | + // ----- Look for extract by index rule |
|
3432 | + else if ( (isset($p_options[PCLZIP_OPT_BY_INDEX])) |
|
3433 | 3433 | && ($p_options[PCLZIP_OPT_BY_INDEX] != 0)) { |
3434 | 3434 | |
3435 | - // ----- Look if the index is in the list |
|
3436 | - for ($j=$j_start; ($j<sizeof($p_options[PCLZIP_OPT_BY_INDEX])) && (!$v_extract); $j++) { |
|
3435 | + // ----- Look if the index is in the list |
|
3436 | + for ($j=$j_start; ($j<sizeof($p_options[PCLZIP_OPT_BY_INDEX])) && (!$v_extract); $j++) { |
|
3437 | 3437 | |
3438 | - if (($i>=$p_options[PCLZIP_OPT_BY_INDEX][$j]['start']) && ($i<=$p_options[PCLZIP_OPT_BY_INDEX][$j]['end'])) { |
|
3439 | - $v_extract = true; |
|
3440 | - } |
|
3441 | - if ($i>=$p_options[PCLZIP_OPT_BY_INDEX][$j]['end']) { |
|
3442 | - $j_start = $j+1; |
|
3443 | - } |
|
3438 | + if (($i>=$p_options[PCLZIP_OPT_BY_INDEX][$j]['start']) && ($i<=$p_options[PCLZIP_OPT_BY_INDEX][$j]['end'])) { |
|
3439 | + $v_extract = true; |
|
3440 | + } |
|
3441 | + if ($i>=$p_options[PCLZIP_OPT_BY_INDEX][$j]['end']) { |
|
3442 | + $j_start = $j+1; |
|
3443 | + } |
|
3444 | 3444 | |
3445 | - if ($p_options[PCLZIP_OPT_BY_INDEX][$j]['start']>$i) { |
|
3446 | - break; |
|
3447 | - } |
|
3448 | - } |
|
3449 | - } |
|
3445 | + if ($p_options[PCLZIP_OPT_BY_INDEX][$j]['start']>$i) { |
|
3446 | + break; |
|
3447 | + } |
|
3448 | + } |
|
3449 | + } |
|
3450 | 3450 | |
3451 | - // ----- Look for no rule, which means extract all the archive |
|
3452 | - else { |
|
3453 | - $v_extract = true; |
|
3454 | - } |
|
3451 | + // ----- Look for no rule, which means extract all the archive |
|
3452 | + else { |
|
3453 | + $v_extract = true; |
|
3454 | + } |
|
3455 | 3455 | |
3456 | - // ----- Check compression method |
|
3457 | - if ( ($v_extract) |
|
3458 | - && ( ($v_header['compression'] != 8) |
|
3459 | - && ($v_header['compression'] != 0))) { |
|
3460 | - $v_header['status'] = 'unsupported_compression'; |
|
3456 | + // ----- Check compression method |
|
3457 | + if ( ($v_extract) |
|
3458 | + && ( ($v_header['compression'] != 8) |
|
3459 | + && ($v_header['compression'] != 0))) { |
|
3460 | + $v_header['status'] = 'unsupported_compression'; |
|
3461 | 3461 | |
3462 | - // ----- Look for PCLZIP_OPT_STOP_ON_ERROR |
|
3463 | - if ( (isset($p_options[PCLZIP_OPT_STOP_ON_ERROR])) |
|
3464 | - && ($p_options[PCLZIP_OPT_STOP_ON_ERROR]===true)) { |
|
3462 | + // ----- Look for PCLZIP_OPT_STOP_ON_ERROR |
|
3463 | + if ( (isset($p_options[PCLZIP_OPT_STOP_ON_ERROR])) |
|
3464 | + && ($p_options[PCLZIP_OPT_STOP_ON_ERROR]===true)) { |
|
3465 | 3465 | |
3466 | - $this->privSwapBackMagicQuotes(); |
|
3466 | + $this->privSwapBackMagicQuotes(); |
|
3467 | 3467 | |
3468 | - PclZip::privErrorLog(PCLZIP_ERR_UNSUPPORTED_COMPRESSION, |
|
3469 | - "Filename '".$v_header['stored_filename']."' is " |
|
3470 | - ."compressed by an unsupported compression " |
|
3471 | - ."method (".$v_header['compression'].") "); |
|
3468 | + PclZip::privErrorLog(PCLZIP_ERR_UNSUPPORTED_COMPRESSION, |
|
3469 | + "Filename '".$v_header['stored_filename']."' is " |
|
3470 | + ."compressed by an unsupported compression " |
|
3471 | + ."method (".$v_header['compression'].") "); |
|
3472 | 3472 | |
3473 | - return PclZip::errorCode(); |
|
3474 | - } |
|
3475 | - } |
|
3473 | + return PclZip::errorCode(); |
|
3474 | + } |
|
3475 | + } |
|
3476 | 3476 | |
3477 | - // ----- Check encrypted files |
|
3478 | - if (($v_extract) && (($v_header['flag'] & 1) == 1)) { |
|
3479 | - $v_header['status'] = 'unsupported_encryption'; |
|
3477 | + // ----- Check encrypted files |
|
3478 | + if (($v_extract) && (($v_header['flag'] & 1) == 1)) { |
|
3479 | + $v_header['status'] = 'unsupported_encryption'; |
|
3480 | 3480 | |
3481 | - // ----- Look for PCLZIP_OPT_STOP_ON_ERROR |
|
3482 | - if ( (isset($p_options[PCLZIP_OPT_STOP_ON_ERROR])) |
|
3483 | - && ($p_options[PCLZIP_OPT_STOP_ON_ERROR]===true)) { |
|
3481 | + // ----- Look for PCLZIP_OPT_STOP_ON_ERROR |
|
3482 | + if ( (isset($p_options[PCLZIP_OPT_STOP_ON_ERROR])) |
|
3483 | + && ($p_options[PCLZIP_OPT_STOP_ON_ERROR]===true)) { |
|
3484 | 3484 | |
3485 | - $this->privSwapBackMagicQuotes(); |
|
3485 | + $this->privSwapBackMagicQuotes(); |
|
3486 | 3486 | |
3487 | - PclZip::privErrorLog(PCLZIP_ERR_UNSUPPORTED_ENCRYPTION, |
|
3488 | - "Unsupported encryption for " |
|
3489 | - ." filename '".$v_header['stored_filename'] |
|
3490 | - ."'"); |
|
3487 | + PclZip::privErrorLog(PCLZIP_ERR_UNSUPPORTED_ENCRYPTION, |
|
3488 | + "Unsupported encryption for " |
|
3489 | + ." filename '".$v_header['stored_filename'] |
|
3490 | + ."'"); |
|
3491 | 3491 | |
3492 | - return PclZip::errorCode(); |
|
3493 | - } |
|
3492 | + return PclZip::errorCode(); |
|
3493 | + } |
|
3494 | 3494 | } |
3495 | 3495 | |
3496 | - // ----- Look for real extraction |
|
3497 | - if (($v_extract) && ($v_header['status'] != 'ok')) { |
|
3498 | - $v_result = $this->privConvertHeader2FileInfo($v_header, |
|
3499 | - $p_file_list[$v_nb_extracted++]); |
|
3500 | - if ($v_result != 1) { |
|
3501 | - $this->privCloseFd(); |
|
3502 | - $this->privSwapBackMagicQuotes(); |
|
3503 | - return $v_result; |
|
3504 | - } |
|
3496 | + // ----- Look for real extraction |
|
3497 | + if (($v_extract) && ($v_header['status'] != 'ok')) { |
|
3498 | + $v_result = $this->privConvertHeader2FileInfo($v_header, |
|
3499 | + $p_file_list[$v_nb_extracted++]); |
|
3500 | + if ($v_result != 1) { |
|
3501 | + $this->privCloseFd(); |
|
3502 | + $this->privSwapBackMagicQuotes(); |
|
3503 | + return $v_result; |
|
3504 | + } |
|
3505 | 3505 | |
3506 | - $v_extract = false; |
|
3507 | - } |
|
3506 | + $v_extract = false; |
|
3507 | + } |
|
3508 | 3508 | |
3509 | - // ----- Look for real extraction |
|
3510 | - if ($v_extract) |
|
3511 | - { |
|
3509 | + // ----- Look for real extraction |
|
3510 | + if ($v_extract) |
|
3511 | + { |
|
3512 | 3512 | |
3513 | 3513 | // ----- Go to the file position |
3514 | 3514 | @rewind($this->zip_fd); |
3515 | 3515 | if (@fseek($this->zip_fd, $v_header['offset'])) |
3516 | 3516 | { |
3517 | - // ----- Close the zip file |
|
3518 | - $this->privCloseFd(); |
|
3517 | + // ----- Close the zip file |
|
3518 | + $this->privCloseFd(); |
|
3519 | 3519 | |
3520 | - $this->privSwapBackMagicQuotes(); |
|
3520 | + $this->privSwapBackMagicQuotes(); |
|
3521 | 3521 | |
3522 | - // ----- Error log |
|
3523 | - PclZip::privErrorLog(PCLZIP_ERR_INVALID_ARCHIVE_ZIP, 'Invalid archive size'); |
|
3522 | + // ----- Error log |
|
3523 | + PclZip::privErrorLog(PCLZIP_ERR_INVALID_ARCHIVE_ZIP, 'Invalid archive size'); |
|
3524 | 3524 | |
3525 | - // ----- Return |
|
3526 | - return PclZip::errorCode(); |
|
3525 | + // ----- Return |
|
3526 | + return PclZip::errorCode(); |
|
3527 | 3527 | } |
3528 | 3528 | |
3529 | 3529 | // ----- Look for extraction as string |
3530 | 3530 | if ($p_options[PCLZIP_OPT_EXTRACT_AS_STRING]) { |
3531 | 3531 | |
3532 | - $v_string = ''; |
|
3532 | + $v_string = ''; |
|
3533 | 3533 | |
3534 | - // ----- Extracting the file |
|
3535 | - $v_result1 = $this->privExtractFileAsString($v_header, $v_string, $p_options); |
|
3536 | - if ($v_result1 < 1) { |
|
3534 | + // ----- Extracting the file |
|
3535 | + $v_result1 = $this->privExtractFileAsString($v_header, $v_string, $p_options); |
|
3536 | + if ($v_result1 < 1) { |
|
3537 | 3537 | $this->privCloseFd(); |
3538 | 3538 | $this->privSwapBackMagicQuotes(); |
3539 | 3539 | return $v_result1; |
3540 | - } |
|
3540 | + } |
|
3541 | 3541 | |
3542 | - // ----- Get the only interesting attributes |
|
3543 | - if (($v_result = $this->privConvertHeader2FileInfo($v_header, $p_file_list[$v_nb_extracted])) != 1) |
|
3544 | - { |
|
3542 | + // ----- Get the only interesting attributes |
|
3543 | + if (($v_result = $this->privConvertHeader2FileInfo($v_header, $p_file_list[$v_nb_extracted])) != 1) |
|
3544 | + { |
|
3545 | 3545 | // ----- Close the zip file |
3546 | 3546 | $this->privCloseFd(); |
3547 | 3547 | $this->privSwapBackMagicQuotes(); |
3548 | 3548 | |
3549 | 3549 | return $v_result; |
3550 | - } |
|
3550 | + } |
|
3551 | 3551 | |
3552 | - // ----- Set the file content |
|
3553 | - $p_file_list[$v_nb_extracted]['content'] = $v_string; |
|
3552 | + // ----- Set the file content |
|
3553 | + $p_file_list[$v_nb_extracted]['content'] = $v_string; |
|
3554 | 3554 | |
3555 | - // ----- Next extracted file |
|
3556 | - $v_nb_extracted++; |
|
3555 | + // ----- Next extracted file |
|
3556 | + $v_nb_extracted++; |
|
3557 | 3557 | |
3558 | - // ----- Look for user callback abort |
|
3559 | - if ($v_result1 == 2) { |
|
3560 | - break; |
|
3561 | - } |
|
3558 | + // ----- Look for user callback abort |
|
3559 | + if ($v_result1 == 2) { |
|
3560 | + break; |
|
3561 | + } |
|
3562 | 3562 | } |
3563 | 3563 | // ----- Look for extraction in standard output |
3564 | 3564 | elseif ( (isset($p_options[PCLZIP_OPT_EXTRACT_IN_OUTPUT])) |
3565 | - && ($p_options[PCLZIP_OPT_EXTRACT_IN_OUTPUT])) { |
|
3566 | - // ----- Extracting the file in standard output |
|
3567 | - $v_result1 = $this->privExtractFileInOutput($v_header, $p_options); |
|
3568 | - if ($v_result1 < 1) { |
|
3565 | + && ($p_options[PCLZIP_OPT_EXTRACT_IN_OUTPUT])) { |
|
3566 | + // ----- Extracting the file in standard output |
|
3567 | + $v_result1 = $this->privExtractFileInOutput($v_header, $p_options); |
|
3568 | + if ($v_result1 < 1) { |
|
3569 | 3569 | $this->privCloseFd(); |
3570 | 3570 | $this->privSwapBackMagicQuotes(); |
3571 | 3571 | return $v_result1; |
3572 | - } |
|
3572 | + } |
|
3573 | 3573 | |
3574 | - // ----- Get the only interesting attributes |
|
3575 | - if (($v_result = $this->privConvertHeader2FileInfo($v_header, $p_file_list[$v_nb_extracted++])) != 1) { |
|
3574 | + // ----- Get the only interesting attributes |
|
3575 | + if (($v_result = $this->privConvertHeader2FileInfo($v_header, $p_file_list[$v_nb_extracted++])) != 1) { |
|
3576 | 3576 | $this->privCloseFd(); |
3577 | 3577 | $this->privSwapBackMagicQuotes(); |
3578 | 3578 | return $v_result; |
3579 | - } |
|
3579 | + } |
|
3580 | 3580 | |
3581 | - // ----- Look for user callback abort |
|
3582 | - if ($v_result1 == 2) { |
|
3583 | - break; |
|
3584 | - } |
|
3581 | + // ----- Look for user callback abort |
|
3582 | + if ($v_result1 == 2) { |
|
3583 | + break; |
|
3584 | + } |
|
3585 | 3585 | } |
3586 | 3586 | // ----- Look for normal extraction |
3587 | 3587 | else { |
3588 | - // ----- Extracting the file |
|
3589 | - $v_result1 = $this->privExtractFile($v_header, |
|
3590 | - $p_path, $p_remove_path, |
|
3591 | - $p_remove_all_path, |
|
3592 | - $p_options); |
|
3593 | - if ($v_result1 < 1) { |
|
3588 | + // ----- Extracting the file |
|
3589 | + $v_result1 = $this->privExtractFile($v_header, |
|
3590 | + $p_path, $p_remove_path, |
|
3591 | + $p_remove_all_path, |
|
3592 | + $p_options); |
|
3593 | + if ($v_result1 < 1) { |
|
3594 | 3594 | $this->privCloseFd(); |
3595 | 3595 | $this->privSwapBackMagicQuotes(); |
3596 | 3596 | return $v_result1; |
3597 | - } |
|
3597 | + } |
|
3598 | 3598 | |
3599 | - // ----- Get the only interesting attributes |
|
3600 | - if (($v_result = $this->privConvertHeader2FileInfo($v_header, $p_file_list[$v_nb_extracted++])) != 1) |
|
3601 | - { |
|
3599 | + // ----- Get the only interesting attributes |
|
3600 | + if (($v_result = $this->privConvertHeader2FileInfo($v_header, $p_file_list[$v_nb_extracted++])) != 1) |
|
3601 | + { |
|
3602 | 3602 | // ----- Close the zip file |
3603 | 3603 | $this->privCloseFd(); |
3604 | 3604 | $this->privSwapBackMagicQuotes(); |
3605 | 3605 | |
3606 | 3606 | return $v_result; |
3607 | - } |
|
3607 | + } |
|
3608 | 3608 | |
3609 | - // ----- Look for user callback abort |
|
3610 | - if ($v_result1 == 2) { |
|
3611 | - break; |
|
3612 | - } |
|
3609 | + // ----- Look for user callback abort |
|
3610 | + if ($v_result1 == 2) { |
|
3611 | + break; |
|
3612 | + } |
|
3613 | + } |
|
3613 | 3614 | } |
3614 | - } |
|
3615 | 3615 | } |
3616 | 3616 | |
3617 | 3617 | // ----- Close the zip file |
@@ -3620,27 +3620,27 @@ discard block |
||
3620 | 3620 | |
3621 | 3621 | // ----- Return |
3622 | 3622 | return $v_result; |
3623 | - } |
|
3624 | - // -------------------------------------------------------------------------------- |
|
3625 | - |
|
3626 | - // -------------------------------------------------------------------------------- |
|
3627 | - // Function : privExtractFile() |
|
3628 | - // Description : |
|
3629 | - // Parameters : |
|
3630 | - // Return Values : |
|
3631 | - // |
|
3632 | - // 1 : ... ? |
|
3633 | - // PCLZIP_ERR_USER_ABORTED(2) : User ask for extraction stop in callback |
|
3634 | - // -------------------------------------------------------------------------------- |
|
3635 | - function privExtractFile(&$p_entry, $p_path, $p_remove_path, $p_remove_all_path, &$p_options) |
|
3636 | - { |
|
3623 | + } |
|
3624 | + // -------------------------------------------------------------------------------- |
|
3625 | + |
|
3626 | + // -------------------------------------------------------------------------------- |
|
3627 | + // Function : privExtractFile() |
|
3628 | + // Description : |
|
3629 | + // Parameters : |
|
3630 | + // Return Values : |
|
3631 | + // |
|
3632 | + // 1 : ... ? |
|
3633 | + // PCLZIP_ERR_USER_ABORTED(2) : User ask for extraction stop in callback |
|
3634 | + // -------------------------------------------------------------------------------- |
|
3635 | + function privExtractFile(&$p_entry, $p_path, $p_remove_path, $p_remove_all_path, &$p_options) |
|
3636 | + { |
|
3637 | 3637 | $v_result=1; |
3638 | 3638 | |
3639 | 3639 | // ----- Read the file header |
3640 | 3640 | if (($v_result = $this->privReadFileHeader($v_header)) != 1) |
3641 | 3641 | { |
3642 | - // ----- Return |
|
3643 | - return $v_result; |
|
3642 | + // ----- Return |
|
3643 | + return $v_result; |
|
3644 | 3644 | } |
3645 | 3645 | |
3646 | 3646 | |
@@ -3666,74 +3666,74 @@ discard block |
||
3666 | 3666 | // ----- Look for path to remove |
3667 | 3667 | else if ($p_remove_path != "") |
3668 | 3668 | { |
3669 | - if (PclZipUtilPathInclusion($p_remove_path, $p_entry['filename']) == 2) |
|
3670 | - { |
|
3669 | + if (PclZipUtilPathInclusion($p_remove_path, $p_entry['filename']) == 2) |
|
3670 | + { |
|
3671 | 3671 | |
3672 | 3672 | // ----- Change the file status |
3673 | 3673 | $p_entry['status'] = "filtered"; |
3674 | 3674 | |
3675 | 3675 | // ----- Return |
3676 | 3676 | return $v_result; |
3677 | - } |
|
3677 | + } |
|
3678 | 3678 | |
3679 | - $p_remove_path_size = strlen($p_remove_path); |
|
3680 | - if (substr($p_entry['filename'], 0, $p_remove_path_size) == $p_remove_path) |
|
3681 | - { |
|
3679 | + $p_remove_path_size = strlen($p_remove_path); |
|
3680 | + if (substr($p_entry['filename'], 0, $p_remove_path_size) == $p_remove_path) |
|
3681 | + { |
|
3682 | 3682 | |
3683 | 3683 | // ----- Remove the path |
3684 | 3684 | $p_entry['filename'] = substr($p_entry['filename'], $p_remove_path_size); |
3685 | 3685 | |
3686 | - } |
|
3686 | + } |
|
3687 | 3687 | } |
3688 | 3688 | |
3689 | 3689 | // ----- Add the path |
3690 | 3690 | if ($p_path != '') { |
3691 | - $p_entry['filename'] = $p_path."/".$p_entry['filename']; |
|
3691 | + $p_entry['filename'] = $p_path."/".$p_entry['filename']; |
|
3692 | 3692 | } |
3693 | 3693 | |
3694 | 3694 | // ----- Check a base_dir_restriction |
3695 | 3695 | if (isset($p_options[PCLZIP_OPT_EXTRACT_DIR_RESTRICTION])) { |
3696 | - $v_inclusion |
|
3697 | - = PclZipUtilPathInclusion($p_options[PCLZIP_OPT_EXTRACT_DIR_RESTRICTION], |
|
3696 | + $v_inclusion |
|
3697 | + = PclZipUtilPathInclusion($p_options[PCLZIP_OPT_EXTRACT_DIR_RESTRICTION], |
|
3698 | 3698 | $p_entry['filename']); |
3699 | - if ($v_inclusion == 0) { |
|
3699 | + if ($v_inclusion == 0) { |
|
3700 | 3700 | |
3701 | 3701 | PclZip::privErrorLog(PCLZIP_ERR_DIRECTORY_RESTRICTION, |
3702 | - "Filename '".$p_entry['filename']."' is " |
|
3703 | - ."outside PCLZIP_OPT_EXTRACT_DIR_RESTRICTION"); |
|
3702 | + "Filename '".$p_entry['filename']."' is " |
|
3703 | + ."outside PCLZIP_OPT_EXTRACT_DIR_RESTRICTION"); |
|
3704 | 3704 | |
3705 | 3705 | return PclZip::errorCode(); |
3706 | - } |
|
3706 | + } |
|
3707 | 3707 | } |
3708 | 3708 | |
3709 | 3709 | // ----- Look for pre-extract callback |
3710 | 3710 | if (isset($p_options[PCLZIP_CB_PRE_EXTRACT])) { |
3711 | 3711 | |
3712 | - // ----- Generate a local information |
|
3713 | - $v_local_header = array(); |
|
3714 | - $this->privConvertHeader2FileInfo($p_entry, $v_local_header); |
|
3712 | + // ----- Generate a local information |
|
3713 | + $v_local_header = array(); |
|
3714 | + $this->privConvertHeader2FileInfo($p_entry, $v_local_header); |
|
3715 | 3715 | |
3716 | - // ----- Call the callback |
|
3717 | - // Here I do not use call_user_func() because I need to send a reference to the |
|
3718 | - // header. |
|
3716 | + // ----- Call the callback |
|
3717 | + // Here I do not use call_user_func() because I need to send a reference to the |
|
3718 | + // header. |
|
3719 | 3719 | // eval('$v_result = '.$p_options[PCLZIP_CB_PRE_EXTRACT].'(PCLZIP_CB_PRE_EXTRACT, $v_local_header);'); |
3720 | - $v_result = $p_options[PCLZIP_CB_PRE_EXTRACT](PCLZIP_CB_PRE_EXTRACT, $v_local_header); |
|
3721 | - if ($v_result == 0) { |
|
3720 | + $v_result = $p_options[PCLZIP_CB_PRE_EXTRACT](PCLZIP_CB_PRE_EXTRACT, $v_local_header); |
|
3721 | + if ($v_result == 0) { |
|
3722 | 3722 | // ----- Change the file status |
3723 | 3723 | $p_entry['status'] = "skipped"; |
3724 | 3724 | $v_result = 1; |
3725 | - } |
|
3725 | + } |
|
3726 | 3726 | |
3727 | - // ----- Look for abort result |
|
3728 | - if ($v_result == 2) { |
|
3727 | + // ----- Look for abort result |
|
3728 | + if ($v_result == 2) { |
|
3729 | 3729 | // ----- This status is internal and will be changed in 'skipped' |
3730 | 3730 | $p_entry['status'] = "aborted"; |
3731 | - $v_result = PCLZIP_ERR_USER_ABORTED; |
|
3732 | - } |
|
3731 | + $v_result = PCLZIP_ERR_USER_ABORTED; |
|
3732 | + } |
|
3733 | 3733 | |
3734 | - // ----- Update the informations |
|
3735 | - // Only some fields can be modified |
|
3736 | - $p_entry['filename'] = $v_local_header['filename']; |
|
3734 | + // ----- Update the informations |
|
3735 | + // Only some fields can be modified |
|
3736 | + $p_entry['filename'] = $v_local_header['filename']; |
|
3737 | 3737 | } |
3738 | 3738 | |
3739 | 3739 | |
@@ -3744,9 +3744,9 @@ discard block |
||
3744 | 3744 | if (file_exists($p_entry['filename'])) |
3745 | 3745 | { |
3746 | 3746 | |
3747 | - // ----- Look if file is a directory |
|
3748 | - if (is_dir($p_entry['filename'])) |
|
3749 | - { |
|
3747 | + // ----- Look if file is a directory |
|
3748 | + if (is_dir($p_entry['filename'])) |
|
3749 | + { |
|
3750 | 3750 | |
3751 | 3751 | // ----- Change the file status |
3752 | 3752 | $p_entry['status'] = "already_a_directory"; |
@@ -3755,18 +3755,18 @@ discard block |
||
3755 | 3755 | // For historical reason first PclZip implementation does not stop |
3756 | 3756 | // when this kind of error occurs. |
3757 | 3757 | if ( (isset($p_options[PCLZIP_OPT_STOP_ON_ERROR])) |
3758 | - && ($p_options[PCLZIP_OPT_STOP_ON_ERROR]===true)) { |
|
3758 | + && ($p_options[PCLZIP_OPT_STOP_ON_ERROR]===true)) { |
|
3759 | 3759 | |
3760 | 3760 | PclZip::privErrorLog(PCLZIP_ERR_ALREADY_A_DIRECTORY, |
3761 | - "Filename '".$p_entry['filename']."' is " |
|
3762 | - ."already used by an existing directory"); |
|
3761 | + "Filename '".$p_entry['filename']."' is " |
|
3762 | + ."already used by an existing directory"); |
|
3763 | 3763 | |
3764 | 3764 | return PclZip::errorCode(); |
3765 | - } |
|
3766 | - } |
|
3767 | - // ----- Look if file is write protected |
|
3768 | - else if (!is_writeable($p_entry['filename'])) |
|
3769 | - { |
|
3765 | + } |
|
3766 | + } |
|
3767 | + // ----- Look if file is write protected |
|
3768 | + else if (!is_writeable($p_entry['filename'])) |
|
3769 | + { |
|
3770 | 3770 | |
3771 | 3771 | // ----- Change the file status |
3772 | 3772 | $p_entry['status'] = "write_protected"; |
@@ -3775,90 +3775,90 @@ discard block |
||
3775 | 3775 | // For historical reason first PclZip implementation does not stop |
3776 | 3776 | // when this kind of error occurs. |
3777 | 3777 | if ( (isset($p_options[PCLZIP_OPT_STOP_ON_ERROR])) |
3778 | - && ($p_options[PCLZIP_OPT_STOP_ON_ERROR]===true)) { |
|
3778 | + && ($p_options[PCLZIP_OPT_STOP_ON_ERROR]===true)) { |
|
3779 | 3779 | |
3780 | 3780 | PclZip::privErrorLog(PCLZIP_ERR_WRITE_OPEN_FAIL, |
3781 | - "Filename '".$p_entry['filename']."' exists " |
|
3782 | - ."and is write protected"); |
|
3781 | + "Filename '".$p_entry['filename']."' exists " |
|
3782 | + ."and is write protected"); |
|
3783 | 3783 | |
3784 | 3784 | return PclZip::errorCode(); |
3785 | - } |
|
3786 | - } |
|
3785 | + } |
|
3786 | + } |
|
3787 | 3787 | |
3788 | - // ----- Look if the extracted file is older |
|
3789 | - else if (filemtime($p_entry['filename']) > $p_entry['mtime']) |
|
3790 | - { |
|
3788 | + // ----- Look if the extracted file is older |
|
3789 | + else if (filemtime($p_entry['filename']) > $p_entry['mtime']) |
|
3790 | + { |
|
3791 | 3791 | // ----- Change the file status |
3792 | 3792 | if ( (isset($p_options[PCLZIP_OPT_REPLACE_NEWER])) |
3793 | - && ($p_options[PCLZIP_OPT_REPLACE_NEWER]===true)) { |
|
3794 | - } |
|
3795 | - else { |
|
3793 | + && ($p_options[PCLZIP_OPT_REPLACE_NEWER]===true)) { |
|
3794 | + } |
|
3795 | + else { |
|
3796 | 3796 | $p_entry['status'] = "newer_exist"; |
3797 | 3797 | |
3798 | 3798 | // ----- Look for PCLZIP_OPT_STOP_ON_ERROR |
3799 | 3799 | // For historical reason first PclZip implementation does not stop |
3800 | 3800 | // when this kind of error occurs. |
3801 | 3801 | if ( (isset($p_options[PCLZIP_OPT_STOP_ON_ERROR])) |
3802 | - && ($p_options[PCLZIP_OPT_STOP_ON_ERROR]===true)) { |
|
3802 | + && ($p_options[PCLZIP_OPT_STOP_ON_ERROR]===true)) { |
|
3803 | 3803 | |
3804 | 3804 | PclZip::privErrorLog(PCLZIP_ERR_WRITE_OPEN_FAIL, |
3805 | - "Newer version of '".$p_entry['filename']."' exists " |
|
3806 | - ."and option PCLZIP_OPT_REPLACE_NEWER is not selected"); |
|
3805 | + "Newer version of '".$p_entry['filename']."' exists " |
|
3806 | + ."and option PCLZIP_OPT_REPLACE_NEWER is not selected"); |
|
3807 | 3807 | |
3808 | 3808 | return PclZip::errorCode(); |
3809 | - } |
|
3810 | - } |
|
3811 | - } |
|
3812 | - else { |
|
3813 | - } |
|
3809 | + } |
|
3810 | + } |
|
3811 | + } |
|
3812 | + else { |
|
3813 | + } |
|
3814 | 3814 | } |
3815 | 3815 | |
3816 | 3816 | // ----- Check the directory availability and create it if necessary |
3817 | 3817 | else { |
3818 | - if ((($p_entry['external']&0x00000010)==0x00000010) || (substr($p_entry['filename'], -1) == '/')) |
|
3818 | + if ((($p_entry['external']&0x00000010)==0x00000010) || (substr($p_entry['filename'], -1) == '/')) |
|
3819 | 3819 | $v_dir_to_check = $p_entry['filename']; |
3820 | - else if (!strstr($p_entry['filename'], "/")) |
|
3820 | + else if (!strstr($p_entry['filename'], "/")) |
|
3821 | 3821 | $v_dir_to_check = ""; |
3822 | - else |
|
3822 | + else |
|
3823 | 3823 | $v_dir_to_check = dirname($p_entry['filename']); |
3824 | 3824 | |
3825 | 3825 | if (($v_result = $this->privDirCheck($v_dir_to_check, (($p_entry['external']&0x00000010)==0x00000010))) != 1) { |
3826 | 3826 | |
3827 | - // ----- Change the file status |
|
3828 | - $p_entry['status'] = "path_creation_fail"; |
|
3827 | + // ----- Change the file status |
|
3828 | + $p_entry['status'] = "path_creation_fail"; |
|
3829 | 3829 | |
3830 | - // ----- Return |
|
3831 | - //return $v_result; |
|
3832 | - $v_result = 1; |
|
3830 | + // ----- Return |
|
3831 | + //return $v_result; |
|
3832 | + $v_result = 1; |
|
3833 | + } |
|
3833 | 3834 | } |
3834 | - } |
|
3835 | 3835 | } |
3836 | 3836 | |
3837 | 3837 | // ----- Look if extraction should be done |
3838 | 3838 | if ($p_entry['status'] == 'ok') { |
3839 | 3839 | |
3840 | - // ----- Do the extraction (if not a folder) |
|
3841 | - if (!(($p_entry['external']&0x00000010)==0x00000010)) |
|
3842 | - { |
|
3840 | + // ----- Do the extraction (if not a folder) |
|
3841 | + if (!(($p_entry['external']&0x00000010)==0x00000010)) |
|
3842 | + { |
|
3843 | 3843 | // ----- Look for not compressed file |
3844 | 3844 | if ($p_entry['compression'] == 0) { |
3845 | 3845 | |
3846 | - // ----- Opening destination file |
|
3847 | - if (($v_dest_file = @fopen($p_entry['filename'], 'wb')) == 0) |
|
3848 | - { |
|
3846 | + // ----- Opening destination file |
|
3847 | + if (($v_dest_file = @fopen($p_entry['filename'], 'wb')) == 0) |
|
3848 | + { |
|
3849 | 3849 | |
3850 | 3850 | // ----- Change the file status |
3851 | 3851 | $p_entry['status'] = "write_error"; |
3852 | 3852 | |
3853 | 3853 | // ----- Return |
3854 | 3854 | return $v_result; |
3855 | - } |
|
3855 | + } |
|
3856 | 3856 | |
3857 | 3857 | |
3858 | - // ----- Read the file by PCLZIP_READ_BLOCK_SIZE octets blocks |
|
3859 | - $v_size = $p_entry['compressed_size']; |
|
3860 | - while ($v_size != 0) |
|
3861 | - { |
|
3858 | + // ----- Read the file by PCLZIP_READ_BLOCK_SIZE octets blocks |
|
3859 | + $v_size = $p_entry['compressed_size']; |
|
3860 | + while ($v_size != 0) |
|
3861 | + { |
|
3862 | 3862 | $v_read_size = ($v_size < PCLZIP_READ_BLOCK_SIZE ? $v_size : PCLZIP_READ_BLOCK_SIZE); |
3863 | 3863 | $v_buffer = @fread($this->zip_fd, $v_read_size); |
3864 | 3864 | /* Try to speed up the code |
@@ -3867,38 +3867,38 @@ discard block |
||
3867 | 3867 | */ |
3868 | 3868 | @fwrite($v_dest_file, $v_buffer, $v_read_size); |
3869 | 3869 | $v_size -= $v_read_size; |
3870 | - } |
|
3870 | + } |
|
3871 | 3871 | |
3872 | - // ----- Closing the destination file |
|
3873 | - fclose($v_dest_file); |
|
3872 | + // ----- Closing the destination file |
|
3873 | + fclose($v_dest_file); |
|
3874 | 3874 | |
3875 | - // ----- Change the file mtime |
|
3876 | - touch($p_entry['filename'], $p_entry['mtime']); |
|
3875 | + // ----- Change the file mtime |
|
3876 | + touch($p_entry['filename'], $p_entry['mtime']); |
|
3877 | 3877 | |
3878 | 3878 | |
3879 | 3879 | } |
3880 | 3880 | else { |
3881 | - // ----- TBC |
|
3882 | - // Need to be finished |
|
3883 | - if (($p_entry['flag'] & 1) == 1) { |
|
3881 | + // ----- TBC |
|
3882 | + // Need to be finished |
|
3883 | + if (($p_entry['flag'] & 1) == 1) { |
|
3884 | 3884 | PclZip::privErrorLog(PCLZIP_ERR_UNSUPPORTED_ENCRYPTION, 'File \''.$p_entry['filename'].'\' is encrypted. Encrypted files are not supported.'); |
3885 | 3885 | return PclZip::errorCode(); |
3886 | - } |
|
3886 | + } |
|
3887 | 3887 | |
3888 | 3888 | |
3889 | - // ----- Look for using temporary file to unzip |
|
3890 | - if ( (!isset($p_options[PCLZIP_OPT_TEMP_FILE_OFF])) |
|
3889 | + // ----- Look for using temporary file to unzip |
|
3890 | + if ( (!isset($p_options[PCLZIP_OPT_TEMP_FILE_OFF])) |
|
3891 | 3891 | && (isset($p_options[PCLZIP_OPT_TEMP_FILE_ON]) |
3892 | 3892 | || (isset($p_options[PCLZIP_OPT_TEMP_FILE_THRESHOLD]) |
3893 | 3893 | && ($p_options[PCLZIP_OPT_TEMP_FILE_THRESHOLD] <= $p_entry['size'])) ) ) { |
3894 | 3894 | $v_result = $this->privExtractFileUsingTempFile($p_entry, $p_options); |
3895 | 3895 | if ($v_result < PCLZIP_ERR_NO_ERROR) { |
3896 | - return $v_result; |
|
3896 | + return $v_result; |
|
3897 | + } |
|
3897 | 3898 | } |
3898 | - } |
|
3899 | 3899 | |
3900 | - // ----- Look for extract in memory |
|
3901 | - else { |
|
3900 | + // ----- Look for extract in memory |
|
3901 | + else { |
|
3902 | 3902 | |
3903 | 3903 | |
3904 | 3904 | // ----- Read the compressed file in a buffer (one shot) |
@@ -3909,20 +3909,20 @@ discard block |
||
3909 | 3909 | unset($v_buffer); |
3910 | 3910 | if ($v_file_content === FALSE) { |
3911 | 3911 | |
3912 | - // ----- Change the file status |
|
3913 | - // TBC |
|
3914 | - $p_entry['status'] = "error"; |
|
3912 | + // ----- Change the file status |
|
3913 | + // TBC |
|
3914 | + $p_entry['status'] = "error"; |
|
3915 | 3915 | |
3916 | - return $v_result; |
|
3916 | + return $v_result; |
|
3917 | 3917 | } |
3918 | 3918 | |
3919 | 3919 | // ----- Opening destination file |
3920 | 3920 | if (($v_dest_file = @fopen($p_entry['filename'], 'wb')) == 0) { |
3921 | 3921 | |
3922 | - // ----- Change the file status |
|
3923 | - $p_entry['status'] = "write_error"; |
|
3922 | + // ----- Change the file status |
|
3923 | + $p_entry['status'] = "write_error"; |
|
3924 | 3924 | |
3925 | - return $v_result; |
|
3925 | + return $v_result; |
|
3926 | 3926 | } |
3927 | 3927 | |
3928 | 3928 | // ----- Write the uncompressed data |
@@ -3932,67 +3932,67 @@ discard block |
||
3932 | 3932 | // ----- Closing the destination file |
3933 | 3933 | @fclose($v_dest_file); |
3934 | 3934 | |
3935 | - } |
|
3935 | + } |
|
3936 | 3936 | |
3937 | - // ----- Change the file mtime |
|
3938 | - @touch($p_entry['filename'], $p_entry['mtime']); |
|
3937 | + // ----- Change the file mtime |
|
3938 | + @touch($p_entry['filename'], $p_entry['mtime']); |
|
3939 | 3939 | } |
3940 | 3940 | |
3941 | 3941 | // ----- Look for chmod option |
3942 | 3942 | if (isset($p_options[PCLZIP_OPT_SET_CHMOD])) { |
3943 | 3943 | |
3944 | - // ----- Change the mode of the file |
|
3945 | - @chmod($p_entry['filename'], $p_options[PCLZIP_OPT_SET_CHMOD]); |
|
3944 | + // ----- Change the mode of the file |
|
3945 | + @chmod($p_entry['filename'], $p_options[PCLZIP_OPT_SET_CHMOD]); |
|
3946 | 3946 | } |
3947 | 3947 | |
3948 | - } |
|
3948 | + } |
|
3949 | 3949 | } |
3950 | 3950 | |
3951 | - // ----- Change abort status |
|
3952 | - if ($p_entry['status'] == "aborted") { |
|
3951 | + // ----- Change abort status |
|
3952 | + if ($p_entry['status'] == "aborted") { |
|
3953 | 3953 | $p_entry['status'] = "skipped"; |
3954 | - } |
|
3954 | + } |
|
3955 | 3955 | |
3956 | 3956 | // ----- Look for post-extract callback |
3957 | 3957 | elseif (isset($p_options[PCLZIP_CB_POST_EXTRACT])) { |
3958 | 3958 | |
3959 | - // ----- Generate a local information |
|
3960 | - $v_local_header = array(); |
|
3961 | - $this->privConvertHeader2FileInfo($p_entry, $v_local_header); |
|
3959 | + // ----- Generate a local information |
|
3960 | + $v_local_header = array(); |
|
3961 | + $this->privConvertHeader2FileInfo($p_entry, $v_local_header); |
|
3962 | 3962 | |
3963 | - // ----- Call the callback |
|
3964 | - // Here I do not use call_user_func() because I need to send a reference to the |
|
3965 | - // header. |
|
3963 | + // ----- Call the callback |
|
3964 | + // Here I do not use call_user_func() because I need to send a reference to the |
|
3965 | + // header. |
|
3966 | 3966 | // eval('$v_result = '.$p_options[PCLZIP_CB_POST_EXTRACT].'(PCLZIP_CB_POST_EXTRACT, $v_local_header);'); |
3967 | - $v_result = $p_options[PCLZIP_CB_POST_EXTRACT](PCLZIP_CB_POST_EXTRACT, $v_local_header); |
|
3967 | + $v_result = $p_options[PCLZIP_CB_POST_EXTRACT](PCLZIP_CB_POST_EXTRACT, $v_local_header); |
|
3968 | 3968 | |
3969 | - // ----- Look for abort result |
|
3970 | - if ($v_result == 2) { |
|
3971 | - $v_result = PCLZIP_ERR_USER_ABORTED; |
|
3972 | - } |
|
3969 | + // ----- Look for abort result |
|
3970 | + if ($v_result == 2) { |
|
3971 | + $v_result = PCLZIP_ERR_USER_ABORTED; |
|
3972 | + } |
|
3973 | 3973 | } |
3974 | 3974 | |
3975 | 3975 | // ----- Return |
3976 | 3976 | return $v_result; |
3977 | - } |
|
3978 | - // -------------------------------------------------------------------------------- |
|
3979 | - |
|
3980 | - // -------------------------------------------------------------------------------- |
|
3981 | - // Function : privExtractFileUsingTempFile() |
|
3982 | - // Description : |
|
3983 | - // Parameters : |
|
3984 | - // Return Values : |
|
3985 | - // -------------------------------------------------------------------------------- |
|
3986 | - function privExtractFileUsingTempFile(&$p_entry, &$p_options) |
|
3987 | - { |
|
3977 | + } |
|
3978 | + // -------------------------------------------------------------------------------- |
|
3979 | + |
|
3980 | + // -------------------------------------------------------------------------------- |
|
3981 | + // Function : privExtractFileUsingTempFile() |
|
3982 | + // Description : |
|
3983 | + // Parameters : |
|
3984 | + // Return Values : |
|
3985 | + // -------------------------------------------------------------------------------- |
|
3986 | + function privExtractFileUsingTempFile(&$p_entry, &$p_options) |
|
3987 | + { |
|
3988 | 3988 | $v_result=1; |
3989 | 3989 | |
3990 | 3990 | // ----- Creates a temporary file |
3991 | 3991 | $v_gzip_temp_name = PCLZIP_TEMPORARY_DIR.uniqid('pclzip-').'.gz'; |
3992 | 3992 | if (($v_dest_file = @fopen($v_gzip_temp_name, "wb")) == 0) { |
3993 | - fclose($v_file); |
|
3994 | - PclZip::privErrorLog(PCLZIP_ERR_WRITE_OPEN_FAIL, 'Unable to open temporary file \''.$v_gzip_temp_name.'\' in binary write mode'); |
|
3995 | - return PclZip::errorCode(); |
|
3993 | + fclose($v_file); |
|
3994 | + PclZip::privErrorLog(PCLZIP_ERR_WRITE_OPEN_FAIL, 'Unable to open temporary file \''.$v_gzip_temp_name.'\' in binary write mode'); |
|
3995 | + return PclZip::errorCode(); |
|
3996 | 3996 | } |
3997 | 3997 | |
3998 | 3998 | |
@@ -4004,11 +4004,11 @@ discard block |
||
4004 | 4004 | $v_size = $p_entry['compressed_size']; |
4005 | 4005 | while ($v_size != 0) |
4006 | 4006 | { |
4007 | - $v_read_size = ($v_size < PCLZIP_READ_BLOCK_SIZE ? $v_size : PCLZIP_READ_BLOCK_SIZE); |
|
4008 | - $v_buffer = @fread($this->zip_fd, $v_read_size); |
|
4009 | - //$v_binary_data = pack('a'.$v_read_size, $v_buffer); |
|
4010 | - @fwrite($v_dest_file, $v_buffer, $v_read_size); |
|
4011 | - $v_size -= $v_read_size; |
|
4007 | + $v_read_size = ($v_size < PCLZIP_READ_BLOCK_SIZE ? $v_size : PCLZIP_READ_BLOCK_SIZE); |
|
4008 | + $v_buffer = @fread($this->zip_fd, $v_read_size); |
|
4009 | + //$v_binary_data = pack('a'.$v_read_size, $v_buffer); |
|
4010 | + @fwrite($v_dest_file, $v_buffer, $v_read_size); |
|
4011 | + $v_size -= $v_read_size; |
|
4012 | 4012 | } |
4013 | 4013 | |
4014 | 4014 | // ----- Write gz file format footer |
@@ -4020,27 +4020,27 @@ discard block |
||
4020 | 4020 | |
4021 | 4021 | // ----- Opening destination file |
4022 | 4022 | if (($v_dest_file = @fopen($p_entry['filename'], 'wb')) == 0) { |
4023 | - $p_entry['status'] = "write_error"; |
|
4024 | - return $v_result; |
|
4023 | + $p_entry['status'] = "write_error"; |
|
4024 | + return $v_result; |
|
4025 | 4025 | } |
4026 | 4026 | |
4027 | 4027 | // ----- Open the temporary gz file |
4028 | 4028 | if (($v_src_file = @gzopen($v_gzip_temp_name, 'rb')) == 0) { |
4029 | - @fclose($v_dest_file); |
|
4030 | - $p_entry['status'] = "read_error"; |
|
4031 | - PclZip::privErrorLog(PCLZIP_ERR_READ_OPEN_FAIL, 'Unable to open temporary file \''.$v_gzip_temp_name.'\' in binary read mode'); |
|
4032 | - return PclZip::errorCode(); |
|
4029 | + @fclose($v_dest_file); |
|
4030 | + $p_entry['status'] = "read_error"; |
|
4031 | + PclZip::privErrorLog(PCLZIP_ERR_READ_OPEN_FAIL, 'Unable to open temporary file \''.$v_gzip_temp_name.'\' in binary read mode'); |
|
4032 | + return PclZip::errorCode(); |
|
4033 | 4033 | } |
4034 | 4034 | |
4035 | 4035 | |
4036 | 4036 | // ----- Read the file by PCLZIP_READ_BLOCK_SIZE octets blocks |
4037 | 4037 | $v_size = $p_entry['size']; |
4038 | 4038 | while ($v_size != 0) { |
4039 | - $v_read_size = ($v_size < PCLZIP_READ_BLOCK_SIZE ? $v_size : PCLZIP_READ_BLOCK_SIZE); |
|
4040 | - $v_buffer = @gzread($v_src_file, $v_read_size); |
|
4041 | - //$v_binary_data = pack('a'.$v_read_size, $v_buffer); |
|
4042 | - @fwrite($v_dest_file, $v_buffer, $v_read_size); |
|
4043 | - $v_size -= $v_read_size; |
|
4039 | + $v_read_size = ($v_size < PCLZIP_READ_BLOCK_SIZE ? $v_size : PCLZIP_READ_BLOCK_SIZE); |
|
4040 | + $v_buffer = @gzread($v_src_file, $v_read_size); |
|
4041 | + //$v_binary_data = pack('a'.$v_read_size, $v_buffer); |
|
4042 | + @fwrite($v_dest_file, $v_buffer, $v_read_size); |
|
4043 | + $v_size -= $v_read_size; |
|
4044 | 4044 | } |
4045 | 4045 | @fclose($v_dest_file); |
4046 | 4046 | @gzclose($v_src_file); |
@@ -4050,22 +4050,22 @@ discard block |
||
4050 | 4050 | |
4051 | 4051 | // ----- Return |
4052 | 4052 | return $v_result; |
4053 | - } |
|
4054 | - // -------------------------------------------------------------------------------- |
|
4055 | - |
|
4056 | - // -------------------------------------------------------------------------------- |
|
4057 | - // Function : privExtractFileInOutput() |
|
4058 | - // Description : |
|
4059 | - // Parameters : |
|
4060 | - // Return Values : |
|
4061 | - // -------------------------------------------------------------------------------- |
|
4062 | - function privExtractFileInOutput(&$p_entry, &$p_options) |
|
4063 | - { |
|
4053 | + } |
|
4054 | + // -------------------------------------------------------------------------------- |
|
4055 | + |
|
4056 | + // -------------------------------------------------------------------------------- |
|
4057 | + // Function : privExtractFileInOutput() |
|
4058 | + // Description : |
|
4059 | + // Parameters : |
|
4060 | + // Return Values : |
|
4061 | + // -------------------------------------------------------------------------------- |
|
4062 | + function privExtractFileInOutput(&$p_entry, &$p_options) |
|
4063 | + { |
|
4064 | 4064 | $v_result=1; |
4065 | 4065 | |
4066 | 4066 | // ----- Read the file header |
4067 | 4067 | if (($v_result = $this->privReadFileHeader($v_header)) != 1) { |
4068 | - return $v_result; |
|
4068 | + return $v_result; |
|
4069 | 4069 | } |
4070 | 4070 | |
4071 | 4071 | |
@@ -4077,31 +4077,31 @@ discard block |
||
4077 | 4077 | // ----- Look for pre-extract callback |
4078 | 4078 | if (isset($p_options[PCLZIP_CB_PRE_EXTRACT])) { |
4079 | 4079 | |
4080 | - // ----- Generate a local information |
|
4081 | - $v_local_header = array(); |
|
4082 | - $this->privConvertHeader2FileInfo($p_entry, $v_local_header); |
|
4080 | + // ----- Generate a local information |
|
4081 | + $v_local_header = array(); |
|
4082 | + $this->privConvertHeader2FileInfo($p_entry, $v_local_header); |
|
4083 | 4083 | |
4084 | - // ----- Call the callback |
|
4085 | - // Here I do not use call_user_func() because I need to send a reference to the |
|
4086 | - // header. |
|
4084 | + // ----- Call the callback |
|
4085 | + // Here I do not use call_user_func() because I need to send a reference to the |
|
4086 | + // header. |
|
4087 | 4087 | // eval('$v_result = '.$p_options[PCLZIP_CB_PRE_EXTRACT].'(PCLZIP_CB_PRE_EXTRACT, $v_local_header);'); |
4088 | - $v_result = $p_options[PCLZIP_CB_PRE_EXTRACT](PCLZIP_CB_PRE_EXTRACT, $v_local_header); |
|
4089 | - if ($v_result == 0) { |
|
4088 | + $v_result = $p_options[PCLZIP_CB_PRE_EXTRACT](PCLZIP_CB_PRE_EXTRACT, $v_local_header); |
|
4089 | + if ($v_result == 0) { |
|
4090 | 4090 | // ----- Change the file status |
4091 | 4091 | $p_entry['status'] = "skipped"; |
4092 | 4092 | $v_result = 1; |
4093 | - } |
|
4093 | + } |
|
4094 | 4094 | |
4095 | - // ----- Look for abort result |
|
4096 | - if ($v_result == 2) { |
|
4095 | + // ----- Look for abort result |
|
4096 | + if ($v_result == 2) { |
|
4097 | 4097 | // ----- This status is internal and will be changed in 'skipped' |
4098 | 4098 | $p_entry['status'] = "aborted"; |
4099 | - $v_result = PCLZIP_ERR_USER_ABORTED; |
|
4100 | - } |
|
4099 | + $v_result = PCLZIP_ERR_USER_ABORTED; |
|
4100 | + } |
|
4101 | 4101 | |
4102 | - // ----- Update the informations |
|
4103 | - // Only some fields can be modified |
|
4104 | - $p_entry['filename'] = $v_local_header['filename']; |
|
4102 | + // ----- Update the informations |
|
4103 | + // Only some fields can be modified |
|
4104 | + $p_entry['filename'] = $v_local_header['filename']; |
|
4105 | 4105 | } |
4106 | 4106 | |
4107 | 4107 | // ----- Trace |
@@ -4109,78 +4109,78 @@ discard block |
||
4109 | 4109 | // ----- Look if extraction should be done |
4110 | 4110 | if ($p_entry['status'] == 'ok') { |
4111 | 4111 | |
4112 | - // ----- Do the extraction (if not a folder) |
|
4113 | - if (!(($p_entry['external']&0x00000010)==0x00000010)) { |
|
4112 | + // ----- Do the extraction (if not a folder) |
|
4113 | + if (!(($p_entry['external']&0x00000010)==0x00000010)) { |
|
4114 | 4114 | // ----- Look for not compressed file |
4115 | 4115 | if ($p_entry['compressed_size'] == $p_entry['size']) { |
4116 | 4116 | |
4117 | - // ----- Read the file in a buffer (one shot) |
|
4118 | - $v_buffer = @fread($this->zip_fd, $p_entry['compressed_size']); |
|
4117 | + // ----- Read the file in a buffer (one shot) |
|
4118 | + $v_buffer = @fread($this->zip_fd, $p_entry['compressed_size']); |
|
4119 | 4119 | |
4120 | - // ----- Send the file to the output |
|
4121 | - echo $v_buffer; |
|
4122 | - unset($v_buffer); |
|
4120 | + // ----- Send the file to the output |
|
4121 | + echo $v_buffer; |
|
4122 | + unset($v_buffer); |
|
4123 | 4123 | } |
4124 | 4124 | else { |
4125 | 4125 | |
4126 | - // ----- Read the compressed file in a buffer (one shot) |
|
4127 | - $v_buffer = @fread($this->zip_fd, $p_entry['compressed_size']); |
|
4126 | + // ----- Read the compressed file in a buffer (one shot) |
|
4127 | + $v_buffer = @fread($this->zip_fd, $p_entry['compressed_size']); |
|
4128 | 4128 | |
4129 | - // ----- Decompress the file |
|
4130 | - $v_file_content = gzinflate($v_buffer); |
|
4131 | - unset($v_buffer); |
|
4129 | + // ----- Decompress the file |
|
4130 | + $v_file_content = gzinflate($v_buffer); |
|
4131 | + unset($v_buffer); |
|
4132 | 4132 | |
4133 | - // ----- Send the file to the output |
|
4134 | - echo $v_file_content; |
|
4135 | - unset($v_file_content); |
|
4133 | + // ----- Send the file to the output |
|
4134 | + echo $v_file_content; |
|
4135 | + unset($v_file_content); |
|
4136 | + } |
|
4136 | 4137 | } |
4137 | - } |
|
4138 | 4138 | } |
4139 | 4139 | |
4140 | - // ----- Change abort status |
|
4141 | - if ($p_entry['status'] == "aborted") { |
|
4142 | - $p_entry['status'] = "skipped"; |
|
4143 | - } |
|
4140 | + // ----- Change abort status |
|
4141 | + if ($p_entry['status'] == "aborted") { |
|
4142 | + $p_entry['status'] = "skipped"; |
|
4143 | + } |
|
4144 | 4144 | |
4145 | 4145 | // ----- Look for post-extract callback |
4146 | 4146 | elseif (isset($p_options[PCLZIP_CB_POST_EXTRACT])) { |
4147 | 4147 | |
4148 | - // ----- Generate a local information |
|
4149 | - $v_local_header = array(); |
|
4150 | - $this->privConvertHeader2FileInfo($p_entry, $v_local_header); |
|
4148 | + // ----- Generate a local information |
|
4149 | + $v_local_header = array(); |
|
4150 | + $this->privConvertHeader2FileInfo($p_entry, $v_local_header); |
|
4151 | 4151 | |
4152 | - // ----- Call the callback |
|
4153 | - // Here I do not use call_user_func() because I need to send a reference to the |
|
4154 | - // header. |
|
4152 | + // ----- Call the callback |
|
4153 | + // Here I do not use call_user_func() because I need to send a reference to the |
|
4154 | + // header. |
|
4155 | 4155 | // eval('$v_result = '.$p_options[PCLZIP_CB_POST_EXTRACT].'(PCLZIP_CB_POST_EXTRACT, $v_local_header);'); |
4156 | - $v_result = $p_options[PCLZIP_CB_POST_EXTRACT](PCLZIP_CB_POST_EXTRACT, $v_local_header); |
|
4156 | + $v_result = $p_options[PCLZIP_CB_POST_EXTRACT](PCLZIP_CB_POST_EXTRACT, $v_local_header); |
|
4157 | 4157 | |
4158 | - // ----- Look for abort result |
|
4159 | - if ($v_result == 2) { |
|
4160 | - $v_result = PCLZIP_ERR_USER_ABORTED; |
|
4161 | - } |
|
4158 | + // ----- Look for abort result |
|
4159 | + if ($v_result == 2) { |
|
4160 | + $v_result = PCLZIP_ERR_USER_ABORTED; |
|
4161 | + } |
|
4162 | 4162 | } |
4163 | 4163 | |
4164 | 4164 | return $v_result; |
4165 | - } |
|
4166 | - // -------------------------------------------------------------------------------- |
|
4167 | - |
|
4168 | - // -------------------------------------------------------------------------------- |
|
4169 | - // Function : privExtractFileAsString() |
|
4170 | - // Description : |
|
4171 | - // Parameters : |
|
4172 | - // Return Values : |
|
4173 | - // -------------------------------------------------------------------------------- |
|
4174 | - function privExtractFileAsString(&$p_entry, &$p_string, &$p_options) |
|
4175 | - { |
|
4165 | + } |
|
4166 | + // -------------------------------------------------------------------------------- |
|
4167 | + |
|
4168 | + // -------------------------------------------------------------------------------- |
|
4169 | + // Function : privExtractFileAsString() |
|
4170 | + // Description : |
|
4171 | + // Parameters : |
|
4172 | + // Return Values : |
|
4173 | + // -------------------------------------------------------------------------------- |
|
4174 | + function privExtractFileAsString(&$p_entry, &$p_string, &$p_options) |
|
4175 | + { |
|
4176 | 4176 | $v_result=1; |
4177 | 4177 | |
4178 | 4178 | // ----- Read the file header |
4179 | 4179 | $v_header = array(); |
4180 | 4180 | if (($v_result = $this->privReadFileHeader($v_header)) != 1) |
4181 | 4181 | { |
4182 | - // ----- Return |
|
4183 | - return $v_result; |
|
4182 | + // ----- Return |
|
4183 | + return $v_result; |
|
4184 | 4184 | } |
4185 | 4185 | |
4186 | 4186 | |
@@ -4192,110 +4192,110 @@ discard block |
||
4192 | 4192 | // ----- Look for pre-extract callback |
4193 | 4193 | if (isset($p_options[PCLZIP_CB_PRE_EXTRACT])) { |
4194 | 4194 | |
4195 | - // ----- Generate a local information |
|
4196 | - $v_local_header = array(); |
|
4197 | - $this->privConvertHeader2FileInfo($p_entry, $v_local_header); |
|
4195 | + // ----- Generate a local information |
|
4196 | + $v_local_header = array(); |
|
4197 | + $this->privConvertHeader2FileInfo($p_entry, $v_local_header); |
|
4198 | 4198 | |
4199 | - // ----- Call the callback |
|
4200 | - // Here I do not use call_user_func() because I need to send a reference to the |
|
4201 | - // header. |
|
4199 | + // ----- Call the callback |
|
4200 | + // Here I do not use call_user_func() because I need to send a reference to the |
|
4201 | + // header. |
|
4202 | 4202 | // eval('$v_result = '.$p_options[PCLZIP_CB_PRE_EXTRACT].'(PCLZIP_CB_PRE_EXTRACT, $v_local_header);'); |
4203 | - $v_result = $p_options[PCLZIP_CB_PRE_EXTRACT](PCLZIP_CB_PRE_EXTRACT, $v_local_header); |
|
4204 | - if ($v_result == 0) { |
|
4203 | + $v_result = $p_options[PCLZIP_CB_PRE_EXTRACT](PCLZIP_CB_PRE_EXTRACT, $v_local_header); |
|
4204 | + if ($v_result == 0) { |
|
4205 | 4205 | // ----- Change the file status |
4206 | 4206 | $p_entry['status'] = "skipped"; |
4207 | 4207 | $v_result = 1; |
4208 | - } |
|
4208 | + } |
|
4209 | 4209 | |
4210 | - // ----- Look for abort result |
|
4211 | - if ($v_result == 2) { |
|
4210 | + // ----- Look for abort result |
|
4211 | + if ($v_result == 2) { |
|
4212 | 4212 | // ----- This status is internal and will be changed in 'skipped' |
4213 | 4213 | $p_entry['status'] = "aborted"; |
4214 | - $v_result = PCLZIP_ERR_USER_ABORTED; |
|
4215 | - } |
|
4214 | + $v_result = PCLZIP_ERR_USER_ABORTED; |
|
4215 | + } |
|
4216 | 4216 | |
4217 | - // ----- Update the informations |
|
4218 | - // Only some fields can be modified |
|
4219 | - $p_entry['filename'] = $v_local_header['filename']; |
|
4217 | + // ----- Update the informations |
|
4218 | + // Only some fields can be modified |
|
4219 | + $p_entry['filename'] = $v_local_header['filename']; |
|
4220 | 4220 | } |
4221 | 4221 | |
4222 | 4222 | |
4223 | 4223 | // ----- Look if extraction should be done |
4224 | 4224 | if ($p_entry['status'] == 'ok') { |
4225 | 4225 | |
4226 | - // ----- Do the extraction (if not a folder) |
|
4227 | - if (!(($p_entry['external']&0x00000010)==0x00000010)) { |
|
4226 | + // ----- Do the extraction (if not a folder) |
|
4227 | + if (!(($p_entry['external']&0x00000010)==0x00000010)) { |
|
4228 | 4228 | // ----- Look for not compressed file |
4229 | - // if ($p_entry['compressed_size'] == $p_entry['size']) |
|
4229 | + // if ($p_entry['compressed_size'] == $p_entry['size']) |
|
4230 | 4230 | if ($p_entry['compression'] == 0) { |
4231 | 4231 | |
4232 | - // ----- Reading the file |
|
4233 | - $p_string = @fread($this->zip_fd, $p_entry['compressed_size']); |
|
4232 | + // ----- Reading the file |
|
4233 | + $p_string = @fread($this->zip_fd, $p_entry['compressed_size']); |
|
4234 | 4234 | } |
4235 | 4235 | else { |
4236 | 4236 | |
4237 | - // ----- Reading the file |
|
4238 | - $v_data = @fread($this->zip_fd, $p_entry['compressed_size']); |
|
4237 | + // ----- Reading the file |
|
4238 | + $v_data = @fread($this->zip_fd, $p_entry['compressed_size']); |
|
4239 | 4239 | |
4240 | - // ----- Decompress the file |
|
4241 | - if (($p_string = @gzinflate($v_data)) === FALSE) { |
|
4242 | - // TBC |
|
4243 | - } |
|
4240 | + // ----- Decompress the file |
|
4241 | + if (($p_string = @gzinflate($v_data)) === FALSE) { |
|
4242 | + // TBC |
|
4243 | + } |
|
4244 | 4244 | } |
4245 | 4245 | |
4246 | 4246 | // ----- Trace |
4247 | - } |
|
4248 | - else { |
|
4249 | - // TBC : error : can not extract a folder in a string |
|
4250 | - } |
|
4247 | + } |
|
4248 | + else { |
|
4249 | + // TBC : error : can not extract a folder in a string |
|
4250 | + } |
|
4251 | 4251 | |
4252 | 4252 | } |
4253 | 4253 | |
4254 | - // ----- Change abort status |
|
4255 | - if ($p_entry['status'] == "aborted") { |
|
4254 | + // ----- Change abort status |
|
4255 | + if ($p_entry['status'] == "aborted") { |
|
4256 | 4256 | $p_entry['status'] = "skipped"; |
4257 | - } |
|
4257 | + } |
|
4258 | 4258 | |
4259 | 4259 | // ----- Look for post-extract callback |
4260 | 4260 | elseif (isset($p_options[PCLZIP_CB_POST_EXTRACT])) { |
4261 | 4261 | |
4262 | - // ----- Generate a local information |
|
4263 | - $v_local_header = array(); |
|
4264 | - $this->privConvertHeader2FileInfo($p_entry, $v_local_header); |
|
4262 | + // ----- Generate a local information |
|
4263 | + $v_local_header = array(); |
|
4264 | + $this->privConvertHeader2FileInfo($p_entry, $v_local_header); |
|
4265 | 4265 | |
4266 | - // ----- Swap the content to header |
|
4267 | - $v_local_header['content'] = $p_string; |
|
4268 | - $p_string = ''; |
|
4266 | + // ----- Swap the content to header |
|
4267 | + $v_local_header['content'] = $p_string; |
|
4268 | + $p_string = ''; |
|
4269 | 4269 | |
4270 | - // ----- Call the callback |
|
4271 | - // Here I do not use call_user_func() because I need to send a reference to the |
|
4272 | - // header. |
|
4270 | + // ----- Call the callback |
|
4271 | + // Here I do not use call_user_func() because I need to send a reference to the |
|
4272 | + // header. |
|
4273 | 4273 | // eval('$v_result = '.$p_options[PCLZIP_CB_POST_EXTRACT].'(PCLZIP_CB_POST_EXTRACT, $v_local_header);'); |
4274 | - $v_result = $p_options[PCLZIP_CB_POST_EXTRACT](PCLZIP_CB_POST_EXTRACT, $v_local_header); |
|
4274 | + $v_result = $p_options[PCLZIP_CB_POST_EXTRACT](PCLZIP_CB_POST_EXTRACT, $v_local_header); |
|
4275 | 4275 | |
4276 | - // ----- Swap back the content to header |
|
4277 | - $p_string = $v_local_header['content']; |
|
4278 | - unset($v_local_header['content']); |
|
4276 | + // ----- Swap back the content to header |
|
4277 | + $p_string = $v_local_header['content']; |
|
4278 | + unset($v_local_header['content']); |
|
4279 | 4279 | |
4280 | - // ----- Look for abort result |
|
4281 | - if ($v_result == 2) { |
|
4282 | - $v_result = PCLZIP_ERR_USER_ABORTED; |
|
4283 | - } |
|
4280 | + // ----- Look for abort result |
|
4281 | + if ($v_result == 2) { |
|
4282 | + $v_result = PCLZIP_ERR_USER_ABORTED; |
|
4283 | + } |
|
4284 | 4284 | } |
4285 | 4285 | |
4286 | 4286 | // ----- Return |
4287 | 4287 | return $v_result; |
4288 | - } |
|
4289 | - // -------------------------------------------------------------------------------- |
|
4290 | - |
|
4291 | - // -------------------------------------------------------------------------------- |
|
4292 | - // Function : privReadFileHeader() |
|
4293 | - // Description : |
|
4294 | - // Parameters : |
|
4295 | - // Return Values : |
|
4296 | - // -------------------------------------------------------------------------------- |
|
4297 | - function privReadFileHeader(&$p_header) |
|
4298 | - { |
|
4288 | + } |
|
4289 | + // -------------------------------------------------------------------------------- |
|
4290 | + |
|
4291 | + // -------------------------------------------------------------------------------- |
|
4292 | + // Function : privReadFileHeader() |
|
4293 | + // Description : |
|
4294 | + // Parameters : |
|
4295 | + // Return Values : |
|
4296 | + // -------------------------------------------------------------------------------- |
|
4297 | + function privReadFileHeader(&$p_header) |
|
4298 | + { |
|
4299 | 4299 | $v_result=1; |
4300 | 4300 | |
4301 | 4301 | // ----- Read the 4 bytes signature |
@@ -4306,11 +4306,11 @@ discard block |
||
4306 | 4306 | if ($v_data['id'] != 0x04034b50) |
4307 | 4307 | { |
4308 | 4308 | |
4309 | - // ----- Error log |
|
4310 | - PclZip::privErrorLog(PCLZIP_ERR_BAD_FORMAT, 'Invalid archive structure'); |
|
4309 | + // ----- Error log |
|
4310 | + PclZip::privErrorLog(PCLZIP_ERR_BAD_FORMAT, 'Invalid archive structure'); |
|
4311 | 4311 | |
4312 | - // ----- Return |
|
4313 | - return PclZip::errorCode(); |
|
4312 | + // ----- Return |
|
4313 | + return PclZip::errorCode(); |
|
4314 | 4314 | } |
4315 | 4315 | |
4316 | 4316 | // ----- Read the first 42 bytes of the header |
@@ -4319,14 +4319,14 @@ discard block |
||
4319 | 4319 | // ----- Look for invalid block size |
4320 | 4320 | if (strlen($v_binary_data) != 26) |
4321 | 4321 | { |
4322 | - $p_header['filename'] = ""; |
|
4323 | - $p_header['status'] = "invalid_header"; |
|
4322 | + $p_header['filename'] = ""; |
|
4323 | + $p_header['status'] = "invalid_header"; |
|
4324 | 4324 | |
4325 | - // ----- Error log |
|
4326 | - PclZip::privErrorLog(PCLZIP_ERR_BAD_FORMAT, "Invalid block size : ".strlen($v_binary_data)); |
|
4325 | + // ----- Error log |
|
4326 | + PclZip::privErrorLog(PCLZIP_ERR_BAD_FORMAT, "Invalid block size : ".strlen($v_binary_data)); |
|
4327 | 4327 | |
4328 | - // ----- Return |
|
4329 | - return PclZip::errorCode(); |
|
4328 | + // ----- Return |
|
4329 | + return PclZip::errorCode(); |
|
4330 | 4330 | } |
4331 | 4331 | |
4332 | 4332 | // ----- Extract the values |
@@ -4337,10 +4337,10 @@ discard block |
||
4337 | 4337 | |
4338 | 4338 | // ----- Get extra_fields |
4339 | 4339 | if ($v_data['extra_len'] != 0) { |
4340 | - $p_header['extra'] = fread($this->zip_fd, $v_data['extra_len']); |
|
4340 | + $p_header['extra'] = fread($this->zip_fd, $v_data['extra_len']); |
|
4341 | 4341 | } |
4342 | 4342 | else { |
4343 | - $p_header['extra'] = ''; |
|
4343 | + $p_header['extra'] = ''; |
|
4344 | 4344 | } |
4345 | 4345 | |
4346 | 4346 | // ----- Extract properties |
@@ -4357,23 +4357,23 @@ discard block |
||
4357 | 4357 | $p_header['mtime'] = $v_data['mtime']; |
4358 | 4358 | if ($p_header['mdate'] && $p_header['mtime']) |
4359 | 4359 | { |
4360 | - // ----- Extract time |
|
4361 | - $v_hour = ($p_header['mtime'] & 0xF800) >> 11; |
|
4362 | - $v_minute = ($p_header['mtime'] & 0x07E0) >> 5; |
|
4363 | - $v_seconde = ($p_header['mtime'] & 0x001F)*2; |
|
4360 | + // ----- Extract time |
|
4361 | + $v_hour = ($p_header['mtime'] & 0xF800) >> 11; |
|
4362 | + $v_minute = ($p_header['mtime'] & 0x07E0) >> 5; |
|
4363 | + $v_seconde = ($p_header['mtime'] & 0x001F)*2; |
|
4364 | 4364 | |
4365 | - // ----- Extract date |
|
4366 | - $v_year = (($p_header['mdate'] & 0xFE00) >> 9) + 1980; |
|
4367 | - $v_month = ($p_header['mdate'] & 0x01E0) >> 5; |
|
4368 | - $v_day = $p_header['mdate'] & 0x001F; |
|
4365 | + // ----- Extract date |
|
4366 | + $v_year = (($p_header['mdate'] & 0xFE00) >> 9) + 1980; |
|
4367 | + $v_month = ($p_header['mdate'] & 0x01E0) >> 5; |
|
4368 | + $v_day = $p_header['mdate'] & 0x001F; |
|
4369 | 4369 | |
4370 | - // ----- Get UNIX date format |
|
4371 | - $p_header['mtime'] = @mktime($v_hour, $v_minute, $v_seconde, $v_month, $v_day, $v_year); |
|
4370 | + // ----- Get UNIX date format |
|
4371 | + $p_header['mtime'] = @mktime($v_hour, $v_minute, $v_seconde, $v_month, $v_day, $v_year); |
|
4372 | 4372 | |
4373 | 4373 | } |
4374 | 4374 | else |
4375 | 4375 | { |
4376 | - $p_header['mtime'] = time(); |
|
4376 | + $p_header['mtime'] = time(); |
|
4377 | 4377 | } |
4378 | 4378 | |
4379 | 4379 | // TBC |
@@ -4388,17 +4388,17 @@ discard block |
||
4388 | 4388 | |
4389 | 4389 | // ----- Return |
4390 | 4390 | return $v_result; |
4391 | - } |
|
4392 | - // -------------------------------------------------------------------------------- |
|
4393 | - |
|
4394 | - // -------------------------------------------------------------------------------- |
|
4395 | - // Function : privReadCentralFileHeader() |
|
4396 | - // Description : |
|
4397 | - // Parameters : |
|
4398 | - // Return Values : |
|
4399 | - // -------------------------------------------------------------------------------- |
|
4400 | - function privReadCentralFileHeader(&$p_header) |
|
4401 | - { |
|
4391 | + } |
|
4392 | + // -------------------------------------------------------------------------------- |
|
4393 | + |
|
4394 | + // -------------------------------------------------------------------------------- |
|
4395 | + // Function : privReadCentralFileHeader() |
|
4396 | + // Description : |
|
4397 | + // Parameters : |
|
4398 | + // Return Values : |
|
4399 | + // -------------------------------------------------------------------------------- |
|
4400 | + function privReadCentralFileHeader(&$p_header) |
|
4401 | + { |
|
4402 | 4402 | $v_result=1; |
4403 | 4403 | |
4404 | 4404 | // ----- Read the 4 bytes signature |
@@ -4409,11 +4409,11 @@ discard block |
||
4409 | 4409 | if ($v_data['id'] != 0x02014b50) |
4410 | 4410 | { |
4411 | 4411 | |
4412 | - // ----- Error log |
|
4413 | - PclZip::privErrorLog(PCLZIP_ERR_BAD_FORMAT, 'Invalid archive structure'); |
|
4412 | + // ----- Error log |
|
4413 | + PclZip::privErrorLog(PCLZIP_ERR_BAD_FORMAT, 'Invalid archive structure'); |
|
4414 | 4414 | |
4415 | - // ----- Return |
|
4416 | - return PclZip::errorCode(); |
|
4415 | + // ----- Return |
|
4416 | + return PclZip::errorCode(); |
|
4417 | 4417 | } |
4418 | 4418 | |
4419 | 4419 | // ----- Read the first 42 bytes of the header |
@@ -4422,14 +4422,14 @@ discard block |
||
4422 | 4422 | // ----- Look for invalid block size |
4423 | 4423 | if (strlen($v_binary_data) != 42) |
4424 | 4424 | { |
4425 | - $p_header['filename'] = ""; |
|
4426 | - $p_header['status'] = "invalid_header"; |
|
4425 | + $p_header['filename'] = ""; |
|
4426 | + $p_header['status'] = "invalid_header"; |
|
4427 | 4427 | |
4428 | - // ----- Error log |
|
4429 | - PclZip::privErrorLog(PCLZIP_ERR_BAD_FORMAT, "Invalid block size : ".strlen($v_binary_data)); |
|
4428 | + // ----- Error log |
|
4429 | + PclZip::privErrorLog(PCLZIP_ERR_BAD_FORMAT, "Invalid block size : ".strlen($v_binary_data)); |
|
4430 | 4430 | |
4431 | - // ----- Return |
|
4432 | - return PclZip::errorCode(); |
|
4431 | + // ----- Return |
|
4432 | + return PclZip::errorCode(); |
|
4433 | 4433 | } |
4434 | 4434 | |
4435 | 4435 | // ----- Extract the values |
@@ -4437,28 +4437,28 @@ discard block |
||
4437 | 4437 | |
4438 | 4438 | // ----- Get filename |
4439 | 4439 | if ($p_header['filename_len'] != 0) |
4440 | - // |
|
4441 | - // -------------------------------------------------------------------------------- |
|
4442 | - // A patch about stored filenames with backslash directory separator (Windows style). |
|
4443 | - // Archives created by the utility IZArc 3.81 (possibly new versions too) need this patch. |
|
4444 | - //$p_header['filename'] = fread($this->zip_fd, $p_header['filename_len']); |
|
4445 | - $p_header['filename'] = str_replace("\\", '/', fread($this->zip_fd, $p_header['filename_len'])); |
|
4446 | - // -------------------------------------------------------------------------------- |
|
4447 | - // |
|
4440 | + // |
|
4441 | + // -------------------------------------------------------------------------------- |
|
4442 | + // A patch about stored filenames with backslash directory separator (Windows style). |
|
4443 | + // Archives created by the utility IZArc 3.81 (possibly new versions too) need this patch. |
|
4444 | + //$p_header['filename'] = fread($this->zip_fd, $p_header['filename_len']); |
|
4445 | + $p_header['filename'] = str_replace("\\", '/', fread($this->zip_fd, $p_header['filename_len'])); |
|
4446 | + // -------------------------------------------------------------------------------- |
|
4447 | + // |
|
4448 | 4448 | else |
4449 | - $p_header['filename'] = ''; |
|
4449 | + $p_header['filename'] = ''; |
|
4450 | 4450 | |
4451 | 4451 | // ----- Get extra |
4452 | 4452 | if ($p_header['extra_len'] != 0) |
4453 | - $p_header['extra'] = fread($this->zip_fd, $p_header['extra_len']); |
|
4453 | + $p_header['extra'] = fread($this->zip_fd, $p_header['extra_len']); |
|
4454 | 4454 | else |
4455 | - $p_header['extra'] = ''; |
|
4455 | + $p_header['extra'] = ''; |
|
4456 | 4456 | |
4457 | 4457 | // ----- Get comment |
4458 | 4458 | if ($p_header['comment_len'] != 0) |
4459 | - $p_header['comment'] = fread($this->zip_fd, $p_header['comment_len']); |
|
4459 | + $p_header['comment'] = fread($this->zip_fd, $p_header['comment_len']); |
|
4460 | 4460 | else |
4461 | - $p_header['comment'] = ''; |
|
4461 | + $p_header['comment'] = ''; |
|
4462 | 4462 | |
4463 | 4463 | // ----- Extract properties |
4464 | 4464 | |
@@ -4467,23 +4467,23 @@ discard block |
||
4467 | 4467 | // TBC : bug : this was ignoring time with 0/0/0 |
4468 | 4468 | if (1) |
4469 | 4469 | { |
4470 | - // ----- Extract time |
|
4471 | - $v_hour = ($p_header['mtime'] & 0xF800) >> 11; |
|
4472 | - $v_minute = ($p_header['mtime'] & 0x07E0) >> 5; |
|
4473 | - $v_seconde = ($p_header['mtime'] & 0x001F)*2; |
|
4470 | + // ----- Extract time |
|
4471 | + $v_hour = ($p_header['mtime'] & 0xF800) >> 11; |
|
4472 | + $v_minute = ($p_header['mtime'] & 0x07E0) >> 5; |
|
4473 | + $v_seconde = ($p_header['mtime'] & 0x001F)*2; |
|
4474 | 4474 | |
4475 | - // ----- Extract date |
|
4476 | - $v_year = (($p_header['mdate'] & 0xFE00) >> 9) + 1980; |
|
4477 | - $v_month = ($p_header['mdate'] & 0x01E0) >> 5; |
|
4478 | - $v_day = $p_header['mdate'] & 0x001F; |
|
4475 | + // ----- Extract date |
|
4476 | + $v_year = (($p_header['mdate'] & 0xFE00) >> 9) + 1980; |
|
4477 | + $v_month = ($p_header['mdate'] & 0x01E0) >> 5; |
|
4478 | + $v_day = $p_header['mdate'] & 0x001F; |
|
4479 | 4479 | |
4480 | - // ----- Get UNIX date format |
|
4481 | - $p_header['mtime'] = @mktime($v_hour, $v_minute, $v_seconde, $v_month, $v_day, $v_year); |
|
4480 | + // ----- Get UNIX date format |
|
4481 | + $p_header['mtime'] = @mktime($v_hour, $v_minute, $v_seconde, $v_month, $v_day, $v_year); |
|
4482 | 4482 | |
4483 | 4483 | } |
4484 | 4484 | else |
4485 | 4485 | { |
4486 | - $p_header['mtime'] = time(); |
|
4486 | + $p_header['mtime'] = time(); |
|
4487 | 4487 | } |
4488 | 4488 | |
4489 | 4489 | // ----- Set the stored filename |
@@ -4494,63 +4494,63 @@ discard block |
||
4494 | 4494 | |
4495 | 4495 | // ----- Look if it is a directory |
4496 | 4496 | if (substr($p_header['filename'], -1) == '/') { |
4497 | - //$p_header['external'] = 0x41FF0010; |
|
4498 | - $p_header['external'] = 0x00000010; |
|
4497 | + //$p_header['external'] = 0x41FF0010; |
|
4498 | + $p_header['external'] = 0x00000010; |
|
4499 | 4499 | } |
4500 | 4500 | |
4501 | 4501 | |
4502 | 4502 | // ----- Return |
4503 | 4503 | return $v_result; |
4504 | - } |
|
4505 | - // -------------------------------------------------------------------------------- |
|
4506 | - |
|
4507 | - // -------------------------------------------------------------------------------- |
|
4508 | - // Function : privCheckFileHeaders() |
|
4509 | - // Description : |
|
4510 | - // Parameters : |
|
4511 | - // Return Values : |
|
4512 | - // 1 on success, |
|
4513 | - // 0 on error; |
|
4514 | - // -------------------------------------------------------------------------------- |
|
4515 | - function privCheckFileHeaders(&$p_local_header, &$p_central_header) |
|
4516 | - { |
|
4504 | + } |
|
4505 | + // -------------------------------------------------------------------------------- |
|
4506 | + |
|
4507 | + // -------------------------------------------------------------------------------- |
|
4508 | + // Function : privCheckFileHeaders() |
|
4509 | + // Description : |
|
4510 | + // Parameters : |
|
4511 | + // Return Values : |
|
4512 | + // 1 on success, |
|
4513 | + // 0 on error; |
|
4514 | + // -------------------------------------------------------------------------------- |
|
4515 | + function privCheckFileHeaders(&$p_local_header, &$p_central_header) |
|
4516 | + { |
|
4517 | 4517 | $v_result=1; |
4518 | 4518 | |
4519 | - // ----- Check the static values |
|
4520 | - // TBC |
|
4521 | - if ($p_local_header['filename'] != $p_central_header['filename']) { |
|
4522 | - } |
|
4523 | - if ($p_local_header['version_extracted'] != $p_central_header['version_extracted']) { |
|
4524 | - } |
|
4525 | - if ($p_local_header['flag'] != $p_central_header['flag']) { |
|
4526 | - } |
|
4527 | - if ($p_local_header['compression'] != $p_central_header['compression']) { |
|
4528 | - } |
|
4529 | - if ($p_local_header['mtime'] != $p_central_header['mtime']) { |
|
4530 | - } |
|
4531 | - if ($p_local_header['filename_len'] != $p_central_header['filename_len']) { |
|
4532 | - } |
|
4533 | - |
|
4534 | - // ----- Look for flag bit 3 |
|
4535 | - if (($p_local_header['flag'] & 8) == 8) { |
|
4536 | - $p_local_header['size'] = $p_central_header['size']; |
|
4537 | - $p_local_header['compressed_size'] = $p_central_header['compressed_size']; |
|
4538 | - $p_local_header['crc'] = $p_central_header['crc']; |
|
4539 | - } |
|
4519 | + // ----- Check the static values |
|
4520 | + // TBC |
|
4521 | + if ($p_local_header['filename'] != $p_central_header['filename']) { |
|
4522 | + } |
|
4523 | + if ($p_local_header['version_extracted'] != $p_central_header['version_extracted']) { |
|
4524 | + } |
|
4525 | + if ($p_local_header['flag'] != $p_central_header['flag']) { |
|
4526 | + } |
|
4527 | + if ($p_local_header['compression'] != $p_central_header['compression']) { |
|
4528 | + } |
|
4529 | + if ($p_local_header['mtime'] != $p_central_header['mtime']) { |
|
4530 | + } |
|
4531 | + if ($p_local_header['filename_len'] != $p_central_header['filename_len']) { |
|
4532 | + } |
|
4533 | + |
|
4534 | + // ----- Look for flag bit 3 |
|
4535 | + if (($p_local_header['flag'] & 8) == 8) { |
|
4536 | + $p_local_header['size'] = $p_central_header['size']; |
|
4537 | + $p_local_header['compressed_size'] = $p_central_header['compressed_size']; |
|
4538 | + $p_local_header['crc'] = $p_central_header['crc']; |
|
4539 | + } |
|
4540 | 4540 | |
4541 | 4541 | // ----- Return |
4542 | 4542 | return $v_result; |
4543 | - } |
|
4544 | - // -------------------------------------------------------------------------------- |
|
4545 | - |
|
4546 | - // -------------------------------------------------------------------------------- |
|
4547 | - // Function : privReadEndCentralDir() |
|
4548 | - // Description : |
|
4549 | - // Parameters : |
|
4550 | - // Return Values : |
|
4551 | - // -------------------------------------------------------------------------------- |
|
4552 | - function privReadEndCentralDir(&$p_central_dir) |
|
4553 | - { |
|
4543 | + } |
|
4544 | + // -------------------------------------------------------------------------------- |
|
4545 | + |
|
4546 | + // -------------------------------------------------------------------------------- |
|
4547 | + // Function : privReadEndCentralDir() |
|
4548 | + // Description : |
|
4549 | + // Parameters : |
|
4550 | + // Return Values : |
|
4551 | + // -------------------------------------------------------------------------------- |
|
4552 | + function privReadEndCentralDir(&$p_central_dir) |
|
4553 | + { |
|
4554 | 4554 | $v_result=1; |
4555 | 4555 | |
4556 | 4556 | // ----- Go to the end of the zip file |
@@ -4558,59 +4558,59 @@ discard block |
||
4558 | 4558 | @fseek($this->zip_fd, $v_size); |
4559 | 4559 | if (@ftell($this->zip_fd) != $v_size) |
4560 | 4560 | { |
4561 | - // ----- Error log |
|
4562 | - PclZip::privErrorLog(PCLZIP_ERR_BAD_FORMAT, 'Unable to go to the end of the archive \''.$this->zipname.'\''); |
|
4561 | + // ----- Error log |
|
4562 | + PclZip::privErrorLog(PCLZIP_ERR_BAD_FORMAT, 'Unable to go to the end of the archive \''.$this->zipname.'\''); |
|
4563 | 4563 | |
4564 | - // ----- Return |
|
4565 | - return PclZip::errorCode(); |
|
4564 | + // ----- Return |
|
4565 | + return PclZip::errorCode(); |
|
4566 | 4566 | } |
4567 | 4567 | |
4568 | 4568 | // ----- First try : look if this is an archive with no commentaries (most of the time) |
4569 | 4569 | // in this case the end of central dir is at 22 bytes of the file end |
4570 | 4570 | $v_found = 0; |
4571 | 4571 | if ($v_size > 26) { |
4572 | - @fseek($this->zip_fd, $v_size-22); |
|
4573 | - if (($v_pos = @ftell($this->zip_fd)) != ($v_size-22)) |
|
4574 | - { |
|
4572 | + @fseek($this->zip_fd, $v_size-22); |
|
4573 | + if (($v_pos = @ftell($this->zip_fd)) != ($v_size-22)) |
|
4574 | + { |
|
4575 | 4575 | // ----- Error log |
4576 | 4576 | PclZip::privErrorLog(PCLZIP_ERR_BAD_FORMAT, 'Unable to seek back to the middle of the archive \''.$this->zipname.'\''); |
4577 | 4577 | |
4578 | 4578 | // ----- Return |
4579 | 4579 | return PclZip::errorCode(); |
4580 | - } |
|
4580 | + } |
|
4581 | 4581 | |
4582 | - // ----- Read for bytes |
|
4583 | - $v_binary_data = @fread($this->zip_fd, 4); |
|
4584 | - $v_data = @unpack('Vid', $v_binary_data); |
|
4582 | + // ----- Read for bytes |
|
4583 | + $v_binary_data = @fread($this->zip_fd, 4); |
|
4584 | + $v_data = @unpack('Vid', $v_binary_data); |
|
4585 | 4585 | |
4586 | - // ----- Check signature |
|
4587 | - if ($v_data['id'] == 0x06054b50) { |
|
4586 | + // ----- Check signature |
|
4587 | + if ($v_data['id'] == 0x06054b50) { |
|
4588 | 4588 | $v_found = 1; |
4589 | - } |
|
4589 | + } |
|
4590 | 4590 | |
4591 | - $v_pos = ftell($this->zip_fd); |
|
4591 | + $v_pos = ftell($this->zip_fd); |
|
4592 | 4592 | } |
4593 | 4593 | |
4594 | 4594 | // ----- Go back to the maximum possible size of the Central Dir End Record |
4595 | 4595 | if (!$v_found) { |
4596 | - $v_maximum_size = 65557; // 0xFFFF + 22; |
|
4597 | - if ($v_maximum_size > $v_size) |
|
4596 | + $v_maximum_size = 65557; // 0xFFFF + 22; |
|
4597 | + if ($v_maximum_size > $v_size) |
|
4598 | 4598 | $v_maximum_size = $v_size; |
4599 | - @fseek($this->zip_fd, $v_size-$v_maximum_size); |
|
4600 | - if (@ftell($this->zip_fd) != ($v_size-$v_maximum_size)) |
|
4601 | - { |
|
4599 | + @fseek($this->zip_fd, $v_size-$v_maximum_size); |
|
4600 | + if (@ftell($this->zip_fd) != ($v_size-$v_maximum_size)) |
|
4601 | + { |
|
4602 | 4602 | // ----- Error log |
4603 | 4603 | PclZip::privErrorLog(PCLZIP_ERR_BAD_FORMAT, 'Unable to seek back to the middle of the archive \''.$this->zipname.'\''); |
4604 | 4604 | |
4605 | 4605 | // ----- Return |
4606 | 4606 | return PclZip::errorCode(); |
4607 | - } |
|
4607 | + } |
|
4608 | 4608 | |
4609 | - // ----- Read byte per byte in order to find the signature |
|
4610 | - $v_pos = ftell($this->zip_fd); |
|
4611 | - $v_bytes = 0x00000000; |
|
4612 | - while ($v_pos < $v_size) |
|
4613 | - { |
|
4609 | + // ----- Read byte per byte in order to find the signature |
|
4610 | + $v_pos = ftell($this->zip_fd); |
|
4611 | + $v_bytes = 0x00000000; |
|
4612 | + while ($v_pos < $v_size) |
|
4613 | + { |
|
4614 | 4614 | // ----- Read a byte |
4615 | 4615 | $v_byte = @fread($this->zip_fd, 1); |
4616 | 4616 | |
@@ -4623,23 +4623,23 @@ discard block |
||
4623 | 4623 | // ----- Compare the bytes |
4624 | 4624 | if ($v_bytes == 0x504b0506) |
4625 | 4625 | { |
4626 | - $v_pos++; |
|
4627 | - break; |
|
4626 | + $v_pos++; |
|
4627 | + break; |
|
4628 | 4628 | } |
4629 | 4629 | |
4630 | 4630 | $v_pos++; |
4631 | - } |
|
4631 | + } |
|
4632 | 4632 | |
4633 | - // ----- Look if not found end of central dir |
|
4634 | - if ($v_pos == $v_size) |
|
4635 | - { |
|
4633 | + // ----- Look if not found end of central dir |
|
4634 | + if ($v_pos == $v_size) |
|
4635 | + { |
|
4636 | 4636 | |
4637 | 4637 | // ----- Error log |
4638 | 4638 | PclZip::privErrorLog(PCLZIP_ERR_BAD_FORMAT, "Unable to find End of Central Dir Record signature"); |
4639 | 4639 | |
4640 | 4640 | // ----- Return |
4641 | 4641 | return PclZip::errorCode(); |
4642 | - } |
|
4642 | + } |
|
4643 | 4643 | } |
4644 | 4644 | |
4645 | 4645 | // ----- Read the first 18 bytes of the header |
@@ -4649,11 +4649,11 @@ discard block |
||
4649 | 4649 | if (strlen($v_binary_data) != 18) |
4650 | 4650 | { |
4651 | 4651 | |
4652 | - // ----- Error log |
|
4653 | - PclZip::privErrorLog(PCLZIP_ERR_BAD_FORMAT, "Invalid End of Central Dir Record size : ".strlen($v_binary_data)); |
|
4652 | + // ----- Error log |
|
4653 | + PclZip::privErrorLog(PCLZIP_ERR_BAD_FORMAT, "Invalid End of Central Dir Record size : ".strlen($v_binary_data)); |
|
4654 | 4654 | |
4655 | - // ----- Return |
|
4656 | - return PclZip::errorCode(); |
|
4655 | + // ----- Return |
|
4656 | + return PclZip::errorCode(); |
|
4657 | 4657 | } |
4658 | 4658 | |
4659 | 4659 | // ----- Extract the values |
@@ -4662,27 +4662,27 @@ discard block |
||
4662 | 4662 | // ----- Check the global size |
4663 | 4663 | if (($v_pos + $v_data['comment_size'] + 18) != $v_size) { |
4664 | 4664 | |
4665 | - // ----- Removed in release 2.2 see readme file |
|
4666 | - // The check of the file size is a little too strict. |
|
4667 | - // Some bugs where found when a zip is encrypted/decrypted with 'crypt'. |
|
4668 | - // While decrypted, zip has training 0 bytes |
|
4669 | - if (0) { |
|
4670 | - // ----- Error log |
|
4671 | - PclZip::privErrorLog(PCLZIP_ERR_BAD_FORMAT, |
|
4672 | - 'The central dir is not at the end of the archive.' |
|
4673 | - .' Some trailing bytes exists after the archive.'); |
|
4665 | + // ----- Removed in release 2.2 see readme file |
|
4666 | + // The check of the file size is a little too strict. |
|
4667 | + // Some bugs where found when a zip is encrypted/decrypted with 'crypt'. |
|
4668 | + // While decrypted, zip has training 0 bytes |
|
4669 | + if (0) { |
|
4670 | + // ----- Error log |
|
4671 | + PclZip::privErrorLog(PCLZIP_ERR_BAD_FORMAT, |
|
4672 | + 'The central dir is not at the end of the archive.' |
|
4673 | + .' Some trailing bytes exists after the archive.'); |
|
4674 | 4674 | |
4675 | - // ----- Return |
|
4676 | - return PclZip::errorCode(); |
|
4677 | - } |
|
4675 | + // ----- Return |
|
4676 | + return PclZip::errorCode(); |
|
4677 | + } |
|
4678 | 4678 | } |
4679 | 4679 | |
4680 | 4680 | // ----- Get comment |
4681 | 4681 | if ($v_data['comment_size'] != 0) { |
4682 | - $p_central_dir['comment'] = fread($this->zip_fd, $v_data['comment_size']); |
|
4682 | + $p_central_dir['comment'] = fread($this->zip_fd, $v_data['comment_size']); |
|
4683 | 4683 | } |
4684 | 4684 | else |
4685 | - $p_central_dir['comment'] = ''; |
|
4685 | + $p_central_dir['comment'] = ''; |
|
4686 | 4686 | |
4687 | 4687 | $p_central_dir['entries'] = $v_data['entries']; |
4688 | 4688 | $p_central_dir['disk_entries'] = $v_data['disk_entries']; |
@@ -4697,33 +4697,33 @@ discard block |
||
4697 | 4697 | |
4698 | 4698 | // ----- Return |
4699 | 4699 | return $v_result; |
4700 | - } |
|
4701 | - // -------------------------------------------------------------------------------- |
|
4702 | - |
|
4703 | - // -------------------------------------------------------------------------------- |
|
4704 | - // Function : privDeleteByRule() |
|
4705 | - // Description : |
|
4706 | - // Parameters : |
|
4707 | - // Return Values : |
|
4708 | - // -------------------------------------------------------------------------------- |
|
4709 | - function privDeleteByRule(&$p_result_list, &$p_options) |
|
4710 | - { |
|
4700 | + } |
|
4701 | + // -------------------------------------------------------------------------------- |
|
4702 | + |
|
4703 | + // -------------------------------------------------------------------------------- |
|
4704 | + // Function : privDeleteByRule() |
|
4705 | + // Description : |
|
4706 | + // Parameters : |
|
4707 | + // Return Values : |
|
4708 | + // -------------------------------------------------------------------------------- |
|
4709 | + function privDeleteByRule(&$p_result_list, &$p_options) |
|
4710 | + { |
|
4711 | 4711 | $v_result=1; |
4712 | 4712 | $v_list_detail = array(); |
4713 | 4713 | |
4714 | 4714 | // ----- Open the zip file |
4715 | 4715 | if (($v_result=$this->privOpenFd('rb')) != 1) |
4716 | 4716 | { |
4717 | - // ----- Return |
|
4718 | - return $v_result; |
|
4717 | + // ----- Return |
|
4718 | + return $v_result; |
|
4719 | 4719 | } |
4720 | 4720 | |
4721 | 4721 | // ----- Read the central directory informations |
4722 | 4722 | $v_central_dir = array(); |
4723 | 4723 | if (($v_result = $this->privReadEndCentralDir($v_central_dir)) != 1) |
4724 | 4724 | { |
4725 | - $this->privCloseFd(); |
|
4726 | - return $v_result; |
|
4725 | + $this->privCloseFd(); |
|
4726 | + return $v_result; |
|
4727 | 4727 | } |
4728 | 4728 | |
4729 | 4729 | // ----- Go to beginning of File |
@@ -4735,14 +4735,14 @@ discard block |
||
4735 | 4735 | @rewind($this->zip_fd); |
4736 | 4736 | if (@fseek($this->zip_fd, $v_pos_entry)) |
4737 | 4737 | { |
4738 | - // ----- Close the zip file |
|
4739 | - $this->privCloseFd(); |
|
4738 | + // ----- Close the zip file |
|
4739 | + $this->privCloseFd(); |
|
4740 | 4740 | |
4741 | - // ----- Error log |
|
4742 | - PclZip::privErrorLog(PCLZIP_ERR_INVALID_ARCHIVE_ZIP, 'Invalid archive size'); |
|
4741 | + // ----- Error log |
|
4742 | + PclZip::privErrorLog(PCLZIP_ERR_INVALID_ARCHIVE_ZIP, 'Invalid archive size'); |
|
4743 | 4743 | |
4744 | - // ----- Return |
|
4745 | - return PclZip::errorCode(); |
|
4744 | + // ----- Return |
|
4745 | + return PclZip::errorCode(); |
|
4746 | 4746 | } |
4747 | 4747 | |
4748 | 4748 | // ----- Read each entry |
@@ -4751,53 +4751,53 @@ discard block |
||
4751 | 4751 | for ($i=0, $v_nb_extracted=0; $i<$v_central_dir['entries']; $i++) |
4752 | 4752 | { |
4753 | 4753 | |
4754 | - // ----- Read the file header |
|
4755 | - $v_header_list[$v_nb_extracted] = array(); |
|
4756 | - if (($v_result = $this->privReadCentralFileHeader($v_header_list[$v_nb_extracted])) != 1) |
|
4757 | - { |
|
4754 | + // ----- Read the file header |
|
4755 | + $v_header_list[$v_nb_extracted] = array(); |
|
4756 | + if (($v_result = $this->privReadCentralFileHeader($v_header_list[$v_nb_extracted])) != 1) |
|
4757 | + { |
|
4758 | 4758 | // ----- Close the zip file |
4759 | 4759 | $this->privCloseFd(); |
4760 | 4760 | |
4761 | 4761 | return $v_result; |
4762 | - } |
|
4762 | + } |
|
4763 | 4763 | |
4764 | 4764 | |
4765 | - // ----- Store the index |
|
4766 | - $v_header_list[$v_nb_extracted]['index'] = $i; |
|
4765 | + // ----- Store the index |
|
4766 | + $v_header_list[$v_nb_extracted]['index'] = $i; |
|
4767 | 4767 | |
4768 | - // ----- Look for the specific extract rules |
|
4769 | - $v_found = false; |
|
4768 | + // ----- Look for the specific extract rules |
|
4769 | + $v_found = false; |
|
4770 | 4770 | |
4771 | - // ----- Look for extract by name rule |
|
4772 | - if ( (isset($p_options[PCLZIP_OPT_BY_NAME])) |
|
4771 | + // ----- Look for extract by name rule |
|
4772 | + if ( (isset($p_options[PCLZIP_OPT_BY_NAME])) |
|
4773 | 4773 | && ($p_options[PCLZIP_OPT_BY_NAME] != 0)) { |
4774 | 4774 | |
4775 | - // ----- Look if the filename is in the list |
|
4776 | - for ($j=0; ($j<sizeof($p_options[PCLZIP_OPT_BY_NAME])) && (!$v_found); $j++) { |
|
4775 | + // ----- Look if the filename is in the list |
|
4776 | + for ($j=0; ($j<sizeof($p_options[PCLZIP_OPT_BY_NAME])) && (!$v_found); $j++) { |
|
4777 | 4777 | |
4778 | - // ----- Look for a directory |
|
4779 | - if (substr($p_options[PCLZIP_OPT_BY_NAME][$j], -1) == "/") { |
|
4778 | + // ----- Look for a directory |
|
4779 | + if (substr($p_options[PCLZIP_OPT_BY_NAME][$j], -1) == "/") { |
|
4780 | 4780 | |
4781 | - // ----- Look if the directory is in the filename path |
|
4782 | - if ( (strlen($v_header_list[$v_nb_extracted]['stored_filename']) > strlen($p_options[PCLZIP_OPT_BY_NAME][$j])) |
|
4781 | + // ----- Look if the directory is in the filename path |
|
4782 | + if ( (strlen($v_header_list[$v_nb_extracted]['stored_filename']) > strlen($p_options[PCLZIP_OPT_BY_NAME][$j])) |
|
4783 | 4783 | && (substr($v_header_list[$v_nb_extracted]['stored_filename'], 0, strlen($p_options[PCLZIP_OPT_BY_NAME][$j])) == $p_options[PCLZIP_OPT_BY_NAME][$j])) { |
4784 | - $v_found = true; |
|
4785 | - } |
|
4786 | - elseif ( (($v_header_list[$v_nb_extracted]['external']&0x00000010)==0x00000010) /* Indicates a folder */ |
|
4784 | + $v_found = true; |
|
4785 | + } |
|
4786 | + elseif ( (($v_header_list[$v_nb_extracted]['external']&0x00000010)==0x00000010) /* Indicates a folder */ |
|
4787 | 4787 | && ($v_header_list[$v_nb_extracted]['stored_filename'].'/' == $p_options[PCLZIP_OPT_BY_NAME][$j])) { |
4788 | - $v_found = true; |
|
4789 | - } |
|
4790 | - } |
|
4791 | - // ----- Look for a filename |
|
4792 | - elseif ($v_header_list[$v_nb_extracted]['stored_filename'] == $p_options[PCLZIP_OPT_BY_NAME][$j]) { |
|
4793 | - $v_found = true; |
|
4794 | - } |
|
4795 | - } |
|
4796 | - } |
|
4788 | + $v_found = true; |
|
4789 | + } |
|
4790 | + } |
|
4791 | + // ----- Look for a filename |
|
4792 | + elseif ($v_header_list[$v_nb_extracted]['stored_filename'] == $p_options[PCLZIP_OPT_BY_NAME][$j]) { |
|
4793 | + $v_found = true; |
|
4794 | + } |
|
4795 | + } |
|
4796 | + } |
|
4797 | 4797 | |
4798 | - // ----- Look for extract by ereg rule |
|
4799 | - // ereg() is deprecated with PHP 5.3 |
|
4800 | - /* |
|
4798 | + // ----- Look for extract by ereg rule |
|
4799 | + // ereg() is deprecated with PHP 5.3 |
|
4800 | + /* |
|
4801 | 4801 | else if ( (isset($p_options[PCLZIP_OPT_BY_EREG])) |
4802 | 4802 | && ($p_options[PCLZIP_OPT_BY_EREG] != "")) { |
4803 | 4803 | |
@@ -4807,47 +4807,47 @@ discard block |
||
4807 | 4807 | } |
4808 | 4808 | */ |
4809 | 4809 | |
4810 | - // ----- Look for extract by preg rule |
|
4811 | - else if ( (isset($p_options[PCLZIP_OPT_BY_PREG])) |
|
4810 | + // ----- Look for extract by preg rule |
|
4811 | + else if ( (isset($p_options[PCLZIP_OPT_BY_PREG])) |
|
4812 | 4812 | && ($p_options[PCLZIP_OPT_BY_PREG] != "")) { |
4813 | 4813 | |
4814 | - if (preg_match($p_options[PCLZIP_OPT_BY_PREG], $v_header_list[$v_nb_extracted]['stored_filename'])) { |
|
4815 | - $v_found = true; |
|
4816 | - } |
|
4817 | - } |
|
4814 | + if (preg_match($p_options[PCLZIP_OPT_BY_PREG], $v_header_list[$v_nb_extracted]['stored_filename'])) { |
|
4815 | + $v_found = true; |
|
4816 | + } |
|
4817 | + } |
|
4818 | 4818 | |
4819 | - // ----- Look for extract by index rule |
|
4820 | - else if ( (isset($p_options[PCLZIP_OPT_BY_INDEX])) |
|
4819 | + // ----- Look for extract by index rule |
|
4820 | + else if ( (isset($p_options[PCLZIP_OPT_BY_INDEX])) |
|
4821 | 4821 | && ($p_options[PCLZIP_OPT_BY_INDEX] != 0)) { |
4822 | 4822 | |
4823 | - // ----- Look if the index is in the list |
|
4824 | - for ($j=$j_start; ($j<sizeof($p_options[PCLZIP_OPT_BY_INDEX])) && (!$v_found); $j++) { |
|
4823 | + // ----- Look if the index is in the list |
|
4824 | + for ($j=$j_start; ($j<sizeof($p_options[PCLZIP_OPT_BY_INDEX])) && (!$v_found); $j++) { |
|
4825 | 4825 | |
4826 | - if (($i>=$p_options[PCLZIP_OPT_BY_INDEX][$j]['start']) && ($i<=$p_options[PCLZIP_OPT_BY_INDEX][$j]['end'])) { |
|
4827 | - $v_found = true; |
|
4828 | - } |
|
4829 | - if ($i>=$p_options[PCLZIP_OPT_BY_INDEX][$j]['end']) { |
|
4830 | - $j_start = $j+1; |
|
4831 | - } |
|
4826 | + if (($i>=$p_options[PCLZIP_OPT_BY_INDEX][$j]['start']) && ($i<=$p_options[PCLZIP_OPT_BY_INDEX][$j]['end'])) { |
|
4827 | + $v_found = true; |
|
4828 | + } |
|
4829 | + if ($i>=$p_options[PCLZIP_OPT_BY_INDEX][$j]['end']) { |
|
4830 | + $j_start = $j+1; |
|
4831 | + } |
|
4832 | 4832 | |
4833 | - if ($p_options[PCLZIP_OPT_BY_INDEX][$j]['start']>$i) { |
|
4834 | - break; |
|
4835 | - } |
|
4836 | - } |
|
4837 | - } |
|
4838 | - else { |
|
4839 | - $v_found = true; |
|
4840 | - } |
|
4833 | + if ($p_options[PCLZIP_OPT_BY_INDEX][$j]['start']>$i) { |
|
4834 | + break; |
|
4835 | + } |
|
4836 | + } |
|
4837 | + } |
|
4838 | + else { |
|
4839 | + $v_found = true; |
|
4840 | + } |
|
4841 | 4841 | |
4842 | - // ----- Look for deletion |
|
4843 | - if ($v_found) |
|
4844 | - { |
|
4842 | + // ----- Look for deletion |
|
4843 | + if ($v_found) |
|
4844 | + { |
|
4845 | 4845 | unset($v_header_list[$v_nb_extracted]); |
4846 | - } |
|
4847 | - else |
|
4848 | - { |
|
4846 | + } |
|
4847 | + else |
|
4848 | + { |
|
4849 | 4849 | $v_nb_extracted++; |
4850 | - } |
|
4850 | + } |
|
4851 | 4851 | } |
4852 | 4852 | |
4853 | 4853 | // ----- Look if something need to be deleted |
@@ -4899,7 +4899,7 @@ discard block |
||
4899 | 4899 | |
4900 | 4900 | // ----- Check that local file header is same as central file header |
4901 | 4901 | if ($this->privCheckFileHeaders($v_local_header, |
4902 | - $v_header_list[$i]) != 1) { |
|
4902 | + $v_header_list[$i]) != 1) { |
|
4903 | 4903 | // TBC |
4904 | 4904 | } |
4905 | 4905 | unset($v_local_header); |
@@ -4950,7 +4950,7 @@ discard block |
||
4950 | 4950 | // ----- Zip file comment |
4951 | 4951 | $v_comment = ''; |
4952 | 4952 | if (isset($p_options[PCLZIP_OPT_COMMENT])) { |
4953 | - $v_comment = $p_options[PCLZIP_OPT_COMMENT]; |
|
4953 | + $v_comment = $p_options[PCLZIP_OPT_COMMENT]; |
|
4954 | 4954 | } |
4955 | 4955 | |
4956 | 4956 | // ----- Calculate the size of the central header |
@@ -4990,11 +4990,11 @@ discard block |
||
4990 | 4990 | $this->privCloseFd(); |
4991 | 4991 | |
4992 | 4992 | if (($v_result = $this->privOpenFd('wb')) != 1) { |
4993 | - return $v_result; |
|
4993 | + return $v_result; |
|
4994 | 4994 | } |
4995 | 4995 | |
4996 | 4996 | if (($v_result = $this->privWriteCentralHeader(0, 0, 0, '')) != 1) { |
4997 | - return $v_result; |
|
4997 | + return $v_result; |
|
4998 | 4998 | } |
4999 | 4999 | |
5000 | 5000 | $this->privCloseFd(); |
@@ -5002,35 +5002,35 @@ discard block |
||
5002 | 5002 | |
5003 | 5003 | // ----- Return |
5004 | 5004 | return $v_result; |
5005 | - } |
|
5006 | - // -------------------------------------------------------------------------------- |
|
5007 | - |
|
5008 | - // -------------------------------------------------------------------------------- |
|
5009 | - // Function : privDirCheck() |
|
5010 | - // Description : |
|
5011 | - // Check if a directory exists, if not it creates it and all the parents directory |
|
5012 | - // which may be useful. |
|
5013 | - // Parameters : |
|
5014 | - // $p_dir : Directory path to check. |
|
5015 | - // Return Values : |
|
5016 | - // 1 : OK |
|
5017 | - // -1 : Unable to create directory |
|
5018 | - // -------------------------------------------------------------------------------- |
|
5019 | - function privDirCheck($p_dir, $p_is_dir=false) |
|
5020 | - { |
|
5005 | + } |
|
5006 | + // -------------------------------------------------------------------------------- |
|
5007 | + |
|
5008 | + // -------------------------------------------------------------------------------- |
|
5009 | + // Function : privDirCheck() |
|
5010 | + // Description : |
|
5011 | + // Check if a directory exists, if not it creates it and all the parents directory |
|
5012 | + // which may be useful. |
|
5013 | + // Parameters : |
|
5014 | + // $p_dir : Directory path to check. |
|
5015 | + // Return Values : |
|
5016 | + // 1 : OK |
|
5017 | + // -1 : Unable to create directory |
|
5018 | + // -------------------------------------------------------------------------------- |
|
5019 | + function privDirCheck($p_dir, $p_is_dir=false) |
|
5020 | + { |
|
5021 | 5021 | $v_result = 1; |
5022 | 5022 | |
5023 | 5023 | |
5024 | 5024 | // ----- Remove the final '/' |
5025 | 5025 | if (($p_is_dir) && (substr($p_dir, -1)=='/')) |
5026 | 5026 | { |
5027 | - $p_dir = substr($p_dir, 0, strlen($p_dir)-1); |
|
5027 | + $p_dir = substr($p_dir, 0, strlen($p_dir)-1); |
|
5028 | 5028 | } |
5029 | 5029 | |
5030 | 5030 | // ----- Check the directory availability |
5031 | 5031 | if ((is_dir($p_dir)) || ($p_dir == "")) |
5032 | 5032 | { |
5033 | - return 1; |
|
5033 | + return 1; |
|
5034 | 5034 | } |
5035 | 5035 | |
5036 | 5036 | // ----- Extract parent directory |
@@ -5039,77 +5039,77 @@ discard block |
||
5039 | 5039 | // ----- Just a check |
5040 | 5040 | if ($p_parent_dir != $p_dir) |
5041 | 5041 | { |
5042 | - // ----- Look for parent directory |
|
5043 | - if ($p_parent_dir != "") |
|
5044 | - { |
|
5042 | + // ----- Look for parent directory |
|
5043 | + if ($p_parent_dir != "") |
|
5044 | + { |
|
5045 | 5045 | if (($v_result = $this->privDirCheck($p_parent_dir)) != 1) |
5046 | 5046 | { |
5047 | - return $v_result; |
|
5047 | + return $v_result; |
|
5048 | + } |
|
5048 | 5049 | } |
5049 | - } |
|
5050 | 5050 | } |
5051 | 5051 | |
5052 | 5052 | // ----- Create the directory |
5053 | 5053 | if (!@mkdir($p_dir, 0777)) |
5054 | 5054 | { |
5055 | - // ----- Error log |
|
5056 | - PclZip::privErrorLog(PCLZIP_ERR_DIR_CREATE_FAIL, "Unable to create directory '$p_dir'"); |
|
5055 | + // ----- Error log |
|
5056 | + PclZip::privErrorLog(PCLZIP_ERR_DIR_CREATE_FAIL, "Unable to create directory '$p_dir'"); |
|
5057 | 5057 | |
5058 | - // ----- Return |
|
5059 | - return PclZip::errorCode(); |
|
5058 | + // ----- Return |
|
5059 | + return PclZip::errorCode(); |
|
5060 | 5060 | } |
5061 | 5061 | |
5062 | 5062 | // ----- Return |
5063 | 5063 | return $v_result; |
5064 | - } |
|
5065 | - // -------------------------------------------------------------------------------- |
|
5066 | - |
|
5067 | - // -------------------------------------------------------------------------------- |
|
5068 | - // Function : privMerge() |
|
5069 | - // Description : |
|
5070 | - // If $p_archive_to_add does not exist, the function exit with a success result. |
|
5071 | - // Parameters : |
|
5072 | - // Return Values : |
|
5073 | - // -------------------------------------------------------------------------------- |
|
5074 | - function privMerge(&$p_archive_to_add) |
|
5075 | - { |
|
5064 | + } |
|
5065 | + // -------------------------------------------------------------------------------- |
|
5066 | + |
|
5067 | + // -------------------------------------------------------------------------------- |
|
5068 | + // Function : privMerge() |
|
5069 | + // Description : |
|
5070 | + // If $p_archive_to_add does not exist, the function exit with a success result. |
|
5071 | + // Parameters : |
|
5072 | + // Return Values : |
|
5073 | + // -------------------------------------------------------------------------------- |
|
5074 | + function privMerge(&$p_archive_to_add) |
|
5075 | + { |
|
5076 | 5076 | $v_result=1; |
5077 | 5077 | |
5078 | 5078 | // ----- Look if the archive_to_add exists |
5079 | 5079 | if (!is_file($p_archive_to_add->zipname)) |
5080 | 5080 | { |
5081 | 5081 | |
5082 | - // ----- Nothing to merge, so merge is a success |
|
5083 | - $v_result = 1; |
|
5082 | + // ----- Nothing to merge, so merge is a success |
|
5083 | + $v_result = 1; |
|
5084 | 5084 | |
5085 | - // ----- Return |
|
5086 | - return $v_result; |
|
5085 | + // ----- Return |
|
5086 | + return $v_result; |
|
5087 | 5087 | } |
5088 | 5088 | |
5089 | 5089 | // ----- Look if the archive exists |
5090 | 5090 | if (!is_file($this->zipname)) |
5091 | 5091 | { |
5092 | 5092 | |
5093 | - // ----- Do a duplicate |
|
5094 | - $v_result = $this->privDuplicate($p_archive_to_add->zipname); |
|
5093 | + // ----- Do a duplicate |
|
5094 | + $v_result = $this->privDuplicate($p_archive_to_add->zipname); |
|
5095 | 5095 | |
5096 | - // ----- Return |
|
5097 | - return $v_result; |
|
5096 | + // ----- Return |
|
5097 | + return $v_result; |
|
5098 | 5098 | } |
5099 | 5099 | |
5100 | 5100 | // ----- Open the zip file |
5101 | 5101 | if (($v_result=$this->privOpenFd('rb')) != 1) |
5102 | 5102 | { |
5103 | - // ----- Return |
|
5104 | - return $v_result; |
|
5103 | + // ----- Return |
|
5104 | + return $v_result; |
|
5105 | 5105 | } |
5106 | 5106 | |
5107 | 5107 | // ----- Read the central directory informations |
5108 | 5108 | $v_central_dir = array(); |
5109 | 5109 | if (($v_result = $this->privReadEndCentralDir($v_central_dir)) != 1) |
5110 | 5110 | { |
5111 | - $this->privCloseFd(); |
|
5112 | - return $v_result; |
|
5111 | + $this->privCloseFd(); |
|
5112 | + return $v_result; |
|
5113 | 5113 | } |
5114 | 5114 | |
5115 | 5115 | // ----- Go to beginning of File |
@@ -5118,20 +5118,20 @@ discard block |
||
5118 | 5118 | // ----- Open the archive_to_add file |
5119 | 5119 | if (($v_result=$p_archive_to_add->privOpenFd('rb')) != 1) |
5120 | 5120 | { |
5121 | - $this->privCloseFd(); |
|
5121 | + $this->privCloseFd(); |
|
5122 | 5122 | |
5123 | - // ----- Return |
|
5124 | - return $v_result; |
|
5123 | + // ----- Return |
|
5124 | + return $v_result; |
|
5125 | 5125 | } |
5126 | 5126 | |
5127 | 5127 | // ----- Read the central directory informations |
5128 | 5128 | $v_central_dir_to_add = array(); |
5129 | 5129 | if (($v_result = $p_archive_to_add->privReadEndCentralDir($v_central_dir_to_add)) != 1) |
5130 | 5130 | { |
5131 | - $this->privCloseFd(); |
|
5132 | - $p_archive_to_add->privCloseFd(); |
|
5131 | + $this->privCloseFd(); |
|
5132 | + $p_archive_to_add->privCloseFd(); |
|
5133 | 5133 | |
5134 | - return $v_result; |
|
5134 | + return $v_result; |
|
5135 | 5135 | } |
5136 | 5136 | |
5137 | 5137 | // ----- Go to beginning of File |
@@ -5143,13 +5143,13 @@ discard block |
||
5143 | 5143 | // ----- Open the temporary file in write mode |
5144 | 5144 | if (($v_zip_temp_fd = @fopen($v_zip_temp_name, 'wb')) == 0) |
5145 | 5145 | { |
5146 | - $this->privCloseFd(); |
|
5147 | - $p_archive_to_add->privCloseFd(); |
|
5146 | + $this->privCloseFd(); |
|
5147 | + $p_archive_to_add->privCloseFd(); |
|
5148 | 5148 | |
5149 | - PclZip::privErrorLog(PCLZIP_ERR_READ_OPEN_FAIL, 'Unable to open temporary file \''.$v_zip_temp_name.'\' in binary write mode'); |
|
5149 | + PclZip::privErrorLog(PCLZIP_ERR_READ_OPEN_FAIL, 'Unable to open temporary file \''.$v_zip_temp_name.'\' in binary write mode'); |
|
5150 | 5150 | |
5151 | - // ----- Return |
|
5152 | - return PclZip::errorCode(); |
|
5151 | + // ----- Return |
|
5152 | + return PclZip::errorCode(); |
|
5153 | 5153 | } |
5154 | 5154 | |
5155 | 5155 | // ----- Copy the files from the archive to the temporary file |
@@ -5157,20 +5157,20 @@ discard block |
||
5157 | 5157 | $v_size = $v_central_dir['offset']; |
5158 | 5158 | while ($v_size != 0) |
5159 | 5159 | { |
5160 | - $v_read_size = ($v_size < PCLZIP_READ_BLOCK_SIZE ? $v_size : PCLZIP_READ_BLOCK_SIZE); |
|
5161 | - $v_buffer = fread($this->zip_fd, $v_read_size); |
|
5162 | - @fwrite($v_zip_temp_fd, $v_buffer, $v_read_size); |
|
5163 | - $v_size -= $v_read_size; |
|
5160 | + $v_read_size = ($v_size < PCLZIP_READ_BLOCK_SIZE ? $v_size : PCLZIP_READ_BLOCK_SIZE); |
|
5161 | + $v_buffer = fread($this->zip_fd, $v_read_size); |
|
5162 | + @fwrite($v_zip_temp_fd, $v_buffer, $v_read_size); |
|
5163 | + $v_size -= $v_read_size; |
|
5164 | 5164 | } |
5165 | 5165 | |
5166 | 5166 | // ----- Copy the files from the archive_to_add into the temporary file |
5167 | 5167 | $v_size = $v_central_dir_to_add['offset']; |
5168 | 5168 | while ($v_size != 0) |
5169 | 5169 | { |
5170 | - $v_read_size = ($v_size < PCLZIP_READ_BLOCK_SIZE ? $v_size : PCLZIP_READ_BLOCK_SIZE); |
|
5171 | - $v_buffer = fread($p_archive_to_add->zip_fd, $v_read_size); |
|
5172 | - @fwrite($v_zip_temp_fd, $v_buffer, $v_read_size); |
|
5173 | - $v_size -= $v_read_size; |
|
5170 | + $v_read_size = ($v_size < PCLZIP_READ_BLOCK_SIZE ? $v_size : PCLZIP_READ_BLOCK_SIZE); |
|
5171 | + $v_buffer = fread($p_archive_to_add->zip_fd, $v_read_size); |
|
5172 | + @fwrite($v_zip_temp_fd, $v_buffer, $v_read_size); |
|
5173 | + $v_size -= $v_read_size; |
|
5174 | 5174 | } |
5175 | 5175 | |
5176 | 5176 | // ----- Store the offset of the central dir |
@@ -5180,20 +5180,20 @@ discard block |
||
5180 | 5180 | $v_size = $v_central_dir['size']; |
5181 | 5181 | while ($v_size != 0) |
5182 | 5182 | { |
5183 | - $v_read_size = ($v_size < PCLZIP_READ_BLOCK_SIZE ? $v_size : PCLZIP_READ_BLOCK_SIZE); |
|
5184 | - $v_buffer = @fread($this->zip_fd, $v_read_size); |
|
5185 | - @fwrite($v_zip_temp_fd, $v_buffer, $v_read_size); |
|
5186 | - $v_size -= $v_read_size; |
|
5183 | + $v_read_size = ($v_size < PCLZIP_READ_BLOCK_SIZE ? $v_size : PCLZIP_READ_BLOCK_SIZE); |
|
5184 | + $v_buffer = @fread($this->zip_fd, $v_read_size); |
|
5185 | + @fwrite($v_zip_temp_fd, $v_buffer, $v_read_size); |
|
5186 | + $v_size -= $v_read_size; |
|
5187 | 5187 | } |
5188 | 5188 | |
5189 | 5189 | // ----- Copy the block of file headers from the archive_to_add |
5190 | 5190 | $v_size = $v_central_dir_to_add['size']; |
5191 | 5191 | while ($v_size != 0) |
5192 | 5192 | { |
5193 | - $v_read_size = ($v_size < PCLZIP_READ_BLOCK_SIZE ? $v_size : PCLZIP_READ_BLOCK_SIZE); |
|
5194 | - $v_buffer = @fread($p_archive_to_add->zip_fd, $v_read_size); |
|
5195 | - @fwrite($v_zip_temp_fd, $v_buffer, $v_read_size); |
|
5196 | - $v_size -= $v_read_size; |
|
5193 | + $v_read_size = ($v_size < PCLZIP_READ_BLOCK_SIZE ? $v_size : PCLZIP_READ_BLOCK_SIZE); |
|
5194 | + $v_buffer = @fread($p_archive_to_add->zip_fd, $v_read_size); |
|
5195 | + @fwrite($v_zip_temp_fd, $v_buffer, $v_read_size); |
|
5196 | + $v_size -= $v_read_size; |
|
5197 | 5197 | } |
5198 | 5198 | |
5199 | 5199 | // ----- Merge the file comments |
@@ -5212,16 +5212,16 @@ discard block |
||
5212 | 5212 | // ----- Create the central dir footer |
5213 | 5213 | if (($v_result = $this->privWriteCentralHeader($v_central_dir['entries']+$v_central_dir_to_add['entries'], $v_size, $v_offset, $v_comment)) != 1) |
5214 | 5214 | { |
5215 | - $this->privCloseFd(); |
|
5216 | - $p_archive_to_add->privCloseFd(); |
|
5217 | - @fclose($v_zip_temp_fd); |
|
5218 | - $this->zip_fd = null; |
|
5215 | + $this->privCloseFd(); |
|
5216 | + $p_archive_to_add->privCloseFd(); |
|
5217 | + @fclose($v_zip_temp_fd); |
|
5218 | + $this->zip_fd = null; |
|
5219 | 5219 | |
5220 | - // ----- Reset the file list |
|
5221 | - unset($v_header_list); |
|
5220 | + // ----- Reset the file list |
|
5221 | + unset($v_header_list); |
|
5222 | 5222 | |
5223 | - // ----- Return |
|
5224 | - return $v_result; |
|
5223 | + // ----- Return |
|
5224 | + return $v_result; |
|
5225 | 5225 | } |
5226 | 5226 | |
5227 | 5227 | // ----- Swap back the file descriptor |
@@ -5247,46 +5247,46 @@ discard block |
||
5247 | 5247 | |
5248 | 5248 | // ----- Return |
5249 | 5249 | return $v_result; |
5250 | - } |
|
5251 | - // -------------------------------------------------------------------------------- |
|
5252 | - |
|
5253 | - // -------------------------------------------------------------------------------- |
|
5254 | - // Function : privDuplicate() |
|
5255 | - // Description : |
|
5256 | - // Parameters : |
|
5257 | - // Return Values : |
|
5258 | - // -------------------------------------------------------------------------------- |
|
5259 | - function privDuplicate($p_archive_filename) |
|
5260 | - { |
|
5250 | + } |
|
5251 | + // -------------------------------------------------------------------------------- |
|
5252 | + |
|
5253 | + // -------------------------------------------------------------------------------- |
|
5254 | + // Function : privDuplicate() |
|
5255 | + // Description : |
|
5256 | + // Parameters : |
|
5257 | + // Return Values : |
|
5258 | + // -------------------------------------------------------------------------------- |
|
5259 | + function privDuplicate($p_archive_filename) |
|
5260 | + { |
|
5261 | 5261 | $v_result=1; |
5262 | 5262 | |
5263 | 5263 | // ----- Look if the $p_archive_filename exists |
5264 | 5264 | if (!is_file($p_archive_filename)) |
5265 | 5265 | { |
5266 | 5266 | |
5267 | - // ----- Nothing to duplicate, so duplicate is a success. |
|
5268 | - $v_result = 1; |
|
5267 | + // ----- Nothing to duplicate, so duplicate is a success. |
|
5268 | + $v_result = 1; |
|
5269 | 5269 | |
5270 | - // ----- Return |
|
5271 | - return $v_result; |
|
5270 | + // ----- Return |
|
5271 | + return $v_result; |
|
5272 | 5272 | } |
5273 | 5273 | |
5274 | 5274 | // ----- Open the zip file |
5275 | 5275 | if (($v_result=$this->privOpenFd('wb')) != 1) |
5276 | 5276 | { |
5277 | - // ----- Return |
|
5278 | - return $v_result; |
|
5277 | + // ----- Return |
|
5278 | + return $v_result; |
|
5279 | 5279 | } |
5280 | 5280 | |
5281 | 5281 | // ----- Open the temporary file in write mode |
5282 | 5282 | if (($v_zip_temp_fd = @fopen($p_archive_filename, 'rb')) == 0) |
5283 | 5283 | { |
5284 | - $this->privCloseFd(); |
|
5284 | + $this->privCloseFd(); |
|
5285 | 5285 | |
5286 | - PclZip::privErrorLog(PCLZIP_ERR_READ_OPEN_FAIL, 'Unable to open archive file \''.$p_archive_filename.'\' in binary write mode'); |
|
5286 | + PclZip::privErrorLog(PCLZIP_ERR_READ_OPEN_FAIL, 'Unable to open archive file \''.$p_archive_filename.'\' in binary write mode'); |
|
5287 | 5287 | |
5288 | - // ----- Return |
|
5289 | - return PclZip::errorCode(); |
|
5288 | + // ----- Return |
|
5289 | + return PclZip::errorCode(); |
|
5290 | 5290 | } |
5291 | 5291 | |
5292 | 5292 | // ----- Copy the files from the archive to the temporary file |
@@ -5294,10 +5294,10 @@ discard block |
||
5294 | 5294 | $v_size = filesize($p_archive_filename); |
5295 | 5295 | while ($v_size != 0) |
5296 | 5296 | { |
5297 | - $v_read_size = ($v_size < PCLZIP_READ_BLOCK_SIZE ? $v_size : PCLZIP_READ_BLOCK_SIZE); |
|
5298 | - $v_buffer = fread($v_zip_temp_fd, $v_read_size); |
|
5299 | - @fwrite($this->zip_fd, $v_buffer, $v_read_size); |
|
5300 | - $v_size -= $v_read_size; |
|
5297 | + $v_read_size = ($v_size < PCLZIP_READ_BLOCK_SIZE ? $v_size : PCLZIP_READ_BLOCK_SIZE); |
|
5298 | + $v_buffer = fread($v_zip_temp_fd, $v_read_size); |
|
5299 | + @fwrite($this->zip_fd, $v_buffer, $v_read_size); |
|
5300 | + $v_size -= $v_read_size; |
|
5301 | 5301 | } |
5302 | 5302 | |
5303 | 5303 | // ----- Close |
@@ -5308,211 +5308,211 @@ discard block |
||
5308 | 5308 | |
5309 | 5309 | // ----- Return |
5310 | 5310 | return $v_result; |
5311 | - } |
|
5312 | - // -------------------------------------------------------------------------------- |
|
5313 | - |
|
5314 | - // -------------------------------------------------------------------------------- |
|
5315 | - // Function : privErrorLog() |
|
5316 | - // Description : |
|
5317 | - // Parameters : |
|
5318 | - // -------------------------------------------------------------------------------- |
|
5319 | - function privErrorLog($p_error_code=0, $p_error_string='') |
|
5320 | - { |
|
5311 | + } |
|
5312 | + // -------------------------------------------------------------------------------- |
|
5313 | + |
|
5314 | + // -------------------------------------------------------------------------------- |
|
5315 | + // Function : privErrorLog() |
|
5316 | + // Description : |
|
5317 | + // Parameters : |
|
5318 | + // -------------------------------------------------------------------------------- |
|
5319 | + function privErrorLog($p_error_code=0, $p_error_string='') |
|
5320 | + { |
|
5321 | 5321 | if (PCLZIP_ERROR_EXTERNAL == 1) { |
5322 | - PclError($p_error_code, $p_error_string); |
|
5322 | + PclError($p_error_code, $p_error_string); |
|
5323 | 5323 | } |
5324 | 5324 | else { |
5325 | - $this->error_code = $p_error_code; |
|
5326 | - $this->error_string = $p_error_string; |
|
5327 | - } |
|
5328 | - } |
|
5329 | - // -------------------------------------------------------------------------------- |
|
5330 | - |
|
5331 | - // -------------------------------------------------------------------------------- |
|
5332 | - // Function : privErrorReset() |
|
5333 | - // Description : |
|
5334 | - // Parameters : |
|
5335 | - // -------------------------------------------------------------------------------- |
|
5336 | - function privErrorReset() |
|
5337 | - { |
|
5325 | + $this->error_code = $p_error_code; |
|
5326 | + $this->error_string = $p_error_string; |
|
5327 | + } |
|
5328 | + } |
|
5329 | + // -------------------------------------------------------------------------------- |
|
5330 | + |
|
5331 | + // -------------------------------------------------------------------------------- |
|
5332 | + // Function : privErrorReset() |
|
5333 | + // Description : |
|
5334 | + // Parameters : |
|
5335 | + // -------------------------------------------------------------------------------- |
|
5336 | + function privErrorReset() |
|
5337 | + { |
|
5338 | 5338 | if (PCLZIP_ERROR_EXTERNAL == 1) { |
5339 | - PclErrorReset(); |
|
5339 | + PclErrorReset(); |
|
5340 | 5340 | } |
5341 | 5341 | else { |
5342 | - $this->error_code = 0; |
|
5343 | - $this->error_string = ''; |
|
5344 | - } |
|
5345 | - } |
|
5346 | - // -------------------------------------------------------------------------------- |
|
5347 | - |
|
5348 | - // -------------------------------------------------------------------------------- |
|
5349 | - // Function : privDisableMagicQuotes() |
|
5350 | - // Description : |
|
5351 | - // Parameters : |
|
5352 | - // Return Values : |
|
5353 | - // -------------------------------------------------------------------------------- |
|
5354 | - function privDisableMagicQuotes() |
|
5355 | - { |
|
5342 | + $this->error_code = 0; |
|
5343 | + $this->error_string = ''; |
|
5344 | + } |
|
5345 | + } |
|
5346 | + // -------------------------------------------------------------------------------- |
|
5347 | + |
|
5348 | + // -------------------------------------------------------------------------------- |
|
5349 | + // Function : privDisableMagicQuotes() |
|
5350 | + // Description : |
|
5351 | + // Parameters : |
|
5352 | + // Return Values : |
|
5353 | + // -------------------------------------------------------------------------------- |
|
5354 | + function privDisableMagicQuotes() |
|
5355 | + { |
|
5356 | 5356 | $v_result=1; |
5357 | 5357 | |
5358 | 5358 | // ----- Look if function exists |
5359 | 5359 | if ( (!function_exists("get_magic_quotes_runtime")) |
5360 | - || (!function_exists("set_magic_quotes_runtime"))) { |
|
5361 | - return $v_result; |
|
5362 | - } |
|
5360 | + || (!function_exists("set_magic_quotes_runtime"))) { |
|
5361 | + return $v_result; |
|
5362 | + } |
|
5363 | 5363 | |
5364 | 5364 | // ----- Look if already done |
5365 | 5365 | if ($this->magic_quotes_status != -1) { |
5366 | - return $v_result; |
|
5367 | - } |
|
5366 | + return $v_result; |
|
5367 | + } |
|
5368 | 5368 | |
5369 | - // ----- Get and memorize the magic_quote value |
|
5370 | - $this->magic_quotes_status = @get_magic_quotes_runtime(); |
|
5369 | + // ----- Get and memorize the magic_quote value |
|
5370 | + $this->magic_quotes_status = @get_magic_quotes_runtime(); |
|
5371 | 5371 | |
5372 | - // ----- Disable magic_quotes |
|
5373 | - if ($this->magic_quotes_status == 1) { |
|
5374 | - @set_magic_quotes_runtime(0); |
|
5375 | - } |
|
5372 | + // ----- Disable magic_quotes |
|
5373 | + if ($this->magic_quotes_status == 1) { |
|
5374 | + @set_magic_quotes_runtime(0); |
|
5375 | + } |
|
5376 | 5376 | |
5377 | 5377 | // ----- Return |
5378 | 5378 | return $v_result; |
5379 | - } |
|
5380 | - // -------------------------------------------------------------------------------- |
|
5381 | - |
|
5382 | - // -------------------------------------------------------------------------------- |
|
5383 | - // Function : privSwapBackMagicQuotes() |
|
5384 | - // Description : |
|
5385 | - // Parameters : |
|
5386 | - // Return Values : |
|
5387 | - // -------------------------------------------------------------------------------- |
|
5388 | - function privSwapBackMagicQuotes() |
|
5389 | - { |
|
5379 | + } |
|
5380 | + // -------------------------------------------------------------------------------- |
|
5381 | + |
|
5382 | + // -------------------------------------------------------------------------------- |
|
5383 | + // Function : privSwapBackMagicQuotes() |
|
5384 | + // Description : |
|
5385 | + // Parameters : |
|
5386 | + // Return Values : |
|
5387 | + // -------------------------------------------------------------------------------- |
|
5388 | + function privSwapBackMagicQuotes() |
|
5389 | + { |
|
5390 | 5390 | $v_result=1; |
5391 | 5391 | |
5392 | 5392 | // ----- Look if function exists |
5393 | 5393 | if ( (!function_exists("get_magic_quotes_runtime")) |
5394 | - || (!function_exists("set_magic_quotes_runtime"))) { |
|
5395 | - return $v_result; |
|
5396 | - } |
|
5394 | + || (!function_exists("set_magic_quotes_runtime"))) { |
|
5395 | + return $v_result; |
|
5396 | + } |
|
5397 | 5397 | |
5398 | 5398 | // ----- Look if something to do |
5399 | 5399 | if ($this->magic_quotes_status != -1) { |
5400 | - return $v_result; |
|
5401 | - } |
|
5400 | + return $v_result; |
|
5401 | + } |
|
5402 | 5402 | |
5403 | - // ----- Swap back magic_quotes |
|
5404 | - if ($this->magic_quotes_status == 1) { |
|
5405 | - @set_magic_quotes_runtime($this->magic_quotes_status); |
|
5406 | - } |
|
5403 | + // ----- Swap back magic_quotes |
|
5404 | + if ($this->magic_quotes_status == 1) { |
|
5405 | + @set_magic_quotes_runtime($this->magic_quotes_status); |
|
5406 | + } |
|
5407 | 5407 | |
5408 | 5408 | // ----- Return |
5409 | 5409 | return $v_result; |
5410 | - } |
|
5411 | - // -------------------------------------------------------------------------------- |
|
5412 | - |
|
5413 | - } |
|
5414 | - // End of class |
|
5415 | - // -------------------------------------------------------------------------------- |
|
5416 | - |
|
5417 | - // -------------------------------------------------------------------------------- |
|
5418 | - // Function : PclZipUtilPathReduction() |
|
5419 | - // Description : |
|
5420 | - // Parameters : |
|
5421 | - // Return Values : |
|
5422 | - // -------------------------------------------------------------------------------- |
|
5423 | - function PclZipUtilPathReduction($p_dir) |
|
5424 | - { |
|
5410 | + } |
|
5411 | + // -------------------------------------------------------------------------------- |
|
5412 | + |
|
5413 | + } |
|
5414 | + // End of class |
|
5415 | + // -------------------------------------------------------------------------------- |
|
5416 | + |
|
5417 | + // -------------------------------------------------------------------------------- |
|
5418 | + // Function : PclZipUtilPathReduction() |
|
5419 | + // Description : |
|
5420 | + // Parameters : |
|
5421 | + // Return Values : |
|
5422 | + // -------------------------------------------------------------------------------- |
|
5423 | + function PclZipUtilPathReduction($p_dir) |
|
5424 | + { |
|
5425 | 5425 | $v_result = ""; |
5426 | 5426 | |
5427 | 5427 | // ----- Look for not empty path |
5428 | 5428 | if ($p_dir != "") { |
5429 | - // ----- Explode path by directory names |
|
5430 | - $v_list = explode("/", $p_dir); |
|
5429 | + // ----- Explode path by directory names |
|
5430 | + $v_list = explode("/", $p_dir); |
|
5431 | 5431 | |
5432 | - // ----- Study directories from last to first |
|
5433 | - $v_skip = 0; |
|
5434 | - for ($i=sizeof($v_list)-1; $i>=0; $i--) { |
|
5432 | + // ----- Study directories from last to first |
|
5433 | + $v_skip = 0; |
|
5434 | + for ($i=sizeof($v_list)-1; $i>=0; $i--) { |
|
5435 | 5435 | // ----- Look for current path |
5436 | 5436 | if ($v_list[$i] == ".") { |
5437 | - // ----- Ignore this directory |
|
5438 | - // Should be the first $i=0, but no check is done |
|
5437 | + // ----- Ignore this directory |
|
5438 | + // Should be the first $i=0, but no check is done |
|
5439 | 5439 | } |
5440 | 5440 | else if ($v_list[$i] == "..") { |
5441 | - $v_skip++; |
|
5441 | + $v_skip++; |
|
5442 | 5442 | } |
5443 | 5443 | else if ($v_list[$i] == "") { |
5444 | - // ----- First '/' i.e. root slash |
|
5445 | - if ($i == 0) { |
|
5444 | + // ----- First '/' i.e. root slash |
|
5445 | + if ($i == 0) { |
|
5446 | 5446 | $v_result = "/".$v_result; |
5447 | - if ($v_skip > 0) { |
|
5448 | - // ----- It is an invalid path, so the path is not modified |
|
5449 | - // TBC |
|
5450 | - $v_result = $p_dir; |
|
5447 | + if ($v_skip > 0) { |
|
5448 | + // ----- It is an invalid path, so the path is not modified |
|
5449 | + // TBC |
|
5450 | + $v_result = $p_dir; |
|
5451 | 5451 | $v_skip = 0; |
5452 | - } |
|
5453 | - } |
|
5454 | - // ----- Last '/' i.e. indicates a directory |
|
5455 | - else if ($i == (sizeof($v_list)-1)) { |
|
5452 | + } |
|
5453 | + } |
|
5454 | + // ----- Last '/' i.e. indicates a directory |
|
5455 | + else if ($i == (sizeof($v_list)-1)) { |
|
5456 | 5456 | $v_result = $v_list[$i]; |
5457 | - } |
|
5458 | - // ----- Double '/' inside the path |
|
5459 | - else { |
|
5457 | + } |
|
5458 | + // ----- Double '/' inside the path |
|
5459 | + else { |
|
5460 | 5460 | // ----- Ignore only the double '//' in path, |
5461 | 5461 | // but not the first and last '/' |
5462 | - } |
|
5462 | + } |
|
5463 | 5463 | } |
5464 | 5464 | else { |
5465 | - // ----- Look for item to skip |
|
5466 | - if ($v_skip > 0) { |
|
5467 | - $v_skip--; |
|
5468 | - } |
|
5469 | - else { |
|
5465 | + // ----- Look for item to skip |
|
5466 | + if ($v_skip > 0) { |
|
5467 | + $v_skip--; |
|
5468 | + } |
|
5469 | + else { |
|
5470 | 5470 | $v_result = $v_list[$i].($i!=(sizeof($v_list)-1)?"/".$v_result:""); |
5471 | - } |
|
5471 | + } |
|
5472 | + } |
|
5472 | 5473 | } |
5473 | - } |
|
5474 | 5474 | |
5475 | - // ----- Look for skip |
|
5476 | - if ($v_skip > 0) { |
|
5475 | + // ----- Look for skip |
|
5476 | + if ($v_skip > 0) { |
|
5477 | 5477 | while ($v_skip > 0) { |
5478 | 5478 | $v_result = '../'.$v_result; |
5479 | 5479 | $v_skip--; |
5480 | 5480 | } |
5481 | - } |
|
5481 | + } |
|
5482 | 5482 | } |
5483 | 5483 | |
5484 | 5484 | // ----- Return |
5485 | 5485 | return $v_result; |
5486 | - } |
|
5487 | - // -------------------------------------------------------------------------------- |
|
5488 | - |
|
5489 | - // -------------------------------------------------------------------------------- |
|
5490 | - // Function : PclZipUtilPathInclusion() |
|
5491 | - // Description : |
|
5492 | - // This function indicates if the path $p_path is under the $p_dir tree. Or, |
|
5493 | - // said in an other way, if the file or sub-dir $p_path is inside the dir |
|
5494 | - // $p_dir. |
|
5495 | - // The function indicates also if the path is exactly the same as the dir. |
|
5496 | - // This function supports path with duplicated '/' like '//', but does not |
|
5497 | - // support '.' or '..' statements. |
|
5498 | - // Parameters : |
|
5499 | - // Return Values : |
|
5500 | - // 0 if $p_path is not inside directory $p_dir |
|
5501 | - // 1 if $p_path is inside directory $p_dir |
|
5502 | - // 2 if $p_path is exactly the same as $p_dir |
|
5503 | - // -------------------------------------------------------------------------------- |
|
5504 | - function PclZipUtilPathInclusion($p_dir, $p_path) |
|
5505 | - { |
|
5486 | + } |
|
5487 | + // -------------------------------------------------------------------------------- |
|
5488 | + |
|
5489 | + // -------------------------------------------------------------------------------- |
|
5490 | + // Function : PclZipUtilPathInclusion() |
|
5491 | + // Description : |
|
5492 | + // This function indicates if the path $p_path is under the $p_dir tree. Or, |
|
5493 | + // said in an other way, if the file or sub-dir $p_path is inside the dir |
|
5494 | + // $p_dir. |
|
5495 | + // The function indicates also if the path is exactly the same as the dir. |
|
5496 | + // This function supports path with duplicated '/' like '//', but does not |
|
5497 | + // support '.' or '..' statements. |
|
5498 | + // Parameters : |
|
5499 | + // Return Values : |
|
5500 | + // 0 if $p_path is not inside directory $p_dir |
|
5501 | + // 1 if $p_path is inside directory $p_dir |
|
5502 | + // 2 if $p_path is exactly the same as $p_dir |
|
5503 | + // -------------------------------------------------------------------------------- |
|
5504 | + function PclZipUtilPathInclusion($p_dir, $p_path) |
|
5505 | + { |
|
5506 | 5506 | $v_result = 1; |
5507 | 5507 | |
5508 | 5508 | // ----- Look for path beginning by ./ |
5509 | 5509 | if ( ($p_dir == '.') |
5510 | 5510 | || ((strlen($p_dir) >=2) && (substr($p_dir, 0, 2) == './'))) { |
5511 | - $p_dir = PclZipUtilTranslateWinPath(getcwd(), FALSE).'/'.substr($p_dir, 1); |
|
5511 | + $p_dir = PclZipUtilTranslateWinPath(getcwd(), FALSE).'/'.substr($p_dir, 1); |
|
5512 | 5512 | } |
5513 | 5513 | if ( ($p_path == '.') |
5514 | 5514 | || ((strlen($p_path) >=2) && (substr($p_path, 0, 2) == './'))) { |
5515 | - $p_path = PclZipUtilTranslateWinPath(getcwd(), FALSE).'/'.substr($p_path, 1); |
|
5515 | + $p_path = PclZipUtilTranslateWinPath(getcwd(), FALSE).'/'.substr($p_path, 1); |
|
5516 | 5516 | } |
5517 | 5517 | |
5518 | 5518 | // ----- Explode dir and path by directory separator |
@@ -5526,196 +5526,196 @@ discard block |
||
5526 | 5526 | $j = 0; |
5527 | 5527 | while (($i < $v_list_dir_size) && ($j < $v_list_path_size) && ($v_result)) { |
5528 | 5528 | |
5529 | - // ----- Look for empty dir (path reduction) |
|
5530 | - if ($v_list_dir[$i] == '') { |
|
5529 | + // ----- Look for empty dir (path reduction) |
|
5530 | + if ($v_list_dir[$i] == '') { |
|
5531 | 5531 | $i++; |
5532 | 5532 | continue; |
5533 | - } |
|
5534 | - if ($v_list_path[$j] == '') { |
|
5533 | + } |
|
5534 | + if ($v_list_path[$j] == '') { |
|
5535 | 5535 | $j++; |
5536 | 5536 | continue; |
5537 | - } |
|
5537 | + } |
|
5538 | 5538 | |
5539 | - // ----- Compare the items |
|
5540 | - if (($v_list_dir[$i] != $v_list_path[$j]) && ($v_list_dir[$i] != '') && ( $v_list_path[$j] != '')) { |
|
5539 | + // ----- Compare the items |
|
5540 | + if (($v_list_dir[$i] != $v_list_path[$j]) && ($v_list_dir[$i] != '') && ( $v_list_path[$j] != '')) { |
|
5541 | 5541 | $v_result = 0; |
5542 | - } |
|
5542 | + } |
|
5543 | 5543 | |
5544 | - // ----- Next items |
|
5545 | - $i++; |
|
5546 | - $j++; |
|
5544 | + // ----- Next items |
|
5545 | + $i++; |
|
5546 | + $j++; |
|
5547 | 5547 | } |
5548 | 5548 | |
5549 | 5549 | // ----- Look if everything seems to be the same |
5550 | 5550 | if ($v_result) { |
5551 | - // ----- Skip all the empty items |
|
5552 | - while (($j < $v_list_path_size) && ($v_list_path[$j] == '')) $j++; |
|
5553 | - while (($i < $v_list_dir_size) && ($v_list_dir[$i] == '')) $i++; |
|
5551 | + // ----- Skip all the empty items |
|
5552 | + while (($j < $v_list_path_size) && ($v_list_path[$j] == '')) $j++; |
|
5553 | + while (($i < $v_list_dir_size) && ($v_list_dir[$i] == '')) $i++; |
|
5554 | 5554 | |
5555 | - if (($i >= $v_list_dir_size) && ($j >= $v_list_path_size)) { |
|
5555 | + if (($i >= $v_list_dir_size) && ($j >= $v_list_path_size)) { |
|
5556 | 5556 | // ----- There are exactly the same |
5557 | 5557 | $v_result = 2; |
5558 | - } |
|
5559 | - else if ($i < $v_list_dir_size) { |
|
5558 | + } |
|
5559 | + else if ($i < $v_list_dir_size) { |
|
5560 | 5560 | // ----- The path is shorter than the dir |
5561 | 5561 | $v_result = 0; |
5562 | - } |
|
5562 | + } |
|
5563 | 5563 | } |
5564 | 5564 | |
5565 | 5565 | // ----- Return |
5566 | 5566 | return $v_result; |
5567 | - } |
|
5568 | - // -------------------------------------------------------------------------------- |
|
5569 | - |
|
5570 | - // -------------------------------------------------------------------------------- |
|
5571 | - // Function : PclZipUtilCopyBlock() |
|
5572 | - // Description : |
|
5573 | - // Parameters : |
|
5574 | - // $p_mode : read/write compression mode |
|
5575 | - // 0 : src & dest normal |
|
5576 | - // 1 : src gzip, dest normal |
|
5577 | - // 2 : src normal, dest gzip |
|
5578 | - // 3 : src & dest gzip |
|
5579 | - // Return Values : |
|
5580 | - // -------------------------------------------------------------------------------- |
|
5581 | - function PclZipUtilCopyBlock($p_src, $p_dest, $p_size, $p_mode=0) |
|
5582 | - { |
|
5567 | + } |
|
5568 | + // -------------------------------------------------------------------------------- |
|
5569 | + |
|
5570 | + // -------------------------------------------------------------------------------- |
|
5571 | + // Function : PclZipUtilCopyBlock() |
|
5572 | + // Description : |
|
5573 | + // Parameters : |
|
5574 | + // $p_mode : read/write compression mode |
|
5575 | + // 0 : src & dest normal |
|
5576 | + // 1 : src gzip, dest normal |
|
5577 | + // 2 : src normal, dest gzip |
|
5578 | + // 3 : src & dest gzip |
|
5579 | + // Return Values : |
|
5580 | + // -------------------------------------------------------------------------------- |
|
5581 | + function PclZipUtilCopyBlock($p_src, $p_dest, $p_size, $p_mode=0) |
|
5582 | + { |
|
5583 | 5583 | $v_result = 1; |
5584 | 5584 | |
5585 | 5585 | if ($p_mode==0) |
5586 | 5586 | { |
5587 | - while ($p_size != 0) |
|
5588 | - { |
|
5587 | + while ($p_size != 0) |
|
5588 | + { |
|
5589 | 5589 | $v_read_size = ($p_size < PCLZIP_READ_BLOCK_SIZE ? $p_size : PCLZIP_READ_BLOCK_SIZE); |
5590 | 5590 | $v_buffer = @fread($p_src, $v_read_size); |
5591 | 5591 | @fwrite($p_dest, $v_buffer, $v_read_size); |
5592 | 5592 | $p_size -= $v_read_size; |
5593 | - } |
|
5593 | + } |
|
5594 | 5594 | } |
5595 | 5595 | else if ($p_mode==1) |
5596 | 5596 | { |
5597 | - while ($p_size != 0) |
|
5598 | - { |
|
5597 | + while ($p_size != 0) |
|
5598 | + { |
|
5599 | 5599 | $v_read_size = ($p_size < PCLZIP_READ_BLOCK_SIZE ? $p_size : PCLZIP_READ_BLOCK_SIZE); |
5600 | 5600 | $v_buffer = @gzread($p_src, $v_read_size); |
5601 | 5601 | @fwrite($p_dest, $v_buffer, $v_read_size); |
5602 | 5602 | $p_size -= $v_read_size; |
5603 | - } |
|
5603 | + } |
|
5604 | 5604 | } |
5605 | 5605 | else if ($p_mode==2) |
5606 | 5606 | { |
5607 | - while ($p_size != 0) |
|
5608 | - { |
|
5607 | + while ($p_size != 0) |
|
5608 | + { |
|
5609 | 5609 | $v_read_size = ($p_size < PCLZIP_READ_BLOCK_SIZE ? $p_size : PCLZIP_READ_BLOCK_SIZE); |
5610 | 5610 | $v_buffer = @fread($p_src, $v_read_size); |
5611 | 5611 | @gzwrite($p_dest, $v_buffer, $v_read_size); |
5612 | 5612 | $p_size -= $v_read_size; |
5613 | - } |
|
5613 | + } |
|
5614 | 5614 | } |
5615 | 5615 | else if ($p_mode==3) |
5616 | 5616 | { |
5617 | - while ($p_size != 0) |
|
5618 | - { |
|
5617 | + while ($p_size != 0) |
|
5618 | + { |
|
5619 | 5619 | $v_read_size = ($p_size < PCLZIP_READ_BLOCK_SIZE ? $p_size : PCLZIP_READ_BLOCK_SIZE); |
5620 | 5620 | $v_buffer = @gzread($p_src, $v_read_size); |
5621 | 5621 | @gzwrite($p_dest, $v_buffer, $v_read_size); |
5622 | 5622 | $p_size -= $v_read_size; |
5623 | - } |
|
5623 | + } |
|
5624 | 5624 | } |
5625 | 5625 | |
5626 | 5626 | // ----- Return |
5627 | 5627 | return $v_result; |
5628 | - } |
|
5629 | - // -------------------------------------------------------------------------------- |
|
5630 | - |
|
5631 | - // -------------------------------------------------------------------------------- |
|
5632 | - // Function : PclZipUtilRename() |
|
5633 | - // Description : |
|
5634 | - // This function tries to do a simple rename() function. If it fails, it |
|
5635 | - // tries to copy the $p_src file in a new $p_dest file and then unlink the |
|
5636 | - // first one. |
|
5637 | - // Parameters : |
|
5638 | - // $p_src : Old filename |
|
5639 | - // $p_dest : New filename |
|
5640 | - // Return Values : |
|
5641 | - // 1 on success, 0 on failure. |
|
5642 | - // -------------------------------------------------------------------------------- |
|
5643 | - function PclZipUtilRename($p_src, $p_dest) |
|
5644 | - { |
|
5628 | + } |
|
5629 | + // -------------------------------------------------------------------------------- |
|
5630 | + |
|
5631 | + // -------------------------------------------------------------------------------- |
|
5632 | + // Function : PclZipUtilRename() |
|
5633 | + // Description : |
|
5634 | + // This function tries to do a simple rename() function. If it fails, it |
|
5635 | + // tries to copy the $p_src file in a new $p_dest file and then unlink the |
|
5636 | + // first one. |
|
5637 | + // Parameters : |
|
5638 | + // $p_src : Old filename |
|
5639 | + // $p_dest : New filename |
|
5640 | + // Return Values : |
|
5641 | + // 1 on success, 0 on failure. |
|
5642 | + // -------------------------------------------------------------------------------- |
|
5643 | + function PclZipUtilRename($p_src, $p_dest) |
|
5644 | + { |
|
5645 | 5645 | $v_result = 1; |
5646 | 5646 | |
5647 | 5647 | // ----- Try to rename the files |
5648 | 5648 | if (!@rename($p_src, $p_dest)) { |
5649 | 5649 | |
5650 | - // ----- Try to copy & unlink the src |
|
5651 | - if (!@copy($p_src, $p_dest)) { |
|
5650 | + // ----- Try to copy & unlink the src |
|
5651 | + if (!@copy($p_src, $p_dest)) { |
|
5652 | 5652 | $v_result = 0; |
5653 | - } |
|
5654 | - else if (!@unlink($p_src)) { |
|
5653 | + } |
|
5654 | + else if (!@unlink($p_src)) { |
|
5655 | 5655 | $v_result = 0; |
5656 | - } |
|
5656 | + } |
|
5657 | 5657 | } |
5658 | 5658 | |
5659 | 5659 | // ----- Return |
5660 | 5660 | return $v_result; |
5661 | - } |
|
5662 | - // -------------------------------------------------------------------------------- |
|
5663 | - |
|
5664 | - // -------------------------------------------------------------------------------- |
|
5665 | - // Function : PclZipUtilOptionText() |
|
5666 | - // Description : |
|
5667 | - // Translate option value in text. Mainly for debug purpose. |
|
5668 | - // Parameters : |
|
5669 | - // $p_option : the option value. |
|
5670 | - // Return Values : |
|
5671 | - // The option text value. |
|
5672 | - // -------------------------------------------------------------------------------- |
|
5673 | - function PclZipUtilOptionText($p_option) |
|
5674 | - { |
|
5661 | + } |
|
5662 | + // -------------------------------------------------------------------------------- |
|
5663 | + |
|
5664 | + // -------------------------------------------------------------------------------- |
|
5665 | + // Function : PclZipUtilOptionText() |
|
5666 | + // Description : |
|
5667 | + // Translate option value in text. Mainly for debug purpose. |
|
5668 | + // Parameters : |
|
5669 | + // $p_option : the option value. |
|
5670 | + // Return Values : |
|
5671 | + // The option text value. |
|
5672 | + // -------------------------------------------------------------------------------- |
|
5673 | + function PclZipUtilOptionText($p_option) |
|
5674 | + { |
|
5675 | 5675 | |
5676 | 5676 | $v_list = get_defined_constants(); |
5677 | 5677 | for (reset($v_list); $v_key = key($v_list); next($v_list)) { |
5678 | - $v_prefix = substr($v_key, 0, 10); |
|
5679 | - if (( ($v_prefix == 'PCLZIP_OPT') |
|
5678 | + $v_prefix = substr($v_key, 0, 10); |
|
5679 | + if (( ($v_prefix == 'PCLZIP_OPT') |
|
5680 | 5680 | || ($v_prefix == 'PCLZIP_CB_') |
5681 | 5681 | || ($v_prefix == 'PCLZIP_ATT')) |
5682 | - && ($v_list[$v_key] == $p_option)) { |
|
5682 | + && ($v_list[$v_key] == $p_option)) { |
|
5683 | 5683 | return $v_key; |
5684 | - } |
|
5684 | + } |
|
5685 | 5685 | } |
5686 | 5686 | |
5687 | 5687 | $v_result = 'Unknown'; |
5688 | 5688 | |
5689 | 5689 | return $v_result; |
5690 | - } |
|
5691 | - // -------------------------------------------------------------------------------- |
|
5692 | - |
|
5693 | - // -------------------------------------------------------------------------------- |
|
5694 | - // Function : PclZipUtilTranslateWinPath() |
|
5695 | - // Description : |
|
5696 | - // Translate windows path by replacing '\' by '/' and optionally removing |
|
5697 | - // drive letter. |
|
5698 | - // Parameters : |
|
5699 | - // $p_path : path to translate. |
|
5700 | - // $p_remove_disk_letter : true | false |
|
5701 | - // Return Values : |
|
5702 | - // The path translated. |
|
5703 | - // -------------------------------------------------------------------------------- |
|
5704 | - function PclZipUtilTranslateWinPath($p_path, $p_remove_disk_letter=true) |
|
5705 | - { |
|
5690 | + } |
|
5691 | + // -------------------------------------------------------------------------------- |
|
5692 | + |
|
5693 | + // -------------------------------------------------------------------------------- |
|
5694 | + // Function : PclZipUtilTranslateWinPath() |
|
5695 | + // Description : |
|
5696 | + // Translate windows path by replacing '\' by '/' and optionally removing |
|
5697 | + // drive letter. |
|
5698 | + // Parameters : |
|
5699 | + // $p_path : path to translate. |
|
5700 | + // $p_remove_disk_letter : true | false |
|
5701 | + // Return Values : |
|
5702 | + // The path translated. |
|
5703 | + // -------------------------------------------------------------------------------- |
|
5704 | + function PclZipUtilTranslateWinPath($p_path, $p_remove_disk_letter=true) |
|
5705 | + { |
|
5706 | 5706 | if (stristr(php_uname(), 'windows')) { |
5707 | - // ----- Look for potential disk letter |
|
5708 | - if (($p_remove_disk_letter) && (($v_position = strpos($p_path, ':')) != false)) { |
|
5709 | - $p_path = substr($p_path, $v_position+1); |
|
5710 | - } |
|
5711 | - // ----- Change potential windows directory separator |
|
5712 | - if ((strpos($p_path, '\\') > 0) || (substr($p_path, 0,1) == '\\')) { |
|
5713 | - $p_path = strtr($p_path, '\\', '/'); |
|
5714 | - } |
|
5707 | + // ----- Look for potential disk letter |
|
5708 | + if (($p_remove_disk_letter) && (($v_position = strpos($p_path, ':')) != false)) { |
|
5709 | + $p_path = substr($p_path, $v_position+1); |
|
5710 | + } |
|
5711 | + // ----- Change potential windows directory separator |
|
5712 | + if ((strpos($p_path, '\\') > 0) || (substr($p_path, 0,1) == '\\')) { |
|
5713 | + $p_path = strtr($p_path, '\\', '/'); |
|
5714 | + } |
|
5715 | 5715 | } |
5716 | 5716 | return $p_path; |
5717 | - } |
|
5718 | - // -------------------------------------------------------------------------------- |
|
5717 | + } |
|
5718 | + // -------------------------------------------------------------------------------- |
|
5719 | 5719 | |
5720 | 5720 | |
5721 | 5721 | ?> |
@@ -74,7 +74,7 @@ discard block |
||
74 | 74 | * |
75 | 75 | * @uses export/table_pdf.tpl |
76 | 76 | |
77 | - * @param $content |
|
77 | + * @param string $content |
|
78 | 78 | * @param bool|false $saveToFile |
79 | 79 | * @param bool|false $returnHtml |
80 | 80 | * |
@@ -192,7 +192,7 @@ discard block |
||
192 | 192 | * @param string pdf name |
193 | 193 | * @param string course code (if you are using html that are located in the document tool you must provide this) |
194 | 194 | * @param bool Whether to print the header, footer and watermark (true) or just the content (false) |
195 | - * @return bool |
|
195 | + * @return false|null |
|
196 | 196 | */ |
197 | 197 | public function html_to_pdf( |
198 | 198 | $html_file_array, |
@@ -536,8 +536,9 @@ |
||
536 | 536 | } |
537 | 537 | } else { |
538 | 538 | $store_path = api_get_path(SYS_CODE_PATH).'default_course_document/images/'.api_get_current_access_url_id().'_pdf_watermark.png'; // course path |
539 | - if (file_exists($store_path)) |
|
540 | - $web_path = api_get_path(WEB_CODE_PATH).'default_course_document/images/'.api_get_current_access_url_id().'_pdf_watermark.png'; |
|
539 | + if (file_exists($store_path)) { |
|
540 | + $web_path = api_get_path(WEB_CODE_PATH).'default_course_document/images/'.api_get_current_access_url_id().'_pdf_watermark.png'; |
|
541 | + } |
|
541 | 542 | } |
542 | 543 | return $web_path; |
543 | 544 | } |
@@ -16,7 +16,6 @@ |
||
16 | 16 | * @author Patrick Cool |
17 | 17 | * @author René Haentjens, added CSV file import (October 2004) |
18 | 18 | * @package chamilo.link |
19 | - |
|
20 | 19 | */ |
21 | 20 | |
22 | 21 | // Including libraries |
@@ -31,7 +31,7 @@ discard block |
||
31 | 31 | /* More info @ http://mpdf1.com/manual/index.php?tid=184&searchstring=mPDF |
32 | 32 | * mPDF ([ string $mode [, mixed $format [, float $default_font_size [, string $default_font [, float $margin_left , float $margin_right , float $margin_top , float $margin_bottom , float $margin_header , float $margin_footer [, string $orientation ]]]]]]) |
33 | 33 | */ |
34 | - if (!in_array($orientation, array('P','L'))) { |
|
34 | + if (!in_array($orientation, array('P', 'L'))) { |
|
35 | 35 | $orientation = 'P'; |
36 | 36 | } |
37 | 37 | //$this->pdf = $pdf = new mPDF('UTF-8', $pageFormat, '', '', 30, 20, 27, 25, 16, 13, $orientation); |
@@ -94,15 +94,15 @@ discard block |
||
94 | 94 | $tpl->assign('pdf_content', $content); |
95 | 95 | |
96 | 96 | $organization = api_get_setting('Institution'); |
97 | - $img = api_get_path(SYS_CSS_PATH).'themes/' . $theme . '/images/header-logo.png'; |
|
98 | - $customImg = api_get_path(SYS_PUBLIC_PATH).'css/themes/' . $theme . '/images/header-logo-custom.png'; |
|
97 | + $img = api_get_path(SYS_CSS_PATH).'themes/'.$theme.'/images/header-logo.png'; |
|
98 | + $customImg = api_get_path(SYS_PUBLIC_PATH).'css/themes/'.$theme.'/images/header-logo-custom.png'; |
|
99 | 99 | |
100 | 100 | // Search for classic logo |
101 | 101 | if (file_exists($customImg)) { |
102 | - $img = api_get_path(WEB_CSS_PATH).'themes/' . $theme . '/images/header-logo-custom.png'; |
|
102 | + $img = api_get_path(WEB_CSS_PATH).'themes/'.$theme.'/images/header-logo-custom.png'; |
|
103 | 103 | $organization = "<img src='$img'>"; |
104 | 104 | } else if (file_exists($img)) { |
105 | - $img = api_get_path(WEB_CSS_PATH).'themes/' . $theme . '/images/header-logo.png'; |
|
105 | + $img = api_get_path(WEB_CSS_PATH).'themes/'.$theme.'/images/header-logo.png'; |
|
106 | 106 | $organization = "<img src='$img'>"; |
107 | 107 | } else { |
108 | 108 | // Just use the platform title. |
@@ -117,7 +117,7 @@ discard block |
||
117 | 117 | $visualTheme = api_get_visual_theme(); |
118 | 118 | $img = api_get_path(SYS_CSS_PATH).'themes/'.$visualTheme.'/images/pdf_logo_header.png'; |
119 | 119 | if (file_exists($img)) { |
120 | - $img = api_get_path(WEB_CSS_PATH) . 'themes/' . $visualTheme . '/images/pdf_logo_header.png'; |
|
120 | + $img = api_get_path(WEB_CSS_PATH).'themes/'.$visualTheme.'/images/pdf_logo_header.png'; |
|
121 | 121 | $organization = "<img src='$img'>"; |
122 | 122 | } |
123 | 123 | } |
@@ -235,7 +235,7 @@ discard block |
||
235 | 235 | } |
236 | 236 | |
237 | 237 | // Clean styles and javascript document |
238 | - $clean_search = array ( |
|
238 | + $clean_search = array( |
|
239 | 239 | '@<script[^>]*?>.*?</script>@si', |
240 | 240 | '@<style[^>]*?>.*?</style>@si' |
241 | 241 | ); |
@@ -256,7 +256,7 @@ discard block |
||
256 | 256 | // then print the title in the PDF |
257 | 257 | if (is_array($file) && isset($file['title'])) { |
258 | 258 | $html_title = $file['title']; |
259 | - $file = $file['path']; |
|
259 | + $file = $file['path']; |
|
260 | 260 | } else { |
261 | 261 | //we suppose we've only been sent a file path |
262 | 262 | $html_title = basename($file); |
@@ -288,7 +288,7 @@ discard block |
||
288 | 288 | //it's not a chapter but the file exists, print its title |
289 | 289 | if ($print_title) { |
290 | 290 | $this->pdf->WriteHTML( |
291 | - '<html><body><h3>' . $html_title . '</h3></body></html>', |
|
291 | + '<html><body><h3>'.$html_title.'</h3></body></html>', |
|
292 | 292 | 2 |
293 | 293 | ); |
294 | 294 | } |
@@ -299,12 +299,12 @@ discard block |
||
299 | 299 | if (in_array($extension, array('html', 'htm'))) { |
300 | 300 | $dirName = $file_info['dirname']; |
301 | 301 | $filename = $file_info['basename']; |
302 | - $filename = str_replace('_',' ',$filename); |
|
302 | + $filename = str_replace('_', ' ', $filename); |
|
303 | 303 | |
304 | 304 | if ($extension == 'html') { |
305 | - $filename = basename($filename,'.html'); |
|
306 | - } elseif($extension == 'htm'){ |
|
307 | - $filename = basename($filename,'.htm'); |
|
305 | + $filename = basename($filename, '.html'); |
|
306 | + } elseif ($extension == 'htm') { |
|
307 | + $filename = basename($filename, '.htm'); |
|
308 | 308 | } |
309 | 309 | |
310 | 310 | $document_html = @file_get_contents($file); |
@@ -315,7 +315,7 @@ discard block |
||
315 | 315 | $document_html = str_replace('href="./css/frames.css"', $absolute_css_path, $document_html); |
316 | 316 | |
317 | 317 | if (!empty($course_data['path'])) { |
318 | - $document_html= str_replace('../','', $document_html); |
|
318 | + $document_html = str_replace('../', '', $document_html); |
|
319 | 319 | $document_path = api_get_path(SYS_COURSE_PATH).$course_data['path'].'/document/'; |
320 | 320 | |
321 | 321 | $doc = new DOMDocument(); |
@@ -393,7 +393,7 @@ discard block |
||
393 | 393 | if (!empty($document_html)) { |
394 | 394 | $this->pdf->WriteHTML($document_html.$page_break, 2); |
395 | 395 | } |
396 | - } elseif (in_array($extension, array('jpg','jpeg','png','gif'))) { |
|
396 | + } elseif (in_array($extension, array('jpg', 'jpeg', 'png', 'gif'))) { |
|
397 | 397 | //Images |
398 | 398 | $image = Display::img($file); |
399 | 399 | $this->pdf->WriteHTML('<html><body>'.$image.'</body></html>'.$page_break, 2); |
@@ -442,7 +442,7 @@ discard block |
||
442 | 442 | } |
443 | 443 | |
444 | 444 | //clean styles and javascript document |
445 | - $clean_search = array ( |
|
445 | + $clean_search = array( |
|
446 | 446 | '@<script[^>]*?>.*?</script>@si', |
447 | 447 | '@<style[^>]*?>.*?</style>@siU' |
448 | 448 | ); |
@@ -456,11 +456,11 @@ discard block |
||
456 | 456 | |
457 | 457 | //absolute path for frames.css //TODO: necessary? |
458 | 458 | $absolute_css_path = api_get_path(WEB_CSS_PATH).api_get_setting('stylesheets').'/frames.css'; |
459 | - $document_html = str_replace('href="./css/frames.css"','href="'.$absolute_css_path.'"', $document_html); |
|
459 | + $document_html = str_replace('href="./css/frames.css"', 'href="'.$absolute_css_path.'"', $document_html); |
|
460 | 460 | |
461 | - $document_html= str_replace('../../','',$document_html); |
|
462 | - $document_html= str_replace('../','',$document_html); |
|
463 | - $document_html= str_replace((empty($_configuration['url_append'])?'':$_configuration['url_append'].'/').'courses/'.$course_code.'/document/','',$document_html); |
|
461 | + $document_html = str_replace('../../', '', $document_html); |
|
462 | + $document_html = str_replace('../', '', $document_html); |
|
463 | + $document_html = str_replace((empty($_configuration['url_append']) ? '' : $_configuration['url_append'].'/').'courses/'.$course_code.'/document/', '', $document_html); |
|
464 | 464 | |
465 | 465 | if (!empty($course_data['path'])) { |
466 | 466 | $document_path = api_get_path(SYS_COURSE_PATH).$course_data['path'].'/document/'; |
@@ -481,7 +481,7 @@ discard block |
||
481 | 481 | $old_src_fixed = str_replace('/courses/'.$course_data['path'].'/document/', '', $old_src); |
482 | 482 | $old_src_fixed = str_replace('courses/'.$course_data['path'].'/document/', '', $old_src_fixed); |
483 | 483 | $new_path = $document_path.$old_src_fixed; |
484 | - $document_html= str_replace($old_src, $new_path, $document_html); |
|
484 | + $document_html = str_replace($old_src, $new_path, $document_html); |
|
485 | 485 | |
486 | 486 | } |
487 | 487 | } |
@@ -500,7 +500,7 @@ discard block |
||
500 | 500 | //$document_html= str_replace('temp_template_path', 'src="/main/default_course_document/', $document_html);// restore src templates |
501 | 501 | |
502 | 502 | api_set_encoding_html($document_html, 'UTF-8'); // The library mPDF expects UTF-8 encoded input data. |
503 | - $title = api_get_title_html($document_html, 'UTF-8', 'UTF-8'); // TODO: Maybe it is better idea the title to be passed through |
|
503 | + $title = api_get_title_html($document_html, 'UTF-8', 'UTF-8'); // TODO: Maybe it is better idea the title to be passed through |
|
504 | 504 | // $_GET[] too, as it is done with file name. |
505 | 505 | // At the moment the title is retrieved from the html document itself. |
506 | 506 | |
@@ -522,7 +522,7 @@ discard block |
||
522 | 522 | //$this->pdf->Output($output_file, $outputMode); // F to save the pdf in a file |
523 | 523 | |
524 | 524 | if ($outputMode == 'F') { |
525 | - $output_file = api_get_path(SYS_ARCHIVE_PATH) . $output_file; |
|
525 | + $output_file = api_get_path(SYS_ARCHIVE_PATH).$output_file; |
|
526 | 526 | } |
527 | 527 | |
528 | 528 | if ($saveInFile) { |
@@ -555,14 +555,14 @@ discard block |
||
555 | 555 | $web_path = false; |
556 | 556 | if (!empty($course_code) && api_get_setting('pdf_export_watermark_by_course') == 'true') { |
557 | 557 | $course_info = api_get_course_info($course_code); |
558 | - $store_path = api_get_path(SYS_COURSE_PATH).$course_info['path'].'/'.api_get_current_access_url_id().'_pdf_watermark.png'; // course path |
|
558 | + $store_path = api_get_path(SYS_COURSE_PATH).$course_info['path'].'/'.api_get_current_access_url_id().'_pdf_watermark.png'; // course path |
|
559 | 559 | if (file_exists($store_path)) { |
560 | - $web_path = api_get_path(WEB_COURSE_PATH).$course_info['path'].'/'.api_get_current_access_url_id().'_pdf_watermark.png'; |
|
560 | + $web_path = api_get_path(WEB_COURSE_PATH).$course_info['path'].'/'.api_get_current_access_url_id().'_pdf_watermark.png'; |
|
561 | 561 | } |
562 | 562 | } else { |
563 | - $store_path = api_get_path(SYS_CODE_PATH).'default_course_document/images/'.api_get_current_access_url_id().'_pdf_watermark.png'; // course path |
|
563 | + $store_path = api_get_path(SYS_CODE_PATH).'default_course_document/images/'.api_get_current_access_url_id().'_pdf_watermark.png'; // course path |
|
564 | 564 | if (file_exists($store_path)) |
565 | - $web_path = api_get_path(WEB_CODE_PATH).'default_course_document/images/'.api_get_current_access_url_id().'_pdf_watermark.png'; |
|
565 | + $web_path = api_get_path(WEB_CODE_PATH).'default_course_document/images/'.api_get_current_access_url_id().'_pdf_watermark.png'; |
|
566 | 566 | } |
567 | 567 | return $web_path; |
568 | 568 | } |
@@ -601,10 +601,10 @@ discard block |
||
601 | 601 | { |
602 | 602 | if (!empty($course_code) && api_get_setting('pdf_export_watermark_by_course') == 'true') { |
603 | 603 | $course_info = api_get_course_info($course_code); |
604 | - $store_path = api_get_path(SYS_COURSE_PATH).$course_info['path']; // course path |
|
604 | + $store_path = api_get_path(SYS_COURSE_PATH).$course_info['path']; // course path |
|
605 | 605 | $web_path = api_get_path(WEB_COURSE_PATH).$course_info['path'].'/pdf_watermark.png'; |
606 | 606 | } else { |
607 | - $store_path = api_get_path(SYS_CODE_PATH).'default_course_document/images'; // course path |
|
607 | + $store_path = api_get_path(SYS_CODE_PATH).'default_course_document/images'; // course path |
|
608 | 608 | $web_path = api_get_path(WEB_CODE_PATH).'default_course_document/images/'.api_get_current_access_url_id().'_pdf_watermark.png'; |
609 | 609 | } |
610 | 610 | $course_image = $store_path.'/'.api_get_current_access_url_id().'_pdf_watermark.png'; |
@@ -639,9 +639,9 @@ discard block |
||
639 | 639 | */ |
640 | 640 | public function set_footer() |
641 | 641 | { |
642 | - $this->pdf->defaultfooterfontsize = 12; // in pts |
|
643 | - $this->pdf->defaultfooterfontstyle = B; // blank, B, I, or BI |
|
644 | - $this->pdf->defaultfooterline = 1; // 1 to include line below header/above footer |
|
642 | + $this->pdf->defaultfooterfontsize = 12; // in pts |
|
643 | + $this->pdf->defaultfooterfontstyle = B; // blank, B, I, or BI |
|
644 | + $this->pdf->defaultfooterline = 1; // 1 to include line below header/above footer |
|
645 | 645 | $platform_name = api_get_setting('Institution'); |
646 | 646 | $left_content = $platform_name; |
647 | 647 | $center_content = ''; |
@@ -707,9 +707,9 @@ discard block |
||
707 | 707 | */ |
708 | 708 | public function set_header($course_data) |
709 | 709 | { |
710 | - $this->pdf->defaultheaderfontsize = 10; // in pts |
|
711 | - $this->pdf->defaultheaderfontstyle = 'BI'; // blank, B, I, or BI |
|
712 | - $this->pdf->defaultheaderline = 1; // 1 to include line below header/above footer |
|
710 | + $this->pdf->defaultheaderfontsize = 10; // in pts |
|
711 | + $this->pdf->defaultheaderfontstyle = 'BI'; // blank, B, I, or BI |
|
712 | + $this->pdf->defaultheaderline = 1; // 1 to include line below header/above footer |
|
713 | 713 | |
714 | 714 | if (!empty($course_data['code'])) { |
715 | 715 | $teacher_list = CourseManager::get_teacher_list_from_course_code($course_data['code']); |
@@ -718,7 +718,7 @@ discard block |
||
718 | 718 | if (!empty($teacher_list)) { |
719 | 719 | |
720 | 720 | foreach ($teacher_list as $teacher) { |
721 | - $teachers[]= $teacher['firstname'].' '.$teacher['lastname']; |
|
721 | + $teachers[] = $teacher['firstname'].' '.$teacher['lastname']; |
|
722 | 722 | } |
723 | 723 | if (count($teachers) > 1) { |
724 | 724 | $teachers = get_lang('Teachers').': '.implode(', ', $teachers); |
@@ -785,7 +785,7 @@ discard block |
||
785 | 785 | 'line' => 1, |
786 | 786 | ), |
787 | 787 | ); |
788 | - $this->pdf->SetHeader($header);// ('{DATE j-m-Y}|{PAGENO}/{nb}|'.$title); |
|
788 | + $this->pdf->SetHeader($header); // ('{DATE j-m-Y}|{PAGENO}/{nb}|'.$title); |
|
789 | 789 | } |
790 | 790 | } |
791 | 791 | |
@@ -830,7 +830,7 @@ discard block |
||
830 | 830 | $this->pdf->directionality = api_get_text_direction(); |
831 | 831 | $this->pdf->useOnlyCoreFonts = true; |
832 | 832 | // Use different Odd/Even headers and footers and mirror margins |
833 | - $this->pdf->mirrorMargins = 1; |
|
833 | + $this->pdf->mirrorMargins = 1; |
|
834 | 834 | |
835 | 835 | // Add decoration only if not stated otherwise |
836 | 836 | if ($complete) { |
@@ -858,7 +858,7 @@ discard block |
||
858 | 858 | $watermark_text = api_get_setting('pdf_export_watermark_text'); |
859 | 859 | } |
860 | 860 | if (!empty($watermark_text)) { |
861 | - $this->pdf->SetWatermarkText(strcode2utf($watermark_text),0.1); |
|
861 | + $this->pdf->SetWatermarkText(strcode2utf($watermark_text), 0.1); |
|
862 | 862 | $this->pdf->showWatermarkText = true; |
863 | 863 | } |
864 | 864 | } |
@@ -866,8 +866,8 @@ discard block |
||
866 | 866 | if (empty($this->custom_header)) { |
867 | 867 | self::set_header($course_data); |
868 | 868 | } else { |
869 | - $this->pdf->SetHTMLHeader($this->custom_header,'E'); |
|
870 | - $this->pdf->SetHTMLHeader($this->custom_header,'O'); |
|
869 | + $this->pdf->SetHTMLHeader($this->custom_header, 'E'); |
|
870 | + $this->pdf->SetHTMLHeader($this->custom_header, 'O'); |
|
871 | 871 | } |
872 | 872 | |
873 | 873 | if (empty($this->custom_footer)) { |