@@ -33,87 +33,87 @@ |
||
33 | 33 | */ |
34 | 34 | class SocketPost implements RequestMethod |
35 | 35 | { |
36 | - /** |
|
37 | - * reCAPTCHA service host. |
|
38 | - * |
|
39 | - * @const string |
|
40 | - */ |
|
41 | - const RECAPTCHA_HOST = 'www.google.com'; |
|
42 | - |
|
43 | - /** |
|
44 | - * @const string reCAPTCHA service path |
|
45 | - */ |
|
46 | - const SITE_VERIFY_PATH = '/recaptcha/api/siteverify'; |
|
47 | - |
|
48 | - /** |
|
49 | - * @const string Bad request error |
|
50 | - */ |
|
51 | - const BAD_REQUEST = '{"success": false, "error-codes": ["invalid-request"]}'; |
|
52 | - |
|
53 | - /** |
|
54 | - * @const string Bad response error |
|
55 | - */ |
|
56 | - const BAD_RESPONSE = '{"success": false, "error-codes": ["invalid-response"]}'; |
|
57 | - |
|
58 | - /** |
|
59 | - * Socket to the reCAPTCHA service |
|
60 | - * |
|
61 | - * @var Socket |
|
62 | - */ |
|
63 | - private $socket; |
|
64 | - |
|
65 | - /** |
|
66 | - * Constructor |
|
67 | - * |
|
68 | - * @param \ReCaptcha\RequestMethod\Socket $socket optional socket, injectable for testing |
|
69 | - */ |
|
70 | - public function __construct(Socket $socket = null) |
|
71 | - { |
|
72 | - if (! is_null($socket)) { |
|
73 | - $this->socket = $socket; |
|
74 | - } else { |
|
75 | - $this->socket = new Socket(); |
|
76 | - } |
|
77 | - } |
|
78 | - |
|
79 | - /** |
|
80 | - * Submit the POST request with the specified parameters. |
|
81 | - * |
|
82 | - * @param RequestParameters $params Request parameters |
|
83 | - * @return string Body of the reCAPTCHA response |
|
84 | - */ |
|
85 | - public function submit(RequestParameters $params) |
|
86 | - { |
|
87 | - $errno = 0; |
|
88 | - $errstr = ''; |
|
89 | - |
|
90 | - if ($this->socket->fsockopen('ssl://' . self::RECAPTCHA_HOST, 443, $errno, $errstr, 30) !== false) { |
|
91 | - $content = $params->toQueryString(); |
|
92 | - |
|
93 | - $request = "POST " . self::SITE_VERIFY_PATH . " HTTP/1.1\r\n"; |
|
94 | - $request .= "Host: " . self::RECAPTCHA_HOST . "\r\n"; |
|
95 | - $request .= "Content-Type: application/x-www-form-urlencoded\r\n"; |
|
96 | - $request .= "Content-length: " . strlen($content) . "\r\n"; |
|
97 | - $request .= "Connection: close\r\n\r\n"; |
|
98 | - $request .= $content . "\r\n\r\n"; |
|
99 | - |
|
100 | - $this->socket->fwrite($request); |
|
101 | - $response = ''; |
|
102 | - |
|
103 | - while (! $this->socket->feof()) { |
|
104 | - $response .= $this->socket->fgets(4096); |
|
105 | - } |
|
106 | - |
|
107 | - $this->socket->fclose(); |
|
108 | - |
|
109 | - if (0 === strpos($response, 'HTTP/1.1 200 OK')) { |
|
110 | - $parts = preg_split("#\n\s*\n#Uis", $response); |
|
111 | - return $parts[1]; |
|
112 | - } |
|
113 | - |
|
114 | - return self::BAD_RESPONSE; |
|
115 | - } |
|
116 | - |
|
117 | - return self::BAD_REQUEST; |
|
118 | - } |
|
36 | + /** |
|
37 | + * reCAPTCHA service host. |
|
38 | + * |
|
39 | + * @const string |
|
40 | + */ |
|
41 | + const RECAPTCHA_HOST = 'www.google.com'; |
|
42 | + |
|
43 | + /** |
|
44 | + * @const string reCAPTCHA service path |
|
45 | + */ |
|
46 | + const SITE_VERIFY_PATH = '/recaptcha/api/siteverify'; |
|
47 | + |
|
48 | + /** |
|
49 | + * @const string Bad request error |
|
50 | + */ |
|
51 | + const BAD_REQUEST = '{"success": false, "error-codes": ["invalid-request"]}'; |
|
52 | + |
|
53 | + /** |
|
54 | + * @const string Bad response error |
|
55 | + */ |
|
56 | + const BAD_RESPONSE = '{"success": false, "error-codes": ["invalid-response"]}'; |
|
57 | + |
|
58 | + /** |
|
59 | + * Socket to the reCAPTCHA service |
|
60 | + * |
|
61 | + * @var Socket |
|
62 | + */ |
|
63 | + private $socket; |
|
64 | + |
|
65 | + /** |
|
66 | + * Constructor |
|
67 | + * |
|
68 | + * @param \ReCaptcha\RequestMethod\Socket $socket optional socket, injectable for testing |
|
69 | + */ |
|
70 | + public function __construct(Socket $socket = null) |
|
71 | + { |
|
72 | + if (! is_null($socket)) { |
|
73 | + $this->socket = $socket; |
|
74 | + } else { |
|
75 | + $this->socket = new Socket(); |
|
76 | + } |
|
77 | + } |
|
78 | + |
|
79 | + /** |
|
80 | + * Submit the POST request with the specified parameters. |
|
81 | + * |
|
82 | + * @param RequestParameters $params Request parameters |
|
83 | + * @return string Body of the reCAPTCHA response |
|
84 | + */ |
|
85 | + public function submit(RequestParameters $params) |
|
86 | + { |
|
87 | + $errno = 0; |
|
88 | + $errstr = ''; |
|
89 | + |
|
90 | + if ($this->socket->fsockopen('ssl://' . self::RECAPTCHA_HOST, 443, $errno, $errstr, 30) !== false) { |
|
91 | + $content = $params->toQueryString(); |
|
92 | + |
|
93 | + $request = "POST " . self::SITE_VERIFY_PATH . " HTTP/1.1\r\n"; |
|
94 | + $request .= "Host: " . self::RECAPTCHA_HOST . "\r\n"; |
|
95 | + $request .= "Content-Type: application/x-www-form-urlencoded\r\n"; |
|
96 | + $request .= "Content-length: " . strlen($content) . "\r\n"; |
|
97 | + $request .= "Connection: close\r\n\r\n"; |
|
98 | + $request .= $content . "\r\n\r\n"; |
|
99 | + |
|
100 | + $this->socket->fwrite($request); |
|
101 | + $response = ''; |
|
102 | + |
|
103 | + while (! $this->socket->feof()) { |
|
104 | + $response .= $this->socket->fgets(4096); |
|
105 | + } |
|
106 | + |
|
107 | + $this->socket->fclose(); |
|
108 | + |
|
109 | + if (0 === strpos($response, 'HTTP/1.1 200 OK')) { |
|
110 | + $parts = preg_split("#\n\s*\n#Uis", $response); |
|
111 | + return $parts[1]; |
|
112 | + } |
|
113 | + |
|
114 | + return self::BAD_RESPONSE; |
|
115 | + } |
|
116 | + |
|
117 | + return self::BAD_REQUEST; |
|
118 | + } |
|
119 | 119 | } |
@@ -69,7 +69,7 @@ discard block |
||
69 | 69 | */ |
70 | 70 | public function __construct(Socket $socket = null) |
71 | 71 | { |
72 | - if (! is_null($socket)) { |
|
72 | + if ( ! is_null($socket)) { |
|
73 | 73 | $this->socket = $socket; |
74 | 74 | } else { |
75 | 75 | $this->socket = new Socket(); |
@@ -87,20 +87,20 @@ discard block |
||
87 | 87 | $errno = 0; |
88 | 88 | $errstr = ''; |
89 | 89 | |
90 | - if ($this->socket->fsockopen('ssl://' . self::RECAPTCHA_HOST, 443, $errno, $errstr, 30) !== false) { |
|
90 | + if ($this->socket->fsockopen('ssl://'.self::RECAPTCHA_HOST, 443, $errno, $errstr, 30) !== false) { |
|
91 | 91 | $content = $params->toQueryString(); |
92 | 92 | |
93 | - $request = "POST " . self::SITE_VERIFY_PATH . " HTTP/1.1\r\n"; |
|
94 | - $request .= "Host: " . self::RECAPTCHA_HOST . "\r\n"; |
|
93 | + $request = "POST ".self::SITE_VERIFY_PATH." HTTP/1.1\r\n"; |
|
94 | + $request .= "Host: ".self::RECAPTCHA_HOST."\r\n"; |
|
95 | 95 | $request .= "Content-Type: application/x-www-form-urlencoded\r\n"; |
96 | - $request .= "Content-length: " . strlen($content) . "\r\n"; |
|
96 | + $request .= "Content-length: ".strlen($content)."\r\n"; |
|
97 | 97 | $request .= "Connection: close\r\n\r\n"; |
98 | - $request .= $content . "\r\n\r\n"; |
|
98 | + $request .= $content."\r\n\r\n"; |
|
99 | 99 | |
100 | 100 | $this->socket->fwrite($request); |
101 | 101 | $response = ''; |
102 | 102 | |
103 | - while (! $this->socket->feof()) { |
|
103 | + while ( ! $this->socket->feof()) { |
|
104 | 104 | $response .= $this->socket->fgets(4096); |
105 | 105 | } |
106 | 106 |
@@ -29,79 +29,79 @@ |
||
29 | 29 | */ |
30 | 30 | class Socket |
31 | 31 | { |
32 | - private $handle = null; |
|
32 | + private $handle = null; |
|
33 | 33 | |
34 | - /** |
|
35 | - * fsockopen |
|
36 | - * |
|
37 | - * @see http://php.net/fsockopen |
|
38 | - * @param string $hostname |
|
39 | - * @param int $port |
|
40 | - * @param int $errno |
|
41 | - * @param string $errstr |
|
42 | - * @param float $timeout |
|
43 | - * @return resource |
|
44 | - */ |
|
45 | - public function fsockopen($hostname, $port = -1, &$errno = 0, &$errstr = '', $timeout = null) |
|
46 | - { |
|
47 | - $this->handle = fsockopen( |
|
48 | - $hostname, |
|
49 | - $port, |
|
50 | - $errno, |
|
51 | - $errstr, |
|
52 | - (is_null($timeout) ? ini_get("default_socket_timeout") : $timeout) |
|
53 | - ); |
|
34 | + /** |
|
35 | + * fsockopen |
|
36 | + * |
|
37 | + * @see http://php.net/fsockopen |
|
38 | + * @param string $hostname |
|
39 | + * @param int $port |
|
40 | + * @param int $errno |
|
41 | + * @param string $errstr |
|
42 | + * @param float $timeout |
|
43 | + * @return resource |
|
44 | + */ |
|
45 | + public function fsockopen($hostname, $port = -1, &$errno = 0, &$errstr = '', $timeout = null) |
|
46 | + { |
|
47 | + $this->handle = fsockopen( |
|
48 | + $hostname, |
|
49 | + $port, |
|
50 | + $errno, |
|
51 | + $errstr, |
|
52 | + (is_null($timeout) ? ini_get("default_socket_timeout") : $timeout) |
|
53 | + ); |
|
54 | 54 | |
55 | - if ($this->handle != false && $errno === 0 && $errstr === '') { |
|
56 | - return $this->handle; |
|
57 | - } else { |
|
58 | - return false; |
|
59 | - } |
|
60 | - } |
|
55 | + if ($this->handle != false && $errno === 0 && $errstr === '') { |
|
56 | + return $this->handle; |
|
57 | + } else { |
|
58 | + return false; |
|
59 | + } |
|
60 | + } |
|
61 | 61 | |
62 | - /** |
|
63 | - * fwrite |
|
64 | - * |
|
65 | - * @see http://php.net/fwrite |
|
66 | - * @param string $string |
|
67 | - * @param int $length |
|
68 | - * @return int | bool |
|
69 | - */ |
|
70 | - public function fwrite($string, $length = null) |
|
71 | - { |
|
72 | - return fwrite($this->handle, $string, (is_null($length) ? strlen($string) : $length)); |
|
73 | - } |
|
62 | + /** |
|
63 | + * fwrite |
|
64 | + * |
|
65 | + * @see http://php.net/fwrite |
|
66 | + * @param string $string |
|
67 | + * @param int $length |
|
68 | + * @return int | bool |
|
69 | + */ |
|
70 | + public function fwrite($string, $length = null) |
|
71 | + { |
|
72 | + return fwrite($this->handle, $string, (is_null($length) ? strlen($string) : $length)); |
|
73 | + } |
|
74 | 74 | |
75 | - /** |
|
76 | - * fgets |
|
77 | - * |
|
78 | - * @see http://php.net/fgets |
|
79 | - * @param int $length |
|
80 | - */ |
|
81 | - public function fgets($length = null) |
|
82 | - { |
|
83 | - return fgets($this->handle, $length); |
|
84 | - } |
|
75 | + /** |
|
76 | + * fgets |
|
77 | + * |
|
78 | + * @see http://php.net/fgets |
|
79 | + * @param int $length |
|
80 | + */ |
|
81 | + public function fgets($length = null) |
|
82 | + { |
|
83 | + return fgets($this->handle, $length); |
|
84 | + } |
|
85 | 85 | |
86 | - /** |
|
87 | - * feof |
|
88 | - * |
|
89 | - * @see http://php.net/feof |
|
90 | - * @return bool |
|
91 | - */ |
|
92 | - public function feof() |
|
93 | - { |
|
94 | - return feof($this->handle); |
|
95 | - } |
|
86 | + /** |
|
87 | + * feof |
|
88 | + * |
|
89 | + * @see http://php.net/feof |
|
90 | + * @return bool |
|
91 | + */ |
|
92 | + public function feof() |
|
93 | + { |
|
94 | + return feof($this->handle); |
|
95 | + } |
|
96 | 96 | |
97 | - /** |
|
98 | - * fclose |
|
99 | - * |
|
100 | - * @see http://php.net/fclose |
|
101 | - * @return bool |
|
102 | - */ |
|
103 | - public function fclose() |
|
104 | - { |
|
105 | - return fclose($this->handle); |
|
106 | - } |
|
97 | + /** |
|
98 | + * fclose |
|
99 | + * |
|
100 | + * @see http://php.net/fclose |
|
101 | + * @return bool |
|
102 | + */ |
|
103 | + public function fclose() |
|
104 | + { |
|
105 | + return fclose($this->handle); |
|
106 | + } |
|
107 | 107 | } |
@@ -15,66 +15,66 @@ |
||
15 | 15 | class IpnException extends \LogicException |
16 | 16 | { |
17 | 17 | |
18 | - const DUPLICATE = 1; |
|
18 | + const DUPLICATE = 1; |
|
19 | 19 | |
20 | - const UNABLE_TO_VALIDATE = 2; |
|
20 | + const UNABLE_TO_VALIDATE = 2; |
|
21 | 21 | |
22 | - const UNSUPPORTED = 3; |
|
22 | + const UNSUPPORTED = 3; |
|
23 | 23 | |
24 | - /** |
|
25 | - * @var \EE_Payment |
|
26 | - */ |
|
27 | - protected $payment; |
|
24 | + /** |
|
25 | + * @var \EE_Payment |
|
26 | + */ |
|
27 | + protected $payment; |
|
28 | 28 | |
29 | - /** |
|
30 | - * @var mixed IPN data, usually an array or object |
|
31 | - */ |
|
32 | - protected $ipn_data; |
|
29 | + /** |
|
30 | + * @var mixed IPN data, usually an array or object |
|
31 | + */ |
|
32 | + protected $ipn_data; |
|
33 | 33 | |
34 | 34 | |
35 | - public function __construct( |
|
36 | - $message, |
|
37 | - $code = 0, |
|
38 | - \Exception $previous = null, |
|
39 | - \EE_Payment $payment = null, |
|
40 | - $ipn_data = array() |
|
41 | - ) { |
|
42 | - parent::__construct($message, $code, $previous); |
|
43 | - $this->payment = $payment; |
|
44 | - $this->ipn_data = $ipn_data; |
|
45 | - } |
|
35 | + public function __construct( |
|
36 | + $message, |
|
37 | + $code = 0, |
|
38 | + \Exception $previous = null, |
|
39 | + \EE_Payment $payment = null, |
|
40 | + $ipn_data = array() |
|
41 | + ) { |
|
42 | + parent::__construct($message, $code, $previous); |
|
43 | + $this->payment = $payment; |
|
44 | + $this->ipn_data = $ipn_data; |
|
45 | + } |
|
46 | 46 | |
47 | 47 | |
48 | - /** |
|
49 | - * Gets the payment associated with this IPN, if known |
|
50 | - * |
|
51 | - * @return \EE_Payment |
|
52 | - */ |
|
53 | - public function getPayment() |
|
54 | - { |
|
55 | - return $this->payment; |
|
56 | - } |
|
48 | + /** |
|
49 | + * Gets the payment associated with this IPN, if known |
|
50 | + * |
|
51 | + * @return \EE_Payment |
|
52 | + */ |
|
53 | + public function getPayment() |
|
54 | + { |
|
55 | + return $this->payment; |
|
56 | + } |
|
57 | 57 | |
58 | 58 | |
59 | - /** |
|
60 | - * Returns the payment's properties as an array (even if there is no payment, in which case it's an empty array) |
|
61 | - * |
|
62 | - * @return array |
|
63 | - * @throws \EE_Error |
|
64 | - */ |
|
65 | - public function getPaymentProperties() |
|
66 | - { |
|
67 | - return $this->getPayment() instanceof \EE_Payment ? $this->getPayment()->model_field_array() : array(); |
|
68 | - } |
|
59 | + /** |
|
60 | + * Returns the payment's properties as an array (even if there is no payment, in which case it's an empty array) |
|
61 | + * |
|
62 | + * @return array |
|
63 | + * @throws \EE_Error |
|
64 | + */ |
|
65 | + public function getPaymentProperties() |
|
66 | + { |
|
67 | + return $this->getPayment() instanceof \EE_Payment ? $this->getPayment()->model_field_array() : array(); |
|
68 | + } |
|
69 | 69 | |
70 | 70 | |
71 | - /** |
|
72 | - * Returns an array, object, or string, however, the IPN data was received |
|
73 | - * |
|
74 | - * @return mixed |
|
75 | - */ |
|
76 | - public function getIpnData() |
|
77 | - { |
|
78 | - return $this->ipn_data; |
|
79 | - } |
|
71 | + /** |
|
72 | + * Returns an array, object, or string, however, the IPN data was received |
|
73 | + * |
|
74 | + * @return mixed |
|
75 | + */ |
|
76 | + public function getIpnData() |
|
77 | + { |
|
78 | + return $this->ipn_data; |
|
79 | + } |
|
80 | 80 | } |
@@ -12,18 +12,18 @@ |
||
12 | 12 | class InvalidSessionDataException extends \Exception |
13 | 13 | { |
14 | 14 | |
15 | - /** |
|
16 | - * InvalidInterfaceException constructor. |
|
17 | - * |
|
18 | - * @param string $message |
|
19 | - * @param int $code |
|
20 | - * @param \Exception $previous |
|
21 | - */ |
|
22 | - public function __construct($message = '', $code = 0, \Exception $previous = null) |
|
23 | - { |
|
24 | - if (empty($message)) { |
|
25 | - $message = esc_html__('The session data is either missing or invalid.', 'event_espresso'); |
|
26 | - } |
|
27 | - parent::__construct($message, $code, $previous); |
|
28 | - } |
|
15 | + /** |
|
16 | + * InvalidInterfaceException constructor. |
|
17 | + * |
|
18 | + * @param string $message |
|
19 | + * @param int $code |
|
20 | + * @param \Exception $previous |
|
21 | + */ |
|
22 | + public function __construct($message = '', $code = 0, \Exception $previous = null) |
|
23 | + { |
|
24 | + if (empty($message)) { |
|
25 | + $message = esc_html__('The session data is either missing or invalid.', 'event_espresso'); |
|
26 | + } |
|
27 | + parent::__construct($message, $code, $previous); |
|
28 | + } |
|
29 | 29 | } |
@@ -14,39 +14,39 @@ |
||
14 | 14 | { |
15 | 15 | |
16 | 16 | |
17 | - /** |
|
18 | - * ExceptionLogger constructor. |
|
19 | - * |
|
20 | - * @param \Exception $exception |
|
21 | - */ |
|
22 | - public function __construct(\Exception $exception) |
|
23 | - { |
|
24 | - $this->log($exception); |
|
25 | - } |
|
17 | + /** |
|
18 | + * ExceptionLogger constructor. |
|
19 | + * |
|
20 | + * @param \Exception $exception |
|
21 | + */ |
|
22 | + public function __construct(\Exception $exception) |
|
23 | + { |
|
24 | + $this->log($exception); |
|
25 | + } |
|
26 | 26 | |
27 | 27 | |
28 | - /** |
|
29 | - * write exception details to log file |
|
30 | - * |
|
31 | - * @param \Exception $exception |
|
32 | - * @param int $time |
|
33 | - */ |
|
34 | - public function log(\Exception $exception, $time = 0) |
|
35 | - { |
|
36 | - if (! $time) { |
|
37 | - $time = time(); |
|
38 | - } |
|
39 | - $exception_log = '----------------------------------------------------------------------------------------'; |
|
40 | - $exception_log .= PHP_EOL; |
|
41 | - $exception_log .= '[' . date('Y-m-d H:i:s', $time) . '] Exception Details' . PHP_EOL; |
|
42 | - $exception_log .= 'Message: ' . $exception->getMessage() . PHP_EOL; |
|
43 | - $exception_log .= 'Code: ' . $exception->getCode() . PHP_EOL; |
|
44 | - $exception_log .= 'File: ' . $exception->getFile() . PHP_EOL; |
|
45 | - $exception_log .= 'Line No: ' . $exception->getLine() . PHP_EOL; |
|
46 | - $exception_log .= 'Stack trace: ' . PHP_EOL; |
|
47 | - $exception_log .= $exception->getTraceAsString() . PHP_EOL; |
|
48 | - $exception_log .= '----------------------------------------------------------------------------------------'; |
|
49 | - $exception_log .= PHP_EOL; |
|
50 | - error_log($exception_log); |
|
51 | - } |
|
28 | + /** |
|
29 | + * write exception details to log file |
|
30 | + * |
|
31 | + * @param \Exception $exception |
|
32 | + * @param int $time |
|
33 | + */ |
|
34 | + public function log(\Exception $exception, $time = 0) |
|
35 | + { |
|
36 | + if (! $time) { |
|
37 | + $time = time(); |
|
38 | + } |
|
39 | + $exception_log = '----------------------------------------------------------------------------------------'; |
|
40 | + $exception_log .= PHP_EOL; |
|
41 | + $exception_log .= '[' . date('Y-m-d H:i:s', $time) . '] Exception Details' . PHP_EOL; |
|
42 | + $exception_log .= 'Message: ' . $exception->getMessage() . PHP_EOL; |
|
43 | + $exception_log .= 'Code: ' . $exception->getCode() . PHP_EOL; |
|
44 | + $exception_log .= 'File: ' . $exception->getFile() . PHP_EOL; |
|
45 | + $exception_log .= 'Line No: ' . $exception->getLine() . PHP_EOL; |
|
46 | + $exception_log .= 'Stack trace: ' . PHP_EOL; |
|
47 | + $exception_log .= $exception->getTraceAsString() . PHP_EOL; |
|
48 | + $exception_log .= '----------------------------------------------------------------------------------------'; |
|
49 | + $exception_log .= PHP_EOL; |
|
50 | + error_log($exception_log); |
|
51 | + } |
|
52 | 52 | } |
@@ -33,18 +33,18 @@ |
||
33 | 33 | */ |
34 | 34 | public function log(\Exception $exception, $time = 0) |
35 | 35 | { |
36 | - if (! $time) { |
|
36 | + if ( ! $time) { |
|
37 | 37 | $time = time(); |
38 | 38 | } |
39 | 39 | $exception_log = '----------------------------------------------------------------------------------------'; |
40 | 40 | $exception_log .= PHP_EOL; |
41 | - $exception_log .= '[' . date('Y-m-d H:i:s', $time) . '] Exception Details' . PHP_EOL; |
|
42 | - $exception_log .= 'Message: ' . $exception->getMessage() . PHP_EOL; |
|
43 | - $exception_log .= 'Code: ' . $exception->getCode() . PHP_EOL; |
|
44 | - $exception_log .= 'File: ' . $exception->getFile() . PHP_EOL; |
|
45 | - $exception_log .= 'Line No: ' . $exception->getLine() . PHP_EOL; |
|
46 | - $exception_log .= 'Stack trace: ' . PHP_EOL; |
|
47 | - $exception_log .= $exception->getTraceAsString() . PHP_EOL; |
|
41 | + $exception_log .= '['.date('Y-m-d H:i:s', $time).'] Exception Details'.PHP_EOL; |
|
42 | + $exception_log .= 'Message: '.$exception->getMessage().PHP_EOL; |
|
43 | + $exception_log .= 'Code: '.$exception->getCode().PHP_EOL; |
|
44 | + $exception_log .= 'File: '.$exception->getFile().PHP_EOL; |
|
45 | + $exception_log .= 'Line No: '.$exception->getLine().PHP_EOL; |
|
46 | + $exception_log .= 'Stack trace: '.PHP_EOL; |
|
47 | + $exception_log .= $exception->getTraceAsString().PHP_EOL; |
|
48 | 48 | $exception_log .= '----------------------------------------------------------------------------------------'; |
49 | 49 | $exception_log .= PHP_EOL; |
50 | 50 | error_log($exception_log); |
@@ -15,26 +15,26 @@ |
||
15 | 15 | abstract class FormatterBase implements FormatterInterface |
16 | 16 | { |
17 | 17 | |
18 | - /** |
|
19 | - * Recursively applies the formatting to all VALUES in this multi-dimensional array |
|
20 | - * |
|
21 | - * @param array $input |
|
22 | - * @return array |
|
23 | - * @throws InvalidDataTypeException if $input is not an array |
|
24 | - */ |
|
25 | - public function formatArray($input) |
|
26 | - { |
|
27 | - if (! is_array($input)) { |
|
28 | - throw new InvalidDataTypeException('input', $input, 'array'); |
|
29 | - } |
|
30 | - // we can use $this inside the closure in PHP 5.3, so pass in a variable pointing to this instead |
|
31 | - $formatter = $this; |
|
32 | - array_walk_recursive( |
|
33 | - $input, |
|
34 | - function (&$value, $key) use ($formatter) { |
|
35 | - $value = $formatter->format($value); |
|
36 | - } |
|
37 | - ); |
|
38 | - return $input; |
|
39 | - } |
|
18 | + /** |
|
19 | + * Recursively applies the formatting to all VALUES in this multi-dimensional array |
|
20 | + * |
|
21 | + * @param array $input |
|
22 | + * @return array |
|
23 | + * @throws InvalidDataTypeException if $input is not an array |
|
24 | + */ |
|
25 | + public function formatArray($input) |
|
26 | + { |
|
27 | + if (! is_array($input)) { |
|
28 | + throw new InvalidDataTypeException('input', $input, 'array'); |
|
29 | + } |
|
30 | + // we can use $this inside the closure in PHP 5.3, so pass in a variable pointing to this instead |
|
31 | + $formatter = $this; |
|
32 | + array_walk_recursive( |
|
33 | + $input, |
|
34 | + function (&$value, $key) use ($formatter) { |
|
35 | + $value = $formatter->format($value); |
|
36 | + } |
|
37 | + ); |
|
38 | + return $input; |
|
39 | + } |
|
40 | 40 | } |
@@ -24,14 +24,14 @@ |
||
24 | 24 | */ |
25 | 25 | public function formatArray($input) |
26 | 26 | { |
27 | - if (! is_array($input)) { |
|
27 | + if ( ! is_array($input)) { |
|
28 | 28 | throw new InvalidDataTypeException('input', $input, 'array'); |
29 | 29 | } |
30 | 30 | // we can use $this inside the closure in PHP 5.3, so pass in a variable pointing to this instead |
31 | 31 | $formatter = $this; |
32 | 32 | array_walk_recursive( |
33 | 33 | $input, |
34 | - function (&$value, $key) use ($formatter) { |
|
34 | + function(&$value, $key) use ($formatter) { |
|
35 | 35 | $value = $formatter->format($value); |
36 | 36 | } |
37 | 37 | ); |
@@ -15,26 +15,26 @@ |
||
15 | 15 | class LeaveAlone extends FormatterBase |
16 | 16 | { |
17 | 17 | |
18 | - /** |
|
19 | - * Removes the emojis from the inputted string |
|
20 | - * |
|
21 | - * @param string|int|float $input anything easily cast into a string |
|
22 | - * @return string |
|
23 | - * @throws InvalidDataTypeException if $input is not a string |
|
24 | - */ |
|
25 | - public function format($input) |
|
26 | - { |
|
27 | - return $input; |
|
28 | - } |
|
18 | + /** |
|
19 | + * Removes the emojis from the inputted string |
|
20 | + * |
|
21 | + * @param string|int|float $input anything easily cast into a string |
|
22 | + * @return string |
|
23 | + * @throws InvalidDataTypeException if $input is not a string |
|
24 | + */ |
|
25 | + public function format($input) |
|
26 | + { |
|
27 | + return $input; |
|
28 | + } |
|
29 | 29 | |
30 | - /** |
|
31 | - * Just returns the inputted $input array |
|
32 | - * |
|
33 | - * @param array $input |
|
34 | - * @return array |
|
35 | - */ |
|
36 | - public function formatArray($input) |
|
37 | - { |
|
38 | - return $input; |
|
39 | - } |
|
30 | + /** |
|
31 | + * Just returns the inputted $input array |
|
32 | + * |
|
33 | + * @param array $input |
|
34 | + * @return array |
|
35 | + */ |
|
36 | + public function formatArray($input) |
|
37 | + { |
|
38 | + return $input; |
|
39 | + } |
|
40 | 40 | } |
@@ -23,87 +23,87 @@ |
||
23 | 23 | class RequestStackCoreApp implements RequestDecoratorInterface, RequestStackCoreAppInterface |
24 | 24 | { |
25 | 25 | |
26 | - /** |
|
27 | - * @var RequestInterface $request |
|
28 | - */ |
|
29 | - protected $request; |
|
26 | + /** |
|
27 | + * @var RequestInterface $request |
|
28 | + */ |
|
29 | + protected $request; |
|
30 | 30 | |
31 | - /** |
|
32 | - * @var ResponseInterface $response |
|
33 | - */ |
|
34 | - protected $response; |
|
31 | + /** |
|
32 | + * @var ResponseInterface $response |
|
33 | + */ |
|
34 | + protected $response; |
|
35 | 35 | |
36 | 36 | |
37 | - /** |
|
38 | - * handle |
|
39 | - * sets hooks for running rest of system |
|
40 | - * provides "AHEE__EE_System__construct__complete" hook for EE Addons to use as their starting point |
|
41 | - * starting EE Addons from any other point may lead to problems |
|
42 | - * |
|
43 | - * @param RequestInterface $request |
|
44 | - * @param ResponseInterface $response |
|
45 | - * @return ResponseInterface |
|
46 | - * @throws InvalidClassException |
|
47 | - * @throws EE_Error |
|
48 | - * @throws InvalidDataTypeException |
|
49 | - * @throws InvalidInterfaceException |
|
50 | - * @throws InvalidArgumentException |
|
51 | - */ |
|
52 | - public function handleRequest(RequestInterface $request, ResponseInterface $response) |
|
53 | - { |
|
54 | - $this->request = $request; |
|
55 | - $this->response = $response; |
|
56 | - espresso_load_required('EE_Base', EE_CORE . 'EE_Base.core.php'); |
|
57 | - espresso_load_required('EE_Deprecated', EE_CORE . 'EE_Deprecated.core.php'); |
|
58 | - // workarounds for PHP < 5.3 |
|
59 | - espresso_load_required('EEH_Class_Tools', EE_HELPERS . 'EEH_Class_Tools.helper.php'); |
|
60 | - do_action( |
|
61 | - 'EE_EventEspresso_core_services_request_RequestStackCoreApp__handle_request__initialize_core_loading' |
|
62 | - ); |
|
63 | - // legacy action for backwards compatibility |
|
64 | - do_action('EE_Load_Espresso_Core__handle_request__initialize_core_loading'); |
|
65 | - $this->setupFramework(); |
|
66 | - $loader = LoaderFactory::getLoader(); |
|
67 | - $loader->getShared( |
|
68 | - 'EventEspresso\core\services\notifications\PersistentAdminNoticeManager' |
|
69 | - ); |
|
70 | - // WP cron jobs |
|
71 | - $loader->getShared('EE_Cron_Tasks'); |
|
72 | - $loader->getShared('EE_System'); |
|
73 | - return $this->response; |
|
74 | - } |
|
37 | + /** |
|
38 | + * handle |
|
39 | + * sets hooks for running rest of system |
|
40 | + * provides "AHEE__EE_System__construct__complete" hook for EE Addons to use as their starting point |
|
41 | + * starting EE Addons from any other point may lead to problems |
|
42 | + * |
|
43 | + * @param RequestInterface $request |
|
44 | + * @param ResponseInterface $response |
|
45 | + * @return ResponseInterface |
|
46 | + * @throws InvalidClassException |
|
47 | + * @throws EE_Error |
|
48 | + * @throws InvalidDataTypeException |
|
49 | + * @throws InvalidInterfaceException |
|
50 | + * @throws InvalidArgumentException |
|
51 | + */ |
|
52 | + public function handleRequest(RequestInterface $request, ResponseInterface $response) |
|
53 | + { |
|
54 | + $this->request = $request; |
|
55 | + $this->response = $response; |
|
56 | + espresso_load_required('EE_Base', EE_CORE . 'EE_Base.core.php'); |
|
57 | + espresso_load_required('EE_Deprecated', EE_CORE . 'EE_Deprecated.core.php'); |
|
58 | + // workarounds for PHP < 5.3 |
|
59 | + espresso_load_required('EEH_Class_Tools', EE_HELPERS . 'EEH_Class_Tools.helper.php'); |
|
60 | + do_action( |
|
61 | + 'EE_EventEspresso_core_services_request_RequestStackCoreApp__handle_request__initialize_core_loading' |
|
62 | + ); |
|
63 | + // legacy action for backwards compatibility |
|
64 | + do_action('EE_Load_Espresso_Core__handle_request__initialize_core_loading'); |
|
65 | + $this->setupFramework(); |
|
66 | + $loader = LoaderFactory::getLoader(); |
|
67 | + $loader->getShared( |
|
68 | + 'EventEspresso\core\services\notifications\PersistentAdminNoticeManager' |
|
69 | + ); |
|
70 | + // WP cron jobs |
|
71 | + $loader->getShared('EE_Cron_Tasks'); |
|
72 | + $loader->getShared('EE_System'); |
|
73 | + return $this->response; |
|
74 | + } |
|
75 | 75 | |
76 | 76 | |
77 | - /** |
|
78 | - * set framework for the rest of EE to hook into when loading |
|
79 | - * |
|
80 | - * @throws EE_Error |
|
81 | - */ |
|
82 | - private function setupFramework() |
|
83 | - { |
|
84 | - espresso_load_required( |
|
85 | - 'EE_Bootstrap', |
|
86 | - EE_CORE . 'EE_Bootstrap.core.php' |
|
87 | - ); |
|
88 | - add_action('plugins_loaded', array('EE_Bootstrap', 'load_espresso_addons'), 1); |
|
89 | - add_action('plugins_loaded', array('EE_Bootstrap', 'detect_activations_or_upgrades'), 3); |
|
90 | - add_action('plugins_loaded', array('EE_Bootstrap', 'load_core_configuration'), 5); |
|
91 | - add_action('plugins_loaded', array('EE_Bootstrap', 'register_shortcodes_modules_and_widgets'), 7); |
|
92 | - add_action('plugins_loaded', array('EE_Bootstrap', 'brew_espresso'), 9); |
|
93 | - } |
|
77 | + /** |
|
78 | + * set framework for the rest of EE to hook into when loading |
|
79 | + * |
|
80 | + * @throws EE_Error |
|
81 | + */ |
|
82 | + private function setupFramework() |
|
83 | + { |
|
84 | + espresso_load_required( |
|
85 | + 'EE_Bootstrap', |
|
86 | + EE_CORE . 'EE_Bootstrap.core.php' |
|
87 | + ); |
|
88 | + add_action('plugins_loaded', array('EE_Bootstrap', 'load_espresso_addons'), 1); |
|
89 | + add_action('plugins_loaded', array('EE_Bootstrap', 'detect_activations_or_upgrades'), 3); |
|
90 | + add_action('plugins_loaded', array('EE_Bootstrap', 'load_core_configuration'), 5); |
|
91 | + add_action('plugins_loaded', array('EE_Bootstrap', 'register_shortcodes_modules_and_widgets'), 7); |
|
92 | + add_action('plugins_loaded', array('EE_Bootstrap', 'brew_espresso'), 9); |
|
93 | + } |
|
94 | 94 | |
95 | 95 | |
96 | - /** |
|
97 | - * called after the request stack has been fully processed |
|
98 | - * if any of the middleware apps has requested the plugin be deactivated, then we do that now |
|
99 | - * |
|
100 | - * @param RequestInterface $request |
|
101 | - * @param ResponseInterface $response |
|
102 | - */ |
|
103 | - public function handleResponse(RequestInterface $request, ResponseInterface $response) |
|
104 | - { |
|
105 | - if ($response->pluginDeactivated()) { |
|
106 | - espresso_deactivate_plugin(EE_PLUGIN_BASENAME); |
|
107 | - } |
|
108 | - } |
|
96 | + /** |
|
97 | + * called after the request stack has been fully processed |
|
98 | + * if any of the middleware apps has requested the plugin be deactivated, then we do that now |
|
99 | + * |
|
100 | + * @param RequestInterface $request |
|
101 | + * @param ResponseInterface $response |
|
102 | + */ |
|
103 | + public function handleResponse(RequestInterface $request, ResponseInterface $response) |
|
104 | + { |
|
105 | + if ($response->pluginDeactivated()) { |
|
106 | + espresso_deactivate_plugin(EE_PLUGIN_BASENAME); |
|
107 | + } |
|
108 | + } |
|
109 | 109 | } |
@@ -53,10 +53,10 @@ discard block |
||
53 | 53 | { |
54 | 54 | $this->request = $request; |
55 | 55 | $this->response = $response; |
56 | - espresso_load_required('EE_Base', EE_CORE . 'EE_Base.core.php'); |
|
57 | - espresso_load_required('EE_Deprecated', EE_CORE . 'EE_Deprecated.core.php'); |
|
56 | + espresso_load_required('EE_Base', EE_CORE.'EE_Base.core.php'); |
|
57 | + espresso_load_required('EE_Deprecated', EE_CORE.'EE_Deprecated.core.php'); |
|
58 | 58 | // workarounds for PHP < 5.3 |
59 | - espresso_load_required('EEH_Class_Tools', EE_HELPERS . 'EEH_Class_Tools.helper.php'); |
|
59 | + espresso_load_required('EEH_Class_Tools', EE_HELPERS.'EEH_Class_Tools.helper.php'); |
|
60 | 60 | do_action( |
61 | 61 | 'EE_EventEspresso_core_services_request_RequestStackCoreApp__handle_request__initialize_core_loading' |
62 | 62 | ); |
@@ -83,7 +83,7 @@ discard block |
||
83 | 83 | { |
84 | 84 | espresso_load_required( |
85 | 85 | 'EE_Bootstrap', |
86 | - EE_CORE . 'EE_Bootstrap.core.php' |
|
86 | + EE_CORE.'EE_Bootstrap.core.php' |
|
87 | 87 | ); |
88 | 88 | add_action('plugins_loaded', array('EE_Bootstrap', 'load_espresso_addons'), 1); |
89 | 89 | add_action('plugins_loaded', array('EE_Bootstrap', 'detect_activations_or_upgrades'), 3); |
@@ -15,33 +15,33 @@ |
||
15 | 15 | class InvalidRequestStackMiddlewareException extends InvalidDataTypeException |
16 | 16 | { |
17 | 17 | |
18 | - /** |
|
19 | - * @param mixed $middleware_app_class |
|
20 | - * @param string $message |
|
21 | - * @param int $code |
|
22 | - * @param Exception $previous |
|
23 | - */ |
|
24 | - public function __construct($middleware_app_class, $message = '', $code = 0, Exception $previous = null) |
|
25 | - { |
|
26 | - if (is_array($middleware_app_class)) { |
|
27 | - $middleware_app_class = reset($middleware_app_class); |
|
28 | - } |
|
29 | - if (empty($message)) { |
|
30 | - $message = sprintf( |
|
31 | - esc_html__( |
|
32 | - 'The supplied Request Stack Middleware class "%1$s" is invalid or could no be found.', |
|
33 | - 'event_espresso' |
|
34 | - ), |
|
35 | - $middleware_app_class |
|
36 | - ); |
|
37 | - } |
|
38 | - parent::__construct( |
|
39 | - '$middleware_app_class', |
|
40 | - $middleware_app_class, |
|
41 | - 'EventEspresso\core\services\request\middleware\Middleware', |
|
42 | - $message, |
|
43 | - $code, |
|
44 | - $previous |
|
45 | - ); |
|
46 | - } |
|
18 | + /** |
|
19 | + * @param mixed $middleware_app_class |
|
20 | + * @param string $message |
|
21 | + * @param int $code |
|
22 | + * @param Exception $previous |
|
23 | + */ |
|
24 | + public function __construct($middleware_app_class, $message = '', $code = 0, Exception $previous = null) |
|
25 | + { |
|
26 | + if (is_array($middleware_app_class)) { |
|
27 | + $middleware_app_class = reset($middleware_app_class); |
|
28 | + } |
|
29 | + if (empty($message)) { |
|
30 | + $message = sprintf( |
|
31 | + esc_html__( |
|
32 | + 'The supplied Request Stack Middleware class "%1$s" is invalid or could no be found.', |
|
33 | + 'event_espresso' |
|
34 | + ), |
|
35 | + $middleware_app_class |
|
36 | + ); |
|
37 | + } |
|
38 | + parent::__construct( |
|
39 | + '$middleware_app_class', |
|
40 | + $middleware_app_class, |
|
41 | + 'EventEspresso\core\services\request\middleware\Middleware', |
|
42 | + $message, |
|
43 | + $code, |
|
44 | + $previous |
|
45 | + ); |
|
46 | + } |
|
47 | 47 | } |