ads
3 weeks ago
groups
3 weeks ago
metaboxes
3 weeks ago
pages
3 weeks ago
placements
3 weeks ago
class-action-links.php
3 weeks ago
class-addon-box.php
3 weeks ago
class-addon-updater.php
3 weeks ago
class-admin-menu.php
3 weeks ago
class-admin-notices.php
1 year ago
class-ajax.php
3 weeks ago
class-app.php
1 month ago
class-assets.php
3 weeks ago
class-authors.php
3 weeks ago
class-edd-updater.php
3 weeks ago
class-license-admin-post.php
3 weeks ago
class-list-filters.php
3 weeks ago
class-marketing.php
3 weeks ago
class-metabox-ad-settings.php
1 year ago
class-metabox-ad.php
3 weeks ago
class-misc.php
3 weeks ago
class-page-quick-edit.php
1 month ago
class-plugin-auto-update.php
1 month ago
class-plugin-installer.php
3 weeks ago
class-post-list.php
3 weeks ago
class-post-types.php
3 weeks ago
class-screen-options.php
3 weeks ago
class-settings.php
3 weeks ago
class-shortcode-creator.php
3 weeks ago
class-system-info.php
1 year ago
class-tinymce.php
2 years ago
class-translation-promo.php
3 weeks ago
class-upgrades.php
3 weeks ago
class-version-control.php
3 weeks ago
class-welcome.php
1 year ago
class-wordpress-dashboard.php
1 year ago
index.php
2 years ago
class-addon-updater.php
136 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Admin Addon Updater. |
| 4 | * |
| 5 | * License keys and validity come from {@see \AdvancedAds\License\License}: |
| 6 | * - {@see License::get_addon_key_map()} — rich app-licenses + site activation list |
| 7 | * - {@see License::get_mirror_status_for_options_slug()} — EDD-compatible status |
| 8 | * - {@see License::get_mirror_expires_for_options_slug()} — expiry from rich rows |
| 9 | * |
| 10 | * @package AdvancedAds |
| 11 | * @author Advanced Ads <info@wpadvancedads.com> |
| 12 | * @since 1.50.0 |
| 13 | */ |
| 14 | |
| 15 | namespace AdvancedAds\Admin; |
| 16 | |
| 17 | use AdvancedAds\Constants; |
| 18 | use AdvancedAds\License\License; |
| 19 | use AdvancedAds\License\License_Shop_Client; |
| 20 | use AdvancedAds\License\License_Utils; |
| 21 | use AdvancedAds\Utilities\Data; |
| 22 | use AdvancedAds\Framework\Interfaces\Integration_Interface; |
| 23 | |
| 24 | defined( 'ABSPATH' ) || exit; |
| 25 | |
| 26 | /** |
| 27 | * Admin Addon Updater. |
| 28 | */ |
| 29 | class Addon_Updater implements Integration_Interface { |
| 30 | |
| 31 | /** |
| 32 | * Hook into WordPress. |
| 33 | * |
| 34 | * @return void |
| 35 | */ |
| 36 | public function hooks(): void { |
| 37 | // Local/dev: WordPress blocks .test shop hosts (127.0.0.1) without this filter. |
| 38 | License_Shop_Client::add_local_development_http_filter(); |
| 39 | |
| 40 | if ( ! wp_doing_ajax() ) { |
| 41 | add_action( 'load-plugins.php', [ $this, 'plugin_licenses_warning' ] ); |
| 42 | } |
| 43 | |
| 44 | // Register on every admin request (including AJAX plugin updates). |
| 45 | add_action( 'admin_init', [ $this, 'add_on_updater' ], 1 ); |
| 46 | } |
| 47 | |
| 48 | /** |
| 49 | * Register the EDD updater for each add-on that has a license key on this site. |
| 50 | * |
| 51 | * @return void |
| 52 | */ |
| 53 | public function add_on_updater(): void { |
| 54 | if ( ( is_multisite() && ! is_main_site() ) || ! apply_filters( 'advanced-ads-add-ons-updater', true ) ) { |
| 55 | return; |
| 56 | } |
| 57 | |
| 58 | $addon_keys = License::get_addon_key_map(); |
| 59 | |
| 60 | foreach ( Data::get_addons() as $_add_on ) { |
| 61 | $addon_id = (string) ( $_add_on['id'] ?? '' ); |
| 62 | $options_slug = (string) ( $_add_on['options_slug'] ?? '' ); |
| 63 | $license_key = trim( (string) ( $addon_keys[ $addon_id ] ?? '' ) ); |
| 64 | |
| 65 | if ( '' === $license_key ) { |
| 66 | continue; |
| 67 | } |
| 68 | |
| 69 | new EDD_Updater( |
| 70 | $_add_on['path'], |
| 71 | [ |
| 72 | 'version' => $_add_on['version'], |
| 73 | 'license' => $license_key, |
| 74 | 'item_id' => Constants::ADDON_SLUGS_ID[ $options_slug ] ?? false, |
| 75 | 'author' => 'Advanced Ads', |
| 76 | ] |
| 77 | ); |
| 78 | } |
| 79 | } |
| 80 | |
| 81 | /** |
| 82 | * Show a license warning below add-ons with an invalid license on the plugins list. |
| 83 | * |
| 84 | * @since 1.7.12 |
| 85 | * |
| 86 | * @return void |
| 87 | */ |
| 88 | public function plugin_licenses_warning(): void { |
| 89 | if ( is_multisite() ) { |
| 90 | return; |
| 91 | } |
| 92 | |
| 93 | foreach ( Data::get_addons() as $_add_on ) { |
| 94 | if ( 'slider-ads' === $_add_on['id'] ) { |
| 95 | continue; |
| 96 | } |
| 97 | |
| 98 | if ( 'valid' !== License::get_mirror_status_for_options_slug( (string) $_add_on['options_slug'] ) ) { |
| 99 | $plugin_file = plugin_basename( $_add_on['path'] ); |
| 100 | add_action( 'after_plugin_row_' . $plugin_file, [ $this, 'add_plugin_list_license_notice' ], 10, 2 ); |
| 101 | } |
| 102 | } |
| 103 | } |
| 104 | |
| 105 | /** |
| 106 | * Add a row below add-ons with an invalid license on the plugin list |
| 107 | * |
| 108 | * @param string $plugin_file Path to the plugin file, relative to the plugins directory. |
| 109 | * @param array<string, mixed> $plugin_data An array of plugin data. |
| 110 | * |
| 111 | * @since 1.7.12 |
| 112 | * @todo make this work on multisite as well |
| 113 | * |
| 114 | * @return void |
| 115 | */ |
| 116 | public function add_plugin_list_license_notice( $plugin_file, $plugin_data ): void { |
| 117 | static $cols; |
| 118 | if ( null === $cols ) { |
| 119 | $cols = count( _get_list_table( 'WP_Plugins_List_Table' )->get_columns() ); |
| 120 | } |
| 121 | |
| 122 | printf( |
| 123 | '<tr class="advads-plugin-update-tr plugin-update-tr active"><td class="plugin-update colspanchange" colspan="%d"><div class="update-message notice inline notice-warning notice-alt"><p>%s</p></div></td></tr>', |
| 124 | esc_attr( $cols ), |
| 125 | wp_kses_post( |
| 126 | sprintf( |
| 127 | /* Translators: 1: add-on name 2: admin URL to license page */ |
| 128 | __( 'There might be a new version of %1$s. Please <strong>provide a valid license key</strong> in order to receive updates and support <a href="%2$s">on this page</a>.', 'advanced-ads' ), |
| 129 | $plugin_data['Title'], |
| 130 | License_Utils::admin_screen_url() |
| 131 | ) |
| 132 | ) |
| 133 | ); |
| 134 | } |
| 135 | } |
| 136 |