ads
1 week ago
groups
1 week ago
metaboxes
1 year ago
pages
1 day ago
placements
1 day ago
class-action-links.php
1 week ago
class-addon-box.php
1 day ago
class-addon-updater.php
1 day ago
class-admin-menu.php
1 day ago
class-admin-notices.php
1 year ago
class-ajax.php
1 day ago
class-app.php
1 day ago
class-assets.php
1 day ago
class-authors.php
1 year ago
class-edd-updater.php
1 day ago
class-license-admin-post.php
1 day ago
class-list-filters.php
1 week ago
class-marketing.php
1 year ago
class-metabox-ad-settings.php
1 year ago
class-metabox-ad.php
1 year ago
class-misc.php
1 week ago
class-page-quick-edit.php
1 day ago
class-plugin-auto-update.php
1 day ago
class-plugin-installer.php
1 day ago
class-post-list.php
1 year ago
class-post-types.php
1 week ago
class-screen-options.php
3 months ago
class-settings.php
1 day ago
class-shortcode-creator.php
1 year ago
class-system-info.php
1 year ago
class-tinymce.php
2 years ago
class-translation-promo.php
1 year ago
class-upgrades.php
1 year ago
class-version-control.php
3 months 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_Utils; |
| 20 | use AdvancedAds\Utilities\Data; |
| 21 | use AdvancedAds\Framework\Interfaces\Integration_Interface; |
| 22 | |
| 23 | defined( 'ABSPATH' ) || exit; |
| 24 | |
| 25 | /** |
| 26 | * Admin Addon Updater. |
| 27 | */ |
| 28 | class Addon_Updater implements Integration_Interface { |
| 29 | |
| 30 | /** |
| 31 | * Hook into WordPress. |
| 32 | * |
| 33 | * @return void |
| 34 | */ |
| 35 | public function hooks(): void { |
| 36 | // Local/dev: WordPress blocks .test shop hosts (127.0.0.1) without this filter. |
| 37 | License::register_local_development_shop_http_filters(); |
| 38 | |
| 39 | if ( ! wp_doing_ajax() ) { |
| 40 | add_action( 'load-plugins.php', [ $this, 'plugin_licenses_warning' ] ); |
| 41 | } |
| 42 | |
| 43 | // Register on every admin request (including AJAX plugin updates). |
| 44 | add_action( 'admin_init', [ $this, 'add_on_updater' ], 1 ); |
| 45 | } |
| 46 | |
| 47 | /** |
| 48 | * Register the EDD updater for each add-on that has a license key on this site. |
| 49 | * |
| 50 | * @return void |
| 51 | */ |
| 52 | public function add_on_updater(): void { |
| 53 | if ( ( is_multisite() && ! is_main_site() ) || ! apply_filters( 'advanced-ads-add-ons-updater', true ) ) { |
| 54 | return; |
| 55 | } |
| 56 | |
| 57 | $addon_keys = License::get_addon_key_map(); |
| 58 | |
| 59 | foreach ( Data::get_addons() as $_add_on ) { |
| 60 | $addon_id = (string) ( $_add_on['id'] ?? '' ); |
| 61 | $options_slug = (string) ( $_add_on['options_slug'] ?? '' ); |
| 62 | $license_key = trim( (string) ( $addon_keys[ $addon_id ] ?? '' ) ); |
| 63 | |
| 64 | if ( '' === $license_key ) { |
| 65 | continue; |
| 66 | } |
| 67 | |
| 68 | new EDD_Updater( |
| 69 | Constants::API_ENDPOINT, |
| 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 $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 |