PluginProbe
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More / 6.13
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More v6.13
6.35 6.34 6.33.1 6.33 6.32.1 6.32 6.31 6.25 6.25.1 6.26 6.26.1 6.27 6.28 6.29 6.3 6.3.1 6.3.2 6.30 6.4 6.4.1 6.4.2 6.5 6.5.1 6.5.2 6.5.3 All 141 releases
← All changes | classes/models/FrmAddon.php +134 -683 6.356.13 View file →
@@ -4,82 +4,22 @@
4 4 }
5 5
6 6 /** @phpstan-consistent-constructor */
7 7 class FrmAddon {
8 -
9 - /**
10 - * @var string
11 - */
12 8 public $store_url = 'https://formidableforms.com';
13 -
14 - /**
15 - * @var int|string|null
16 - */
17 9 public $download_id;
18 -
19 - /**
20 - * @var string|null
21 - */
22 10 public $plugin_file;
23 -
24 - /**
25 - * @var string
26 - */
27 11 public $plugin_folder;
28 -
29 - /**
30 - * @var string
31 - */
32 12 public $plugin_name;
33 -
34 - /**
35 - * @var string
36 - */
37 13 public $plugin_slug;
38 -
39 - /**
40 - * @var string
41 - */
42 14 public $option_name;
43 -
44 - /**
45 - * @var string|null
46 - */
47 15 public $version;
48 -
49 - /**
50 - * @var string
51 - */
52 - public $author = 'Strategy11';
53 -
54 - /**
55 - * @var bool
56 - */
16 + public $author = 'Strategy11';
57 17 public $is_parent_licence = false;
58 -
59 - /**
60 - * @var bool
61 - */
62 - public $needs_license = true;
63 -
64 - /**
65 - * @var bool
66 - */
18 + public $needs_license = true;
67 19 private $is_expired_addon = false;
68 -
69 - /**
70 - * @var string|null
71 - */
72 20 public $license;
73 -
74 - /**
75 - * @var bool
76 - */
77 21 protected $get_beta = false;
78 -
79 - /**
80 - * @var array|null
81 - */
82 22 protected $save_status;
83 23
84 24 /**
85 25 * This is used to decide whether the license checks should continue.
@@ -107,41 +47,14 @@
107 47 * @var bool
108 48 */
109 49 protected $should_clear_cache = true;
110 50
111 - /**
112 - * Cached for the request, since every add-on asks for the same values.
113 - *
114 - * @since 6.35
115 - *
116 - * @var array<string,string>|null
117 - */
118 - private static $lite_requirements;
51 + public function __construct() {
119 52
120 - /**
121 - * Add-ons that require more than Lite does, keyed by plugin slug.
122 - *
123 - * Nearly every add-on is plain PHP with no dependency of its own, so it runs anywhere Lite
124 - * runs and Lite's own requirements describe it. The exceptions bundle a third party
125 - * library, which sets a floor of its own. PDFs bundles Dompdf, which needs PHP 7.1.
126 - *
127 - * Values here are floors, never ceilings, so raising Lite's minimum still raises every
128 - * add-on's. Keys match the names WordPress uses, requires and requires_php.
129 - *
130 - * @since 6.35
131 - *
132 - * @var array<string,array<string,string>>
133 - */
134 - private static $addon_requirements = array(
135 - 'pdfs' => array( 'requires_php' => '7.1' ),
136 - );
137 -
138 - public function __construct() {
139 - if ( ! $this->plugin_slug ) {
53 + if ( empty( $this->plugin_slug ) ) {
140 54 $this->plugin_slug = preg_replace( '/[^a-zA-Z0-9_\s]/', '', str_replace( ' ', '_', strtolower( $this->plugin_name ) ) );
141 55 }
142 -
143 - if ( ! $this->option_name ) {
56 + if ( empty( $this->option_name ) ) {
144 57 $this->option_name = 'edd_' . $this->plugin_slug . '_license_';
145 58 }
146 59
147 60 $this->plugin_folder = plugin_basename( $this->plugin_file );
@@ -150,103 +63,71 @@
150 63 add_filter( 'frm_installed_addons', array( &$this, 'insert_installed_addon' ) );
151 64 $this->edd_plugin_updater();
152 65 }
153 66
154 - /**
155 - * @return void
156 - */
157 67 public static function load_hooks() {
158 68 add_filter( 'frm_include_addon_page', '__return_true' );
159 69 new static();
160 70 }
161 71
162 - /**
163 - * @param array $plugins
164 - *
165 - * @return array
166 - */
167 72 public function insert_installed_addon( $plugins ) {
168 73 $plugins[ $this->plugin_slug ] = $this;
74 +
169 75 return $plugins;
170 76 }
171 77
172 - /**
173 - * @param string $plugin_slug
174 - *
175 - * @return false|FrmAddon
176 - */
177 78 public static function get_addon( $plugin_slug ) {
178 79 $plugins = apply_filters( 'frm_installed_addons', array() );
179 - return $plugins[ $plugin_slug ] ?? false;
80 + $plugin = false;
81 + if ( isset( $plugins[ $plugin_slug ] ) ) {
82 + $plugin = $plugins[ $plugin_slug ];
83 + }
84 +
85 + return $plugin;
180 86 }
181 87
182 - /**
183 - * @return void
184 - */
185 88 public function edd_plugin_updater() {
89 +
186 90 $this->is_license_revoked();
187 91 $license = $this->license;
188 92
189 93 add_action( 'after_plugin_row_' . plugin_basename( $this->plugin_file ), array( $this, 'maybe_show_license_message' ), 10, 2 );
190 94
191 - $is_addon = 'formidable/formidable.php' !== $this->plugin_folder;
95 + if ( ! empty( $license ) ) {
192 96
193 - if ( $is_addon ) {
194 - // Lite gets its tested and required versions from wordpress.org, add-ons have no
195 - // such source. Added before the license check, since a site without a license
196 - // still needs to know what its add-ons support.
197 - add_filter( 'site_transient_update_plugins', array( $this, 'add_version_requirements' ), 20 );
198 - add_filter( 'plugins_api', array( $this, 'add_requirements_to_plugin_info' ), 20, 3 );
199 - }
97 + if ( 'formidable/formidable.php' !== $this->plugin_folder ) {
98 + add_filter( 'plugins_api', array( &$this, 'plugins_api_filter' ), 10, 3 );
99 + }
200 100
201 - if ( ! $license ) {
202 - return;
101 + add_filter( 'site_transient_update_plugins', array( &$this, 'clear_expired_download' ) );
203 102 }
204 -
205 - if ( $is_addon ) {
206 - add_filter( 'plugins_api', array( &$this, 'plugins_api_filter' ), 10, 3 );
207 - }
208 -
209 - add_filter( 'site_transient_update_plugins', array( &$this, 'clear_expired_download' ) );
210 103 }
211 104
212 105 /**
213 - * Updates information on the "View version 6.15 details" page with custom data.
106 + * Updates information on the "View version x.x details" page with custom data.
214 107 *
215 108 * @uses api_request()
216 109 *
217 - * @param mixed $_data
218 - * @param string $_action
219 - * @param object|null $_args
110 + * @param mixed $_data
111 + * @param string $_action
112 + * @param object $_args
220 113 *
221 - * @return object Data.
114 + * @return object $_data
222 115 */
223 116 public function plugins_api_filter( $_data, $_action = '', $_args = null ) {
224 - if ( $_action !== 'plugin_information' ) {
117 +
118 + if ( $_action != 'plugin_information' ) {
225 119 return $_data;
226 120 }
227 121
228 - if ( empty( $_args->slug ) || ! $this->is_plugin_slug( $_args->slug ) ) {
122 + $slug = basename( $this->plugin_file, '.php' );
123 + $slug2 = str_replace( '/' . $slug . '.php', '', $this->plugin_folder );
124 + if ( empty( $_args->slug ) || ( $_args->slug != $slug && $_args->slug !== $slug2 ) ) {
229 125 return $_data;
230 126 }
231 127
232 128 $item_id = $this->download_id;
233 -
234 - if ( $item_id ) {
235 - $api = new FrmFormApi( $this->license );
236 -
237 - // Force new API info so we can pull changelog data.
238 - // Change log data is intentionally omitted from the cached API response
239 - // To help reduce the size of the autoloaded option.
240 - $api->force_api_request();
241 - $plugins = $api->get_api_info();
242 -
243 - if ( $plugins ) {
244 - $_data = $plugins[ $item_id ];
245 - }
246 - }
247 -
248 - if ( empty( $plugins ) ) {
129 + if ( empty( $item_id ) ) {
249 130 $_data = array(
250 131 'name' => $this->plugin_name,
251 132 'excerpt' => '',
252 133 'changelog' => 'See the full changelog at <a href="' . esc_url( $this->store_url . '/changelog/' ) . '"></a>',
@@ -254,8 +135,12 @@
254 135 'high' => '',
255 136 'low' => 'https://ps.w.org/formidable/assets/banner-1544x500.png',
256 137 ),
257 138 );
139 + } else {
140 + $api = new FrmFormApi( $this->license );
141 + $plugins = $api->get_api_info();
142 + $_data = $plugins[ $item_id ];
258 143 }
259 144
260 145 $_data['sections'] = array(
261 146 'description' => $_data['excerpt'],
@@ -266,295 +151,28 @@
266 151
267 152 return (object) $_data;
268 153 }
269 154
270 - /**
271 - * Checks if a requested plugin_information slug refers to this plugin.
272 - *
273 - * Either the plugin file name or the plugin folder may be used as an add-on's slug.
274 - *
275 - * @since 6.35
276 - *
277 - * @param string $slug The requested slug.
278 - *
279 - * @return bool
280 - */
281 - private function is_plugin_slug( $slug ) {
282 - $file_slug = basename( $this->plugin_file, '.php' );
283 - $folder_slug = str_replace( '/' . $file_slug . '.php', '', $this->plugin_folder );
284 -
285 - return $slug === $file_slug || $slug === $folder_slug;
286 - }
287 -
288 - /**
289 - * Adds the versions this add-on supports to its update data.
290 - *
291 - * The API reports no tested or required versions, so anything reading the update transient
292 - * has no way to tell whether an add-on has been tried with the WordPress release in use, or
293 - * whether the site meets what the add-on needs.
294 - *
295 - * @since 6.35
296 - *
297 - * @param mixed $transient The update_plugins site transient.
298 - *
299 - * @return mixed
300 - */
301 - public function add_version_requirements( $transient ) {
302 - if ( ! is_object( $transient ) ) {
303 - return $transient;
304 - }
305 -
306 - $requirements = $this->get_version_requirements();
307 -
308 - if ( ! $requirements ) {
309 - return $transient;
310 - }
311 -
312 - foreach ( array( 'response', 'no_update' ) as $group ) {
313 - $plugins = $transient->$group ?? false;
314 -
315 - if ( ! is_array( $plugins ) || empty( $plugins[ $this->plugin_folder ] ) ) {
316 - continue;
317 - }
318 -
319 - // The entries are objects, so this updates the transient in place.
320 - $plugin = $plugins[ $this->plugin_folder ];
321 -
322 - if ( ! is_object( $plugin ) ) {
323 - continue;
324 - }
325 -
326 - foreach ( $requirements as $key => $value ) {
327 - if ( empty( $plugin->$key ) ) {
328 - $plugin->$key = $value;
329 - }
330 - }
331 - }
332 -
333 - return $transient;
334 - }
335 -
336 - /**
337 - * Adds the versions this add-on supports to its plugin information.
338 - *
339 - * This is where WordPress itself reads the values, for the "Compatible up to" and
340 - * "Requires PHP" lines and the compatibility warnings in the plugin details modal. It is
341 - * separate from plugins_api_filter because that filter is only added when a license is set.
342 - *
343 - * @since 6.35
344 - *
345 - * @param mixed $data Plugin information from an earlier filter, or false if none.
346 - * @param string $action The requested action.
347 - * @param object|null $args Arguments for the request, including the slug.
348 - *
349 - * @return mixed
350 - */
351 - public function add_requirements_to_plugin_info( $data, $action = '', $args = null ) {
352 - if ( 'plugin_information' !== $action || empty( $args->slug ) || ! $this->is_plugin_slug( $args->slug ) ) {
353 - return $data;
354 - }
355 -
356 - $requirements = $this->get_version_requirements();
357 -
358 - if ( ! $requirements ) {
359 - return $data;
360 - }
361 -
362 - $is_object = is_object( $data ) && ! is_wp_error( $data );
363 -
364 - if ( ! $is_object && ! is_array( $data ) ) {
365 - return $data;
366 - }
367 -
368 - foreach ( $requirements as $key => $value ) {
369 - if ( ! $is_object ) {
370 - if ( empty( $data[ $key ] ) ) {
371 - $data[ $key ] = $value;
372 - }
373 - continue;
374 - }
375 -
376 - if ( empty( $data->$key ) ) {
377 - $data->$key = $value;
378 - }
379 - }
380 -
381 - return $data;
382 - }
383 -
384 - /**
385 - * Gets the versions this add-on reports to WordPress.
386 - *
387 - * Lite's own values describe every add-on, apart from the few that bundle a library with a
388 - * higher floor of its own.
389 - *
390 - * @since 6.35
391 - *
392 - * @return array<string,string> Keyed by the names WordPress uses, tested, requires and requires_php.
393 - */
394 - public function get_version_requirements() {
395 - $requirements = self::get_lite_requirements();
396 - $addon = self::$addon_requirements[ $this->plugin_slug ] ?? array();
397 -
398 - foreach ( $addon as $key => $version ) {
399 - $is_higher = empty( $requirements[ $key ] ) || version_compare( $version, $requirements[ $key ], '>' );
400 -
401 - if ( $is_higher ) {
402 - $requirements[ $key ] = $version;
403 - }
404 - }
405 -
406 - /**
407 - * Filters the versions a single add-on reports to WordPress.
408 - *
409 - * @since 6.35
410 - *
411 - * @param array<string,string> $requirements Keyed by tested, requires and requires_php.
412 - * @param string $plugin_slug The add-on's slug, for example pdfs.
413 - */
414 - $requirements = apply_filters( 'frm_addon_version_requirements', $requirements, $this->plugin_slug );
415 -
416 - return is_array( $requirements ) ? array_filter( $requirements ) : array();
417 - }
418 -
419 - /**
420 - * Gets the WordPress version the add-ons report as tested.
421 - *
422 - * @since 6.35
423 - *
424 - * @return string The tested version, or an empty string if the readme has none.
425 - */
426 - public static function get_tested_wp_version() {
427 - return self::get_lite_requirements()['tested'];
428 - }
429 -
430 - /**
431 - * Gets the versions Lite declares, which the add-ons report as their own.
432 - *
433 - * Read from Lite's readme, which is the same place wordpress.org reads them from, so the
434 - * add-ons report what Lite reports without anything being added to the API.
435 - *
436 - * @since 6.35
437 - *
438 - * @return array<string,string> Keyed by tested, requires and requires_php. Values may be empty.
439 - */
440 - public static function get_lite_requirements() {
441 - if ( null !== self::$lite_requirements ) {
442 - return self::$lite_requirements;
443 - }
444 -
445 - $headers = array(
446 - 'tested' => 'Tested up to',
447 - 'requires' => 'Requires at least',
448 - 'requires_php' => 'Requires PHP',
449 - );
450 -
451 - $versions = array(
452 - 'tested' => '',
453 - 'requires' => '',
454 - 'requires_php' => '',
455 - );
456 -
457 - $readme = FrmAppHelper::plugin_path() . '/readme.txt';
458 -
459 - if ( is_readable( $readme ) ) {
460 - $data = get_file_data( $readme, $headers );
461 -
462 - foreach ( $versions as $key => $version ) {
463 - $versions[ $key ] = isset( $data[ $key ] ) ? trim( $data[ $key ] ) : '';
464 - }
465 - }
466 -
467 - /**
468 - * Filters the versions read from Lite's readme before the add-ons report them.
469 - *
470 - * @since 6.35
471 - *
472 - * @param array<string,string> $versions Keyed by tested, requires and requires_php.
473 - */
474 - $versions = apply_filters( 'frm_lite_version_requirements', $versions );
475 -
476 - if ( ! is_array( $versions ) ) {
477 - $versions = array();
478 - }
479 -
480 - $versions['tested'] = self::expand_tested_branch( $versions['tested'] ?? '' );
481 -
482 - self::$lite_requirements = $versions;
483 -
484 - return self::$lite_requirements;
485 - }
486 -
487 - /**
488 - * Expands a tested release branch to the release running on this site.
489 - *
490 - * A readme names a branch, like 7.0, while wordpress.org reports the newest release in
491 - * that branch, like 7.0.4. The difference matters because WordPress compares the tested
492 - * version to the current one exactly, so a site on 7.0.4 reading 7.0 is warned that the
493 - * plugin is untested when it is not. Only versions within the tested branch are expanded,
494 - * so a genuinely older tested version is still reported as older.
495 - *
496 - * @since 6.35
497 - *
498 - * @param string $tested The tested version from the readme.
499 - *
500 - * @return string
501 - */
502 - private static function expand_tested_branch( $tested ) {
503 - if ( ! $tested ) {
504 - return $tested;
505 - }
506 -
507 - // Drop any pre-release suffix, since 7.1-RC4 is not a release to report as tested.
508 - $current = preg_replace( '/[^0-9.].*$/', '', get_bloginfo( 'version' ) );
509 -
510 - if ( self::get_version_branch( $current ) !== self::get_version_branch( $tested ) ) {
511 - return $tested;
512 - }
513 -
514 - return version_compare( $current, $tested, '>' ) ? $current : $tested;
515 - }
516 -
517 - /**
518 - * Reduces a version to its major.minor release branch.
519 - *
520 - * @since 6.35
521 - *
522 - * @param string $version A WordPress version.
523 - *
524 - * @return string The branch, or an empty string if the version cannot be read.
525 - */
526 - private static function get_version_branch( $version ) {
527 - if ( ! preg_match( '/^(\d+)\.(\d+)/', $version, $matches ) ) {
528 - return '';
529 - }
530 -
531 - return $matches[1] . '.' . $matches[2];
532 - }
533 -
534 - /**
535 - * @return string
536 - */
537 155 public function get_license() {
538 156 $license = $this->maybe_get_pro_license();
539 -
540 - if ( $license ) {
157 + if ( ! empty( $license ) ) {
541 158 return $license;
542 159 }
543 160
544 161 $license = trim( get_option( $this->option_name . 'key' ) );
162 + if ( empty( $license ) ) {
163 + $license = $this->activate_defined_license();
164 + }
545 165
546 - return $license ? $license : $this->activate_defined_license();
166 + return $license;
547 167 }
548 168
549 169 /**
550 170 * @since 3.04.03
551 - *
552 - * @return false|string
553 171 */
554 172 protected function maybe_get_pro_license() {
555 - // Prevent a loop if $this is the pro plugin
556 - $get_license = FrmAppHelper::pro_is_installed() && is_callable( 'FrmProAppHelper::get_updater' ) && $this->plugin_name !== 'Formidable Pro';
173 + // prevent a loop if $this is the pro plugin
174 + $get_license = FrmAppHelper::pro_is_installed() && is_callable( 'FrmProAppHelper::get_updater' ) && $this->plugin_name != 'Formidable Pro';
557 175
558 176 if ( ! $get_license ) {
559 177 return false;
560 178 }
@@ -561,16 +179,18 @@
561 179
562 180 $api = new FrmFormApi();
563 181 $api->get_pro_updater();
564 182 $license = $api->get_license();
565 -
566 - if ( ! $license ) {
183 + if ( empty( $license ) ) {
567 184 return false;
568 185 }
569 186
570 187 $this->get_api_info( $license );
188 + if ( ! $this->is_parent_licence ) {
189 + $license = false;
190 + }
571 191
572 - return $this->is_parent_licence ? $license : false;
192 + return $license;
573 193 }
574 194
575 195 /**
576 196 * Activate the license in wp-config.php
@@ -575,17 +195,13 @@
575 195 /**
576 196 * Activate the license in wp-config.php
577 197 *
578 198 * @since 2.04
579 - *
580 - * @return string
581 199 */
582 200 public function activate_defined_license() {
583 201 $license = $this->get_defined_license();
584 -
585 - if ( $license && ! $this->is_active() && ! $this->checked_recently( '1 day' ) ) {
202 + if ( ! empty( $license ) && ! $this->is_active() && ! $this->checked_recently( '1 day' ) ) {
586 203 $response = $this->activate_license( $license );
587 -
588 204 if ( ! $response['success'] ) {
589 205 $license = '';
590 206 }
591 207 }
@@ -596,28 +212,19 @@
596 212 /**
597 213 * Check the wp-config.php for the license key
598 214 *
599 215 * @since 2.04
600 - *
601 - * @return false|string
602 216 */
603 217 public function get_defined_license() {
604 - $constant_name = 'FRM_' . strtoupper( $this->plugin_slug ) . '_LICENSE';
605 - return defined( $constant_name ) ? constant( $constant_name ) : false;
218 + $consant_name = 'FRM_' . strtoupper( $this->plugin_slug ) . '_LICENSE';
219 +
220 + return defined( $consant_name ) ? constant( $consant_name ) : false;
606 221 }
607 222
608 - /**
609 - * @param string $license
610 - *
611 - * @return void
612 - */
613 223 public function set_license( $license ) {
614 224 update_option( $this->option_name . 'key', $license );
615 225 }
616 226
617 - /**
618 - * @return mixed
619 - */
620 227 public function is_active() {
621 228 return get_option( $this->option_name . 'active' );
622 229 }
623 230
@@ -624,10 +231,8 @@
624 231 /**
625 232 * @since 3.04.03
626 233 *
627 234 * @param array|string $error
628 - *
629 - * @return void
630 235 */
631 236 public function maybe_clear_license( $error ) {
632 237 if ( is_array( $error ) && $error['code'] === 'disabled' && $error['license'] === $this->license ) {
633 238 $this->clear_license();
@@ -633,23 +238,18 @@
633 238 $this->clear_license();
634 239 }
635 240 }
636 241
637 - /**
638 - * @return void
639 - */
640 242 public function clear_license() {
641 243 delete_option( $this->option_name . 'active' );
642 244 delete_option( $this->option_name . 'key' );
643 245
644 - if ( ! $this->should_clear_cache ) {
645 - return;
246 + if ( $this->should_clear_cache ) {
247 + delete_site_option( $this->transient_key() );
248 + delete_option( $this->transient_key() );
249 + $this->delete_cache();
250 + $this->should_clear_cache = true;
646 251 }
647 -
648 - delete_site_option( $this->transient_key() );
649 - delete_option( $this->transient_key() );
650 - $this->delete_cache();
651 - $this->should_clear_cache = true;
652 252 }
653 253
654 254 /**
655 255 * Don't save an invalid license.
@@ -655,15 +255,14 @@
655 255 * Don't save an invalid license.
656 256 *
657 257 * @since 6.8.3
658 258 *
659 - * @param bool|string $is_valid If license activation was successful. May be a string 'valid'.
259 + * @param bool $is_valid If license activation was successful.
660 260 *
661 261 * @return void
662 262 */
663 263 protected function maybe_set_active( $is_valid ) {
664 264 update_option( $this->option_name . 'active', $is_valid );
665 -
666 265 if ( $is_valid ) {
667 266 $this->set_active( $is_valid );
668 267 return;
669 268 }
@@ -674,13 +273,8 @@
674 273 delete_option( $this->option_name . 'key' );
675 274 $this->license = '';
676 275 }
677 276
678 - /**
679 - * @param bool|string $is_active Value may include 'valid'.
680 - *
681 - * @return void
682 - */
683 277 public function set_active( $is_active ) {
684 278 $this->delete_cache();
685 279 FrmAppHelper::save_combined_js();
686 280 $this->update_pro_capabilities();
@@ -689,10 +283,8 @@
689 283 /**
690 284 * Updates roles capabilities after pro license is active.
691 285 *
692 286 * @since 5.0
693 - *
694 - * @return void
695 287 */
696 288 protected function update_pro_capabilities() {
697 289 global $wp_roles;
698 290
@@ -702,11 +294,10 @@
702 294
703 295 $caps = FrmAppHelper::frm_capabilities( 'pro_only' );
704 296 $roles = get_editable_roles();
705 297 $settings = new FrmSettings();
706 -
707 298 foreach ( $caps as $cap => $cap_desc ) {
708 - $cap_roles = (array) ( $settings->$cap ?? 'administrator' );
299 + $cap_roles = (array) ( isset( $settings->$cap ) ? $settings->$cap : 'administrator' );
709 300
710 301 // Make sure administrators always have permissions.
711 302 if ( ! in_array( 'administrator', $cap_roles, true ) ) {
712 303 array_push( $cap_roles, 'administrator' );
@@ -712,9 +303,9 @@
712 303 array_push( $cap_roles, 'administrator' );
713 304 }
714 305
715 306 foreach ( $roles as $role => $details ) {
716 - if ( in_array( $role, $cap_roles, true ) ) {
307 + if ( in_array( $role, $cap_roles ) ) {
717 308 $wp_roles->add_cap( $role, $cap );
718 309 } else {
719 310 $wp_roles->remove_cap( $role, $cap );
720 311 }
@@ -723,10 +314,8 @@
723 314 }
724 315
725 316 /**
726 317 * @since 3.04.03
727 - *
728 - * @return void
729 318 */
730 319 protected function delete_cache() {
731 320 delete_transient( 'frm_api_licence' );
732 321
@@ -740,20 +329,8 @@
740 329 $api->reset_cached();
741 330
742 331 $api = new FrmApplicationApi( $this->license );
743 332 $api->reset_cached();
744 -
745 - // The Sales API tries to pull API data in the constructor.
746 - // But we do not need sales data here.
747 - FrmSalesApi::prevent_new_sales_requests();
748 -
749 - $api = new FrmSalesApi();
750 - $api->reset_cached();
751 -
752 - FrmSalesApi::allow_new_sales_requests();
753 -
754 - $api = new FrmStyleApi();
755 - $api->reset_cached();
756 333 }
757 334
758 335 /**
759 336 * The Pro version includes the show_license_message function.
@@ -759,17 +336,12 @@
759 336 * The Pro version includes the show_license_message function.
760 337 * We need an extra check before we allow it to show a message.
761 338 *
762 339 * @since 3.04.03
763 - *
764 - * @param string $file File path of the plugin.
765 - * @param array $plugin Plugin data.
766 - *
767 - * @return void
768 340 */
769 341 public function maybe_show_license_message( $file, $plugin ) {
770 342 if ( $this->is_expired_addon || isset( $plugin['package'] ) ) {
771 - // Let's not show a ton of duplicate messages
343 + // let's not show a ton of duplicate messages
772 344 return;
773 345 }
774 346
775 347 $this->show_license_message( $file, $plugin );
@@ -774,30 +346,22 @@
774 346
775 347 $this->show_license_message( $file, $plugin );
776 348 }
777 349
778 - /**
779 - * @param string $file File path of the plugin.
780 - * @param array $plugin Plugin data.
781 - *
782 - * @return void
783 - */
784 350 public function show_license_message( $file, $plugin ) {
785 351 $message = '';
786 -
787 - if ( $this->license ) {
352 + if ( empty( $this->license ) ) {
353 + /* translators: %1$s: Plugin name, %2$s: Start link HTML, %3$s: end link HTML */
354 + $message = sprintf( esc_html__( 'Your %1$s license key is missing. Please add it on the %2$slicenses page%3$s.', 'formidable' ), esc_html( $this->plugin_name ), '<a href="' . esc_url( admin_url( 'admin.php?page=formidable-settings' ) ) . '">', '</a>' );
355 + } else {
788 356 $api = new FrmFormApi( $this->license );
789 357 $errors = $api->error_for_license();
790 -
791 - if ( $errors ) {
358 + if ( ! empty( $errors ) ) {
792 359 $message = reset( $errors );
793 360 }
794 - } else {
795 - /* translators: %1$s: Plugin name, %2$s: Start link HTML, %3$s: end link HTML */
796 - $message = sprintf( esc_html__( 'Your %1$s license key is missing. Please add it on the %2$slicenses page%3$s.', 'formidable' ), esc_html( $this->plugin_name ), '<a href="' . esc_url( admin_url( 'admin.php?page=formidable-settings' ) ) . '">', '</a>' ); // phpcs:ignore SlevomatCodingStandard.Files.LineLength.LineTooLong
797 361 }
798 362
799 - if ( ! $message ) {
363 + if ( empty( $message ) ) {
800 364 return;
801 365 }
802 366
803 367 $wp_list_table = _get_list_table( 'WP_Plugins_List_Table' );
@@ -802,19 +366,14 @@
802 366
803 367 $wp_list_table = _get_list_table( 'WP_Plugins_List_Table' );
804 368 $id = sanitize_title( $plugin['Name'] ) . '-next';
805 369
806 - echo '<tr class="plugin-update-tr active" id="' . esc_attr( $id ) . '"><td colspan="' . esc_attr( $wp_list_table->get_column_count() ) . '" class="plugin-update colspanchange"><div class="update-message notice error inline notice-error notice-alt"><p>'; // phpcs:ignore SlevomatCodingStandard.Files.LineLength.LineTooLong
807 - FrmAppHelper::kses_echo( $message, 'a' );
808 - echo '<script type="text/javascript">var d = document.getElementById("' . esc_attr( $id ) . '").previousSibling;if ( d !== null ){ d.className = d.className + " update"; }</script>'; // phpcs:ignore SlevomatCodingStandard.Files.LineLength.LineTooLong
370 + echo '<tr class="plugin-update-tr active" id="' . esc_attr( $id ) . '"><td colspan="' . esc_attr( $wp_list_table->get_column_count() ) . '" class="plugin-update colspanchange"><div class="update-message notice error inline notice-error notice-alt"><p>';
371 + echo FrmAppHelper::kses( $message, 'a' ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
372 + echo '<script type="text/javascript">var d = document.getElementById("' . esc_attr( $id ) . '").previousSibling;if ( d !== null ){ d.className = d.className + " update"; }</script>';
809 373 echo '</p></div></td></tr>';
810 374 }
811 375
812 - /**
813 - * @param mixed $transient
814 - *
815 - * @return mixed
816 - */
817 376 public function clear_expired_download( $transient ) {
818 377 if ( ! is_object( $transient ) ) {
819 378 return $transient;
820 379 }
@@ -826,9 +385,9 @@
826 385 }
827 386 } elseif ( isset( $transient->response ) && isset( $transient->response[ $this->plugin_folder ] ) ) {
828 387 $this->prepare_update_details( $transient->response[ $this->plugin_folder ] );
829 388
830 - // If the transient has expired, clear the update and trigger it again
389 + // if the transient has expired, clear the update and trigger it again
831 390 if ( $transient->response[ $this->plugin_folder ] === false ) {
832 391 if ( ! $this->has_been_cleared() ) {
833 392 $this->cleared_plugins();
834 393 $this->manually_queue_update();
@@ -845,37 +404,29 @@
845 404 *
846 405 * @since 3.04.03
847 406 *
848 407 * @param object $transient The current plugin info saved for update.
849 - *
850 - * @return void
851 408 */
852 409 private function prepare_update_details( &$transient ) {
853 410 $version_info = $transient;
854 411 $has_beta_url = ! empty( $version_info->beta );
855 -
856 412 if ( $this->get_beta && ! $has_beta_url ) {
857 413 $version_info = (object) $this->get_api_info( $this->license );
858 414 }
859 415
860 - if ( empty( $version_info->new_version ) ) {
861 - return;
862 - }
416 + if ( ! empty( $version_info->new_version ) ) {
417 + $this->clear_old_plugin_version( $version_info );
418 + if ( $version_info === false ) {
419 + // Was cleared with timeout.
420 + $transient = false;
421 + } else {
422 + $this->maybe_use_beta_url( $version_info );
863 423
864 - $this->clear_old_plugin_version( $version_info );
865 -
866 - if ( $version_info === false ) {
867 - // Was cleared with timeout.
868 - $transient = false;
869 -
870 - return;
424 + if ( version_compare( $version_info->new_version, $this->version, '>' ) ) {
425 + $transient = $version_info;
426 + }
427 + }
871 428 }
872 -
873 - $this->maybe_use_beta_url( $version_info );
874 -
875 - if ( version_compare( $version_info->new_version, $this->version, '>' ) ) {
876 - $transient = $version_info;
877 - }
878 429 }
879 430
880 431 /**
881 432 * Get the API info for this plugin
@@ -880,22 +431,18 @@
880 431 /**
881 432 * Get the API info for this plugin
882 433 *
883 434 * @since 3.04.03
884 - *
885 - * @param string $license The license key.
886 - *
887 - * @return array The API info for the plugin.
888 435 */
889 436 protected function get_api_info( $license ) {
890 437 $api = new FrmFormApi( $license );
891 438 $addon = $api->get_addon_for_license( $this );
892 439
893 - // If there is no download url, this license does not apply to the addon
440 + // if there is no download url, this license does not apply to the addon
894 441 if ( isset( $addon['package'] ) ) {
895 442 $this->is_parent_licence = true;
896 443 } elseif ( isset( $addon['error'] ) ) {
897 - // If the license is expired, we must assume all add-ons were packaged
444 + // if the license is expired, we must assume all add-ons were packaged
898 445 $this->is_parent_licence = true;
899 446 $this->is_expired_addon = true;
900 447 }
901 448
@@ -906,24 +453,17 @@
906 453 * Make sure transients don't stick around on sites that
907 454 * don't save the transient expiration
908 455 *
909 456 * @since 2.05.05
910 - *
911 - * @param object $version_info The version info for the plugin.
912 - *
913 - * @return void
914 457 */
915 458 private function clear_old_plugin_version( &$version_info ) {
916 459 $timeout = ! empty( $version_info->timeout ) ? $version_info->timeout : 0;
917 -
918 - if ( ! $timeout || time() <= $timeout ) {
919 - return;
460 + if ( ! empty( $timeout ) && time() > $timeout ) {
461 + // Cache is expired.
462 + $version_info = false;
463 + $api = new FrmFormApi( $this->license );
464 + $api->reset_cached();
920 465 }
921 -
922 - // Cache is expired.
923 - $version_info = false;
924 - $api = new FrmFormApi( $this->license );
925 - $api->reset_cached();
926 466 }
927 467
928 468 /**
929 469 * The beta url is always included if the download has a beta.
@@ -929,31 +469,19 @@
929 469 * The beta url is always included if the download has a beta.
930 470 * Check if the beta should be downloaded.
931 471 *
932 472 * @since 3.04.03
933 - *
934 - * @param object $version_info The version info for the plugin.
935 - *
936 - * @return void
937 473 */
938 474 private function maybe_use_beta_url( &$version_info ) {
939 - if ( ! $this->get_beta || empty( $version_info->beta ) ) {
940 - return;
475 + if ( $this->get_beta && ! empty( $version_info->beta ) ) {
476 + $version_info->new_version = $version_info->beta['version'];
477 + $version_info->package = $version_info->beta['package'];
478 + if ( ! empty( $version_info->plugin ) ) {
479 + $version_info->plugin = $version_info->beta['plugin'];
480 + }
941 481 }
942 -
943 - $version_info->new_version = $version_info->beta['version'];
944 - $version_info->package = $version_info->beta['package'];
945 -
946 - if ( ! empty( $version_info->plugin ) ) {
947 - $version_info->plugin = $version_info->beta['plugin'];
948 - }
949 482 }
950 483
951 - /**
952 - * @param object $transient
953 - *
954 - * @return bool
955 - */
956 484 private function is_current_version( $transient ) {
957 485 if ( empty( $transient->checked ) || ! isset( $transient->checked[ $this->plugin_folder ] ) ) {
958 486 return false;
959 487 }
@@ -958,14 +486,13 @@
958 486 return false;
959 487 }
960 488
961 489 $response = empty( $transient->response );
962 -
963 490 if ( $response ) {
964 491 return true;
965 492 }
966 493
967 - return isset( $transient->response ) && isset( $transient->response[ $this->plugin_folder ] ) && $transient->checked[ $this->plugin_folder ] === $transient->response[ $this->plugin_folder ]->new_version; // phpcs:ignore SlevomatCodingStandard.Files.LineLength.LineTooLong
494 + return isset( $transient->response ) && isset( $transient->response[ $this->plugin_folder ] ) && $transient->checked[ $this->plugin_folder ] === $transient->response[ $this->plugin_folder ]->new_version;
968 495 }
969 496
970 497 /**
971 498 * @return bool
@@ -974,20 +501,14 @@
974 501 $last_cleared = get_option( 'frm_last_cleared' );
975 502 return $last_cleared && $last_cleared > gmdate( 'Y-m-d H:i:s', strtotime( '-5 minutes' ) );
976 503 }
977 504
978 - /**
979 - * @return void
980 - */
981 505 private function cleared_plugins() {
982 506 update_option( 'frm_last_cleared', gmdate( 'Y-m-d H:i:s' ) );
983 507 }
984 508
985 - /**
986 - * @return void
987 - */
988 509 private function is_license_revoked() {
989 - if ( ! $this->license || ! $this->plugin_slug || isset( $_POST['license'] ) ) { // phpcs:ignore WordPress.Security.NonceVerification.Missing
510 + if ( empty( $this->license ) || empty( $this->plugin_slug ) || isset( $_POST['license'] ) ) { // phpcs:ignore WordPress.Security.NonceVerification.Missing
990 511 return;
991 512 }
992 513
993 514 if ( $this->get_defined_license() ) {
@@ -995,19 +516,13 @@
995 516 return;
996 517 }
997 518
998 519 // Only check weekly.
999 - if ( $this->checked_recently( '7 days' ) || $this->is_running() ) {
520 + if ( $this->checked_recently( '7 days', 'valid' ) || $this->is_running() ) {
1000 521 return;
1001 522 }
1002 523
1003 524 $response = $this->get_license_status();
1004 -
1005 - if ( ! empty( $this->save_status['response_code'] ) && 429 === $this->save_status['response_code'] ) {
1006 - // If we got a rate limit response, don't clear the license.
1007 - return;
1008 - }
1009 -
1010 525 if ( 'revoked' === $response['status'] || 'blocked' === $response['status'] || 'disabled' === $response['status'] || 'missing' === $response['status'] ) {
1011 526 $this->clear_license();
1012 527 }
1013 528 }
@@ -1014,45 +529,30 @@
1014 529
1015 530 /**
1016 531 * Has this been checked too recently?
1017 532 *
1018 - * @param string $time ie. '1 day'.
533 + * @param string $time ie. '1 day'.
534 + * @param string $required_status Return false if the last check does not match. ie 'valid'.
1019 535 *
1020 - * @return bool True if the last check time was recent.
536 + * @return bool
1021 537 */
1022 - private function checked_recently( $time ) {
538 + private function checked_recently( $time, $required_status = '' ) {
1023 539 $last_checked = $this->last_checked();
1024 -
1025 - if ( ! $last_checked ) {
1026 - return false;
1027 - }
1028 -
1029 - $is_429 = isset( $last_checked['response_code'] ) && 429 === $last_checked['response_code'];
1030 -
1031 - // If the last check was a a rate limit error, adjust the check time.
540 + $is_429 = isset( $last_checked['response_code'] ) && 429 === $last_checked['response_code'];
1032 541 if ( $is_429 ) {
1033 - // If the time is 2 minutes, do not adjust it so people
1034 - // can still try to activate again in 2 minutes (and not 5).
1035 - switch ( $time ) {
1036 - case '7 days':
1037 - // 7 days is used to check for license revocation.
1038 - $time = '30 minutes';
1039 - break;
1040 - case '1 day':
1041 - // 1 day is used for defined license constants.
1042 - // The response won't change often, so we can check less frequently.
1043 - $time = '2 hours';
1044 - break;
1045 - }
542 + // If the last check was a a rate limit, we'll need to check again sooner.
543 + $time = '5 minutes';
544 + $required_status = '';
1046 545 }
1047 546
1048 - if ( empty( $last_checked['time'] ) ) {
1049 - // If we do not have time, data is really old.
1050 - return false;
547 + if ( $required_status && ( ! isset( $last_checked['status'] ) || $last_checked['status'] !== $required_status ) ) {
548 + // If the last check was invalid, we don't need to check again.
549 + return true;
1051 550 }
1052 551
1053 - $time_ago = gmdate( 'Y-m-d H:i:s', strtotime( '-' . $time ) );
1054 - return $last_checked['time'] > $time_ago;
552 + $checked_time = isset( $last_checked['time'] ) ? $last_checked['time'] : false;
553 + $time_ago = gmdate( 'Y-m-d H:i:s', strtotime( '-' . $time ) );
554 + return $checked_time && $checked_time > $time_ago;
1055 555 }
1056 556
1057 557 /**
1058 558 * @since 6.8.3 Switched to an array to store extra response info.
@@ -1059,29 +559,25 @@
1059 559 *
1060 560 * @return array
1061 561 */
1062 562 private function last_checked() {
1063 - $last_checked = is_multisite() ? get_site_option( $this->transient_key() ) : get_option( $this->transient_key() );
1064 -
563 + if ( is_multisite() ) {
564 + $last_checked = get_site_option( $this->transient_key() );
565 + } else {
566 + $last_checked = get_option( $this->transient_key() );
567 + }
1065 568 if ( $last_checked && ! is_array( $last_checked ) ) {
1066 569 // Get string into array for existing values.
1067 570 $last_checked = array( 'time' => $last_checked );
1068 571 }
1069 -
1070 - return $last_checked ? $last_checked : array();
572 + return $last_checked ? (array) $last_checked : array();
1071 573 }
1072 574
1073 575 /**
1074 - * @since 6.30 Added the $is_valid param.
1075 - *
1076 - * @param bool $is_valid
1077 - *
1078 576 * @return void
1079 577 */
1080 - private function update_last_checked( $is_valid ) {
1081 - $this->save_response['time'] = gmdate( 'Y-m-d H:i:s' );
1082 - $this->save_response['is_valid'] = $is_valid;
1083 -
578 + private function update_last_checked() {
579 + $this->save_response['time'] = gmdate( 'Y-m-d H:i:s' );
1084 580 if ( is_multisite() ) {
1085 581 update_site_option( $this->transient_key(), $this->save_response );
1086 582 } else {
1087 583 update_option( $this->transient_key(), $this->save_response );
@@ -1089,25 +585,19 @@
1089 585 }
1090 586
1091 587 /**
1092 588 * Use a new cache after the license is changed, or Formidable is updated.
1093 - *
1094 - * @return string
1095 589 */
1096 590 private function transient_key() {
1097 591 return 'frm_' . md5( sanitize_key( $this->license . '_' . $this->plugin_slug ) );
1098 592 }
1099 593
1100 - /**
1101 - * @return void
1102 - */
1103 594 public static function activate() {
1104 595 FrmAppHelper::permission_check( 'frm_change_settings' );
1105 596 check_ajax_referer( 'frm_ajax', 'nonce' );
1106 597
1107 598 $license = stripslashes( FrmAppHelper::get_param( 'license', '', 'post', 'sanitize_text_field' ) );
1108 -
1109 - if ( ! $license ) {
599 + if ( empty( $license ) ) {
1110 600 wp_send_json(
1111 601 array(
1112 602 'message' => __( 'Oops! You forgot to enter your license number.', 'formidable' ),
1113 603 'success' => false,
@@ -1117,20 +607,13 @@
1117 607
1118 608 $plugin_slug = FrmAppHelper::get_param( 'plugin', '', 'post', 'sanitize_text_field' );
1119 609 $response = self::activate_license_for_plugin( $license, $plugin_slug );
1120 610
1121 - FrmInbox::clear_cache();
1122 -
1123 611 wp_send_json( $response );
1124 612 }
1125 613
1126 614 /**
1127 615 * @since 4.08
1128 - *
1129 - * @param string $license The license key.
1130 - * @param string $plugin_slug The plugin slug.
1131 - *
1132 - * @return array The response from the license activation.
1133 616 */
1134 617 public static function activate_license_for_plugin( $license, $plugin_slug ) {
1135 618 $this_plugin = self::get_addon( $plugin_slug );
1136 619 return $this_plugin->activate_license( $license );
@@ -1135,13 +618,8 @@
1135 618 $this_plugin = self::get_addon( $plugin_slug );
1136 619 return $this_plugin->activate_license( $license );
1137 620 }
1138 621
1139 - /**
1140 - * @param string $license The license key.
1141 - *
1142 - * @return array The response from the license activation.
1143 - */
1144 622 private function activate_license( $license ) {
1145 623 $this->set_license( $license );
1146 624 $this->license = $license;
1147 625
@@ -1150,15 +628,12 @@
1150 628 $response = $this->get_license_status();
1151 629 $response['message'] = '';
1152 630 $response['success'] = false;
1153 631
1154 - $is_valid = false;
1155 -
1156 632 if ( $response['error'] ) {
1157 633 $response['message'] = $response['status'];
1158 634 } else {
1159 635 $messages = $this->get_messages();
1160 -
1161 636 if ( is_string( $response['status'] ) && isset( $messages[ $response['status'] ] ) ) {
1162 637 $response['message'] = $messages[ $response['status'] ];
1163 638 } else {
1164 639 $response['message'] = FrmAppHelper::kses( $response['status'], array( 'a' ) );
@@ -1163,17 +638,17 @@
1163 638 } else {
1164 639 $response['message'] = FrmAppHelper::kses( $response['status'], array( 'a' ) );
1165 640 }
1166 641
642 + $is_valid = false;
1167 643 if ( 'valid' === $response['status'] ) {
1168 644 $is_valid = 'valid';
1169 645 $response['success'] = true;
1170 646 }
1171 -
1172 647 $this->maybe_set_active( $is_valid );
1173 648 }
1174 649
1175 - $this->update_last_checked( (bool) $is_valid );
650 + $this->update_last_checked();
1176 651
1177 652 return $response;
1178 653 }
1179 654
@@ -1195,11 +670,8 @@
1195 670 )
1196 671 );
1197 672 }
1198 673
1199 - /**
1200 - * @return array
1201 - */
1202 674 private function get_license_status() {
1203 675 $this->set_running();
1204 676
1205 677 $response = array(
@@ -1205,16 +677,14 @@
1205 677 $response = array(
1206 678 'status' => 'missing',
1207 679 'error' => true,
1208 680 );
681 + if ( empty( $this->license ) ) {
682 + $response['error'] = false;
1209 683
1210 - if ( ! $this->license ) {
1211 - $response['error'] = false;
1212 684 return $response;
1213 685 }
1214 686
1215 - $is_valid = false;
1216 -
1217 687 try {
1218 688 $response['error'] = false;
1219 689 $license_data = $this->send_mothership_request( 'activate_license' );
1220 690
@@ -1222,9 +692,8 @@
1222 692 if ( is_array( $license_data ) ) {
1223 693 if ( ! empty( $license_data['license'] ) && in_array( $license_data['license'], array( 'valid', 'invalid' ), true ) ) {
1224 694 $response['status'] = $license_data['license'];
1225 695 $this->save_status['status'] = $license_data['license'];
1226 - $is_valid = 'valid' === $license_data['license'];
1227 696 }
1228 697 } else {
1229 698 $response['status'] = $license_data;
1230 699 }
@@ -1231,16 +700,13 @@
1231 700 } catch ( Exception $e ) {
1232 701 $response['status'] = $e->getMessage();
1233 702 }
1234 703
1235 - $this->update_last_checked( $is_valid );
704 + $this->update_last_checked();
1236 705 $this->done_running();
1237 706 return $response;
1238 707 }
1239 708
1240 - /**
1241 - * @return array
1242 - */
1243 709 private function get_messages() {
1244 710 return array(
1245 711 'valid' => __( 'Your license has been activated. Enjoy!', 'formidable' ),
1246 712 'invalid' => __( 'That license key is invalid', 'formidable' ),
@@ -1253,10 +719,8 @@
1253 719 }
1254 720
1255 721 /**
1256 722 * @since 4.03
1257 - *
1258 - * @return void
1259 723 */
1260 724 public static function reset_cache() {
1261 725 FrmAppHelper::permission_check( 'frm_change_settings' );
1262 726 check_ajax_referer( 'frm_ajax', 'nonce' );
@@ -1271,11 +735,8 @@
1271 735
1272 736 wp_send_json( $response );
1273 737 }
1274 738
1275 - /**
1276 - * @return void
1277 - */
1278 739 public static function deactivate() {
1279 740 FrmAppHelper::permission_check( 'frm_change_settings' );
1280 741 check_ajax_referer( 'frm_ajax', 'nonce' );
1281 742
@@ -1284,13 +745,11 @@
1284 745 $response = array(
1285 746 'success' => false,
1286 747 'message' => '',
1287 748 );
1288 -
1289 749 try {
1290 750 // $license_data->license will be either "deactivated" or "failed"
1291 751 $license_data = $this_plugin->send_mothership_request( 'deactivate_license' );
1292 -
1293 752 if ( is_array( $license_data ) && 'deactivated' === $license_data['license'] ) {
1294 753 $response['success'] = true;
1295 754 $response['message'] = __( 'That license was removed successfully', 'formidable' );
1296 755 } else {
@@ -1300,9 +759,8 @@
1300 759 $response['message'] = $e->getMessage();
1301 760 }
1302 761
1303 762 $this_plugin->clear_license();
1304 - FrmInbox::clear_cache();
1305 763
1306 764 wp_send_json( $response );
1307 765 }
1308 766
@@ -1307,21 +765,18 @@
1307 765 }
1308 766
1309 767 /**
1310 768 * @since 4.03
1311 - *
1312 - * @return FrmAddon
1313 769 */
1314 770 private static function set_license_from_post() {
1315 771 $plugin_slug = FrmAppHelper::get_param( 'plugin', '', 'post', 'sanitize_text_field' );
1316 772 $this_plugin = self::get_addon( $plugin_slug );
1317 - $this_plugin->license = $this_plugin->get_license();
773 + $license = $this_plugin->get_license();
774 + $this_plugin->license = $license;
1318 775 return $this_plugin;
1319 776 }
1320 777
1321 778 /**
1322 - * @param string $action
1323 - *
1324 779 * @return string
1325 780 */
1326 781 public function send_mothership_request( $action ) {
1327 782 $api_params = array(
@@ -1328,9 +783,8 @@
1328 783 'edd_action' => $action,
1329 784 'license' => $this->license,
1330 785 'url' => home_url(),
1331 786 );
1332 -
1333 787 if ( is_numeric( $this->download_id ) ) {
1334 788 $api_params['item_id'] = absint( $this->download_id );
1335 789 } else {
1336 790 $api_params['item_name'] = rawurlencode( $this->plugin_name );
@@ -1341,31 +795,31 @@
1341 795 'timeout' => 25,
1342 796 'user-agent' => $this->plugin_slug . '/' . $this->version . '; ' . get_bloginfo( 'url' ),
1343 797 );
1344 798
1345 - $resp = wp_remote_post(
799 + $resp = wp_remote_post(
1346 800 $this->store_url . '?l=' . urlencode( base64_encode( $this->license ) ),
1347 801 $arg_array
1348 802 );
1349 - $response_code = wp_remote_retrieve_response_code( $resp );
1350 - $body = wp_remote_retrieve_body( $resp );
1351 - $this->save_status = array( 'response_code' => $response_code );
1352 - $this->save_response['response_code'] = $response_code;
803 + $body = wp_remote_retrieve_body( $resp );
804 + $this->save_status = array( 'response_code' => wp_remote_retrieve_response_code( $resp ) );
1353 805
1354 806 $message = __( 'Your License Key was invalid', 'formidable' );
1355 -
1356 807 if ( is_wp_error( $resp ) ) {
1357 808 $link = FrmAppHelper::admin_upgrade_link( 'api', 'knowledgebase/why-cant-i-activate-formidable-pro/' );
1358 809 /* translators: %1$s: Start link HTML, %2$s: End link HTML */
1359 - $message = sprintf( __( 'You had an error communicating with the Formidable API. %1$sClick here%2$s for more information.', 'formidable' ), '<a href="' . esc_url( $link ) . '" target="_blank">', '</a>' ); // phpcs:ignore SlevomatCodingStandard.Files.LineLength.LineTooLong
810 + $message = sprintf( __( 'You had an error communicating with the Formidable API. %1$sClick here%2$s for more information.', 'formidable' ), '<a href="' . esc_url( $link ) . '" target="_blank">', '</a>' );
1360 811 $message .= ' ' . $resp->get_error_message();
1361 812 } elseif ( 'error' === $body || is_wp_error( $body ) ) {
1362 813 $message = __( 'You had an HTTP error connecting to the Formidable API', 'formidable' );
1363 814 } else {
1364 815 $json_res = json_decode( $body, true );
1365 -
1366 816 if ( null !== $json_res ) {
1367 - $message = is_array( $json_res ) && isset( $json_res['error'] ) ? $json_res['error'] : $json_res;
817 + if ( is_array( $json_res ) && isset( $json_res['error'] ) ) {
818 + $message = $json_res['error'];
819 + } else {
820 + $message = $json_res;
821 + }
1368 822 } elseif ( ! empty( $resp['response'] ) && ! empty( $resp['response']['code'] ) ) {
1369 823 $resp['body'] = wp_strip_all_tags( $resp['body'] );
1370 824
1371 825 $message = sprintf(
@@ -1379,11 +833,8 @@
1379 833
1380 834 return $message;
1381 835 }
1382 836
1383 - /**
1384 - * @return void
1385 - */
1386 837 public function manually_queue_update() {
1387 838 $updates = new stdClass();
1388 839 $updates->last_checked = 0;
1389 840 $updates->response = array();