@@ -1,28 +1,28 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | /** |
3 | - * This is a PHP library that handles calling reCAPTCHA. |
|
4 | - * |
|
5 | - * @copyright Copyright (c) 2015, Google Inc. |
|
6 | - * @link http://www.google.com/recaptcha |
|
7 | - * |
|
8 | - * Permission is hereby granted, free of charge, to any person obtaining a copy |
|
9 | - * of this software and associated documentation files (the "Software"), to deal |
|
10 | - * in the Software without restriction, including without limitation the rights |
|
11 | - * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
|
12 | - * copies of the Software, and to permit persons to whom the Software is |
|
13 | - * furnished to do so, subject to the following conditions: |
|
14 | - * |
|
15 | - * The above copyright notice and this permission notice shall be included in |
|
16 | - * all copies or substantial portions of the Software. |
|
17 | - * |
|
18 | - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
|
19 | - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
|
20 | - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
|
21 | - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
|
22 | - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
|
23 | - * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN |
|
24 | - * THE SOFTWARE. |
|
25 | - */ |
|
3 | + * This is a PHP library that handles calling reCAPTCHA. |
|
4 | + * |
|
5 | + * @copyright Copyright (c) 2015, Google Inc. |
|
6 | + * @link http://www.google.com/recaptcha |
|
7 | + * |
|
8 | + * Permission is hereby granted, free of charge, to any person obtaining a copy |
|
9 | + * of this software and associated documentation files (the "Software"), to deal |
|
10 | + * in the Software without restriction, including without limitation the rights |
|
11 | + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
|
12 | + * copies of the Software, and to permit persons to whom the Software is |
|
13 | + * furnished to do so, subject to the following conditions: |
|
14 | + * |
|
15 | + * The above copyright notice and this permission notice shall be included in |
|
16 | + * all copies or substantial portions of the Software. |
|
17 | + * |
|
18 | + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
|
19 | + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
|
20 | + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
|
21 | + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
|
22 | + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
|
23 | + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN |
|
24 | + * THE SOFTWARE. |
|
25 | + */ |
|
26 | 26 | |
27 | 27 | namespace ReCaptcha\RequestMethod; |
28 | 28 | |
@@ -32,73 +32,73 @@ discard block |
||
32 | 32 | */ |
33 | 33 | class Socket |
34 | 34 | { |
35 | - private $handle = null; |
|
35 | + private $handle = null; |
|
36 | 36 | |
37 | - /** |
|
38 | - * fsockopen |
|
39 | - * |
|
40 | - * @see http://php.net/fsockopen |
|
41 | - * @param string $hostname |
|
42 | - * @param int $port |
|
43 | - * @param int $errno |
|
44 | - * @param string $errstr |
|
45 | - * @param float $timeout |
|
46 | - * @return resource |
|
47 | - */ |
|
48 | - public function fsockopen($hostname, $port = -1, &$errno = 0, &$errstr = '', $timeout = null) |
|
49 | - { |
|
50 | - $this->handle = fsockopen($hostname, $port, $errno, $errstr, (is_null($timeout) ? ini_get("default_socket_timeout") : $timeout)); |
|
37 | + /** |
|
38 | + * fsockopen |
|
39 | + * |
|
40 | + * @see http://php.net/fsockopen |
|
41 | + * @param string $hostname |
|
42 | + * @param int $port |
|
43 | + * @param int $errno |
|
44 | + * @param string $errstr |
|
45 | + * @param float $timeout |
|
46 | + * @return resource |
|
47 | + */ |
|
48 | + public function fsockopen($hostname, $port = -1, &$errno = 0, &$errstr = '', $timeout = null) |
|
49 | + { |
|
50 | + $this->handle = fsockopen($hostname, $port, $errno, $errstr, (is_null($timeout) ? ini_get("default_socket_timeout") : $timeout)); |
|
51 | 51 | |
52 | - if ($this->handle != false && $errno === 0 && $errstr === '') { |
|
53 | - return $this->handle; |
|
54 | - } else { |
|
55 | - return false; |
|
56 | - } |
|
57 | - } |
|
52 | + if ($this->handle != false && $errno === 0 && $errstr === '') { |
|
53 | + return $this->handle; |
|
54 | + } else { |
|
55 | + return false; |
|
56 | + } |
|
57 | + } |
|
58 | 58 | |
59 | - /** |
|
60 | - * fwrite |
|
61 | - * |
|
62 | - * @see http://php.net/fwrite |
|
63 | - * @param string $string |
|
64 | - * @param int $length |
|
65 | - * @return int | bool |
|
66 | - */ |
|
67 | - public function fwrite($string, $length = null) |
|
68 | - { |
|
69 | - return fwrite($this->handle, $string, (is_null($length) ? strlen($string) : $length)); |
|
70 | - } |
|
59 | + /** |
|
60 | + * fwrite |
|
61 | + * |
|
62 | + * @see http://php.net/fwrite |
|
63 | + * @param string $string |
|
64 | + * @param int $length |
|
65 | + * @return int | bool |
|
66 | + */ |
|
67 | + public function fwrite($string, $length = null) |
|
68 | + { |
|
69 | + return fwrite($this->handle, $string, (is_null($length) ? strlen($string) : $length)); |
|
70 | + } |
|
71 | 71 | |
72 | - /** |
|
73 | - * fgets |
|
74 | - * |
|
75 | - * @see http://php.net/fgets |
|
76 | - * @param int $length |
|
77 | - */ |
|
78 | - public function fgets($length = null) |
|
79 | - { |
|
80 | - return fgets($this->handle, $length); |
|
81 | - } |
|
72 | + /** |
|
73 | + * fgets |
|
74 | + * |
|
75 | + * @see http://php.net/fgets |
|
76 | + * @param int $length |
|
77 | + */ |
|
78 | + public function fgets($length = null) |
|
79 | + { |
|
80 | + return fgets($this->handle, $length); |
|
81 | + } |
|
82 | 82 | |
83 | - /** |
|
84 | - * feof |
|
85 | - * |
|
86 | - * @see http://php.net/feof |
|
87 | - * @return bool |
|
88 | - */ |
|
89 | - public function feof() |
|
90 | - { |
|
91 | - return feof($this->handle); |
|
92 | - } |
|
83 | + /** |
|
84 | + * feof |
|
85 | + * |
|
86 | + * @see http://php.net/feof |
|
87 | + * @return bool |
|
88 | + */ |
|
89 | + public function feof() |
|
90 | + { |
|
91 | + return feof($this->handle); |
|
92 | + } |
|
93 | 93 | |
94 | - /** |
|
95 | - * fclose |
|
96 | - * |
|
97 | - * @see http://php.net/fclose |
|
98 | - * @return bool |
|
99 | - */ |
|
100 | - public function fclose() |
|
101 | - { |
|
102 | - return fclose($this->handle); |
|
103 | - } |
|
94 | + /** |
|
95 | + * fclose |
|
96 | + * |
|
97 | + * @see http://php.net/fclose |
|
98 | + * @return bool |
|
99 | + */ |
|
100 | + public function fclose() |
|
101 | + { |
|
102 | + return fclose($this->handle); |
|
103 | + } |
|
104 | 104 | } |
@@ -1,28 +1,28 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | /** |
3 | - * This is a PHP library that handles calling reCAPTCHA. |
|
4 | - * |
|
5 | - * @copyright Copyright (c) 2015, Google Inc. |
|
6 | - * @link http://www.google.com/recaptcha |
|
7 | - * |
|
8 | - * Permission is hereby granted, free of charge, to any person obtaining a copy |
|
9 | - * of this software and associated documentation files (the "Software"), to deal |
|
10 | - * in the Software without restriction, including without limitation the rights |
|
11 | - * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
|
12 | - * copies of the Software, and to permit persons to whom the Software is |
|
13 | - * furnished to do so, subject to the following conditions: |
|
14 | - * |
|
15 | - * The above copyright notice and this permission notice shall be included in |
|
16 | - * all copies or substantial portions of the Software. |
|
17 | - * |
|
18 | - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
|
19 | - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
|
20 | - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
|
21 | - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
|
22 | - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
|
23 | - * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN |
|
24 | - * THE SOFTWARE. |
|
25 | - */ |
|
3 | + * This is a PHP library that handles calling reCAPTCHA. |
|
4 | + * |
|
5 | + * @copyright Copyright (c) 2015, Google Inc. |
|
6 | + * @link http://www.google.com/recaptcha |
|
7 | + * |
|
8 | + * Permission is hereby granted, free of charge, to any person obtaining a copy |
|
9 | + * of this software and associated documentation files (the "Software"), to deal |
|
10 | + * in the Software without restriction, including without limitation the rights |
|
11 | + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
|
12 | + * copies of the Software, and to permit persons to whom the Software is |
|
13 | + * furnished to do so, subject to the following conditions: |
|
14 | + * |
|
15 | + * The above copyright notice and this permission notice shall be included in |
|
16 | + * all copies or substantial portions of the Software. |
|
17 | + * |
|
18 | + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
|
19 | + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
|
20 | + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
|
21 | + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
|
22 | + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
|
23 | + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN |
|
24 | + * THE SOFTWARE. |
|
25 | + */ |
|
26 | 26 | |
27 | 27 | namespace ReCaptcha\RequestMethod; |
28 | 28 | |
@@ -36,85 +36,85 @@ discard block |
||
36 | 36 | */ |
37 | 37 | class SocketPost implements RequestMethod |
38 | 38 | { |
39 | - /** |
|
40 | - * reCAPTCHA service host. |
|
41 | - * @const string |
|
42 | - */ |
|
43 | - const RECAPTCHA_HOST = 'www.google.com'; |
|
44 | - |
|
45 | - /** |
|
46 | - * @const string reCAPTCHA service path |
|
47 | - */ |
|
48 | - const SITE_VERIFY_PATH = '/recaptcha/api/siteverify'; |
|
49 | - |
|
50 | - /** |
|
51 | - * @const string Bad request error |
|
52 | - */ |
|
53 | - const BAD_REQUEST = '{"success": false, "error-codes": ["invalid-request"]}'; |
|
54 | - |
|
55 | - /** |
|
56 | - * @const string Bad response error |
|
57 | - */ |
|
58 | - const BAD_RESPONSE = '{"success": false, "error-codes": ["invalid-response"]}'; |
|
59 | - |
|
60 | - /** |
|
61 | - * Socket to the reCAPTCHA service |
|
62 | - * @var Socket |
|
63 | - */ |
|
64 | - private $socket; |
|
65 | - |
|
66 | - /** |
|
67 | - * Constructor |
|
68 | - * |
|
69 | - * @param \ReCaptcha\RequestMethod\Socket $socket optional socket, injectable for testing |
|
70 | - */ |
|
71 | - public function __construct(Socket $socket = null) |
|
72 | - { |
|
73 | - if (!is_null($socket)) { |
|
74 | - $this->socket = $socket; |
|
75 | - } else { |
|
76 | - $this->socket = new Socket(); |
|
77 | - } |
|
78 | - } |
|
79 | - |
|
80 | - /** |
|
81 | - * Submit the POST request with the specified parameters. |
|
82 | - * |
|
83 | - * @param RequestParameters $params Request parameters |
|
84 | - * @return string Body of the reCAPTCHA response |
|
85 | - */ |
|
86 | - public function submit(RequestParameters $params) |
|
87 | - { |
|
88 | - $errno = 0; |
|
89 | - $errstr = ''; |
|
90 | - |
|
91 | - if ($this->socket->fsockopen('ssl://' . self::RECAPTCHA_HOST, 443, $errno, $errstr, 30) !== false) { |
|
92 | - $content = $params->toQueryString(); |
|
93 | - |
|
94 | - $request = "POST " . self::SITE_VERIFY_PATH . " HTTP/1.1\r\n"; |
|
95 | - $request .= "Host: " . self::RECAPTCHA_HOST . "\r\n"; |
|
96 | - $request .= "Content-Type: application/x-www-form-urlencoded\r\n"; |
|
97 | - $request .= "Content-length: " . strlen($content) . "\r\n"; |
|
98 | - $request .= "Connection: close\r\n\r\n"; |
|
99 | - $request .= $content . "\r\n\r\n"; |
|
100 | - |
|
101 | - $this->socket->fwrite($request); |
|
102 | - $response = ''; |
|
103 | - |
|
104 | - while (!$this->socket->feof()) { |
|
105 | - $response .= $this->socket->fgets(4096); |
|
106 | - } |
|
107 | - |
|
108 | - $this->socket->fclose(); |
|
109 | - |
|
110 | - if (0 === strpos($response, 'HTTP/1.1 200 OK')) { |
|
111 | - $parts = preg_split("#\n\s*\n#Uis", $response); |
|
112 | - return $parts[1]; |
|
113 | - } |
|
114 | - |
|
115 | - return self::BAD_RESPONSE; |
|
116 | - } |
|
117 | - |
|
118 | - return self::BAD_REQUEST; |
|
119 | - } |
|
39 | + /** |
|
40 | + * reCAPTCHA service host. |
|
41 | + * @const string |
|
42 | + */ |
|
43 | + const RECAPTCHA_HOST = 'www.google.com'; |
|
44 | + |
|
45 | + /** |
|
46 | + * @const string reCAPTCHA service path |
|
47 | + */ |
|
48 | + const SITE_VERIFY_PATH = '/recaptcha/api/siteverify'; |
|
49 | + |
|
50 | + /** |
|
51 | + * @const string Bad request error |
|
52 | + */ |
|
53 | + const BAD_REQUEST = '{"success": false, "error-codes": ["invalid-request"]}'; |
|
54 | + |
|
55 | + /** |
|
56 | + * @const string Bad response error |
|
57 | + */ |
|
58 | + const BAD_RESPONSE = '{"success": false, "error-codes": ["invalid-response"]}'; |
|
59 | + |
|
60 | + /** |
|
61 | + * Socket to the reCAPTCHA service |
|
62 | + * @var Socket |
|
63 | + */ |
|
64 | + private $socket; |
|
65 | + |
|
66 | + /** |
|
67 | + * Constructor |
|
68 | + * |
|
69 | + * @param \ReCaptcha\RequestMethod\Socket $socket optional socket, injectable for testing |
|
70 | + */ |
|
71 | + public function __construct(Socket $socket = null) |
|
72 | + { |
|
73 | + if (!is_null($socket)) { |
|
74 | + $this->socket = $socket; |
|
75 | + } else { |
|
76 | + $this->socket = new Socket(); |
|
77 | + } |
|
78 | + } |
|
79 | + |
|
80 | + /** |
|
81 | + * Submit the POST request with the specified parameters. |
|
82 | + * |
|
83 | + * @param RequestParameters $params Request parameters |
|
84 | + * @return string Body of the reCAPTCHA response |
|
85 | + */ |
|
86 | + public function submit(RequestParameters $params) |
|
87 | + { |
|
88 | + $errno = 0; |
|
89 | + $errstr = ''; |
|
90 | + |
|
91 | + if ($this->socket->fsockopen('ssl://' . self::RECAPTCHA_HOST, 443, $errno, $errstr, 30) !== false) { |
|
92 | + $content = $params->toQueryString(); |
|
93 | + |
|
94 | + $request = "POST " . self::SITE_VERIFY_PATH . " HTTP/1.1\r\n"; |
|
95 | + $request .= "Host: " . self::RECAPTCHA_HOST . "\r\n"; |
|
96 | + $request .= "Content-Type: application/x-www-form-urlencoded\r\n"; |
|
97 | + $request .= "Content-length: " . strlen($content) . "\r\n"; |
|
98 | + $request .= "Connection: close\r\n\r\n"; |
|
99 | + $request .= $content . "\r\n\r\n"; |
|
100 | + |
|
101 | + $this->socket->fwrite($request); |
|
102 | + $response = ''; |
|
103 | + |
|
104 | + while (!$this->socket->feof()) { |
|
105 | + $response .= $this->socket->fgets(4096); |
|
106 | + } |
|
107 | + |
|
108 | + $this->socket->fclose(); |
|
109 | + |
|
110 | + if (0 === strpos($response, 'HTTP/1.1 200 OK')) { |
|
111 | + $parts = preg_split("#\n\s*\n#Uis", $response); |
|
112 | + return $parts[1]; |
|
113 | + } |
|
114 | + |
|
115 | + return self::BAD_RESPONSE; |
|
116 | + } |
|
117 | + |
|
118 | + return self::BAD_REQUEST; |
|
119 | + } |
|
120 | 120 | } |
@@ -70,7 +70,7 @@ discard block |
||
70 | 70 | */ |
71 | 71 | public function __construct(Socket $socket = null) |
72 | 72 | { |
73 | - if (!is_null($socket)) { |
|
73 | + if ( ! is_null($socket)) { |
|
74 | 74 | $this->socket = $socket; |
75 | 75 | } else { |
76 | 76 | $this->socket = new Socket(); |
@@ -88,20 +88,20 @@ discard block |
||
88 | 88 | $errno = 0; |
89 | 89 | $errstr = ''; |
90 | 90 | |
91 | - if ($this->socket->fsockopen('ssl://' . self::RECAPTCHA_HOST, 443, $errno, $errstr, 30) !== false) { |
|
91 | + if ($this->socket->fsockopen('ssl://'.self::RECAPTCHA_HOST, 443, $errno, $errstr, 30) !== false) { |
|
92 | 92 | $content = $params->toQueryString(); |
93 | 93 | |
94 | - $request = "POST " . self::SITE_VERIFY_PATH . " HTTP/1.1\r\n"; |
|
95 | - $request .= "Host: " . self::RECAPTCHA_HOST . "\r\n"; |
|
94 | + $request = "POST ".self::SITE_VERIFY_PATH." HTTP/1.1\r\n"; |
|
95 | + $request .= "Host: ".self::RECAPTCHA_HOST."\r\n"; |
|
96 | 96 | $request .= "Content-Type: application/x-www-form-urlencoded\r\n"; |
97 | - $request .= "Content-length: " . strlen($content) . "\r\n"; |
|
97 | + $request .= "Content-length: ".strlen($content)."\r\n"; |
|
98 | 98 | $request .= "Connection: close\r\n\r\n"; |
99 | - $request .= $content . "\r\n\r\n"; |
|
99 | + $request .= $content."\r\n\r\n"; |
|
100 | 100 | |
101 | 101 | $this->socket->fwrite($request); |
102 | 102 | $response = ''; |
103 | 103 | |
104 | - while (!$this->socket->feof()) { |
|
104 | + while ( ! $this->socket->feof()) { |
|
105 | 105 | $response .= $this->socket->fgets(4096); |
106 | 106 | } |
107 | 107 |
@@ -1,28 +1,28 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | /** |
3 | - * This is a PHP library that handles calling reCAPTCHA. |
|
4 | - * |
|
5 | - * @copyright Copyright (c) 2015, Google Inc. |
|
6 | - * @link http://www.google.com/recaptcha |
|
7 | - * |
|
8 | - * Permission is hereby granted, free of charge, to any person obtaining a copy |
|
9 | - * of this software and associated documentation files (the "Software"), to deal |
|
10 | - * in the Software without restriction, including without limitation the rights |
|
11 | - * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
|
12 | - * copies of the Software, and to permit persons to whom the Software is |
|
13 | - * furnished to do so, subject to the following conditions: |
|
14 | - * |
|
15 | - * The above copyright notice and this permission notice shall be included in |
|
16 | - * all copies or substantial portions of the Software. |
|
17 | - * |
|
18 | - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
|
19 | - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
|
20 | - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
|
21 | - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
|
22 | - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
|
23 | - * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN |
|
24 | - * THE SOFTWARE. |
|
25 | - */ |
|
3 | + * This is a PHP library that handles calling reCAPTCHA. |
|
4 | + * |
|
5 | + * @copyright Copyright (c) 2015, Google Inc. |
|
6 | + * @link http://www.google.com/recaptcha |
|
7 | + * |
|
8 | + * Permission is hereby granted, free of charge, to any person obtaining a copy |
|
9 | + * of this software and associated documentation files (the "Software"), to deal |
|
10 | + * in the Software without restriction, including without limitation the rights |
|
11 | + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
|
12 | + * copies of the Software, and to permit persons to whom the Software is |
|
13 | + * furnished to do so, subject to the following conditions: |
|
14 | + * |
|
15 | + * The above copyright notice and this permission notice shall be included in |
|
16 | + * all copies or substantial portions of the Software. |
|
17 | + * |
|
18 | + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
|
19 | + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
|
20 | + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
|
21 | + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
|
22 | + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
|
23 | + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN |
|
24 | + * THE SOFTWARE. |
|
25 | + */ |
|
26 | 26 | |
27 | 27 | namespace ReCaptcha; |
28 | 28 | |
@@ -31,73 +31,73 @@ discard block |
||
31 | 31 | */ |
32 | 32 | class RequestParameters |
33 | 33 | { |
34 | - /** |
|
35 | - * Site secret. |
|
36 | - * @var string |
|
37 | - */ |
|
38 | - private $secret; |
|
34 | + /** |
|
35 | + * Site secret. |
|
36 | + * @var string |
|
37 | + */ |
|
38 | + private $secret; |
|
39 | 39 | |
40 | - /** |
|
41 | - * Form response. |
|
42 | - * @var string |
|
43 | - */ |
|
44 | - private $response; |
|
40 | + /** |
|
41 | + * Form response. |
|
42 | + * @var string |
|
43 | + */ |
|
44 | + private $response; |
|
45 | 45 | |
46 | - /** |
|
47 | - * Remote user's IP address. |
|
48 | - * @var string |
|
49 | - */ |
|
50 | - private $remoteIp; |
|
46 | + /** |
|
47 | + * Remote user's IP address. |
|
48 | + * @var string |
|
49 | + */ |
|
50 | + private $remoteIp; |
|
51 | 51 | |
52 | - /** |
|
53 | - * Client version. |
|
54 | - * @var string |
|
55 | - */ |
|
56 | - private $version; |
|
52 | + /** |
|
53 | + * Client version. |
|
54 | + * @var string |
|
55 | + */ |
|
56 | + private $version; |
|
57 | 57 | |
58 | - /** |
|
59 | - * Initialise parameters. |
|
60 | - * |
|
61 | - * @param string $secret Site secret. |
|
62 | - * @param string $response Value from g-captcha-response form field. |
|
63 | - * @param string $remoteIp User's IP address. |
|
64 | - * @param string $version Version of this client library. |
|
65 | - */ |
|
66 | - public function __construct($secret, $response, $remoteIp = null, $version = null) |
|
67 | - { |
|
68 | - $this->secret = $secret; |
|
69 | - $this->response = $response; |
|
70 | - $this->remoteIp = $remoteIp; |
|
71 | - $this->version = $version; |
|
72 | - } |
|
58 | + /** |
|
59 | + * Initialise parameters. |
|
60 | + * |
|
61 | + * @param string $secret Site secret. |
|
62 | + * @param string $response Value from g-captcha-response form field. |
|
63 | + * @param string $remoteIp User's IP address. |
|
64 | + * @param string $version Version of this client library. |
|
65 | + */ |
|
66 | + public function __construct($secret, $response, $remoteIp = null, $version = null) |
|
67 | + { |
|
68 | + $this->secret = $secret; |
|
69 | + $this->response = $response; |
|
70 | + $this->remoteIp = $remoteIp; |
|
71 | + $this->version = $version; |
|
72 | + } |
|
73 | 73 | |
74 | - /** |
|
75 | - * Array representation. |
|
76 | - * |
|
77 | - * @return array Array formatted parameters. |
|
78 | - */ |
|
79 | - public function toArray() |
|
80 | - { |
|
81 | - $params = array('secret' => $this->secret, 'response' => $this->response); |
|
74 | + /** |
|
75 | + * Array representation. |
|
76 | + * |
|
77 | + * @return array Array formatted parameters. |
|
78 | + */ |
|
79 | + public function toArray() |
|
80 | + { |
|
81 | + $params = array('secret' => $this->secret, 'response' => $this->response); |
|
82 | 82 | |
83 | - if (!is_null($this->remoteIp)) { |
|
84 | - $params['remoteip'] = $this->remoteIp; |
|
85 | - } |
|
83 | + if (!is_null($this->remoteIp)) { |
|
84 | + $params['remoteip'] = $this->remoteIp; |
|
85 | + } |
|
86 | 86 | |
87 | - if (!is_null($this->version)) { |
|
88 | - $params['version'] = $this->version; |
|
89 | - } |
|
87 | + if (!is_null($this->version)) { |
|
88 | + $params['version'] = $this->version; |
|
89 | + } |
|
90 | 90 | |
91 | - return $params; |
|
92 | - } |
|
91 | + return $params; |
|
92 | + } |
|
93 | 93 | |
94 | - /** |
|
95 | - * Query string representation for HTTP request. |
|
96 | - * |
|
97 | - * @return string Query string formatted parameters. |
|
98 | - */ |
|
99 | - public function toQueryString() |
|
100 | - { |
|
101 | - return http_build_query($this->toArray(), '', '&'); |
|
102 | - } |
|
94 | + /** |
|
95 | + * Query string representation for HTTP request. |
|
96 | + * |
|
97 | + * @return string Query string formatted parameters. |
|
98 | + */ |
|
99 | + public function toQueryString() |
|
100 | + { |
|
101 | + return http_build_query($this->toArray(), '', '&'); |
|
102 | + } |
|
103 | 103 | } |
@@ -80,11 +80,11 @@ |
||
80 | 80 | { |
81 | 81 | $params = array('secret' => $this->secret, 'response' => $this->response); |
82 | 82 | |
83 | - if (!is_null($this->remoteIp)) { |
|
83 | + if ( ! is_null($this->remoteIp)) { |
|
84 | 84 | $params['remoteip'] = $this->remoteIp; |
85 | 85 | } |
86 | 86 | |
87 | - if (!is_null($this->version)) { |
|
87 | + if ( ! is_null($this->version)) { |
|
88 | 88 | $params['version'] = $this->version; |
89 | 89 | } |
90 | 90 |
@@ -1,28 +1,28 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | /** |
3 | - * This is a PHP library that handles calling reCAPTCHA. |
|
4 | - * |
|
5 | - * @copyright Copyright (c) 2015, Google Inc. |
|
6 | - * @link http://www.google.com/recaptcha |
|
7 | - * |
|
8 | - * Permission is hereby granted, free of charge, to any person obtaining a copy |
|
9 | - * of this software and associated documentation files (the "Software"), to deal |
|
10 | - * in the Software without restriction, including without limitation the rights |
|
11 | - * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
|
12 | - * copies of the Software, and to permit persons to whom the Software is |
|
13 | - * furnished to do so, subject to the following conditions: |
|
14 | - * |
|
15 | - * The above copyright notice and this permission notice shall be included in |
|
16 | - * all copies or substantial portions of the Software. |
|
17 | - * |
|
18 | - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
|
19 | - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
|
20 | - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
|
21 | - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
|
22 | - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
|
23 | - * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN |
|
24 | - * THE SOFTWARE. |
|
25 | - */ |
|
3 | + * This is a PHP library that handles calling reCAPTCHA. |
|
4 | + * |
|
5 | + * @copyright Copyright (c) 2015, Google Inc. |
|
6 | + * @link http://www.google.com/recaptcha |
|
7 | + * |
|
8 | + * Permission is hereby granted, free of charge, to any person obtaining a copy |
|
9 | + * of this software and associated documentation files (the "Software"), to deal |
|
10 | + * in the Software without restriction, including without limitation the rights |
|
11 | + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
|
12 | + * copies of the Software, and to permit persons to whom the Software is |
|
13 | + * furnished to do so, subject to the following conditions: |
|
14 | + * |
|
15 | + * The above copyright notice and this permission notice shall be included in |
|
16 | + * all copies or substantial portions of the Software. |
|
17 | + * |
|
18 | + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
|
19 | + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
|
20 | + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
|
21 | + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
|
22 | + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
|
23 | + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN |
|
24 | + * THE SOFTWARE. |
|
25 | + */ |
|
26 | 26 | |
27 | 27 | namespace ReCaptcha; |
28 | 28 | |
@@ -31,72 +31,72 @@ discard block |
||
31 | 31 | */ |
32 | 32 | class Response |
33 | 33 | { |
34 | - /** |
|
35 | - * Succes or failure. |
|
36 | - * @var boolean |
|
37 | - */ |
|
38 | - private $success = false; |
|
34 | + /** |
|
35 | + * Succes or failure. |
|
36 | + * @var boolean |
|
37 | + */ |
|
38 | + private $success = false; |
|
39 | 39 | |
40 | - /** |
|
41 | - * Error code strings. |
|
42 | - * @var array |
|
43 | - */ |
|
44 | - private $errorCodes = array(); |
|
40 | + /** |
|
41 | + * Error code strings. |
|
42 | + * @var array |
|
43 | + */ |
|
44 | + private $errorCodes = array(); |
|
45 | 45 | |
46 | - /** |
|
47 | - * Build the response from the expected JSON returned by the service. |
|
48 | - * |
|
49 | - * @param string $json |
|
50 | - * @return \ReCaptcha\Response |
|
51 | - */ |
|
52 | - public static function fromJson($json) |
|
53 | - { |
|
54 | - $responseData = json_decode($json, true); |
|
46 | + /** |
|
47 | + * Build the response from the expected JSON returned by the service. |
|
48 | + * |
|
49 | + * @param string $json |
|
50 | + * @return \ReCaptcha\Response |
|
51 | + */ |
|
52 | + public static function fromJson($json) |
|
53 | + { |
|
54 | + $responseData = json_decode($json, true); |
|
55 | 55 | |
56 | - if (!$responseData) { |
|
57 | - return new Response(false, array('invalid-json')); |
|
58 | - } |
|
56 | + if (!$responseData) { |
|
57 | + return new Response(false, array('invalid-json')); |
|
58 | + } |
|
59 | 59 | |
60 | - if (isset($responseData['success']) && $responseData['success'] == true) { |
|
61 | - return new Response(true); |
|
62 | - } |
|
60 | + if (isset($responseData['success']) && $responseData['success'] == true) { |
|
61 | + return new Response(true); |
|
62 | + } |
|
63 | 63 | |
64 | - if (isset($responseData['error-codes']) && is_array($responseData['error-codes'])) { |
|
65 | - return new Response(false, $responseData['error-codes']); |
|
66 | - } |
|
64 | + if (isset($responseData['error-codes']) && is_array($responseData['error-codes'])) { |
|
65 | + return new Response(false, $responseData['error-codes']); |
|
66 | + } |
|
67 | 67 | |
68 | - return new Response(false); |
|
69 | - } |
|
68 | + return new Response(false); |
|
69 | + } |
|
70 | 70 | |
71 | - /** |
|
72 | - * Constructor. |
|
73 | - * |
|
74 | - * @param boolean $success |
|
75 | - * @param array $errorCodes |
|
76 | - */ |
|
77 | - public function __construct($success, array $errorCodes = array()) |
|
78 | - { |
|
79 | - $this->success = $success; |
|
80 | - $this->errorCodes = $errorCodes; |
|
81 | - } |
|
71 | + /** |
|
72 | + * Constructor. |
|
73 | + * |
|
74 | + * @param boolean $success |
|
75 | + * @param array $errorCodes |
|
76 | + */ |
|
77 | + public function __construct($success, array $errorCodes = array()) |
|
78 | + { |
|
79 | + $this->success = $success; |
|
80 | + $this->errorCodes = $errorCodes; |
|
81 | + } |
|
82 | 82 | |
83 | - /** |
|
84 | - * Is success? |
|
85 | - * |
|
86 | - * @return boolean |
|
87 | - */ |
|
88 | - public function isSuccess() |
|
89 | - { |
|
90 | - return $this->success; |
|
91 | - } |
|
83 | + /** |
|
84 | + * Is success? |
|
85 | + * |
|
86 | + * @return boolean |
|
87 | + */ |
|
88 | + public function isSuccess() |
|
89 | + { |
|
90 | + return $this->success; |
|
91 | + } |
|
92 | 92 | |
93 | - /** |
|
94 | - * Get error codes. |
|
95 | - * |
|
96 | - * @return array |
|
97 | - */ |
|
98 | - public function getErrorCodes() |
|
99 | - { |
|
100 | - return $this->errorCodes; |
|
101 | - } |
|
93 | + /** |
|
94 | + * Get error codes. |
|
95 | + * |
|
96 | + * @return array |
|
97 | + */ |
|
98 | + public function getErrorCodes() |
|
99 | + { |
|
100 | + return $this->errorCodes; |
|
101 | + } |
|
102 | 102 | } |
@@ -53,7 +53,7 @@ |
||
53 | 53 | { |
54 | 54 | $responseData = json_decode($json, true); |
55 | 55 | |
56 | - if (!$responseData) { |
|
56 | + if ( ! $responseData) { |
|
57 | 57 | return new Response(false, array('invalid-json')); |
58 | 58 | } |
59 | 59 |
@@ -6,33 +6,33 @@ |
||
6 | 6 | */ |
7 | 7 | |
8 | 8 | spl_autoload_register(function ($class) { |
9 | - if (substr($class, 0, 10) !== 'ReCaptcha\\') { |
|
10 | - /* If the class does not lie under the "ReCaptcha" namespace, |
|
9 | + if (substr($class, 0, 10) !== 'ReCaptcha\\') { |
|
10 | + /* If the class does not lie under the "ReCaptcha" namespace, |
|
11 | 11 | * then we can exit immediately. |
12 | 12 | */ |
13 | - return; |
|
14 | - } |
|
13 | + return; |
|
14 | + } |
|
15 | 15 | |
16 | - /* All of the classes have names like "ReCaptcha\Foo", so we need |
|
16 | + /* All of the classes have names like "ReCaptcha\Foo", so we need |
|
17 | 17 | * to replace the backslashes with frontslashes if we want the |
18 | 18 | * name to map directly to a location in the filesystem. |
19 | 19 | */ |
20 | - $class = str_replace('\\', '/', $class); |
|
20 | + $class = str_replace('\\', '/', $class); |
|
21 | 21 | |
22 | - /* First, check under the current directory. It is important that |
|
22 | + /* First, check under the current directory. It is important that |
|
23 | 23 | * we look here first, so that we don't waste time searching for |
24 | 24 | * test classes in the common case. |
25 | 25 | */ |
26 | - $path = dirname(__FILE__).'/'.$class.'.php'; |
|
27 | - if (is_readable($path)) { |
|
28 | - require_once $path; |
|
29 | - } |
|
26 | + $path = dirname(__FILE__).'/'.$class.'.php'; |
|
27 | + if (is_readable($path)) { |
|
28 | + require_once $path; |
|
29 | + } |
|
30 | 30 | |
31 | - /* If we didn't find what we're looking for already, maybe it's |
|
31 | + /* If we didn't find what we're looking for already, maybe it's |
|
32 | 32 | * a test class? |
33 | 33 | */ |
34 | - $path = dirname(__FILE__).'/../tests/'.$class.'.php'; |
|
35 | - if (is_readable($path)) { |
|
36 | - require_once $path; |
|
37 | - } |
|
34 | + $path = dirname(__FILE__).'/../tests/'.$class.'.php'; |
|
35 | + if (is_readable($path)) { |
|
36 | + require_once $path; |
|
37 | + } |
|
38 | 38 | }); |
@@ -5,7 +5,7 @@ |
||
5 | 5 | * classes. |
6 | 6 | */ |
7 | 7 | |
8 | -spl_autoload_register(function ($class) { |
|
8 | +spl_autoload_register(function($class) { |
|
9 | 9 | if (substr($class, 0, 10) !== 'ReCaptcha\\') { |
10 | 10 | /* If the class does not lie under the "ReCaptcha" namespace, |
11 | 11 | * then we can exit immediately. |
@@ -1,6 +1,6 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | |
3 | -if (!defined('EVENT_ESPRESSO_VERSION')) |
|
3 | +if ( ! defined('EVENT_ESPRESSO_VERSION')) |
|
4 | 4 | exit('No direct script access allowed'); |
5 | 5 | |
6 | 6 | /** |
@@ -25,7 +25,7 @@ discard block |
||
25 | 25 | * |
26 | 26 | * ------------------------------------------------------------------------ |
27 | 27 | */ |
28 | -class EE_PMT_Aim extends EE_PMT_Base{ |
|
28 | +class EE_PMT_Aim extends EE_PMT_Base { |
|
29 | 29 | |
30 | 30 | |
31 | 31 | /** |
@@ -37,7 +37,7 @@ discard block |
||
37 | 37 | require_once($this->file_folder().'EEG_Aim.gateway.php'); |
38 | 38 | $this->_gateway = new EEG_AIM(); |
39 | 39 | $this->_pretty_name = __("Authorize.net AIM", 'event_espresso'); |
40 | - $this->_default_description = __( 'Please provide the following billing information.', 'event_espresso' ); |
|
40 | + $this->_default_description = __('Please provide the following billing information.', 'event_espresso'); |
|
41 | 41 | $this->_requires_https = true; |
42 | 42 | parent::__construct($pm_instance); |
43 | 43 | } |
@@ -47,26 +47,26 @@ discard block |
||
47 | 47 | * @param \EE_Transaction $transaction |
48 | 48 | * @return EE_Billing_Info_Form |
49 | 49 | */ |
50 | - public function generate_new_billing_form( EE_Transaction $transaction = NULL ) { |
|
51 | - $billing_form = new EE_Billing_Attendee_Info_Form($this->_pm_instance,array( |
|
50 | + public function generate_new_billing_form(EE_Transaction $transaction = NULL) { |
|
51 | + $billing_form = new EE_Billing_Attendee_Info_Form($this->_pm_instance, array( |
|
52 | 52 | 'name'=>'AIM_Form', |
53 | 53 | 'subsections'=>array( |
54 | 54 | 'credit_card'=>new EE_Credit_Card_Input(array( |
55 | 55 | 'required'=>true, |
56 | - 'html_label_text' => __( 'Card Number', 'event_espresso' ) |
|
56 | + 'html_label_text' => __('Card Number', 'event_espresso') |
|
57 | 57 | )), |
58 | 58 | 'exp_month'=>new EE_Credit_Card_Month_Input(true, array( |
59 | 59 | 'required'=>true, |
60 | - 'html_label_text' => __( 'Expiry Month', 'event_espresso' ) |
|
60 | + 'html_label_text' => __('Expiry Month', 'event_espresso') |
|
61 | 61 | )), |
62 | - 'exp_year'=>new EE_Credit_Card_Year_Input( array( ' |
|
62 | + 'exp_year'=>new EE_Credit_Card_Year_Input(array(' |
|
63 | 63 | required'=> true, |
64 | - 'html_label_text' => __( 'Expiry Year', 'event_espresso' ) ) ), |
|
65 | - 'cvv'=>new EE_CVV_Input( array( |
|
66 | - 'html_label_text' => __( 'CVV', 'event_espresso' ) ) ), |
|
64 | + 'html_label_text' => __('Expiry Year', 'event_espresso'))), |
|
65 | + 'cvv'=>new EE_CVV_Input(array( |
|
66 | + 'html_label_text' => __('CVV', 'event_espresso') )), |
|
67 | 67 | ) |
68 | 68 | )); |
69 | - return $this->apply_billing_form_debug_settings( $billing_form ); |
|
69 | + return $this->apply_billing_form_debug_settings($billing_form); |
|
70 | 70 | } |
71 | 71 | |
72 | 72 | |
@@ -78,17 +78,17 @@ discard block |
||
78 | 78 | * @param \EE_Billing_Info_Form $billing_form |
79 | 79 | * @return \EE_Billing_Info_Form |
80 | 80 | */ |
81 | - public function apply_billing_form_debug_settings( EE_Billing_Info_Form $billing_form ) { |
|
82 | - if ( $this->_pm_instance->debug_mode() || $this->_pm_instance->get_extra_meta( 'test_transactions', TRUE, FALSE )) { |
|
83 | - $billing_form->get_input( 'credit_card' )->set_default( '4007000000027' ); |
|
84 | - $billing_form->get_input( 'exp_year' )->set_default( '2020' ); |
|
85 | - $billing_form->get_input( 'cvv' )->set_default(( '123' )); |
|
81 | + public function apply_billing_form_debug_settings(EE_Billing_Info_Form $billing_form) { |
|
82 | + if ($this->_pm_instance->debug_mode() || $this->_pm_instance->get_extra_meta('test_transactions', TRUE, FALSE)) { |
|
83 | + $billing_form->get_input('credit_card')->set_default('4007000000027'); |
|
84 | + $billing_form->get_input('exp_year')->set_default('2020'); |
|
85 | + $billing_form->get_input('cvv')->set_default(('123')); |
|
86 | 86 | $billing_form->add_subsections( |
87 | - array( 'fyi_about_autofill' => $billing_form->payment_fields_autofilled_notice_html() ), |
|
87 | + array('fyi_about_autofill' => $billing_form->payment_fields_autofilled_notice_html()), |
|
88 | 88 | 'credit_card' |
89 | 89 | ); |
90 | 90 | $billing_form->add_subsections( |
91 | - array( 'debug_content' => new EE_Form_Section_HTML_From_Template( dirname(__FILE__).DS.'templates'.DS.'authorize_net_aim_debug_info.template.php' )), |
|
91 | + array('debug_content' => new EE_Form_Section_HTML_From_Template(dirname(__FILE__).DS.'templates'.DS.'authorize_net_aim_debug_info.template.php')), |
|
92 | 92 | 'first_name' |
93 | 93 | ); |
94 | 94 | } |
@@ -107,17 +107,17 @@ discard block |
||
107 | 107 | 'extra_meta_inputs'=>array( |
108 | 108 | 'login_id'=>new EE_Text_Input( |
109 | 109 | array( |
110 | - 'html_label_text'=> sprintf( __("Authorize.net API Login ID %s", "event_espresso"), $this->get_help_tab_link() ), |
|
110 | + 'html_label_text'=> sprintf(__("Authorize.net API Login ID %s", "event_espresso"), $this->get_help_tab_link()), |
|
111 | 111 | 'required' => true ) |
112 | 112 | ), |
113 | 113 | 'transaction_key'=>new EE_Text_Input( |
114 | 114 | array( |
115 | - 'html_label_text'=> sprintf( __("Authorize.net Transaction Key %s", "event_espresso"), $this->get_help_tab_link() ), |
|
115 | + 'html_label_text'=> sprintf(__("Authorize.net Transaction Key %s", "event_espresso"), $this->get_help_tab_link()), |
|
116 | 116 | 'required' => true ) |
117 | 117 | ), |
118 | 118 | 'test_transactions'=>new EE_Yes_No_Input( |
119 | 119 | array( |
120 | - 'html_label_text'=> sprintf( __("Send test transactions? %s", 'event_espresso'), $this->get_help_tab_link() ), |
|
120 | + 'html_label_text'=> sprintf(__("Send test transactions? %s", 'event_espresso'), $this->get_help_tab_link()), |
|
121 | 121 | 'html_help_text'=> __("Send test transactions, even to live server", 'event_espresso'), |
122 | 122 | 'required' => true |
123 | 123 | ) |
@@ -134,7 +134,7 @@ discard block |
||
134 | 134 | * @see EE_PMT_Base::help_tabs_config() |
135 | 135 | * @return array |
136 | 136 | */ |
137 | - public function help_tabs_config(){ |
|
137 | + public function help_tabs_config() { |
|
138 | 138 | return array( |
139 | 139 | $this->get_help_tab_name() => array( |
140 | 140 | 'title' => __('Authorize.net AIM Settings', 'event_espresso'), |
@@ -1,7 +1,8 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | -if (!defined('EVENT_ESPRESSO_VERSION')) |
|
3 | +if (!defined('EVENT_ESPRESSO_VERSION')) { |
|
4 | 4 | exit('No direct script access allowed'); |
5 | +} |
|
5 | 6 | /** |
6 | 7 | * Event Espresso |
7 | 8 | * |
@@ -3,7 +3,7 @@ |
||
3 | 3 | <?php _e('Adjust the settings for the Authorize.net AIM payment gateway.', 'event_espresso'); ?> |
4 | 4 | </p> |
5 | 5 | <p> |
6 | -<?php printf( __( 'See %1$shere%2$s for list of currencies supported by Authorize.net AIM.', 'event_espresso' ), "<a href='http://www.authorize.net/international/' target='_blank'>","</a>" ); ?> |
|
6 | +<?php printf(__('See %1$shere%2$s for list of currencies supported by Authorize.net AIM.', 'event_espresso'), "<a href='http://www.authorize.net/international/' target='_blank'>", "</a>"); ?> |
|
7 | 7 | </p> |
8 | 8 | <h3><?php _e('Authorize.net AIM Settings', 'event_espresso'); ?></h3> |
9 | 9 | <ul> |
@@ -3,27 +3,27 @@ |
||
3 | 3 | if (!defined('EVENT_ESPRESSO_VERSION')) |
4 | 4 | exit('No direct script access allowed'); |
5 | 5 | /** |
6 | - * Event Espresso |
|
7 | - * |
|
8 | - * Event Registration and Management Plugin for WordPress |
|
9 | - * |
|
10 | - * @ package Event Espresso |
|
11 | - * @ author Seth Shoultes |
|
12 | - * @ copyright (c) 2008-2011 Event Espresso All Rights Reserved. |
|
13 | - * @ license http://eventespresso.com/support/terms-conditions/ * see Plugin Licensing * |
|
14 | - * @ link http://www.eventespresso.com |
|
15 | - * @ version 4.3 |
|
16 | - * |
|
17 | - * ------------------------------------------------------------------------ |
|
18 | - * |
|
19 | - * authorize_net_aim_debug_info |
|
20 | - * |
|
21 | - * @package Event Espresso |
|
22 | - * @subpackage |
|
23 | - * @author Mike Nelson |
|
24 | - * |
|
25 | - * ------------------------------------------------------------------------ |
|
26 | - */ |
|
6 | + * Event Espresso |
|
7 | + * |
|
8 | + * Event Registration and Management Plugin for WordPress |
|
9 | + * |
|
10 | + * @ package Event Espresso |
|
11 | + * @ author Seth Shoultes |
|
12 | + * @ copyright (c) 2008-2011 Event Espresso All Rights Reserved. |
|
13 | + * @ license http://eventespresso.com/support/terms-conditions/ * see Plugin Licensing * |
|
14 | + * @ link http://www.eventespresso.com |
|
15 | + * @ version 4.3 |
|
16 | + * |
|
17 | + * ------------------------------------------------------------------------ |
|
18 | + * |
|
19 | + * authorize_net_aim_debug_info |
|
20 | + * |
|
21 | + * @package Event Espresso |
|
22 | + * @subpackage |
|
23 | + * @author Mike Nelson |
|
24 | + * |
|
25 | + * ------------------------------------------------------------------------ |
|
26 | + */ |
|
27 | 27 | ?> |
28 | 28 | <div class="sandbox-panel"> |
29 | 29 | <h2> |
@@ -1,6 +1,6 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | |
3 | -if (!defined('EVENT_ESPRESSO_VERSION')) |
|
3 | +if ( ! defined('EVENT_ESPRESSO_VERSION')) |
|
4 | 4 | exit('No direct script access allowed'); |
5 | 5 | /** |
6 | 6 | * Event Espresso |
@@ -27,22 +27,22 @@ discard block |
||
27 | 27 | ?> |
28 | 28 | <div class="sandbox-panel"> |
29 | 29 | <h2> |
30 | - <?php _e( 'Authorize.net AIM Test Mode', 'event_espresso' ); ?> |
|
30 | + <?php _e('Authorize.net AIM Test Mode', 'event_espresso'); ?> |
|
31 | 31 | </h2> |
32 | 32 | |
33 | 33 | <p> |
34 | - <?php _e( 'Test Mode allows you to submit test transactions to the payment gateway. Transactions that are submitted while Test Mode is ON are NOT actually processed. The result of a transaction depends on the card number submitted, and the invoice amount. If you want a transaction to be approved, use one of the following card numbers.', 'event_espresso' ); ?> |
|
34 | + <?php _e('Test Mode allows you to submit test transactions to the payment gateway. Transactions that are submitted while Test Mode is ON are NOT actually processed. The result of a transaction depends on the card number submitted, and the invoice amount. If you want a transaction to be approved, use one of the following card numbers.', 'event_espresso'); ?> |
|
35 | 35 | </p> |
36 | 36 | |
37 | 37 | <p> |
38 | - <strong><?php _e( 'Example Card Numbers:', 'event_espresso' ); ?></strong> |
|
38 | + <strong><?php _e('Example Card Numbers:', 'event_espresso'); ?></strong> |
|
39 | 39 | </p> |
40 | 40 | |
41 | 41 | <p> |
42 | - 370000000000002 (<?php _e( 'American Express', 'event_espresso' ); ?>)<br/> |
|
43 | - 6011000000000012 (<?php _e( 'Discover', 'event_espresso' ); ?>)<br/> |
|
44 | - 5424000000000015 (<?php _e( 'MasterCard', 'event_espresso' ); ?>)<br/> |
|
45 | - 4007000000027 (<?php _e( 'Visa', 'event_espresso' ); ?>) |
|
42 | + 370000000000002 (<?php _e('American Express', 'event_espresso'); ?>)<br/> |
|
43 | + 6011000000000012 (<?php _e('Discover', 'event_espresso'); ?>)<br/> |
|
44 | + 5424000000000015 (<?php _e('MasterCard', 'event_espresso'); ?>)<br/> |
|
45 | + 4007000000027 (<?php _e('Visa', 'event_espresso'); ?>) |
|
46 | 46 | </p> |
47 | 47 | </div> |
48 | 48 | <?php |
@@ -1,7 +1,8 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | -if (!defined('EVENT_ESPRESSO_VERSION')) |
|
3 | +if (!defined('EVENT_ESPRESSO_VERSION')) { |
|
4 | 4 | exit('No direct script access allowed'); |
5 | +} |
|
5 | 6 | /** |
6 | 7 | * Event Espresso |
7 | 8 | * |
@@ -169,14 +169,14 @@ |
||
169 | 169 | } |
170 | 170 | } |
171 | 171 | /** |
172 | - * Handles the payment update (note: mijireh doesn't send an IPN in the usual sense, |
|
173 | - * instead they just redirect the user back to our website and then we need to query them |
|
174 | - * for the payment's status). Also note that the $update_info should be an array with the key |
|
175 | - * 'payment' containing the EEI_Payment to update |
|
176 | - * @param array $update_info unused. We just use the $transaction |
|
177 | - * @param EEI_Transaction $transaction |
|
178 | - * @throws EE_Error |
|
179 | - */ |
|
172 | + * Handles the payment update (note: mijireh doesn't send an IPN in the usual sense, |
|
173 | + * instead they just redirect the user back to our website and then we need to query them |
|
174 | + * for the payment's status). Also note that the $update_info should be an array with the key |
|
175 | + * 'payment' containing the EEI_Payment to update |
|
176 | + * @param array $update_info unused. We just use the $transaction |
|
177 | + * @param EEI_Transaction $transaction |
|
178 | + * @throws EE_Error |
|
179 | + */ |
|
180 | 180 | public function handle_payment_update($update_info, $transaction) { |
181 | 181 | $payment = $transaction instanceof EEI_Transaction ? $transaction->last_payment() : NULL; |
182 | 182 | if($payment && $payment instanceof EEI_Payment){ |
@@ -1,6 +1,6 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | |
3 | -if (!defined('EVENT_ESPRESSO_VERSION')) |
|
3 | +if ( ! defined('EVENT_ESPRESSO_VERSION')) |
|
4 | 4 | exit('No direct script access allowed'); |
5 | 5 | |
6 | 6 | /** |
@@ -25,7 +25,7 @@ discard block |
||
25 | 25 | * |
26 | 26 | * ------------------------------------------------------------------------ |
27 | 27 | */ |
28 | -class EEG_Mijireh extends EE_Offsite_Gateway{ |
|
28 | +class EEG_Mijireh extends EE_Offsite_Gateway { |
|
29 | 29 | protected $_access_key; |
30 | 30 | |
31 | 31 | protected $_currencies_supported = EE_Gateway::all_currencies_supported; |
@@ -51,10 +51,10 @@ discard block |
||
51 | 51 | $primary_attendee = $primary_registrant->attendee(); |
52 | 52 | $items = array(); |
53 | 53 | //if we're are charging for the full amount, show the normal line items |
54 | - if( $this->_can_easily_itemize_transaction_for( $payment )){ |
|
54 | + if ($this->_can_easily_itemize_transaction_for($payment)) { |
|
55 | 55 | $total_line_item = $transaction->total_line_item(); |
56 | 56 | $tax_total = $total_line_item->get_total_tax(); |
57 | - foreach($total_line_item->get_items() as $line_item){ |
|
57 | + foreach ($total_line_item->get_items() as $line_item) { |
|
58 | 58 | $items[] = array( |
59 | 59 | 'name'=>$line_item->name(), |
60 | 60 | 'price'=>$this->format_currency($line_item->unit_price()), |
@@ -62,11 +62,11 @@ discard block |
||
62 | 62 | 'quantity'=>$line_item->quantity() |
63 | 63 | ); |
64 | 64 | } |
65 | - }else{//its a partial payment |
|
65 | + } else {//its a partial payment |
|
66 | 66 | $tax_total = 0; |
67 | 67 | //partial payment, so just add 1 item |
68 | 68 | $items[] = array( |
69 | - 'name'=> sprintf(__("Partial payment for registration %s", 'event_espresso'),$primary_registrant->reg_code()), |
|
69 | + 'name'=> sprintf(__("Partial payment for registration %s", 'event_espresso'), $primary_registrant->reg_code()), |
|
70 | 70 | 'price'=> $this->format_currency($payment->amount()), |
71 | 71 | 'sku'=>$primary_registrant->reg_code(), |
72 | 72 | 'quantity'=>1 |
@@ -75,18 +75,18 @@ discard block |
||
75 | 75 | $order = array( |
76 | 76 | 'total'=>$this->format_currency($payment->amount()), |
77 | 77 | 'return_url'=>$return_url, |
78 | - 'items'=>$this->_prepare_for_mijireh( $items ), |
|
78 | + 'items'=>$this->_prepare_for_mijireh($items), |
|
79 | 79 | 'email'=>$primary_attendee->email(), |
80 | 80 | 'first_name'=>$primary_attendee->fname(), |
81 | 81 | 'last_name'=>$primary_attendee->lname(), |
82 | 82 | 'tax'=>$this->format_currency($tax_total), |
83 | 83 | 'partner_id'=>'ee'); |
84 | 84 | //setup address? |
85 | - if( $primary_attendee->address() && |
|
86 | - $primary_attendee->city() && |
|
87 | - $primary_attendee->state_ID() && |
|
88 | - $primary_attendee->country_ID() && |
|
89 | - $primary_attendee->zip() ){ |
|
85 | + if ($primary_attendee->address() && |
|
86 | + $primary_attendee->city() && |
|
87 | + $primary_attendee->state_ID() && |
|
88 | + $primary_attendee->country_ID() && |
|
89 | + $primary_attendee->zip()) { |
|
90 | 90 | $shipping_address = array( |
91 | 91 | 'first_name'=>$primary_attendee->fname(), |
92 | 92 | 'last_name'=>$primary_attendee->lname(), |
@@ -96,53 +96,53 @@ discard block |
||
96 | 96 | 'zip_code' => $primary_attendee->zip(), |
97 | 97 | 'country' => $primary_attendee->country_ID() |
98 | 98 | ); |
99 | - if( $primary_attendee->address2() ){ |
|
100 | - $shipping_address[ 'apt_suite' ] = $primary_attendee->address2(); |
|
99 | + if ($primary_attendee->address2()) { |
|
100 | + $shipping_address['apt_suite'] = $primary_attendee->address2(); |
|
101 | 101 | } |
102 | - if( $primary_attendee->phone() ){ |
|
103 | - $shipping_address[ 'phone' ] = $primary_attendee->phone(); |
|
102 | + if ($primary_attendee->phone()) { |
|
103 | + $shipping_address['phone'] = $primary_attendee->phone(); |
|
104 | 104 | } |
105 | - $order[ 'shipping_address' ] = $shipping_address; |
|
105 | + $order['shipping_address'] = $shipping_address; |
|
106 | 106 | } |
107 | - do_action( 'AHEE_log', __FILE__, __FUNCTION__, serialize(get_object_vars($this)) ); |
|
107 | + do_action('AHEE_log', __FILE__, __FUNCTION__, serialize(get_object_vars($this))); |
|
108 | 108 | $args = array( |
109 | 109 | 'headers' => array( |
110 | - 'Authorization' => 'Basic ' . base64_encode( $this->_access_key . ':' ), |
|
110 | + 'Authorization' => 'Basic '.base64_encode($this->_access_key.':'), |
|
111 | 111 | 'Accept'=>'application/json' |
112 | 112 | ), |
113 | 113 | 'body'=> json_encode($order) |
114 | 114 | ); |
115 | - $response = wp_remote_post( 'https://secure.mijireh.com/api/1/orders', $args ); |
|
116 | - $this->log(array('get checkout url request_args' => $args, 'response' => $response ), $payment); |
|
117 | - if( ! $response instanceof WP_Error ){ |
|
115 | + $response = wp_remote_post('https://secure.mijireh.com/api/1/orders', $args); |
|
116 | + $this->log(array('get checkout url request_args' => $args, 'response' => $response), $payment); |
|
117 | + if ( ! $response instanceof WP_Error) { |
|
118 | 118 | $response_body = json_decode($response['body']); |
119 | - if($response_body == NULL || ! isset($response_body->checkout_url)){ |
|
120 | - if( is_array( $response_body ) || is_object( $response_body)){ |
|
121 | - $response_body_as_array = (array)$response_body; |
|
119 | + if ($response_body == NULL || ! isset($response_body->checkout_url)) { |
|
120 | + if (is_array($response_body) || is_object($response_body)) { |
|
121 | + $response_body_as_array = (array) $response_body; |
|
122 | 122 | $problems_string = ''; |
123 | - foreach($response_body_as_array as $problem_parameter => $problems){ |
|
124 | - $problems_string.= sprintf(__('\nProblems with %s: %s','event_espresso'),$problem_parameter,implode(", ",$problems)); |
|
123 | + foreach ($response_body_as_array as $problem_parameter => $problems) { |
|
124 | + $problems_string .= sprintf(__('\nProblems with %s: %s', 'event_espresso'), $problem_parameter, implode(", ", $problems)); |
|
125 | 125 | } |
126 | - }else{ |
|
126 | + } else { |
|
127 | 127 | $problems_string = $response['body']; |
128 | 128 | } |
129 | - if( $problems_string == ''){ |
|
129 | + if ($problems_string == '') { |
|
130 | 130 | //no message to show? wack |
131 | - if( isset( $response[ 'headers' ][ 'status' ] ) ){ |
|
132 | - $problems_string = $response[ 'headers' ][ 'status' ]; |
|
133 | - }else{ |
|
134 | - $problems_string = __( 'No response from Mijireh', 'event_espresso' ); |
|
131 | + if (isset($response['headers']['status'])) { |
|
132 | + $problems_string = $response['headers']['status']; |
|
133 | + } else { |
|
134 | + $problems_string = __('No response from Mijireh', 'event_espresso'); |
|
135 | 135 | } |
136 | 136 | } |
137 | 137 | |
138 | - throw new EE_Error(sprintf(__('Errors occurred communicating with Mijireh: %s.','event_espresso'),$problems_string)); |
|
138 | + throw new EE_Error(sprintf(__('Errors occurred communicating with Mijireh: %s.', 'event_espresso'), $problems_string)); |
|
139 | 139 | } |
140 | 140 | $payment->set_redirect_url($response_body->checkout_url); |
141 | 141 | $payment->set_txn_id_chq_nmbr($response_body->order_number); |
142 | 142 | $payment->set_details($response['body']); |
143 | - }else{ |
|
144 | - $error_message = sprintf(__("Errors communicating with Mijireh: %s", 'event_espresso'),implode(",",$response->get_error_messages())); |
|
145 | - EE_Error::add_error($error_message, __FILE__, __FUNCTION__, __LINE__ ); |
|
143 | + } else { |
|
144 | + $error_message = sprintf(__("Errors communicating with Mijireh: %s", 'event_espresso'), implode(",", $response->get_error_messages())); |
|
145 | + EE_Error::add_error($error_message, __FILE__, __FUNCTION__, __LINE__); |
|
146 | 146 | throw new EE_Error($error_message); |
147 | 147 | |
148 | 148 | } |
@@ -155,16 +155,16 @@ discard block |
||
155 | 155 | * @param mixed $data |
156 | 156 | * @return mixed same type as $data |
157 | 157 | */ |
158 | - private function _prepare_for_mijireh( $data ){ |
|
159 | - if( is_array( $data ) ){ |
|
158 | + private function _prepare_for_mijireh($data) { |
|
159 | + if (is_array($data)) { |
|
160 | 160 | $prepared_data = array(); |
161 | - foreach($data as $key => $datum ){ |
|
162 | - $prepared_data[ $key ] = $this->_prepare_for_mijireh( $datum ); |
|
161 | + foreach ($data as $key => $datum) { |
|
162 | + $prepared_data[$key] = $this->_prepare_for_mijireh($datum); |
|
163 | 163 | } |
164 | 164 | return $prepared_data; |
165 | - }elseif(is_string( $data ) ){ |
|
166 | - return str_replace( '%', 'percent', $data ); |
|
167 | - }else{ |
|
165 | + }elseif (is_string($data)) { |
|
166 | + return str_replace('%', 'percent', $data); |
|
167 | + } else { |
|
168 | 168 | return $data; |
169 | 169 | } |
170 | 170 | } |
@@ -179,21 +179,21 @@ discard block |
||
179 | 179 | */ |
180 | 180 | public function handle_payment_update($update_info, $transaction) { |
181 | 181 | $payment = $transaction instanceof EEI_Transaction ? $transaction->last_payment() : NULL; |
182 | - if($payment && $payment instanceof EEI_Payment){ |
|
182 | + if ($payment && $payment instanceof EEI_Payment) { |
|
183 | 183 | $url = 'https://secure.mijireh.com/api/1/orders/'.$payment->txn_id_chq_nmbr(); |
184 | 184 | $request_args = array( |
185 | 185 | 'headers' => array( |
186 | - 'Authorization' => 'Basic ' . base64_encode( $this->_access_key . ':' ), |
|
186 | + 'Authorization' => 'Basic '.base64_encode($this->_access_key.':'), |
|
187 | 187 | 'Accept'=>'application/json' |
188 | 188 | ) |
189 | 189 | ); |
190 | - $response = wp_remote_get($url, $request_args ); |
|
190 | + $response = wp_remote_get($url, $request_args); |
|
191 | 191 | $this->log( |
192 | - array( 'get payment status request_args' => $request_args, 'response' => $response ), |
|
192 | + array('get payment status request_args' => $request_args, 'response' => $response), |
|
193 | 193 | $payment |
194 | 194 | ); |
195 | - if($response && isset($response['body']) && $response_body = json_decode($response['body'])){ |
|
196 | - switch($response_body->status){ |
|
195 | + if ($response && isset($response['body']) && $response_body = json_decode($response['body'])) { |
|
196 | + switch ($response_body->status) { |
|
197 | 197 | case 'paid': |
198 | 198 | $payment->set_status($this->_pay_model->approved_status()); |
199 | 199 | break; |
@@ -204,14 +204,14 @@ discard block |
||
204 | 204 | $payment->set_status($this->_pay_model->declined_status()); |
205 | 205 | } |
206 | 206 | |
207 | - }else{ |
|
208 | - $payment->set_gateway_response( __( 'Response from Mijireh could not be understood.', 'event_espresso' ) ); |
|
209 | - $payment->set_details( $response ); |
|
210 | - $payment->set_status( $this->_pay_model->failed_status() ); |
|
207 | + } else { |
|
208 | + $payment->set_gateway_response(__('Response from Mijireh could not be understood.', 'event_espresso')); |
|
209 | + $payment->set_details($response); |
|
210 | + $payment->set_status($this->_pay_model->failed_status()); |
|
211 | 211 | } |
212 | 212 | return $payment; |
213 | - }else{ |
|
214 | - throw new EE_Error(sprintf(__("Could not find Mijireh payment for transaction %s",'event_espresso'),$transaction->ID())); |
|
213 | + } else { |
|
214 | + throw new EE_Error(sprintf(__("Could not find Mijireh payment for transaction %s", 'event_espresso'), $transaction->ID())); |
|
215 | 215 | } |
216 | 216 | } |
217 | 217 |
@@ -1,7 +1,8 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | |
3 | -if (!defined('EVENT_ESPRESSO_VERSION')) |
|
3 | +if (!defined('EVENT_ESPRESSO_VERSION')) { |
|
4 | 4 | exit('No direct script access allowed'); |
5 | +} |
|
5 | 6 | |
6 | 7 | /** |
7 | 8 | * Event Espresso |
@@ -62,7 +63,7 @@ discard block |
||
62 | 63 | 'quantity'=>$line_item->quantity() |
63 | 64 | ); |
64 | 65 | } |
65 | - }else{//its a partial payment |
|
66 | + } else{//its a partial payment |
|
66 | 67 | $tax_total = 0; |
67 | 68 | //partial payment, so just add 1 item |
68 | 69 | $items[] = array( |
@@ -123,14 +124,14 @@ discard block |
||
123 | 124 | foreach($response_body_as_array as $problem_parameter => $problems){ |
124 | 125 | $problems_string.= sprintf(__('\nProblems with %s: %s','event_espresso'),$problem_parameter,implode(", ",$problems)); |
125 | 126 | } |
126 | - }else{ |
|
127 | + } else{ |
|
127 | 128 | $problems_string = $response['body']; |
128 | 129 | } |
129 | 130 | if( $problems_string == ''){ |
130 | 131 | //no message to show? wack |
131 | 132 | if( isset( $response[ 'headers' ][ 'status' ] ) ){ |
132 | 133 | $problems_string = $response[ 'headers' ][ 'status' ]; |
133 | - }else{ |
|
134 | + } else{ |
|
134 | 135 | $problems_string = __( 'No response from Mijireh', 'event_espresso' ); |
135 | 136 | } |
136 | 137 | } |
@@ -140,7 +141,7 @@ discard block |
||
140 | 141 | $payment->set_redirect_url($response_body->checkout_url); |
141 | 142 | $payment->set_txn_id_chq_nmbr($response_body->order_number); |
142 | 143 | $payment->set_details($response['body']); |
143 | - }else{ |
|
144 | + } else{ |
|
144 | 145 | $error_message = sprintf(__("Errors communicating with Mijireh: %s", 'event_espresso'),implode(",",$response->get_error_messages())); |
145 | 146 | EE_Error::add_error($error_message, __FILE__, __FUNCTION__, __LINE__ ); |
146 | 147 | throw new EE_Error($error_message); |
@@ -162,9 +163,9 @@ discard block |
||
162 | 163 | $prepared_data[ $key ] = $this->_prepare_for_mijireh( $datum ); |
163 | 164 | } |
164 | 165 | return $prepared_data; |
165 | - }elseif(is_string( $data ) ){ |
|
166 | + } elseif(is_string( $data ) ){ |
|
166 | 167 | return str_replace( '%', 'percent', $data ); |
167 | - }else{ |
|
168 | + } else{ |
|
168 | 169 | return $data; |
169 | 170 | } |
170 | 171 | } |
@@ -204,13 +205,13 @@ discard block |
||
204 | 205 | $payment->set_status($this->_pay_model->declined_status()); |
205 | 206 | } |
206 | 207 | |
207 | - }else{ |
|
208 | + } else{ |
|
208 | 209 | $payment->set_gateway_response( __( 'Response from Mijireh could not be understood.', 'event_espresso' ) ); |
209 | 210 | $payment->set_details( $response ); |
210 | 211 | $payment->set_status( $this->_pay_model->failed_status() ); |
211 | 212 | } |
212 | 213 | return $payment; |
213 | - }else{ |
|
214 | + } else{ |
|
214 | 215 | throw new EE_Error(sprintf(__("Could not find Mijireh payment for transaction %s",'event_espresso'),$transaction->ID())); |
215 | 216 | } |
216 | 217 | } |