|
1 | 1 | <?php
|
| 2 | + |
2 | 3 | // Distributed by license from CardinalCommerce Corporation
|
3 | 4 | /////////////////////////////////////////////////////////////////////////////////////////////
|
4 | 5 | // CardinalCommerce (http://www.cardinalcommerce.com)
|
|
12 | 13 | //
|
13 | 14 | /////////////////////////////////////////////////////////////////////////////////////////////
|
14 | 15 |
|
15 |
| - require("XMLParser.php"); |
16 |
| - include "CentinelErrors.php"; |
17 |
| - |
18 |
| - class CentinelClient { |
| 16 | +require('XMLParser.php'); |
| 17 | +include 'CentinelErrors.php'; |
19 | 18 |
|
20 |
| - public $request ; |
21 |
| - public $response ; |
22 |
| - public $parser; |
| 19 | +class CentinelClient |
| 20 | +{ |
| 21 | + public $request ; |
| 22 | + public $response ; |
| 23 | + public $parser; |
23 | 24 |
|
24 |
| - ///////////////////////////////////////////////////////////////////////////////////////////// |
25 |
| - // Function Add(name, value) |
26 |
| - // |
27 |
| - // Add name/value pairs to the Centinel request collection. |
28 |
| - ///////////////////////////////////////////////////////////////////////////////////////////// |
| 25 | + ///////////////////////////////////////////////////////////////////////////////////////////// |
| 26 | + // Function Add(name, value) |
| 27 | + // |
| 28 | + // Add name/value pairs to the Centinel request collection. |
| 29 | + ///////////////////////////////////////////////////////////////////////////////////////////// |
29 | 30 |
|
30 | 31 |
|
31 |
| - function add($name, $value) { |
32 |
| - $this->request[$name] = $this->escapeXML($value); |
33 |
| - } |
| 32 | + public function add($name, $value) |
| 33 | + { |
| 34 | + $this->request[$name] = $this->escapeXML($value); |
| 35 | + } |
34 | 36 |
|
35 |
| - ///////////////////////////////////////////////////////////////////////////////////////////// |
36 |
| - // Function getValue(name) |
37 |
| - // |
38 |
| - // Retrieve a specific value for the give name within the Centinel response collection. |
39 |
| - ///////////////////////////////////////////////////////////////////////////////////////////// |
| 37 | + ///////////////////////////////////////////////////////////////////////////////////////////// |
| 38 | + // Function getValue(name) |
| 39 | + // |
| 40 | + // Retrieve a specific value for the give name within the Centinel response collection. |
| 41 | + ///////////////////////////////////////////////////////////////////////////////////////////// |
40 | 42 |
|
41 | 43 |
|
42 |
| - function getValue($name) { |
43 |
| - if (isset($this->response[$name])) { |
44 |
| - return $this->response[$name]; |
45 |
| - }else{ |
46 |
| - return ""; |
47 |
| - } |
48 |
| - } |
| 44 | + public function getValue($name) |
| 45 | + { |
| 46 | + if (isset($this->response[$name])) { |
| 47 | + return $this->response[$name]; |
| 48 | + } else { |
| 49 | + return ''; |
| 50 | + } |
| 51 | + } |
49 | 52 |
|
50 | 53 |
|
51 |
| - ///////////////////////////////////////////////////////////////////////////////////////////// |
52 |
| - // Function getRequestXml(name) |
53 |
| - // |
54 |
| - // Serialize all elements of the request collection into a XML message, and format the required |
55 |
| - // form payload according to the Centinel XML Message APIs. The form payload is returned from |
56 |
| - // the function. |
57 |
| - ///////////////////////////////////////////////////////////////////////////////////////////// |
| 54 | + ///////////////////////////////////////////////////////////////////////////////////////////// |
| 55 | + // Function getRequestXml(name) |
| 56 | + // |
| 57 | + // Serialize all elements of the request collection into a XML message, and format the required |
| 58 | + // form payload according to the Centinel XML Message APIs. The form payload is returned from |
| 59 | + // the function. |
| 60 | + ///////////////////////////////////////////////////////////////////////////////////////////// |
58 | 61 |
|
59 | 62 |
|
60 |
| - function getRequestXml() |
61 |
| - { |
62 |
| - $queryString = "<CardinalMPI>"; |
63 |
| - foreach ($this->request as $name => $value) { |
64 |
| - $queryString = $queryString . "<" . ($name) . ">" . ($value) . "</" . ($name) . ">"; |
65 |
| - } |
66 |
| - $queryString = $queryString . "</CardinalMPI>"; |
67 |
| - return "cmpi_msg=" . urlencode($queryString); |
| 63 | + public function getRequestXml() |
| 64 | + { |
| 65 | + $queryString = '<CardinalMPI>'; |
| 66 | + foreach ($this->request as $name => $value) { |
| 67 | + $queryString = $queryString . '<' . ($name) . '>' . ($value) . '</' . ($name) . '>'; |
68 | 68 | }
|
| 69 | + $queryString = $queryString . '</CardinalMPI>'; |
| 70 | + return 'cmpi_msg=' . urlencode($queryString); |
| 71 | + } |
69 | 72 |
|
70 |
| - ///////////////////////////////////////////////////////////////////////////////////////////// |
71 |
| - // Function sendHttp(url, "", $timeout) |
72 |
| - // |
73 |
| - // HTTP POST the form payload to the url using cURL. |
74 |
| - // form payload according to the Centinel XML Message APIs. The form payload is returned from |
75 |
| - // the function. |
76 |
| - ///////////////////////////////////////////////////////////////////////////////////////////// |
| 73 | + ///////////////////////////////////////////////////////////////////////////////////////////// |
| 74 | + // Function sendHttp(url, "", $timeout) |
| 75 | + // |
| 76 | + // HTTP POST the form payload to the url using cURL. |
| 77 | + // form payload according to the Centinel XML Message APIs. The form payload is returned from |
| 78 | + // the function. |
| 79 | + ///////////////////////////////////////////////////////////////////////////////////////////// |
77 | 80 |
|
78 |
| - function sendHttp($url, $connectTimeout, $timeout) |
79 |
| - { |
| 81 | + public function sendHttp($url, $connectTimeout, $timeout) |
| 82 | + { |
80 | 83 |
|
81 |
| - // verify that the URL uses a supported protocol. |
| 84 | + // verify that the URL uses a supported protocol. |
82 | 85 |
|
83 |
| - if ((str_starts_with($url, "http://")) || (str_starts_with($url, "https://"))) { |
| 86 | + if ((str_starts_with($url, 'http://')) || (str_starts_with($url, 'https://'))) { |
84 | 87 |
|
85 |
| - //Construct the payload to POST to the url. |
| 88 | + //Construct the payload to POST to the url. |
86 | 89 |
|
87 |
| - $data = $this->getRequestXml(); |
88 |
| - // create a new cURL resource |
| 90 | + $data = $this->getRequestXml(); |
| 91 | + // create a new cURL resource |
89 | 92 |
|
90 |
| - $ch = curl_init($url); |
| 93 | + $ch = curl_init($url); |
91 | 94 |
|
92 |
| - // set URL and other appropriate options |
93 |
| - curl_setopt($ch, CURLOPT_POST, 1); |
94 |
| - curl_setopt($ch, CURLOPT_POSTFIELDS, $data); |
95 |
| - curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 2); |
96 |
| - curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); |
97 |
| - curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE); |
98 |
| - curl_setopt($ch, CURLOPT_TIMEOUT, $timeout); |
| 95 | + // set URL and other appropriate options |
| 96 | + curl_setopt($ch, CURLOPT_POST, 1); |
| 97 | + curl_setopt($ch, CURLOPT_POSTFIELDS, $data); |
| 98 | + curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 2); |
| 99 | + curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); |
| 100 | + curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); |
| 101 | + curl_setopt($ch, CURLOPT_TIMEOUT, $timeout); |
99 | 102 |
|
100 |
| - // Execute the request. |
| 103 | + // Execute the request. |
101 | 104 |
|
102 |
| - $result = curl_exec($ch); |
103 |
| - $succeeded = curl_errno($ch) == 0 ? true : false; |
| 105 | + $result = curl_exec($ch); |
| 106 | + $succeeded = curl_errno($ch) == 0 ? true : false; |
104 | 107 |
|
105 |
| - // close cURL resource, and free up system resources |
| 108 | + // close cURL resource, and free up system resources |
106 | 109 |
|
107 |
| - curl_close($ch); |
| 110 | + curl_close($ch); |
108 | 111 |
|
109 |
| - // If Communication was not successful set error result, otherwise |
| 112 | + // If Communication was not successful set error result, otherwise |
110 | 113 |
|
111 |
| - if(!$succeeded) { |
| 114 | + if (!$succeeded) { |
112 | 115 |
|
113 |
| - $result = $this->setErrorResponse(CENTINEL_ERROR_CODE_8030, CENTINEL_ERROR_CODE_8030_DESC); |
| 116 | + $result = $this->setErrorResponse(CENTINEL_ERROR_CODE_8030, CENTINEL_ERROR_CODE_8030_DESC); |
114 | 117 |
|
115 |
| - } |
| 118 | + } |
116 | 119 |
|
117 |
| - // Assert that we received an expected Centinel Message in response. |
| 120 | + // Assert that we received an expected Centinel Message in response. |
118 | 121 |
|
119 |
| - if (!str_contains($result, "<CardinalMPI>")) { |
120 |
| - $result = $this->setErrorResponse(CENTINEL_ERROR_CODE_8010, CENTINEL_ERROR_CODE_8010_DESC); |
121 |
| - } |
| 122 | + if (!str_contains($result, '<CardinalMPI>')) { |
| 123 | + $result = $this->setErrorResponse(CENTINEL_ERROR_CODE_8010, CENTINEL_ERROR_CODE_8010_DESC); |
| 124 | + } |
122 | 125 |
|
123 | 126 |
|
124 |
| - } else { |
125 |
| - $result = $this->setErrorResponse(CENTINEL_ERROR_CODE_8000, CENTINEL_ERROR_CODE_8000_DESC); |
126 |
| - } |
127 |
| - $parser = new XMLParser; |
128 |
| - $parser->deserializeXml($result); |
129 |
| - $this->response = $parser->deserializedResponse; |
130 |
| - } |
| 127 | + } else { |
| 128 | + $result = $this->setErrorResponse(CENTINEL_ERROR_CODE_8000, CENTINEL_ERROR_CODE_8000_DESC); |
| 129 | + } |
| 130 | + $parser = new XMLParser(); |
| 131 | + $parser->deserializeXml($result); |
| 132 | + $this->response = $parser->deserializedResponse; |
| 133 | + } |
131 | 134 |
|
132 |
| - ///////////////////////////////////////////////////////////////////////////////////////////// |
133 |
| - // Function setErrorResponse(errorNo, errorDesc) |
134 |
| - // |
135 |
| - // Initialize an Error response to ensure that parsing will be handled properly. |
136 |
| - ///////////////////////////////////////////////////////////////////////////////////////////// |
| 135 | + ///////////////////////////////////////////////////////////////////////////////////////////// |
| 136 | + // Function setErrorResponse(errorNo, errorDesc) |
| 137 | + // |
| 138 | + // Initialize an Error response to ensure that parsing will be handled properly. |
| 139 | + ///////////////////////////////////////////////////////////////////////////////////////////// |
137 | 140 |
|
138 |
| - function setErrorResponse($errorNo, $errorDesc) { |
| 141 | + public function setErrorResponse($errorNo, $errorDesc) |
| 142 | + { |
139 | 143 |
|
140 |
| - $resultText = "<CardinalMPI>"; |
141 |
| - $resultText = $resultText."<ErrorNo>".($errorNo)."</ErrorNo>" ; |
142 |
| - $resultText = $resultText."<ErrorDesc>".($errorDesc)."</ErrorDesc>" ; |
| 144 | + $resultText = '<CardinalMPI>'; |
| 145 | + $resultText = $resultText . '<ErrorNo>' . ($errorNo) . '</ErrorNo>' ; |
| 146 | + $resultText = $resultText . '<ErrorDesc>' . ($errorDesc) . '</ErrorDesc>' ; |
143 | 147 |
|
144 |
| - return $resultText."</CardinalMPI>"; |
145 |
| - } |
| 148 | + return $resultText . '</CardinalMPI>'; |
| 149 | + } |
146 | 150 |
|
147 |
| - ///////////////////////////////////////////////////////////////////////////////////////////// |
148 |
| - // Function escapeXML(value) |
149 |
| - // |
150 |
| - // Escaped string converting all '&' to '&' and all '<' to '<'. Return the escaped value. |
151 |
| - ///////////////////////////////////////////////////////////////////////////////////////////// |
| 151 | + ///////////////////////////////////////////////////////////////////////////////////////////// |
| 152 | + // Function escapeXML(value) |
| 153 | + // |
| 154 | + // Escaped string converting all '&' to '&' and all '<' to '<'. Return the escaped value. |
| 155 | + ///////////////////////////////////////////////////////////////////////////////////////////// |
152 | 156 |
|
153 |
| - function escapeXML($elementValue){ |
| 157 | + public function escapeXML($elementValue) |
| 158 | + { |
154 | 159 |
|
155 |
| - $escapedValue = str_replace("&", "&", $elementValue); |
| 160 | + $escapedValue = str_replace('&', '&', $elementValue); |
156 | 161 |
|
157 |
| - return str_replace("<", "<", $escapedValue); |
| 162 | + return str_replace('<', '<', $escapedValue); |
158 | 163 |
|
159 |
| - } |
| 164 | + } |
160 | 165 |
|
161 |
| - } |
| 166 | +} |
0 commit comments