PluginProbe
Boxzilla – WordPress Popup Builder / 3.2
Boxzilla – WordPress Popup Builder v3.2
3.4.11 3.4.10 3.4.9 3.4.3 3.4.4 3.4.5 3.4.6 3.4.7 3.4.8 trunk 3.0 3.0.1 3.0.2 3.0.3 3.1 3.1.1 3.1.10 3.1.11 3.1.12 3.1.13 3.1.14 3.1.15 3.1.16 3.1.17 3.1.18 All 72 releases
← All changes | src/licensing/class-api.php +60 -60 3.1.133.2 View file →
@@ -8,38 +8,38 @@
8 8
9 9 class API {
10 10
11 11 /**
12 - * @var License
13 - */
12 + * @var License
13 + */
14 14 protected $license;
15 15
16 16 /**
17 - * The API url
18 - *
19 - * @var string
20 - */
17 + * The API url
18 + *
19 + * @var string
20 + */
21 21 public $url = '';
22 22
23 23 /**
24 - * @var int
25 - */
24 + * @var int
25 + */
26 26 protected $error_code = 0;
27 27
28 28 /**
29 - * @var string
30 - */
29 + * @var string
30 + */
31 31 protected $error_message = '';
32 32
33 33 /**
34 - * @var
35 - */
34 + * @var
35 + */
36 36 protected $last_response;
37 37
38 38 /**
39 - * @param string $url
40 - * @param License $license
41 - */
39 + * @param string $url
40 + * @param License $license
41 + */
42 42 public function __construct( $url, License $license ) {
43 43 $this->url = $url;
44 44 $this->license = $license;
45 45 }
@@ -44,12 +44,12 @@
44 44 $this->license = $license;
45 45 }
46 46
47 47 /**
48 - * Gets license status
49 - *
50 - * @return object
51 - */
48 + * Gets license status
49 + *
50 + * @return object
51 + */
52 52 public function get_license() {
53 53 $endpoint = '/license';
54 54 $response = $this->request( 'GET', $endpoint );
55 55 return $response;
@@ -56,12 +56,12 @@
56 56 }
57 57
58 58
59 59 /**
60 - * Logs the current site in to the remote API
61 - *
62 - * @return object
63 - */
60 + * Logs the current site in to the remote API
61 + *
62 + * @return object
63 + */
64 64 public function activate_license() {
65 65 $endpoint = '/license/activations';
66 66 $args = array(
67 67 'site_url' => get_option( 'siteurl' )
@@ -70,12 +70,12 @@
70 70 return $response;
71 71 }
72 72
73 73 /**
74 - * Logs the current site out of the remote API
75 - *
76 - * @return object
77 - */
74 + * Logs the current site out of the remote API
75 + *
76 + * @return object
77 + */
78 78 public function deactivate_license() {
79 79 $endpoint = sprintf( '/license/activations/%s', $this->license->activation_key );
80 80 $response = $this->request( 'DELETE', $endpoint );
81 81 return $response;
@@ -81,11 +81,11 @@
81 81 return $response;
82 82 }
83 83
84 84 /**
85 - * @param Plugin $plugin
86 - * @return object
87 - */
85 + * @param Plugin $plugin
86 + * @return object
87 + */
88 88 public function get_plugin( Plugin $plugin ) {
89 89 $endpoint = sprintf( '/plugins/%s?format=wp', $plugin->id() );
90 90 $response = $this->request( 'GET', $endpoint );
91 91 return $response;
@@ -91,11 +91,11 @@
91 91 return $response;
92 92 }
93 93
94 94 /**
95 - * @param Plugin[] $plugins (optional)
96 - * @return object
97 - */
95 + * @param Plugin[] $plugins (optional)
96 + * @return object
97 + */
98 98 public function get_plugins( $plugins = null ) {
99 99
100 100 $args = array(
101 101 'format' => 'wp',
@@ -106,14 +106,14 @@
106 106 return $response;
107 107 }
108 108
109 109 /**
110 - * @param string $method
111 - * @param string $endpoint
112 - * @param array $data
113 - *
114 - * @return object|array
115 - */
110 + * @param string $method
111 + * @param string $endpoint
112 + * @param array $data
113 + *
114 + * @return object|array
115 + */
116 116 public function request( $method, $endpoint, $data = array() ) {
117 117
118 118 $url = $this->url . $endpoint;
119 119 $args = array(
@@ -118,11 +118,11 @@
118 118 $url = $this->url . $endpoint;
119 119 $args = array(
120 120 'method' => $method,
121 121 'headers' => array(
122 - 'Content-Type' => 'application/json',
123 - 'Accepts' => 'application/json',
124 - ),
122 + 'Content-Type' => 'application/json',
123 + 'Accepts' => 'application/json',
124 + ),
125 125 );
126 126
127 127 // add license key to headers if set
128 128 if( ! empty( $this->license->key ) ) {
@@ -129,14 +129,14 @@
129 129 $args['headers']['Authorization'] = 'Bearer ' . urlencode( $this->license->key );
130 130 }
131 131
132 132 if( ! empty( $data ) ) {
133 - if( in_array( $method, array( 'GET', 'DELETE' ) ) ) {
134 - $url = add_query_arg( $data, $url );
135 - } else {
136 - $args['body'] = json_encode( $data );
137 - }
138 - }
133 + if( in_array( $method, array( 'GET', 'DELETE' ) ) ) {
134 + $url = add_query_arg( $data, $url );
135 + } else {
136 + $args['body'] = json_encode( $data );
137 + }
138 + }
139 139
140 140 $response = wp_remote_request( $url, $args );
141 141 return $this->parse_response( $response );
142 142 }
@@ -141,17 +141,17 @@
141 141 return $this->parse_response( $response );
142 142 }
143 143
144 144 /**
145 - * @param mixed $response
146 - *
147 - * @return object|null
148 - *
149 - * @throws API_Exception
150 - */
145 + * @param mixed $response
146 + *
147 + * @return object|null
148 + *
149 + * @throws API_Exception
150 + */
151 151 public function parse_response( $response ) {
152 152 // test for wp errors (request failures)
153 - if( $response instanceof WP_Error) {
153 + if( $response instanceof WP_Error) {
154 154 throw new API_Exception( $response->get_error_message() );
155 155 }
156 156
157 157 // retrieve response body
@@ -156,10 +156,10 @@
156 156
157 157 // retrieve response body
158 158 $body = wp_remote_retrieve_body( $response );
159 159 if( empty( $body) ) {
160 - return null;
161 - }
160 + return null;
161 + }
162 162
163 163 $json = json_decode( $body, false );
164 164 if( is_null( $json ) ) {
165 165 throw new API_Exception( __( "The Boxzilla server returned an invalid response.", 'boxzilla' ) );
@@ -165,11 +165,11 @@
165 165 throw new API_Exception( __( "The Boxzilla server returned an invalid response.", 'boxzilla' ) );
166 166 }
167 167
168 168 // did request return an error response?
169 - if( wp_remote_retrieve_response_code( $response ) >= 400 ) {
170 - throw new API_Exception( $json->message, $json->code );
171 - }
169 + if( wp_remote_retrieve_response_code( $response ) >= 400 ) {
170 + throw new API_Exception( $json->message, $json->code );
171 + }
172 172
173 173 // return actual response data
174 174 return $json;
175 175 }