@@ -4,9 +4,9 @@ |
||
4 | 4 | |
5 | 5 | class Metric |
6 | 6 | { |
7 | - const EUCLIDEAN = 1; |
|
8 | - const MANHATTAN = 2; |
|
9 | - const GEODESIC = 3; |
|
10 | - const MATRIX = 4; |
|
11 | - const EXACT_2D = 5; |
|
7 | + const EUCLIDEAN = 1; |
|
8 | + const MANHATTAN = 2; |
|
9 | + const GEODESIC = 3; |
|
10 | + const MATRIX = 4; |
|
11 | + const EXACT_2D = 5; |
|
12 | 12 | } |
@@ -4,6 +4,6 @@ |
||
4 | 4 | |
5 | 5 | class DistanceUnit |
6 | 6 | { |
7 | - const MILES = 'mi'; |
|
8 | - const KILOMETERS = 'km'; |
|
7 | + const MILES = 'mi'; |
|
8 | + const KILOMETERS = 'km'; |
|
9 | 9 | } |
@@ -4,9 +4,9 @@ |
||
4 | 4 | |
5 | 5 | class TerritoryTypes |
6 | 6 | { |
7 | - const CIRCLE = 'circle'; |
|
8 | - const POLY = 'poly'; |
|
9 | - const RECT = 'rect'; |
|
7 | + const CIRCLE = 'circle'; |
|
8 | + const POLY = 'poly'; |
|
9 | + const RECT = 'rect'; |
|
10 | 10 | } |
11 | 11 | |
12 | 12 | ?> |
13 | 13 | \ No newline at end of file |
@@ -4,8 +4,8 @@ |
||
4 | 4 | |
5 | 5 | class Format |
6 | 6 | { |
7 | - const SERIALIZED = 'serialized'; |
|
8 | - const CSV = 'csv'; |
|
9 | - const XML = 'xml'; |
|
10 | - const JSON = 'json'; |
|
7 | + const SERIALIZED = 'serialized'; |
|
8 | + const CSV = 'csv'; |
|
9 | + const XML = 'xml'; |
|
10 | + const JSON = 'json'; |
|
11 | 11 | } |
@@ -4,7 +4,7 @@ |
||
4 | 4 | |
5 | 5 | class TravelMode |
6 | 6 | { |
7 | - const DRIVING = 'Driving'; |
|
8 | - const WALKING = 'Walking'; |
|
9 | - const TRUCKING = 'Trucking'; |
|
7 | + const DRIVING = 'Driving'; |
|
8 | + const WALKING = 'Walking'; |
|
9 | + const TRUCKING = 'Trucking'; |
|
10 | 10 | } |
@@ -4,11 +4,11 @@ |
||
4 | 4 | |
5 | 5 | class AlgorithmType |
6 | 6 | { |
7 | - const TSP = 1; |
|
8 | - const VRP = 2; |
|
9 | - const CVRP_TW_SD = 3; |
|
10 | - const CVRP_TW_MD = 4; |
|
11 | - const TSP_TW = 5; |
|
12 | - const TSP_TW_CR = 6; |
|
13 | - const BBCVRP = 7; |
|
7 | + const TSP = 1; |
|
8 | + const VRP = 2; |
|
9 | + const CVRP_TW_SD = 3; |
|
10 | + const CVRP_TW_MD = 4; |
|
11 | + const TSP_TW = 5; |
|
12 | + const TSP_TW_CR = 6; |
|
13 | + const BBCVRP = 7; |
|
14 | 14 | } |
@@ -34,7 +34,7 @@ discard block |
||
34 | 34 | $param->setParameters(RouteParameters::fromArray($params['parameters'])); |
35 | 35 | } |
36 | 36 | |
37 | - foreach($params['addresses'] as $address) { |
|
37 | + foreach ($params['addresses'] as $address) { |
|
38 | 38 | if (!($address instanceof Address)) { |
39 | 39 | $address = Address::fromArray($address); |
40 | 40 | } |
@@ -71,7 +71,7 @@ discard block |
||
71 | 71 | public function getAddressesArray() |
72 | 72 | { |
73 | 73 | $addresses = array(); |
74 | - foreach($this->addresses as $address) { |
|
74 | + foreach ($this->addresses as $address) { |
|
75 | 75 | $addresses[] = $address->toArray(); |
76 | 76 | } |
77 | 77 | return $addresses; |
@@ -8,88 +8,88 @@ |
||
8 | 8 | |
9 | 9 | class OptimizationProblemParams extends Common |
10 | 10 | { |
11 | - public $optimization_problem_id; |
|
12 | - public $reoptimize; |
|
13 | - public $addresses = array(); |
|
14 | - public $parameters; |
|
15 | - public $directions; |
|
16 | - public $format; |
|
17 | - public $route_path_output; |
|
18 | - public $optimized_callback_url; |
|
19 | - public $redirect = true; |
|
11 | + public $optimization_problem_id; |
|
12 | + public $reoptimize; |
|
13 | + public $addresses = array(); |
|
14 | + public $parameters; |
|
15 | + public $directions; |
|
16 | + public $format; |
|
17 | + public $route_path_output; |
|
18 | + public $optimized_callback_url; |
|
19 | + public $redirect = true; |
|
20 | 20 | |
21 | - public static function fromArray($params) |
|
22 | - { |
|
23 | - $param = new OptimizationProblemParams; |
|
24 | - if (!isset($params['addresses'])) { |
|
25 | - throw new BadParam('addresses must be provided.'); |
|
26 | - } |
|
21 | + public static function fromArray($params) |
|
22 | + { |
|
23 | + $param = new OptimizationProblemParams; |
|
24 | + if (!isset($params['addresses'])) { |
|
25 | + throw new BadParam('addresses must be provided.'); |
|
26 | + } |
|
27 | 27 | |
28 | - if (!isset($params['parameters'])) { |
|
29 | - throw new BadParam('parameters must be provided.'); |
|
30 | - } |
|
28 | + if (!isset($params['parameters'])) { |
|
29 | + throw new BadParam('parameters must be provided.'); |
|
30 | + } |
|
31 | 31 | |
32 | - if ($params['parameters'] instanceof RouteParameters) { |
|
33 | - $param->setParameters($params['parameters']); |
|
34 | - } else { |
|
35 | - $param->setParameters(RouteParameters::fromArray($params['parameters'])); |
|
36 | - } |
|
32 | + if ($params['parameters'] instanceof RouteParameters) { |
|
33 | + $param->setParameters($params['parameters']); |
|
34 | + } else { |
|
35 | + $param->setParameters(RouteParameters::fromArray($params['parameters'])); |
|
36 | + } |
|
37 | 37 | |
38 | - foreach($params['addresses'] as $address) { |
|
39 | - if (!($address instanceof Address)) { |
|
40 | - $address = Address::fromArray($address); |
|
41 | - } |
|
42 | - $param->addAddress($address); |
|
43 | - } |
|
38 | + foreach($params['addresses'] as $address) { |
|
39 | + if (!($address instanceof Address)) { |
|
40 | + $address = Address::fromArray($address); |
|
41 | + } |
|
42 | + $param->addAddress($address); |
|
43 | + } |
|
44 | 44 | |
45 | - $param->directions = self::getValue($params, 'directions'); |
|
46 | - $param->format = self::getValue($params, 'format'); |
|
47 | - $param->route_path_output = self::getValue($params, 'route_path_output'); |
|
48 | - $param->optimized_callback_url = self::getValue($params, 'optimized_callback_url'); |
|
49 | - $param->optimization_problem_id = self::getValue($params, 'optimization_problem_id'); |
|
50 | - $param->reoptimize = self::getValue($params, 'reoptimize'); |
|
51 | - $param->redirect = filter_var( |
|
52 | - self::getValue($params, 'redirect', true), FILTER_VALIDATE_BOOLEAN); |
|
45 | + $param->directions = self::getValue($params, 'directions'); |
|
46 | + $param->format = self::getValue($params, 'format'); |
|
47 | + $param->route_path_output = self::getValue($params, 'route_path_output'); |
|
48 | + $param->optimized_callback_url = self::getValue($params, 'optimized_callback_url'); |
|
49 | + $param->optimization_problem_id = self::getValue($params, 'optimization_problem_id'); |
|
50 | + $param->reoptimize = self::getValue($params, 'reoptimize'); |
|
51 | + $param->redirect = filter_var( |
|
52 | + self::getValue($params, 'redirect', true), FILTER_VALIDATE_BOOLEAN); |
|
53 | 53 | |
54 | - return $param; |
|
55 | - } |
|
54 | + return $param; |
|
55 | + } |
|
56 | 56 | |
57 | - public function __construct() |
|
58 | - { |
|
59 | - $this->parameters = new RouteParameters; |
|
60 | - } |
|
57 | + public function __construct() |
|
58 | + { |
|
59 | + $this->parameters = new RouteParameters; |
|
60 | + } |
|
61 | 61 | |
62 | - public function setParameters(RouteParameters $params) |
|
63 | - { |
|
64 | - $this->parameters = $params; |
|
65 | - return $this; |
|
66 | - } |
|
62 | + public function setParameters(RouteParameters $params) |
|
63 | + { |
|
64 | + $this->parameters = $params; |
|
65 | + return $this; |
|
66 | + } |
|
67 | 67 | |
68 | - public function addAddress(Address $address) |
|
69 | - { |
|
70 | - $this->addresses[] = $address; |
|
71 | - return $this; |
|
72 | - } |
|
68 | + public function addAddress(Address $address) |
|
69 | + { |
|
70 | + $this->addresses[] = $address; |
|
71 | + return $this; |
|
72 | + } |
|
73 | 73 | |
74 | - public function getAddressesArray() |
|
75 | - { |
|
76 | - $addresses = array(); |
|
77 | - foreach($this->addresses as $address) { |
|
78 | - $addresses[] = $address->toArray(); |
|
79 | - } |
|
80 | - return $addresses; |
|
81 | - } |
|
74 | + public function getAddressesArray() |
|
75 | + { |
|
76 | + $addresses = array(); |
|
77 | + foreach($this->addresses as $address) { |
|
78 | + $addresses[] = $address->toArray(); |
|
79 | + } |
|
80 | + return $addresses; |
|
81 | + } |
|
82 | 82 | |
83 | - public function getParametersArray() |
|
84 | - { |
|
85 | - return $this->parameters->toArray(); |
|
86 | - } |
|
83 | + public function getParametersArray() |
|
84 | + { |
|
85 | + return $this->parameters->toArray(); |
|
86 | + } |
|
87 | 87 | |
88 | - public function setAddresses(array $addresses) |
|
89 | - { |
|
90 | - foreach ($addresses as $address) { |
|
91 | - $this->addAddress($address); |
|
92 | - } |
|
93 | - return $this; |
|
94 | - } |
|
88 | + public function setAddresses(array $addresses) |
|
89 | + { |
|
90 | + foreach ($addresses as $address) { |
|
91 | + $this->addAddress($address); |
|
92 | + } |
|
93 | + return $this; |
|
94 | + } |
|
95 | 95 | } |
@@ -110,7 +110,7 @@ discard block |
||
110 | 110 | //and finally send curl request |
111 | 111 | $result = curl_exec_redir($this->ch); |
112 | 112 | if(curl_errno($this->ch)) |
113 | - { |
|
113 | + { |
|
114 | 114 | if($this->debug) |
115 | 115 | { |
116 | 116 | echo "Error Occured in Curl\n"; |
@@ -120,7 +120,7 @@ discard block |
||
120 | 120 | return false; |
121 | 121 | } |
122 | 122 | else |
123 | - { |
|
123 | + { |
|
124 | 124 | return $result; |
125 | 125 | } |
126 | 126 | } |
@@ -372,53 +372,53 @@ discard block |
||
372 | 372 | */ |
373 | 373 | function curl_exec_redir($ch) |
374 | 374 | { |
375 | - static $curl_loops = 0; |
|
376 | - static $curl_max_loops = 20; |
|
377 | - if ($curl_loops++ >= $curl_max_loops) |
|
378 | - { |
|
379 | - $curl_loops = 0; |
|
380 | - return FALSE; |
|
381 | - } |
|
382 | - curl_setopt($ch, CURLOPT_HTTPHEADER, array('Expect:')); |
|
383 | - curl_setopt($ch, CURLOPT_HEADER, true); |
|
384 | - curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); |
|
385 | - curl_setopt($ch, CURLOPT_VERBOSE, false); |
|
386 | - $data = curl_exec($ch); |
|
387 | - $data = str_replace("\r", "\n", str_replace("\r\n", "\n", $data)); |
|
388 | - list($header, $data) = explode("\n\n", $data, 2); |
|
389 | - $http_code = curl_getinfo($ch, CURLINFO_HTTP_CODE); |
|
375 | + static $curl_loops = 0; |
|
376 | + static $curl_max_loops = 20; |
|
377 | + if ($curl_loops++ >= $curl_max_loops) |
|
378 | + { |
|
379 | + $curl_loops = 0; |
|
380 | + return FALSE; |
|
381 | + } |
|
382 | + curl_setopt($ch, CURLOPT_HTTPHEADER, array('Expect:')); |
|
383 | + curl_setopt($ch, CURLOPT_HEADER, true); |
|
384 | + curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); |
|
385 | + curl_setopt($ch, CURLOPT_VERBOSE, false); |
|
386 | + $data = curl_exec($ch); |
|
387 | + $data = str_replace("\r", "\n", str_replace("\r\n", "\n", $data)); |
|
388 | + list($header, $data) = explode("\n\n", $data, 2); |
|
389 | + $http_code = curl_getinfo($ch, CURLINFO_HTTP_CODE); |
|
390 | 390 | |
391 | - //echo "*** Got HTTP code: $http_code ***\n"; |
|
392 | - //echo "** Got headers: \n$header\n\n"; |
|
391 | + //echo "*** Got HTTP code: $http_code ***\n"; |
|
392 | + //echo "** Got headers: \n$header\n\n"; |
|
393 | 393 | |
394 | - if ( $http_code == 301 || $http_code == 302 ) |
|
395 | - { |
|
396 | - // If we're redirected, we should revert to GET |
|
394 | + if ( $http_code == 301 || $http_code == 302 ) |
|
395 | + { |
|
396 | + // If we're redirected, we should revert to GET |
|
397 | 397 | curl_setopt($ch, CURLOPT_HTTPGET,true); |
398 | 398 | |
399 | - $matches = array(); |
|
400 | - preg_match('/Location:\s*(.*?)(\n|$)/i', $header, $matches); |
|
401 | - $url = @parse_url(trim($matches[1])); |
|
402 | - if (!$url) |
|
403 | - { |
|
404 | - //couldn't process the url to redirect to |
|
405 | - $curl_loops = 0; |
|
406 | - return $data; |
|
407 | - } |
|
408 | - $last_url = parse_url(curl_getinfo($ch, CURLINFO_EFFECTIVE_URL)); |
|
409 | - if (empty($url['scheme'])) |
|
410 | - $url['scheme'] = $last_url['scheme']; |
|
411 | - if (empty($url['host'])) |
|
412 | - $url['host'] = $last_url['host']; |
|
413 | - if (empty($url['path'])) |
|
414 | - $url['path'] = $last_url['path']; |
|
415 | - $new_url = $url['scheme'] . '://' . $url['host'] . $url['path'] . (!empty($url['query'])?'?'.$url['query']:''); |
|
416 | - //echo "Being redirected to $new_url\n"; |
|
417 | - curl_setopt($ch, CURLOPT_URL, $new_url); |
|
418 | - return curl_exec_redir($ch); |
|
419 | - } else { |
|
420 | - $curl_loops=0; |
|
421 | - return $data; |
|
422 | - } |
|
399 | + $matches = array(); |
|
400 | + preg_match('/Location:\s*(.*?)(\n|$)/i', $header, $matches); |
|
401 | + $url = @parse_url(trim($matches[1])); |
|
402 | + if (!$url) |
|
403 | + { |
|
404 | + //couldn't process the url to redirect to |
|
405 | + $curl_loops = 0; |
|
406 | + return $data; |
|
407 | + } |
|
408 | + $last_url = parse_url(curl_getinfo($ch, CURLINFO_EFFECTIVE_URL)); |
|
409 | + if (empty($url['scheme'])) |
|
410 | + $url['scheme'] = $last_url['scheme']; |
|
411 | + if (empty($url['host'])) |
|
412 | + $url['host'] = $last_url['host']; |
|
413 | + if (empty($url['path'])) |
|
414 | + $url['path'] = $last_url['path']; |
|
415 | + $new_url = $url['scheme'] . '://' . $url['host'] . $url['path'] . (!empty($url['query'])?'?'.$url['query']:''); |
|
416 | + //echo "Being redirected to $new_url\n"; |
|
417 | + curl_setopt($ch, CURLOPT_URL, $new_url); |
|
418 | + return curl_exec_redir($ch); |
|
419 | + } else { |
|
420 | + $curl_loops=0; |
|
421 | + return $data; |
|
422 | + } |
|
423 | 423 | } |
424 | 424 | ?> |
@@ -3,7 +3,7 @@ discard block |
||
3 | 3 | |
4 | 4 | class Curl_HTTP_Client |
5 | 5 | { |
6 | - var $ch ; |
|
6 | + var $ch; |
|
7 | 7 | var $debug = false; |
8 | 8 | var $error_msg; |
9 | 9 | |
@@ -21,7 +21,7 @@ discard block |
||
21 | 21 | //set error in case http return code bigger than 300 |
22 | 22 | curl_setopt($this->ch, CURLOPT_FAILONERROR, true); |
23 | 23 | // use gzip if possible |
24 | - curl_setopt($this->ch,CURLOPT_ENCODING , 'gzip, deflate'); |
|
24 | + curl_setopt($this->ch, CURLOPT_ENCODING, 'gzip, deflate'); |
|
25 | 25 | // do not veryfy ssl |
26 | 26 | // this is important for windows |
27 | 27 | // as well for being able to access pages with non valid cert |
@@ -33,7 +33,7 @@ discard block |
||
33 | 33 | * @param string pass |
34 | 34 | * @access public |
35 | 35 | */ |
36 | - function set_credentials($username,$password) |
|
36 | + function set_credentials($username, $password) |
|
37 | 37 | { |
38 | 38 | curl_setopt($this->ch, CURLOPT_USERPWD, "$username:$password"); |
39 | 39 | } |
@@ -83,22 +83,22 @@ discard block |
||
83 | 83 | * @return string data |
84 | 84 | * @access public |
85 | 85 | */ |
86 | - function send_post_data($url, $postdata, $ip=null, $timeout=10) |
|
86 | + function send_post_data($url, $postdata, $ip = null, $timeout = 10) |
|
87 | 87 | { |
88 | 88 | |
89 | 89 | //set various curl options first |
90 | 90 | // set url to post to |
91 | - curl_setopt($this->ch, CURLOPT_URL,$url); |
|
91 | + curl_setopt($this->ch, CURLOPT_URL, $url); |
|
92 | 92 | // return into a variable rather than displaying it |
93 | - curl_setopt($this->ch, CURLOPT_RETURNTRANSFER,true); |
|
93 | + curl_setopt($this->ch, CURLOPT_RETURNTRANSFER, true); |
|
94 | 94 | //bind to specific ip address if it is sent trough arguments |
95 | - if($ip) |
|
95 | + if ($ip) |
|
96 | 96 | { |
97 | - if($this->debug) |
|
97 | + if ($this->debug) |
|
98 | 98 | { |
99 | 99 | echo "Binding to ip $ip\n"; |
100 | 100 | } |
101 | - curl_setopt($this->ch,CURLOPT_INTERFACE,$ip); |
|
101 | + curl_setopt($this->ch, CURLOPT_INTERFACE, $ip); |
|
102 | 102 | } |
103 | 103 | //set curl function timeout to $timeout |
104 | 104 | curl_setopt($this->ch, CURLOPT_TIMEOUT, $timeout); |
@@ -109,13 +109,13 @@ discard block |
||
109 | 109 | curl_setopt($this->ch, CURLOPT_POSTFIELDS, $postdata); |
110 | 110 | //and finally send curl request |
111 | 111 | $result = curl_exec_redir($this->ch); |
112 | - if(curl_errno($this->ch)) |
|
112 | + if (curl_errno($this->ch)) |
|
113 | 113 | { |
114 | - if($this->debug) |
|
114 | + if ($this->debug) |
|
115 | 115 | { |
116 | 116 | echo "Error Occured in Curl\n"; |
117 | - echo "Error number: " .curl_errno($this->ch) ."\n"; |
|
118 | - echo "Error message: " .curl_error($this->ch)."\n"; |
|
117 | + echo "Error number: ".curl_errno($this->ch)."\n"; |
|
118 | + echo "Error message: ".curl_error($this->ch)."\n"; |
|
119 | 119 | } |
120 | 120 | return false; |
121 | 121 | } |
@@ -133,35 +133,35 @@ discard block |
||
133 | 133 | * @return string data |
134 | 134 | * @access public |
135 | 135 | */ |
136 | - function fetch_url($url, $ip=null, $timeout=5) |
|
136 | + function fetch_url($url, $ip = null, $timeout = 5) |
|
137 | 137 | { |
138 | 138 | // set url to post to |
139 | - curl_setopt($this->ch, CURLOPT_URL,$url); |
|
139 | + curl_setopt($this->ch, CURLOPT_URL, $url); |
|
140 | 140 | |
141 | 141 | //set method to get |
142 | - curl_setopt($this->ch, CURLOPT_HTTPGET,true); |
|
142 | + curl_setopt($this->ch, CURLOPT_HTTPGET, true); |
|
143 | 143 | // return into a variable rather than displaying it |
144 | - curl_setopt($this->ch, CURLOPT_RETURNTRANSFER,true); |
|
144 | + curl_setopt($this->ch, CURLOPT_RETURNTRANSFER, true); |
|
145 | 145 | //bind to specific ip address if it is sent trough arguments |
146 | - if($ip) |
|
146 | + if ($ip) |
|
147 | 147 | { |
148 | - if($this->debug) |
|
148 | + if ($this->debug) |
|
149 | 149 | { |
150 | 150 | echo "Binding to ip $ip\n"; |
151 | 151 | } |
152 | - curl_setopt($this->ch,CURLOPT_INTERFACE,$ip); |
|
152 | + curl_setopt($this->ch, CURLOPT_INTERFACE, $ip); |
|
153 | 153 | } |
154 | 154 | //set curl function timeout to $timeout |
155 | 155 | curl_setopt($this->ch, CURLOPT_TIMEOUT, $timeout); |
156 | 156 | //and finally send curl request |
157 | 157 | $result = curl_exec_redir($this->ch); |
158 | - if(curl_errno($this->ch)) |
|
158 | + if (curl_errno($this->ch)) |
|
159 | 159 | { |
160 | - if($this->debug) |
|
160 | + if ($this->debug) |
|
161 | 161 | { |
162 | 162 | echo "Error Occured in Curl\n"; |
163 | - echo "Error number: " .curl_errno($this->ch) ."\n"; |
|
164 | - echo "Error message: " .curl_error($this->ch)."\n"; |
|
163 | + echo "Error number: ".curl_errno($this->ch)."\n"; |
|
164 | + echo "Error message: ".curl_error($this->ch)."\n"; |
|
165 | 165 | } |
166 | 166 | return false; |
167 | 167 | } |
@@ -180,18 +180,18 @@ discard block |
||
180 | 180 | * @return boolean true on success false othervise |
181 | 181 | * @access public |
182 | 182 | */ |
183 | - function fetch_into_file($url, $fp, $ip=null, $timeout=5) |
|
183 | + function fetch_into_file($url, $fp, $ip = null, $timeout = 5) |
|
184 | 184 | { |
185 | 185 | // set url to post to |
186 | - curl_setopt($this->ch, CURLOPT_URL,$url); |
|
186 | + curl_setopt($this->ch, CURLOPT_URL, $url); |
|
187 | 187 | //set method to get |
188 | 188 | curl_setopt($this->ch, CURLOPT_HTTPGET, true); |
189 | 189 | // store data into file rather than displaying it |
190 | 190 | curl_setopt($this->ch, CURLOPT_FILE, $fp); |
191 | 191 | //bind to specific ip address if it is sent trough arguments |
192 | - if($ip) |
|
192 | + if ($ip) |
|
193 | 193 | { |
194 | - if($this->debug) |
|
194 | + if ($this->debug) |
|
195 | 195 | { |
196 | 196 | echo "Binding to ip $ip\n"; |
197 | 197 | } |
@@ -201,13 +201,13 @@ discard block |
||
201 | 201 | curl_setopt($this->ch, CURLOPT_TIMEOUT, $timeout); |
202 | 202 | //and finally send curl request |
203 | 203 | $result = curl_exec_redir($this->ch); |
204 | - if(curl_errno($this->ch)) |
|
204 | + if (curl_errno($this->ch)) |
|
205 | 205 | { |
206 | - if($this->debug) |
|
206 | + if ($this->debug) |
|
207 | 207 | { |
208 | 208 | echo "Error Occured in Curl\n"; |
209 | - echo "Error number: " .curl_errno($this->ch) ."\n"; |
|
210 | - echo "Error message: " .curl_error($this->ch)."\n"; |
|
209 | + echo "Error number: ".curl_errno($this->ch)."\n"; |
|
210 | + echo "Error message: ".curl_error($this->ch)."\n"; |
|
211 | 211 | } |
212 | 212 | return false; |
213 | 213 | } |
@@ -228,7 +228,7 @@ discard block |
||
228 | 228 | * @return string data |
229 | 229 | * @access public |
230 | 230 | */ |
231 | - function send_multipart_post_data($url, $postdata, $file_field_array=array(), $ip=null, $timeout=30) |
|
231 | + function send_multipart_post_data($url, $postdata, $file_field_array = array(), $ip = null, $timeout = 30) |
|
232 | 232 | { |
233 | 233 | //set various curl options first |
234 | 234 | // set url to post to |
@@ -236,13 +236,13 @@ discard block |
||
236 | 236 | // return into a variable rather than displaying it |
237 | 237 | curl_setopt($this->ch, CURLOPT_RETURNTRANSFER, true); |
238 | 238 | //bind to specific ip address if it is sent trough arguments |
239 | - if($ip) |
|
239 | + if ($ip) |
|
240 | 240 | { |
241 | - if($this->debug) |
|
241 | + if ($this->debug) |
|
242 | 242 | { |
243 | 243 | echo "Binding to ip $ip\n"; |
244 | 244 | } |
245 | - curl_setopt($this->ch,CURLOPT_INTERFACE,$ip); |
|
245 | + curl_setopt($this->ch, CURLOPT_INTERFACE, $ip); |
|
246 | 246 | } |
247 | 247 | //set curl function timeout to $timeout |
248 | 248 | curl_setopt($this->ch, CURLOPT_TIMEOUT, $timeout); |
@@ -257,28 +257,28 @@ discard block |
||
257 | 257 | //generate post string |
258 | 258 | $post_array = array(); |
259 | 259 | $post_string_array = array(); |
260 | - if(!is_array($postdata)) |
|
260 | + if (!is_array($postdata)) |
|
261 | 261 | { |
262 | 262 | return false; |
263 | 263 | } |
264 | - foreach($postdata as $key=>$value) |
|
264 | + foreach ($postdata as $key=>$value) |
|
265 | 265 | { |
266 | 266 | $post_array[$key] = $value; |
267 | 267 | $post_string_array[] = urlencode($key)."=".urlencode($value); |
268 | 268 | } |
269 | - $post_string = implode("&",$post_string_array); |
|
270 | - if($this->debug) |
|
269 | + $post_string = implode("&", $post_string_array); |
|
270 | + if ($this->debug) |
|
271 | 271 | { |
272 | 272 | echo "Post String: $post_string\n"; |
273 | 273 | } |
274 | 274 | // set post string |
275 | 275 | //curl_setopt($this->ch, CURLOPT_POSTFIELDS, $post_string); |
276 | 276 | // set multipart form data - file array field-value pairs |
277 | - if(!empty($file_field_array)) |
|
277 | + if (!empty($file_field_array)) |
|
278 | 278 | { |
279 | - foreach($file_field_array as $var_name => $var_value) |
|
279 | + foreach ($file_field_array as $var_name => $var_value) |
|
280 | 280 | { |
281 | - if(strpos(PHP_OS, "WIN") !== false) $var_value = str_replace("/", "\\", $var_value); // win hack |
|
281 | + if (strpos(PHP_OS, "WIN")!==false) $var_value = str_replace("/", "\\", $var_value); // win hack |
|
282 | 282 | $file_field_array[$var_name] = "@".$var_value; |
283 | 283 | } |
284 | 284 | } |
@@ -287,13 +287,13 @@ discard block |
||
287 | 287 | curl_setopt($this->ch, CURLOPT_POSTFIELDS, $result_post); |
288 | 288 | //and finally send curl request |
289 | 289 | $result = curl_exec_redir($this->ch); |
290 | - if(curl_errno($this->ch)) |
|
290 | + if (curl_errno($this->ch)) |
|
291 | 291 | { |
292 | - if($this->debug) |
|
292 | + if ($this->debug) |
|
293 | 293 | { |
294 | 294 | echo "Error Occured in Curl\n"; |
295 | - echo "Error number: " .curl_errno($this->ch) ."\n"; |
|
296 | - echo "Error message: " .curl_error($this->ch)."\n"; |
|
295 | + echo "Error number: ".curl_errno($this->ch)."\n"; |
|
296 | + echo "Error message: ".curl_error($this->ch)."\n"; |
|
297 | 297 | } |
298 | 298 | return false; |
299 | 299 | } |
@@ -310,8 +310,8 @@ discard block |
||
310 | 310 | function store_cookies($cookie_file) |
311 | 311 | { |
312 | 312 | // use cookies on each request (cookies stored in $cookie_file) |
313 | - curl_setopt ($this->ch, CURLOPT_COOKIEJAR, $cookie_file); |
|
314 | - curl_setopt ($this->ch, CURLOPT_COOKIEFILE, $cookie_file); |
|
313 | + curl_setopt($this->ch, CURLOPT_COOKIEJAR, $cookie_file); |
|
314 | + curl_setopt($this->ch, CURLOPT_COOKIEFILE, $cookie_file); |
|
315 | 315 | } |
316 | 316 | |
317 | 317 | /** |
@@ -321,7 +321,7 @@ discard block |
||
321 | 321 | */ |
322 | 322 | function set_cookie($cookie) |
323 | 323 | { |
324 | - curl_setopt ($this->ch, CURLOPT_COOKIE, $cookie); |
|
324 | + curl_setopt($this->ch, CURLOPT_COOKIE, $cookie); |
|
325 | 325 | } |
326 | 326 | /** |
327 | 327 | * Get last URL info |
@@ -349,8 +349,8 @@ discard block |
||
349 | 349 | */ |
350 | 350 | function get_error_msg() |
351 | 351 | { |
352 | - $err = "Error number: " .curl_errno($this->ch) ."\n"; |
|
353 | - $err .="Error message: " .curl_error($this->ch)."\n"; |
|
352 | + $err = "Error number: ".curl_errno($this->ch)."\n"; |
|
353 | + $err .= "Error message: ".curl_error($this->ch)."\n"; |
|
354 | 354 | return $err; |
355 | 355 | } |
356 | 356 | |
@@ -374,7 +374,7 @@ discard block |
||
374 | 374 | { |
375 | 375 | static $curl_loops = 0; |
376 | 376 | static $curl_max_loops = 20; |
377 | - if ($curl_loops++ >= $curl_max_loops) |
|
377 | + if ($curl_loops++>=$curl_max_loops) |
|
378 | 378 | { |
379 | 379 | $curl_loops = 0; |
380 | 380 | return FALSE; |
@@ -391,10 +391,10 @@ discard block |
||
391 | 391 | //echo "*** Got HTTP code: $http_code ***\n"; |
392 | 392 | //echo "** Got headers: \n$header\n\n"; |
393 | 393 | |
394 | - if ( $http_code == 301 || $http_code == 302 ) |
|
394 | + if ($http_code==301 || $http_code==302) |
|
395 | 395 | { |
396 | 396 | // If we're redirected, we should revert to GET |
397 | - curl_setopt($ch, CURLOPT_HTTPGET,true); |
|
397 | + curl_setopt($ch, CURLOPT_HTTPGET, true); |
|
398 | 398 | |
399 | 399 | $matches = array(); |
400 | 400 | preg_match('/Location:\s*(.*?)(\n|$)/i', $header, $matches); |
@@ -412,12 +412,12 @@ discard block |
||
412 | 412 | $url['host'] = $last_url['host']; |
413 | 413 | if (empty($url['path'])) |
414 | 414 | $url['path'] = $last_url['path']; |
415 | - $new_url = $url['scheme'] . '://' . $url['host'] . $url['path'] . (!empty($url['query'])?'?'.$url['query']:''); |
|
415 | + $new_url = $url['scheme'].'://'.$url['host'].$url['path'].(!empty($url['query']) ? '?'.$url['query'] : ''); |
|
416 | 416 | //echo "Being redirected to $new_url\n"; |
417 | 417 | curl_setopt($ch, CURLOPT_URL, $new_url); |
418 | 418 | return curl_exec_redir($ch); |
419 | 419 | } else { |
420 | - $curl_loops=0; |
|
420 | + $curl_loops = 0; |
|
421 | 421 | return $data; |
422 | 422 | } |
423 | 423 | } |
@@ -118,8 +118,7 @@ discard block |
||
118 | 118 | echo "Error message: " .curl_error($this->ch)."\n"; |
119 | 119 | } |
120 | 120 | return false; |
121 | - } |
|
122 | - else |
|
121 | + } else |
|
123 | 122 | { |
124 | 123 | return $result; |
125 | 124 | } |
@@ -164,8 +163,7 @@ discard block |
||
164 | 163 | echo "Error message: " .curl_error($this->ch)."\n"; |
165 | 164 | } |
166 | 165 | return false; |
167 | - } |
|
168 | - else |
|
166 | + } else |
|
169 | 167 | { |
170 | 168 | return $result; |
171 | 169 | } |
@@ -210,8 +208,7 @@ discard block |
||
210 | 208 | echo "Error message: " .curl_error($this->ch)."\n"; |
211 | 209 | } |
212 | 210 | return false; |
213 | - } |
|
214 | - else |
|
211 | + } else |
|
215 | 212 | { |
216 | 213 | return true; |
217 | 214 | } |
@@ -278,7 +275,10 @@ discard block |
||
278 | 275 | { |
279 | 276 | foreach($file_field_array as $var_name => $var_value) |
280 | 277 | { |
281 | - if(strpos(PHP_OS, "WIN") !== false) $var_value = str_replace("/", "\\", $var_value); // win hack |
|
278 | + if(strpos(PHP_OS, "WIN") !== false) { |
|
279 | + $var_value = str_replace("/", "\\", $var_value); |
|
280 | + } |
|
281 | + // win hack |
|
282 | 282 | $file_field_array[$var_name] = "@".$var_value; |
283 | 283 | } |
284 | 284 | } |
@@ -296,8 +296,7 @@ discard block |
||
296 | 296 | echo "Error message: " .curl_error($this->ch)."\n"; |
297 | 297 | } |
298 | 298 | return false; |
299 | - } |
|
300 | - else |
|
299 | + } else |
|
301 | 300 | { |
302 | 301 | return $result; |
303 | 302 | } |
@@ -406,12 +405,15 @@ discard block |
||
406 | 405 | return $data; |
407 | 406 | } |
408 | 407 | $last_url = parse_url(curl_getinfo($ch, CURLINFO_EFFECTIVE_URL)); |
409 | - if (empty($url['scheme'])) |
|
410 | - $url['scheme'] = $last_url['scheme']; |
|
411 | - if (empty($url['host'])) |
|
412 | - $url['host'] = $last_url['host']; |
|
413 | - if (empty($url['path'])) |
|
414 | - $url['path'] = $last_url['path']; |
|
408 | + if (empty($url['scheme'])) { |
|
409 | + $url['scheme'] = $last_url['scheme']; |
|
410 | + } |
|
411 | + if (empty($url['host'])) { |
|
412 | + $url['host'] = $last_url['host']; |
|
413 | + } |
|
414 | + if (empty($url['path'])) { |
|
415 | + $url['path'] = $last_url['path']; |
|
416 | + } |
|
415 | 417 | $new_url = $url['scheme'] . '://' . $url['host'] . $url['path'] . (!empty($url['query'])?'?'.$url['query']:''); |
416 | 418 | //echo "Being redirected to $new_url\n"; |
417 | 419 | curl_setopt($ch, CURLOPT_URL, $new_url); |
@@ -23,10 +23,10 @@ discard block |
||
23 | 23 | |
24 | 24 | public static function fromArray(array $params) { |
25 | 25 | $geocoding = new Geocoding(); |
26 | - foreach($params as $key => $value) { |
|
27 | - if (property_exists($geocoding, $key)) { |
|
28 | - $geocoding->{$key} = $value; |
|
29 | - } |
|
26 | + foreach($params as $key => $value) { |
|
27 | + if (property_exists($geocoding, $key)) { |
|
28 | + $geocoding->{$key} = $value; |
|
29 | + } |
|
30 | 30 | } |
31 | 31 | return $geocoding; |
32 | 32 | } |
@@ -35,15 +35,15 @@ discard block |
||
35 | 35 | { |
36 | 36 | //Route4Me::simplePrint($params); |
37 | 37 | $query = array( |
38 | - 'format' => isset($params['format']) ? $params['format']: null, |
|
39 | - 'addresses' => isset($params['addresses']) ? $params['addresses'] : null, |
|
40 | - ); |
|
38 | + 'format' => isset($params['format']) ? $params['format']: null, |
|
39 | + 'addresses' => isset($params['addresses']) ? $params['addresses'] : null, |
|
40 | + ); |
|
41 | 41 | //var_dump($query); |
42 | 42 | $fgcoding = Route4Me::makeRequst(array( |
43 | - 'url' => self::$apiUrl, |
|
44 | - 'method' => 'POST', |
|
45 | - 'query' => $query |
|
46 | - )); |
|
43 | + 'url' => self::$apiUrl, |
|
44 | + 'method' => 'POST', |
|
45 | + 'query' => $query |
|
46 | + )); |
|
47 | 47 | |
48 | 48 | return $fgcoding; |
49 | 49 | } |
@@ -64,9 +64,9 @@ discard block |
||
64 | 64 | $query = array(); |
65 | 65 | |
66 | 66 | $response = Route4Me::makeUrlRequst($url_query, array( |
67 | - 'method' => 'GET', |
|
68 | - 'query' => $query |
|
69 | - )); |
|
67 | + 'method' => 'GET', |
|
68 | + 'query' => $query |
|
69 | + )); |
|
70 | 70 | |
71 | 71 | return $response; |
72 | 72 | } |
@@ -87,9 +87,9 @@ discard block |
||
87 | 87 | $query = array(); |
88 | 88 | |
89 | 89 | $response = Route4Me::makeUrlRequst($url_query, array( |
90 | - 'method' => 'GET', |
|
91 | - 'query' => $query |
|
92 | - )); |
|
90 | + 'method' => 'GET', |
|
91 | + 'query' => $query |
|
92 | + )); |
|
93 | 93 | |
94 | 94 | return $response; |
95 | 95 | } |
@@ -113,9 +113,9 @@ discard block |
||
113 | 113 | $query = array(); |
114 | 114 | |
115 | 115 | $response = Route4Me::makeUrlRequst($url_query, array( |
116 | - 'method' => 'GET', |
|
117 | - 'query' => $query |
|
118 | - )); |
|
116 | + 'method' => 'GET', |
|
117 | + 'query' => $query |
|
118 | + )); |
|
119 | 119 | |
120 | 120 | return $response; |
121 | 121 | } |
@@ -19,11 +19,11 @@ discard block |
||
19 | 19 | public $housenumber; |
20 | 20 | public $zipcode; |
21 | 21 | |
22 | - public function __construct () { } |
|
22 | + public function __construct() { } |
|
23 | 23 | |
24 | 24 | public static function fromArray(array $params) { |
25 | 25 | $geocoding = new Geocoding(); |
26 | - foreach($params as $key => $value) { |
|
26 | + foreach ($params as $key => $value) { |
|
27 | 27 | if (property_exists($geocoding, $key)) { |
28 | 28 | $geocoding->{$key} = $value; |
29 | 29 | } |
@@ -35,7 +35,7 @@ discard block |
||
35 | 35 | { |
36 | 36 | //Route4Me::simplePrint($params); |
37 | 37 | $query = array( |
38 | - 'format' => isset($params['format']) ? $params['format']: null, |
|
38 | + 'format' => isset($params['format']) ? $params['format'] : null, |
|
39 | 39 | 'addresses' => isset($params['addresses']) ? $params['addresses'] : null, |
40 | 40 | ); |
41 | 41 | //var_dump($query); |
@@ -52,13 +52,13 @@ discard block |
||
52 | 52 | { |
53 | 53 | $url_query = self::$api_street; |
54 | 54 | if (isset($params['pk'])) { |
55 | - $url_query.=$params['pk'].'/'; |
|
55 | + $url_query .= $params['pk'].'/'; |
|
56 | 56 | } |
57 | 57 | if (isset($params['offset'])) { |
58 | - $url_query.=$params['offset'].'/'; |
|
58 | + $url_query .= $params['offset'].'/'; |
|
59 | 59 | } |
60 | 60 | if (isset($params['limit'])) { |
61 | - $url_query.=$params['limit'].'/'; |
|
61 | + $url_query .= $params['limit'].'/'; |
|
62 | 62 | } |
63 | 63 | |
64 | 64 | $query = array(); |
@@ -75,13 +75,13 @@ discard block |
||
75 | 75 | { |
76 | 76 | $url_query = self::$api_zipcode; |
77 | 77 | if (isset($params['zipcode'])) { |
78 | - $url_query.=$params['zipcode'].'/'; |
|
78 | + $url_query .= $params['zipcode'].'/'; |
|
79 | 79 | } |
80 | 80 | if (isset($params['offset'])) { |
81 | - $url_query.=$params['offset'].'/'; |
|
81 | + $url_query .= $params['offset'].'/'; |
|
82 | 82 | } |
83 | 83 | if (isset($params['limit'])) { |
84 | - $url_query.=$params['limit'].'/'; |
|
84 | + $url_query .= $params['limit'].'/'; |
|
85 | 85 | } |
86 | 86 | |
87 | 87 | $query = array(); |
@@ -98,16 +98,16 @@ discard block |
||
98 | 98 | { |
99 | 99 | $url_query = self::$api_service; |
100 | 100 | if (isset($params['zipcode'])) { |
101 | - $url_query.=$params['zipcode'].'/'; |
|
101 | + $url_query .= $params['zipcode'].'/'; |
|
102 | 102 | } |
103 | 103 | if (isset($params['housenumber'])) { |
104 | - $url_query.=$params['housenumber'].'/'; |
|
104 | + $url_query .= $params['housenumber'].'/'; |
|
105 | 105 | } |
106 | 106 | if (isset($params['offset'])) { |
107 | - $url_query.=$params['offset'].'/'; |
|
107 | + $url_query .= $params['offset'].'/'; |
|
108 | 108 | } |
109 | 109 | if (isset($params['limit'])) { |
110 | - $url_query.=$params['limit'].'/'; |
|
110 | + $url_query .= $params['limit'].'/'; |
|
111 | 111 | } |
112 | 112 | |
113 | 113 | $query = array(); |