PluginProbe
Visualizer – Tables & Charts Manager with Built-in AI Generator / 3.4.2
Visualizer – Tables & Charts Manager with Built-in AI Generator v3.4.2
4.0.8 4.0.7 4.0.6 4.0.5 4.0.4 4.0.3 3.0.5 3.0.6 3.0.7 3.0.8 3.0.9 3.1.0 3.1.1 3.1.2 3.1.3 3.10.0 3.10.1 3.10.10 3.10.11 3.10.12 3.10.13 3.10.14 3.10.15 3.10.2 3.10.3 All 149 releases
← All changes | vendor/codeinwp/themeisle-sdk/src/Modules/Licenser.php +170 -544 3.10.123.4.2 View file →
@@ -12,9 +12,8 @@
12 12 namespace ThemeisleSDK\Modules;
13 13
14 14 // Exit if accessed directly.
15 15 use ThemeisleSDK\Common\Abstract_Module;
16 -use ThemeisleSDK\Loader;
17 16 use ThemeisleSDK\Product;
18 17
19 18 if ( ! defined( 'ABSPATH' ) ) {
20 19 exit;
@@ -23,33 +22,16 @@
23 22 /**
24 23 * Licenser module for ThemeIsle SDK.
25 24 */
26 25 class Licenser extends Abstract_Module {
26 +
27 27 /**
28 - * License VALID status string.
29 - */
30 - const STATUS_VALID = 'valid';
31 - /**
32 - * License NOT_ACTIVE status string.
33 - */
34 - const STATUS_NOT_ACTIVE = 'not_active';
35 - /**
36 - * License active expired status string.
37 - */
38 - const STATUS_ACTIVE_EXPIRED = 'active_expired';
39 - /**
40 28 * Number of max failed checks before showing the license message.
41 29 *
42 30 * @var int $max_failed Maximum failed checks allowed before show the notice
43 31 */
44 - private static $max_failed = 1;
32 + private static $max_failed = 5;
45 33 /**
46 - * Flag to check if the global actions were loaded.
47 - *
48 - * @var bool If the globals actions were loaded.
49 - */
50 - private static $globals_loaded = false;
51 - /**
52 34 * License key string.
53 35 *
54 36 * @var string $license_key The license key string
55 37 */
@@ -73,21 +55,8 @@
73 55 */
74 56 private $product_key;
75 57
76 58 /**
77 - * Holds local license object.
78 - *
79 - * @var null Local license object.
80 - */
81 - private $license_local = null;
82 - /**
83 - * Product namespace, used for fixed name filters/cli commands.
84 - *
85 - * @var string $namespace Product namespace.
86 - */
87 - private $namespace = null;
88 -
89 - /**
90 59 * Disable wporg updates for premium products.
91 60 *
92 61 * @param string $r Update payload.
93 62 * @param string $url The api url.
@@ -93,9 +62,9 @@
93 62 * @param string $url The api url.
94 63 *
95 64 * @return mixed List of themes to check for update.
96 65 */
97 - public function disable_wporg_update( $r, $url ) {
66 + function disable_wporg_update( $r, $url ) {
98 67
99 68 if ( 0 !== strpos( $url, 'https://api.wordpress.org/themes/update-check/' ) ) {
100 69 return $r;
101 70 }
@@ -105,9 +74,9 @@
105 74
106 75 unset( $themes->themes->{$this->product->get_slug()} );
107 76
108 77 // Encode the updated JSON response.
109 - $r['body']['themes'] = wp_json_encode( $themes );
78 + $r['body']['themes'] = json_encode( $themes );
110 79
111 80 return $r;
112 81 }
113 82
@@ -194,20 +163,20 @@
194 163 </style>
195 164 <?php
196 165 echo sprintf(
197 166 '<p>%s<input class="themeisle-sdk-license-input %s" type="text" id="%s_license" name="%s_license" value="%s" /><a class="%s">%s</a>&nbsp;&nbsp;&nbsp;<button name="%s_btn_trigger" class="button button-primary themeisle-sdk-licenser-button-cta" value="yes" type="submit" >%s</button></p><p class="description">%s</p>%s',
198 - ( ( 'valid' === $status ) ? sprintf( '<input type="hidden" value="%s" name="%s_license" />', esc_attr( $value ), esc_attr( $this->product->get_key() ) ) : '' ),
167 + ( ( 'valid' === $status ) ? sprintf( '<input type="hidden" value="%s" name="%s_license" />', $value, $this->product->get_key() ) : '' ),
199 168 ( ( 'valid' === $status ) ? 'themeisle-sdk-text-input-valid' : '' ),
200 - esc_attr( $this->product->get_key() ),
201 - esc_attr( ( ( 'valid' === $status ) ? $this->product->get_key() . '_mask' : $this->product->get_key() ) ),
202 - esc_attr( ( ( 'valid' === $status ) ? ( str_repeat( '*', 30 ) . substr( $value, - 5 ) ) : $value ) ),
203 - esc_attr( ( 'valid' === $status ? 'themeisle-sdk-license-deactivate-cta' : 'themeisle-sdk-license-activate-cta' ) ),
204 - esc_attr( 'valid' === $status ? $valid_string : $invalid_string ),
205 - esc_attr( $this->product->get_key() ),
206 - esc_attr( 'valid' === $status ? $deactivate_string : $activate_string ),
207 - sprintf( wp_kses_data( $license_message ), '<a href="' . esc_url( $this->get_api_url() ) . '">' . esc_attr( $this->get_distributor_name() ) . '</a> ', esc_attr( $this->product->get_type() ) ),
208 - wp_kses_data( empty( $error_message ) ? '' : sprintf( '<p style="color:#dd3d36">%s</p>', ( $error_message ) ) )
209 - ) . wp_nonce_field( $this->product->get_key() . 'nonce', $this->product->get_key() . 'nonce_field', false, false );//phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
169 + $this->product->get_key(),
170 + ( ( 'valid' === $status ) ? $this->product->get_key() . '_mask' : $this->product->get_key() ),
171 + ( ( 'valid' === $status ) ? ( str_repeat( '*', 30 ) . substr( $value, - 5 ) ) : $value ),
172 + ( 'valid' === $status ? 'themeisle-sdk-license-deactivate-cta' : 'themeisle-sdk-license-activate-cta' ),
173 + ( 'valid' === $status ? $valid_string : $invalid_string ),
174 + $this->product->get_key(),
175 + ( 'valid' === $status ? $deactivate_string : $activate_string ),
176 + sprintf( $license_message, '<a href="' . $this->get_api_url() . '">' . $this->get_distributor_name() . '</a> ', $this->product->get_type() ),
177 + empty( $error_message ) ? '' : sprintf( '<p style="color:#dd3d36">%s</p>', $error_message )
178 + );
210 179
211 180 }
212 181
213 182 /**
@@ -212,13 +181,11 @@
212 181
213 182 /**
214 183 * Return the license status.
215 184 *
216 - * @param bool $check_expiration Should check if license is valid, but expired.
217 - *
218 185 * @return string The License status.
219 186 */
220 - public function get_license_status( $check_expiration = false ) {
187 + public function get_license_status() {
221 188
222 189 $license_data = get_option( $this->product->get_key() . '_license_data', '' );
223 190
224 191 if ( '' === $license_data ) {
@@ -223,113 +190,14 @@
223 190
224 191 if ( '' === $license_data ) {
225 192 return get_option( $this->product->get_key() . '_license_status', 'not_active' );
226 193 }
227 - $status = isset( $license_data->license ) ? $license_data->license : get_option( $this->product->get_key() . '_license_status', 'not_active' );
228 - if ( false === $check_expiration ) {
229 - return $status;
230 - }
231 194
232 - return ( 'valid' === $status && isset( $license_data->is_expired ) && 'yes' === $license_data->is_expired ) ? 'active_expired' : $status;
233 - }
195 + return isset( $license_data->license ) ? $license_data->license : get_option( $this->product->get_key() . '_license_status', 'not_active' );
234 196
235 - /**
236 - * Check status.
237 - *
238 - * @param string $product_file Product basefile.
239 - *
240 - * @return string Status license.
241 - */
242 - public static function status( $product_file ) {
243 - $product = Product::get( $product_file );
244 - if ( ! $product->requires_license() ) {
245 - return self::STATUS_VALID;
246 - }
247 - $license_data = self::get_license_data( $product->get_key() );
248 -
249 - $status = isset( $license_data->license ) ? $license_data->license : self::STATUS_NOT_ACTIVE;
250 -
251 - return ( 'valid' === $status && isset( $license_data->is_expired ) && 'yes' === $license_data->is_expired ) ? 'active_expired' : $status;
252 197 }
253 198
254 199 /**
255 - * Product license data.
256 - *
257 - * @param string $key Product key.
258 - *
259 - * @return false|mixed|null
260 - */
261 - private static function get_license_data( $key ) {
262 - $license_data = get_option( $key . '_license_data', '' );
263 -
264 - return isset( $license_data->license ) ? $license_data : false;
265 - }
266 -
267 - /**
268 - * Get license hash.
269 - *
270 - * @param string $key Product key.
271 - *
272 - * @return bool|string
273 - */
274 - public static function create_license_hash( $key ) {
275 - $data = self::get_license_data( $key );
276 -
277 - if ( ! $data ) {
278 - return false;
279 - }
280 -
281 - return isset( $data->key ) ? wp_hash( $data->key ) : false;
282 - }
283 -
284 - /**
285 - * Check if license is valid.
286 - *
287 - * @param string $product_file Product basefile.
288 - *
289 - * @return bool Is valid?
290 - */
291 - public static function is_valid( $product_file ) {
292 - return self::status( $product_file ) === self::STATUS_VALID;
293 - }
294 -
295 - /**
296 - * Get product plan.
297 - *
298 - * @param string $product_file Product file.
299 - *
300 - * @return int Plan id.
301 - */
302 - public static function plan( $product_file ) {
303 - $product = Product::get( $product_file );
304 - $data = self::get_license_data( $product->get_key() );
305 -
306 - return isset( $data->price_id ) ? (int) $data->price_id : - 1;
307 - }
308 -
309 - /**
310 - * Get product license key.
311 - *
312 - * @param string $product_file Product file.
313 - *
314 - * @return string
315 - */
316 - public static function key( $product_file ) {
317 - $product = Product::get( $product_file );
318 -
319 - return $product->get_license();
320 - }
321 -
322 - /**
323 - * Return the last error message.
324 - *
325 - * @return mixed Error message.
326 - */
327 - public function get_error() {
328 - return get_transient( $this->product->get_key() . 'act_err' );
329 - }
330 -
331 - /**
332 200 * Get remote api url.
333 201 *
334 202 * @return string Remote api url.
335 203 */
@@ -347,9 +215,9 @@
347 215 * @return string Remote api url.
348 216 */
349 217 public function get_distributor_name() {
350 218 if ( $this->is_from_partner( $this->product ) ) {
351 - return 'Themeisle';
219 + return 'ThemeIsle';
352 220 }
353 221
354 222 return $this->product->get_store_name();
355 223 }
@@ -354,34 +222,24 @@
354 222 return $this->product->get_store_name();
355 223 }
356 224
357 225 /**
358 - * License price id.
359 - *
360 - * @return int License plan.
361 - */
362 - public function get_plan() {
363 - return self::plan( $this->product->get_basefile() );
364 - }
365 -
366 - /**
367 226 * Show the admin notice regarding the license status.
368 227 *
369 228 * @return bool Should we show the notice ?
370 229 */
371 - public function show_notice() {
230 + function show_notice() {
372 231 if ( ! is_admin() ) {
373 232 return false;
374 233 }
375 234
376 235 if ( apply_filters( $this->product->get_key() . '_hide_license_notices', false ) ) {
377 - return false;
236 + return;
378 237 }
238 + $status = $this->get_license_status();
239 + $no_activations_string = apply_filters( $this->product->get_key() . '_lc_no_activations_string', 'No activations left for %s !!!. You need to upgrade your plan in order to use %s on more websites. Please ask the %s Staff for more details.' );
240 + $no_valid_string = apply_filters( $this->product->get_key() . '_lc_no_valid_string', 'In order to benefit from updates and support for %s, please add your license code from your <a href="%s" target="_blank">purchase history</a> and validate it <a href="%s">here</a>. ' );
379 241
380 - $status = $this->get_license_status( true );
381 - $no_activations_string = apply_filters( $this->product->get_key() . '_lc_no_activations_string', 'No more activations left for %s. You need to upgrade your plan in order to use %s on more websites. If you need assistance, please get in touch with %s staff.' );
382 - $no_valid_string = apply_filters( $this->product->get_key() . '_lc_no_valid_string', 'In order to benefit from updates and support for %s, please add your license code from your <a href="%s" target="_blank">purchase history</a> and validate it <a href="%s">here</a>. ' );
383 - $expired_license_string = apply_filters( $this->product->get_key() . '_lc_expired_string', 'Your %s\'s License Key has expired. In order to continue receiving support and software updates you must <a href="%s" target="_blank">renew</a> your license key.' );
384 242 // No activations left for this license.
385 243 if ( 'valid' != $status && $this->check_activation() ) {
386 244 ?>
387 245 <div class="error">
@@ -387,12 +245,12 @@
387 245 <div class="error">
388 246 <p><strong>
389 247 <?php
390 248 echo sprintf(
391 - wp_kses_data( $no_activations_string ),
392 - esc_attr( $this->product->get_name() ),
393 - esc_attr( $this->product->get_name() ),
394 - '<a href="' . esc_url( $this->get_api_url() ) . '" target="_blank">' . esc_attr( $this->get_distributor_name() ) . '</a>'
249 + $no_activations_string,
250 + $this->product->get_name(),
251 + $this->product->get_name(),
252 + '<a href="' . $this->get_api_url() . '" target="_blank">' . $this->get_distributor_name() . '</a>'
395 253 );
396 254 ?>
397 255 </strong>
398 256 </p>
@@ -399,27 +257,14 @@
399 257 </div>
400 258 <?php
401 259 return false;
402 260 }
403 -
404 261 // Invalid license key.
405 - if ( 'active_expired' === $status ) {
406 - ?>
407 - <div class="error">
408 - <p>
409 - <strong><?php echo sprintf( wp_kses_data( $expired_license_string ), esc_attr( $this->product->get_name() . ' ' . $this->product->get_type() ), esc_url( $this->get_api_url() . '?license=' . $this->license_key ) ); ?> </strong>
410 - </p>
411 - </div>
412 - <?php
413 -
414 - return false;
415 - }
416 - // Invalid license key.
417 262 if ( 'valid' != $status ) {
418 263 ?>
419 264 <div class="error">
420 265 <p>
421 - <strong><?php echo sprintf( wp_kses_data( $no_valid_string ), esc_attr( $this->product->get_name() . ' ' . $this->product->get_type() ), esc_url( $this->get_api_url() ), esc_url( admin_url( 'options-general.php' ) . '#' . $this->product->get_key() . '_license' ) ); ?> </strong>
266 + <strong><?php echo sprintf( $no_valid_string, $this->product->get_name() . ' ' . $this->product->get_type(), $this->get_api_url(), admin_url( 'options-general.php' ) . '#' . $this->product->get_key() . '_license' ); ?> </strong>
422 267 </p>
423 268 </div>
424 269 <?php
425 270
@@ -439,9 +284,9 @@
439 284 if ( '' === $license_data ) {
440 285 return false;
441 286 }
442 287
443 - return isset( $license_data->license ) ? ( 'no_activations_left' == $license_data->license ) : false;
288 + return isset( $license_data->error ) ? ( 'no_activations_left' == $license_data->error ) : false;
444 289
445 290 }
446 291
447 292 /**
@@ -448,9 +293,9 @@
448 293 * Check if the license is about to expire in the next month.
449 294 *
450 295 * @return bool
451 296 */
452 - public function check_expiration() {
297 + function check_expiration() {
453 298 $license_data = get_option( $this->product->get_key() . '_license_data', '' );
454 299 if ( '' === $license_data ) {
455 300 return false;
456 301 }
@@ -468,9 +313,9 @@
468 313 * Return the renew url from the store used.
469 314 *
470 315 * @return string The renew url.
471 316 */
472 - public function renew_url() {
317 + function renew_url() {
473 318 $license_data = get_option( $this->product->get_key() . '_license_data', '' );
474 319 if ( '' === $license_data ) {
475 320 return $this->get_api_url();
476 321 }
@@ -477,9 +322,9 @@
477 322 if ( ! isset( $license_data->download_id ) || ! isset( $license_data->key ) ) {
478 323 return $this->get_api_url();
479 324 }
480 325
481 - return trim( $this->get_api_url(), '/' ) . '/checkout/?edd_license_key=' . $license_data->key . '&download_id=' . $license_data->download_id;
326 + return $this->get_api_url() . '/checkout/?edd_license_key=' . $license_data->key . '&download_id=' . $license_data->download_id;
482 327 }
483 328
484 329 /**
485 330 * Run the license check call.
@@ -484,9 +329,9 @@
484 329 /**
485 330 * Run the license check call.
486 331 */
487 332 public function product_valid() {
488 - if ( false !== ( $license = get_transient( $this->product->get_key() . '_license_data' ) ) ) { //phpcs:ignore Squiz.PHP.DisallowMultipleAssignments.FoundInControlStructure
333 + if ( false !== ( $license = get_transient( $this->product->get_key() . '_license_data' ) ) ) {
489 334 return;
490 335 }
491 336 $license = $this->check_license();
492 337 set_transient( $this->product->get_key() . '_license_data', $license, 12 * HOUR_IN_SECONDS );
@@ -499,101 +344,145 @@
499 344 * @return object The license data.
500 345 */
501 346 public function check_license() {
502 347 $status = $this->get_license_status();
503 - if ( 'not_active' === $status ) {
348 + if ( 'not_active' == $status ) {
504 349 $license_data = new \stdClass();
505 350 $license_data->license = 'not_active';
506 351
507 352 return $license_data;
508 353 }
509 - $license = trim( $this->license_key );
510 -
511 - $response = $this->do_license_process( $license, 'check' );
512 -
354 + $license = trim( $this->license_key );
355 + $api_params = array(
356 + 'edd_action' => 'check_license',
357 + 'license' => $license,
358 + 'item_name' => rawurlencode( $this->product->get_name() ),
359 + 'url' => rawurlencode( home_url() ),
360 + );
361 + // Call the custom API.
362 + $response = wp_remote_get(
363 + add_query_arg( $api_params, $this->get_api_url() ),
364 + array(
365 + 'timeout' => 15,
366 + 'sslverify' => false,
367 + )
368 + );
513 369 if ( is_wp_error( $response ) ) {
514 370 $license_data = new \stdClass();
515 - $license_data->license = 'invalid';
371 + $license_data->license = 'valid';
372 +
516 373 } else {
517 - $license_data = $response;
374 + $license_data = json_decode( wp_remote_retrieve_body( $response ) );
375 + if ( ! is_object( $license_data ) ) {
376 + $license_data = new \stdClass();
377 + $license_data->license = 'valid';
378 + }
518 379 }
519 -
520 380 $license_old = get_option( $this->product->get_key() . '_license_data', '' );
521 - if ( 'valid' === $license_old->license && ( $license_data->license !== $license_old->license ) && $this->failed_checks <= self::$max_failed ) {
381 + if ( 'valid' == $license_old->license && ( $license_data->license != $license_old->license ) ) {
522 382 $this->increment_failed_checks();
383 + } else {
384 + $this->reset_failed_checks();
385 + }
523 386
387 + if ( $this->failed_checks <= self::$max_failed ) {
524 388 return $license_old;
525 389 }
526 390
391 + if ( isset( $license_old->hide_valid ) ) {
392 + $license_data->hide_valid = true;
393 + }
394 +
527 395 if ( ! isset( $license_data->key ) ) {
528 396 $license_data->key = isset( $license_old->key ) ? $license_old->key : '';
529 397 }
530 - $this->reset_failed_checks();
531 398
399 + if ( isset( $license_old->hide_expiration ) ) {
400 + $license_data->hide_expiration = true;
401 + }
402 +
403 + if ( isset( $license_old->hide_activation ) ) {
404 + $license_data->hide_activation = true;
405 + }
406 +
532 407 return $license_data;
533 408
534 409 }
535 410
536 411 /**
537 - * Do license activation/deactivation.
412 + * Increment the failed checks.
413 + */
414 + private function increment_failed_checks() {
415 + $this->failed_checks ++;
416 + update_option( $this->product->get_key() . '_failed_checks', $this->failed_checks );
417 + }
418 +
419 + /**
420 + * Reset the failed checks
421 + */
422 + private function reset_failed_checks() {
423 + $this->failed_checks = 1;
424 + update_option( $this->product->get_key() . '_failed_checks', $this->failed_checks );
425 + }
426 +
427 + /**
428 + * Set license validation error message.
538 429 *
539 - * @param string $license License key.
540 - * @param string $action What do to.
430 + * @param string $message Error message.
431 + */
432 + public function set_error( $message = '' ) {
433 + set_transient( $this->product->get_key() . 'act_err', $message, MINUTE_IN_SECONDS );
434 +
435 + return;
436 + }
437 +
438 + /**
439 + * Return the last error message.
541 440 *
542 - * @return bool|\WP_Error
441 + * @return mixed Error message.
543 442 */
544 - public function do_license_process( $license, $action = 'toggle' ) {
545 - if ( strlen( $license ) < 10 ) {
546 - return new \WP_Error( 'themeisle-license-invalid-format', 'Invalid license.' );
443 + public function get_error() {
444 + return get_transient( $this->product->get_key() . 'act_err' );
445 + }
446 +
447 + /**
448 + * Activate the license remotely.
449 + */
450 + function activate_license() {
451 + // listen for our activate button to be clicked.
452 + if ( ! isset( $_POST[ $this->product->get_key() . '_btn_trigger' ] ) ) {
453 + return;
547 454 }
548 455 $status = $this->get_license_status();
549 -
550 - if ( 'valid' === $status && 'activate' === $action ) {
551 - return new \WP_Error( 'themeisle-license-already-active', 'License is already active.' );
456 + // retrieve the license from the database.
457 + $license = $_POST[ $this->product->get_key() . '_license' ];
458 + $api_params = array(
459 + 'license' => $license,
460 + 'item_name' => rawurlencode( $this->product->get_name() ),
461 + 'url' => rawurlencode( home_url() ),
462 + );
463 + if ( 'valid' != $status ) {
464 + // data to send in our API request.
465 + $api_params['edd_action'] = 'activate_license';
466 + } else {
467 + $api_params['edd_action'] = 'deactivate_license';
552 468 }
553 - if ( 'valid' !== $status && 'deactivate' === $action ) {
554 - return new \WP_Error( 'themeisle-license-already-deactivate', 'License not active.' );
555 - }
556 -
557 - if ( 'toggle' === $action ) {
558 - $action = ( 'valid' !== $status ? ( 'activate' ) : ( 'deactivate' ) );
559 - }
560 -
561 469 // Call the custom API.
562 - if ( 'check' === $action ) {
563 - $response = $this->safe_get( sprintf( '%slicense/check/%s/%s/%s/%s', Product::API_URL, rawurlencode( $this->product->get_name() ), $license, rawurlencode( home_url() ), Loader::get_cache_token() ) );
564 - } else {
565 - $response = wp_remote_post(
566 - sprintf( '%slicense/%s/%s/%s', Product::API_URL, $action, rawurlencode( $this->product->get_name() ), $license ),
567 - array(
568 - 'body' => wp_json_encode(
569 - array(
570 - 'url' => rawurlencode( home_url() ),
571 - )
572 - ),
573 - 'headers' => array(
574 - 'Content-Type' => 'application/json',
575 - ),
576 - )
577 - );
578 - }
579 -
470 + $response = wp_remote_get( add_query_arg( $api_params, $this->get_api_url() ) );
580 471 // make sure the response came back okay.
581 472 if ( is_wp_error( $response ) ) {
582 - return new \WP_Error( 'themeisle-license-500', sprintf( 'ERROR: Failed to connect to the license service. Please try again later. Reason: %s', $response->get_error_message() ) );
473 + $this->set_error( sprintf( 'ERROR: Failed to connect to the license service. Please try again later. Reason: %s', $response->get_error_message() ) );
474 +
475 + return;
583 476 }
584 477
585 478 $license_data = json_decode( wp_remote_retrieve_body( $response ) );
586 479
587 480 if ( ! is_object( $license_data ) ) {
588 - return new \WP_Error( 'themeisle-license-404', 'ERROR: Failed to validate license. Please try again in one minute.' );
481 + $this->set_error( 'ERROR: Failed to validate license. Please try again in one minute.' );
482 +
483 + return;
589 484 }
590 - if ( 'check' === $action ) {
591 - return $license_data;
592 - }
593 -
594 - Loader::clear_cache_token();
595 -
596 485 if ( ! isset( $license_data->license ) ) {
597 486 $license_data->license = 'invalid';
598 487 }
599 488
@@ -599,19 +488,21 @@
599 488
600 489 if ( ! isset( $license_data->key ) ) {
601 490 $license_data->key = $license;
602 491 }
603 - if ( 'valid' === $license_data->license ) {
492 + if ( 'valid' == $license_data->license ) {
604 493 $this->reset_failed_checks();
605 494 }
606 495
607 - if ( 'deactivate' === $action ) {
496 + $this->set_error( '' );
608 497
498 + if ( 'deactivate_license' === $api_params['edd_action'] ) {
499 +
609 500 delete_option( $this->product->get_key() . '_license_data' );
610 501 delete_option( $this->product->get_key() . '_license_plan' );
611 502 delete_transient( $this->product->get_key() . '_license_data' );
612 503
613 - return true;
504 + return;
614 505 }
615 506 if ( isset( $license_data->plan ) ) {
616 507 update_option( $this->product->get_key() . '_license_plan', $license_data->plan );
617 508 }
@@ -616,80 +507,15 @@
616 507 update_option( $this->product->get_key() . '_license_plan', $license_data->plan );
617 508 }
618 509 update_option( $this->product->get_key() . '_license_data', $license_data );
619 510 set_transient( $this->product->get_key() . '_license_data', $license_data, 12 * HOUR_IN_SECONDS );
620 - if ( 'activate' === $action && 'valid' !== $license_data->license ) {
621 - return new \WP_Error( 'themeisle-license-invalid', 'ERROR: Invalid license provided.' );
622 - }
623 511
624 - // Remove the versions transient upon activation so that newer version for rollback can be acquired.
625 - $versions_cache = $this->product->get_cache_key();
626 - delete_transient( $versions_cache );
627 -
628 - return true;
629 512 }
630 513
631 514 /**
632 - * Reset the failed checks
633 - */
634 - private function reset_failed_checks() {
635 - $this->failed_checks = 1;
636 - update_option( $this->product->get_key() . '_failed_checks', $this->failed_checks );
637 - }
638 -
639 - /**
640 - * Increment the failed checks.
641 - */
642 - private function increment_failed_checks() {
643 - $this->failed_checks ++;
644 - update_option( $this->product->get_key() . '_failed_checks', $this->failed_checks );
645 - }
646 -
647 - /**
648 - * Activate the license remotely.
649 - */
650 - public function process_license() {
651 - // listen for our activate button to be clicked.
652 - if ( ! isset( $_POST[ $this->product->get_key() . '_btn_trigger' ] ) ) {
653 - return;
654 - }
655 - if ( ! isset( $_POST[ $this->product->get_key() . 'nonce_field' ] )
656 - || ! wp_verify_nonce( $_POST[ $this->product->get_key() . 'nonce_field' ], $this->product->get_key() . 'nonce' ) //phpcs:ignore WordPress.Security.ValidatedSanitizedInput.InputNotSanitized
657 - ) {
658 - return;
659 - }
660 - if ( ! current_user_can( 'manage_options' ) ) {
661 - return;
662 - }
663 - $license = isset( $_POST[ $this->product->get_key() . '_license' ] )
664 - ? sanitize_text_field( $_POST[ $this->product->get_key() . '_license' ] )
665 - : '';
666 -
667 - $response = $this->do_license_process( $license, 'toggle' );
668 - if ( is_wp_error( $response ) ) {
669 - $this->set_error( $response->get_error_message() );
670 -
671 - return;
672 - }
673 - if ( true === $response ) {
674 - $this->set_error( '' );
675 - }
676 - }
677 -
678 - /**
679 - * Set license validation error message.
680 - *
681 - * @param string $message Error message.
682 - */
683 - public function set_error( $message = '' ) {
684 - set_transient( $this->product->get_key() . 'act_err', $message, MINUTE_IN_SECONDS );
685 -
686 - }
687 -
688 - /**
689 515 * Load the Themes screen.
690 516 */
691 - public function load_themes_screen() {
517 + function load_themes_screen() {
692 518 add_thickbox();
693 519 add_action( 'admin_notices', array( &$this, 'update_nag' ) );
694 520 }
695 521
@@ -695,9 +521,9 @@
695 521
696 522 /**
697 523 * Alter the nag for themes update.
698 524 */
699 - public function update_nag() {
525 + function update_nag() {
700 526 $theme = wp_get_theme( $this->product->get_slug() );
701 527 $api_response = get_transient( $this->product_key );
702 528 if ( false === $api_response || ! isset( $api_response->new_version ) ) {
703 529 return;
@@ -708,18 +534,18 @@
708 534 if ( version_compare( $this->product->get_version(), $api_response->new_version, '<' ) ) {
709 535 echo '<div id="update-nag">';
710 536 printf(
711 537 '<strong>%1$s %2$s</strong> is available. <a href="%3$s" class="thickbox" title="%4s">Check out what\'s new</a> or <a href="%5$s"%6$s>update now</a>.',
712 - esc_attr( $theme->get( 'Name' ) ),
713 - esc_attr( $api_response->new_version ),
714 - esc_url( sprintf( '%s&TB_iframe=true&amp;width=1024&amp;height=800', $this->product->get_changelog() ) ),
715 - esc_attr( $theme->get( 'Name' ) ),
716 - esc_url( $update_url ),
717 - $update_onclick // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped, Already escaped.
538 + $theme->get( 'Name' ),
539 + $api_response->new_version,
540 + sprintf( '%s&TB_iframe=true&amp;width=1024&amp;height=800', $this->product->get_changelog() ),
541 + $theme->get( 'Name' ),
542 + $update_url,
543 + $update_onclick
718 544 );
719 545 echo '</div>';
720 - echo '<div id="' . esc_attr( $this->product->get_slug() ) . '_changelog" style="display:none;">';
721 - echo wp_kses_data( wpautop( $api_response->sections['changelog'] ) );
546 + echo '<div id="' . $this->product->get_slug() . '_' . 'changelog" style="display:none;">';
547 + echo wpautop( $api_response->sections['changelog'] );
722 548 echo '</div>';
723 549 }
724 550 }
725 551
@@ -729,23 +555,14 @@
729 555 * @param mixed $value The transient data.
730 556 *
731 557 * @return mixed
732 558 */
733 - public function theme_update_transient( $value ) {
559 + function theme_update_transient( $value ) {
734 560 $update_data = $this->check_for_update();
735 - if ( empty( $value ) ) {
736 - return $value;
561 + if ( $update_data ) {
562 + $value->response[ $this->product->get_slug() ] = $update_data;
737 563 }
738 564
739 - if ( ! isset( $value->response ) ) {
740 - return $value;
741 - }
742 -
743 - if ( ! $update_data ) {
744 - return $value;
745 - }
746 -
747 - $value->response[ $this->product->get_slug() ] = $update_data;
748 565 return $value;
749 566 }
750 567
751 568 /**
@@ -752,9 +569,9 @@
752 569 * Check for updates
753 570 *
754 571 * @return array|bool Either the update data or false in case of failure.
755 572 */
756 - public function check_for_update() {
573 + function check_for_update() {
757 574 $update_data = get_transient( $this->product_key );
758 575
759 576 if ( false === $update_data ) {
760 577 $failed = false;
@@ -789,20 +606,21 @@
789 606 *
790 607 * @return bool|mixed Update api response.
791 608 */
792 609 private function get_version_data() {
793 -
794 - $response = $this->safe_get(
795 - sprintf(
796 - '%slicense/version/%s/%s/%s/%s',
797 - Product::API_URL,
798 - rawurlencode( $this->product->get_name() ),
799 - ( empty( $this->license_key ) ? 'free' : $this->license_key ),
800 - $this->product->get_version(),
801 - rawurlencode( home_url() )
802 - ),
610 + $api_params = array(
611 + 'edd_action' => 'get_version',
612 + 'version' => $this->product->get_version(),
613 + 'license' => empty( $this->license_key ) ? 'free' : $this->license_key,
614 + 'name' => rawurlencode( $this->product->get_name() ),
615 + 'slug' => $this->product->get_slug(),
616 + 'author' => rawurlencode( $this->get_distributor_name() ),
617 + 'url' => rawurlencode( home_url() ),
618 + );
619 + $response = wp_remote_get(
620 + add_query_arg( $api_params, $this->get_api_url() ),
803 621 array(
804 - 'timeout' => 15, //phpcs:ignore WordPressVIPMinimum.Performance.RemoteRequestTimeout.timeout_timeout, Inherited by wp_remote_get only, for vip environment we use defaults.
622 + 'timeout' => 15,
805 623 'sslverify' => false,
806 624 )
807 625 );
808 626 if ( is_wp_error( $response ) || 200 != wp_remote_retrieve_response_code( $response ) ) {
@@ -811,17 +629,8 @@
811 629 $update_data = json_decode( wp_remote_retrieve_body( $response ) );
812 630 if ( ! is_object( $update_data ) ) {
813 631 return false;
814 632 }
815 - if ( isset( $update_data->slug ) ) {
816 - $update_data->slug = $this->product->get_slug();
817 - }
818 - if ( isset( $update_data->icons ) ) {
819 - $update_data->icons = (array) $update_data->icons;
820 - }
821 - if ( isset( $update_data->banners ) ) {
822 - $update_data->banners = (array) $update_data->banners;
823 - }
824 633
825 634 return $update_data;
826 635 }
827 636
@@ -827,10 +636,10 @@
827 636
828 637 /**
829 638 * Delete the update transient
830 639 */
831 - public function delete_theme_update_transient() {
832 - return delete_transient( $this->product_key );
640 + function delete_theme_update_transient() {
641 + delete_transient( $this->product_key );
833 642 }
834 643
835 644 /**
836 645 * Check for Updates at the defined API endpoint and modify the update array.
@@ -846,15 +655,10 @@
846 655 return $_transient_data;
847 656 }
848 657 $api_response = $this->api_request();
849 658 if ( false !== $api_response && is_object( $api_response ) && isset( $api_response->new_version ) ) {
850 - if ( ! isset( $api_response->plugin ) ) {
851 - $api_response->plugin = $this->product->get_slug() . '/' . $this->product->get_file();
852 - }
853 659 if ( version_compare( $this->product->get_version(), $api_response->new_version, '<' ) ) {
854 660 $_transient_data->response[ $this->product->get_slug() . '/' . $this->product->get_file() ] = $api_response;
855 - } else {
856 - $_transient_data->no_update[ $this->product->get_slug() . '/' . $this->product->get_file() ] = $api_response;
857 661 }
858 662 }
859 663
860 664 return $_transient_data;
@@ -889,9 +693,9 @@
889 693 *
890 694 * @return object $_data
891 695 */
892 696 public function plugins_api_filter( $_data, $_action = '', $_args = null ) {
893 - if ( ( 'plugin_information' !== $_action ) || ! isset( $_args->slug ) || ( $_args->slug !== $this->product->get_slug() ) ) {
697 + if ( ( 'plugin_information' != $_action ) || ! isset( $_args->slug ) || ( $_args->slug != $this->product->get_slug() ) ) {
894 698 return $_data;
895 699 }
896 700 $api_response = $this->api_request();
897 701 if ( false !== $api_response ) {
@@ -908,9 +712,9 @@
908 712 * @param string $url Url to check.
909 713 *
910 714 * @return array $array
911 715 */
912 - public function http_request_args( $args, $url ) {
716 + function http_request_args( $args, $url ) {
913 717 // If it is an https request and we are performing a package download, disable ssl verification.
914 718 if ( strpos( $url, 'https://' ) !== false && strpos( $url, 'edd_action=package_download' ) ) {
915 719 $args['sslverify'] = false;
916 720 }
@@ -951,31 +755,9 @@
951 755 if ( $this->product->requires_license() ) {
952 756 $this->failed_checks = intval( get_option( $this->product->get_key() . '_failed_checks', 0 ) );
953 757 $this->register_license_hooks();
954 758 }
955 - if ( ! self::$globals_loaded ) {
956 - add_filter( 'themeisle_sdk_license/status', [ __CLASS__, 'status' ], 999, 1 );
957 - add_filter( 'themeisle_sdk_license/is-valid', [ __CLASS__, 'is_valid' ], 999, 1 );
958 - add_filter( 'themeisle_sdk_license/plan', [ __CLASS__, 'plan' ], 999, 1 );
959 - add_filter( 'themeisle_sdk_license/key', [ __CLASS__, 'key' ], 999, 1 );
960 - $globals_loaded = true;
961 - }
962 - $namespace = apply_filters( 'themesle_sdk_namespace_' . md5( $product->get_basefile() ), false );
963 759
964 - if ( false !== $namespace ) {
965 - $this->namespace = $namespace;
966 - add_filter( 'themeisle_sdk_license_process_' . $namespace, [ $this, 'do_license_process' ], 10, 2 );
967 - add_filter( 'product_' . $namespace . '_license_status', [ $this, 'get_license_status' ], PHP_INT_MAX );
968 - add_filter( 'product_' . $namespace . '_license_key', [ $this->product, 'get_license' ] );
969 - add_filter( 'product_' . $namespace . '_license_plan', [ $this, 'get_plan' ], PHP_INT_MAX );
970 - if ( defined( 'WP_CLI' ) && WP_CLI ) {
971 - \WP_CLI::add_command( $namespace . ' activate', [ $this, 'cli_activate' ] );
972 - \WP_CLI::add_command( $namespace . ' deactivate', [ $this, 'cli_deactivate' ] );
973 - \WP_CLI::add_command( $namespace . ' is-active', [ $this, 'cli_is_active' ] );
974 - }
975 - }
976 -
977 - add_action( 'admin_head', [ $this, 'auto_activate' ] );
978 760 if ( $this->product->is_plugin() ) {
979 761 add_filter(
980 762 'pre_set_site_transient_update_plugins',
981 763 [
@@ -983,33 +765,19 @@
983 765 'pre_set_site_transient_update_plugins_filter',
984 766 ]
985 767 );
986 768 add_filter( 'plugins_api', array( $this, 'plugins_api_filter' ), 10, 3 );
987 - add_filter( 'http_request_args', array( $this, 'http_request_args' ), 10, 2 ); //phpcs:ignore WordPressVIPMinimum.Hooks.RestrictedHooks.http_request_args
988 - if ( ! self::is_valid( $product->get_basefile() ) ) {
989 - add_filter(
990 - 'plugin_action_links_' . plugin_basename( $product->get_basefile() ),
991 - function ( $actions ) {
992 - if ( $this->get_license_status( true ) !== self::STATUS_ACTIVE_EXPIRED ) {
993 - return $actions;
994 - }
995 - $new_actions['deactivate'] = $actions['deactivate'];
996 - $new_actions['renew_link'] = '<a style="color:#d63638" href="' . esc_url( $this->renew_url() ) . '" target="_blank" rel="external noopener noreferrer">Renew license to update</a>';
769 + add_filter( 'http_request_args', array( $this, 'http_request_args' ), 10, 2 );
997 770
998 - return $new_actions;
999 - }
1000 - );
1001 - }
1002 -
1003 771 return $this;
1004 772 }
1005 773 if ( $this->product->is_theme() ) {
1006 774 add_filter( 'site_transient_update_themes', array( &$this, 'theme_update_transient' ) );
1007 - add_action( 'delete_site_transient_update_themes', array( &$this, 'delete_theme_update_transient' ) );
775 + add_filter( 'delete_site_transient_update_themes', array( &$this, 'delete_theme_update_transient' ) );
1008 776 add_action( 'load-update-core.php', array( &$this, 'delete_theme_update_transient' ) );
1009 777 add_action( 'load-themes.php', array( &$this, 'delete_theme_update_transient' ) );
1010 778 add_action( 'load-themes.php', array( &$this, 'load_themes_screen' ) );
1011 - add_filter( 'http_request_args', array( $this, 'disable_wporg_update' ), 5, 2 ); //phpcs:ignore WordPressVIPMinimum.Hooks.RestrictedHooks.http_request_args
779 + add_filter( 'http_request_args', array( $this, 'disable_wporg_update' ), 5, 2 );
1012 780
1013 781 return $this;
1014 782
1015 783 }
@@ -1021,152 +789,10 @@
1021 789 * Register license fields for the products.
1022 790 */
1023 791 public function register_license_hooks() {
1024 792 add_action( 'admin_init', array( $this, 'register_settings' ) );
1025 - add_action( 'admin_init', array( $this, 'process_license' ) );
793 + add_action( 'admin_init', array( $this, 'activate_license' ) );
1026 794 add_action( 'admin_init', array( $this, 'product_valid' ), 99999999 );
1027 795 add_action( 'admin_notices', array( $this, 'show_notice' ) );
1028 796 add_filter( $this->product->get_key() . '_license_status', array( $this, 'get_license_status' ) );
1029 - }
1030 -
1031 - /**
1032 - * Check license on filesystem.
1033 - *
1034 - * @return mixed License key.
1035 - */
1036 - public function get_file_license() {
1037 -
1038 - $license_file = dirname( $this->product->get_basefile() ) . '/license.json';
1039 -
1040 - global $wp_filesystem;
1041 - if ( ! is_file( $license_file ) ) {
1042 - return false;
1043 - }
1044 -
1045 - require_once ABSPATH . '/wp-admin/includes/file.php';
1046 - \WP_Filesystem();
1047 - $content = json_decode( $wp_filesystem->get_contents( $license_file ) );
1048 - if ( ! is_object( $content ) ) {
1049 - return false;
1050 - }
1051 - if ( ! isset( $content->key ) ) {
1052 - return false;
1053 - }
1054 - return $content->key;
1055 - }
1056 - /**
1057 - * Run license activation on plugin activate.
1058 - */
1059 - public function auto_activate() {
1060 - $status = $this->get_license_status();
1061 - if ( 'not_active' !== $status ) {
1062 - return false;
1063 - }
1064 -
1065 - if ( ! empty( $this->namespace ) ) {
1066 - $license_key = apply_filters( 'product_' . $this->namespace . '_license_key_constant', '' );
1067 - }
1068 -
1069 - if ( empty( $license_key ) ) {
1070 - $license_key = $this->get_file_license();
1071 - }
1072 - if ( empty( $license_key ) ) {
1073 - return;
1074 - }
1075 -
1076 -
1077 - $this->license_local = $license_key;
1078 - $lock_key = $this->product->get_key() . '_autoactivated';
1079 -
1080 - if ( 'yes' === get_option( $lock_key, '' ) ) {
1081 - return;
1082 - }
1083 - if ( 'yes' === get_transient( $lock_key ) ) {
1084 - return;
1085 - }
1086 - $response = $this->do_license_process( $license_key, 'activate' );
1087 -
1088 - set_transient( $lock_key, 'yes', 6 * HOUR_IN_SECONDS );
1089 -
1090 - if ( apply_filters( $this->product->get_key() . '_hide_license_notices', false ) ) {
1091 - return;
1092 - }
1093 -
1094 - if ( true === $response ) {
1095 - add_action( 'admin_notices', [ $this, 'autoactivate_notice' ] );
1096 - }
1097 - }
1098 -
1099 - /**
1100 - * Show auto-activate notice.
1101 - */
1102 - public function autoactivate_notice() {
1103 - ?>
1104 - <div class="notice notice-success is-dismissible">
1105 - <p><?php echo sprintf( '<strong>%s</strong> has been successfully activated using <strong>%s</strong> license !', esc_attr( $this->product->get_name() ), esc_attr( str_repeat( '*', 20 ) . substr( $this->license_local, - 10 ) ) ); ?></p>
1106 - </div>
1107 - <?php
1108 - }
1109 -
1110 - /**
1111 - * Activate product license on this site.
1112 - *
1113 - * ## OPTIONS
1114 - *
1115 - * @param array $args Command args.
1116 - *
1117 - * [<license-key>]
1118 - * : Product license key.
1119 - */
1120 - public function cli_activate( $args ) {
1121 - $license_key = isset( $args[0] ) ? trim( $args[0] ) : '';
1122 - $response = $this->do_license_process( $license_key, 'activate' );
1123 - if ( true !== $response ) {
1124 - \WP_CLI::error( $response->get_error_message() );
1125 -
1126 - return;
1127 - }
1128 -
1129 - \WP_CLI::success( 'Product successfully activated.' );
1130 - }
1131 -
1132 - /**
1133 - * Deactivate product license on this site.
1134 - *
1135 - * @param array $args Command args.
1136 - *
1137 - * ## OPTIONS
1138 - *
1139 - * [<license-key>]
1140 - * : Product license key.
1141 - */
1142 - public function cli_deactivate( $args ) {
1143 - $license_key = isset( $args[0] ) ? trim( $args[0] ) : '';
1144 - $response = $this->do_license_process( $license_key, 'deactivate' );
1145 - if ( true !== $response ) {
1146 - \WP_CLI::error( $response->get_error_message() );
1147 -
1148 - return;
1149 - }
1150 -
1151 - \WP_CLI::success( 'Product successfully deactivated.' );
1152 - }
1153 -
1154 - /**
1155 - * Checks if product has license activated.
1156 - *
1157 - * @param array $args Command args.
1158 - *
1159 - * @subcommand is-active
1160 - */
1161 - public function cli_is_active( $args ) {
1162 -
1163 - $status = $this->get_license_status();
1164 - if ( 'valid' === $status ) {
1165 - \WP_CLI::halt( 0 );
1166 -
1167 - return;
1168 - }
1169 -
1170 - \WP_CLI::halt( 1 );
1171 797 }
1172 798 }