2017-08-02 21:57:17 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Manages WooCommerce plugin updating on the Plugins screen.
|
|
|
|
*
|
2020-08-05 16:36:24 +00:00
|
|
|
* @package WooCommerce\Admin
|
2017-08-02 21:57:17 +00:00
|
|
|
* @version 3.2.0
|
|
|
|
*/
|
|
|
|
|
2020-02-01 06:18:47 +00:00
|
|
|
use Automattic\Jetpack\Constants;
|
|
|
|
|
2017-08-02 21:57:17 +00:00
|
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
|
|
exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( ! class_exists( 'WC_Plugin_Updates' ) ) {
|
2018-03-05 18:59:17 +00:00
|
|
|
include_once dirname( __FILE__ ) . '/class-wc-plugin-updates.php';
|
2017-08-02 21:57:17 +00:00
|
|
|
}
|
|
|
|
|
2018-03-06 13:44:35 +00:00
|
|
|
/**
|
|
|
|
* Class WC_Plugins_Screen_Updates
|
|
|
|
*/
|
2017-08-02 21:57:17 +00:00
|
|
|
class WC_Plugins_Screen_Updates extends WC_Plugin_Updates {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The upgrade notice shown inline.
|
2018-03-05 18:59:17 +00:00
|
|
|
*
|
2017-08-02 21:57:17 +00:00
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
protected $upgrade_notice = '';
|
|
|
|
|
2017-08-03 18:42:19 +00:00
|
|
|
/**
|
|
|
|
* Constructor.
|
|
|
|
*/
|
2017-08-02 21:57:17 +00:00
|
|
|
public function __construct() {
|
|
|
|
add_action( 'in_plugin_update_message-woocommerce/woocommerce.php', array( $this, 'in_plugin_update_message' ), 10, 2 );
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Show plugin changes on the plugins screen. Code adapted from W3 Total Cache.
|
|
|
|
*
|
2018-03-06 13:44:35 +00:00
|
|
|
* @param array $args Unused parameter.
|
|
|
|
* @param stdClass $response Plugin update response.
|
2017-08-02 21:57:17 +00:00
|
|
|
*/
|
|
|
|
public function in_plugin_update_message( $args, $response ) {
|
2021-01-18 21:29:02 +00:00
|
|
|
$version_type = Constants::get_constant( 'WC_SSR_PLUGIN_UPDATE_RELEASE_VERSION_TYPE' );
|
|
|
|
if ( ! is_string( $version_type ) ) {
|
|
|
|
$version_type = 'none';
|
|
|
|
}
|
|
|
|
|
2017-08-02 21:57:17 +00:00
|
|
|
$this->new_version = $response->new_version;
|
|
|
|
$this->upgrade_notice = $this->get_upgrade_notice( $response->new_version );
|
2021-01-18 21:29:02 +00:00
|
|
|
$this->major_untested_plugins = $this->get_untested_plugins( $response->new_version, $version_type );
|
2017-08-02 21:57:17 +00:00
|
|
|
|
2020-02-01 06:18:47 +00:00
|
|
|
$current_version_parts = explode( '.', Constants::get_constant( 'WC_VERSION' ) );
|
2017-08-21 14:53:08 +00:00
|
|
|
$new_version_parts = explode( '.', $this->new_version );
|
|
|
|
|
2017-08-21 15:04:06 +00:00
|
|
|
// If user has already moved to the minor version, we don't need to flag up anything.
|
2017-10-17 04:50:44 +00:00
|
|
|
if ( version_compare( $current_version_parts[0] . '.' . $current_version_parts[1], $new_version_parts[0] . '.' . $new_version_parts[1], '=' ) ) {
|
2017-08-21 15:04:06 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-08-02 21:57:17 +00:00
|
|
|
if ( ! empty( $this->major_untested_plugins ) ) {
|
|
|
|
$this->upgrade_notice .= $this->get_extensions_inline_warning_major();
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( ! empty( $this->major_untested_plugins ) ) {
|
|
|
|
$this->upgrade_notice .= $this->get_extensions_modal_warning();
|
|
|
|
add_action( 'admin_print_footer_scripts', array( $this, 'plugin_screen_modal_js' ) );
|
|
|
|
}
|
|
|
|
|
2018-03-06 13:44:35 +00:00
|
|
|
echo apply_filters( 'woocommerce_in_plugin_update_message', $this->upgrade_notice ? '</p>' . wp_kses_post( $this->upgrade_notice ) . '<p class="dummy">' : '' ); // phpcs:ignore WordPress.XSS.EscapeOutput.OutputNotEscaped
|
2017-08-02 21:57:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the upgrade notice from WordPress.org.
|
|
|
|
*
|
2018-03-06 13:44:35 +00:00
|
|
|
* @param string $version WooCommerce new version.
|
2017-08-02 21:57:17 +00:00
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
protected function get_upgrade_notice( $version ) {
|
|
|
|
$transient_name = 'wc_upgrade_notice_' . $version;
|
2018-03-06 13:44:35 +00:00
|
|
|
$upgrade_notice = get_transient( $transient_name );
|
2017-08-02 21:57:17 +00:00
|
|
|
|
2018-03-06 13:44:35 +00:00
|
|
|
if ( false === $upgrade_notice ) {
|
2017-08-02 21:57:17 +00:00
|
|
|
$response = wp_safe_remote_get( 'https://plugins.svn.wordpress.org/woocommerce/trunk/readme.txt' );
|
|
|
|
|
|
|
|
if ( ! is_wp_error( $response ) && ! empty( $response['body'] ) ) {
|
|
|
|
$upgrade_notice = $this->parse_update_notice( $response['body'], $version );
|
|
|
|
set_transient( $transient_name, $upgrade_notice, DAY_IN_SECONDS );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return $upgrade_notice;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Parse update notice from readme file.
|
|
|
|
*
|
2018-03-06 13:44:35 +00:00
|
|
|
* @param string $content WooCommerce readme file content.
|
|
|
|
* @param string $new_version WooCommerce new version.
|
2017-08-02 21:57:17 +00:00
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
private function parse_update_notice( $content, $new_version ) {
|
|
|
|
$version_parts = explode( '.', $new_version );
|
|
|
|
$check_for_notices = array(
|
2018-03-06 13:44:35 +00:00
|
|
|
$version_parts[0] . '.0', // Major.
|
|
|
|
$version_parts[0] . '.0.0', // Major.
|
|
|
|
$version_parts[0] . '.' . $version_parts[1], // Minor.
|
|
|
|
$version_parts[0] . '.' . $version_parts[1] . '.' . $version_parts[2], // Patch.
|
2017-08-02 21:57:17 +00:00
|
|
|
);
|
2017-09-21 21:06:44 +00:00
|
|
|
$notice_regexp = '~==\s*Upgrade Notice\s*==\s*=\s*(.*)\s*=(.*)(=\s*' . preg_quote( $new_version ) . '\s*=|$)~Uis';
|
|
|
|
$upgrade_notice = '';
|
2017-08-02 21:57:17 +00:00
|
|
|
|
|
|
|
foreach ( $check_for_notices as $check_version ) {
|
2020-02-01 06:18:47 +00:00
|
|
|
if ( version_compare( Constants::get_constant( 'WC_VERSION' ), $check_version, '>' ) ) {
|
2017-08-02 21:57:17 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2017-09-21 21:06:44 +00:00
|
|
|
$matches = null;
|
|
|
|
if ( preg_match( $notice_regexp, $content, $matches ) ) {
|
2017-08-02 21:57:17 +00:00
|
|
|
$notices = (array) preg_split( '~[\r\n]+~', trim( $matches[2] ) );
|
|
|
|
|
|
|
|
if ( version_compare( trim( $matches[1] ), $check_version, '=' ) ) {
|
|
|
|
$upgrade_notice .= '<p class="wc_plugin_upgrade_notice">';
|
|
|
|
|
|
|
|
foreach ( $notices as $index => $line ) {
|
|
|
|
$upgrade_notice .= preg_replace( '~\[([^\]]*)\]\(([^\)]*)\)~', '<a href="${2}">${1}</a>', $line );
|
|
|
|
}
|
|
|
|
|
|
|
|
$upgrade_notice .= '</p>';
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return wp_kses_post( $upgrade_notice );
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* JS for the modal window on the plugins screen.
|
|
|
|
*/
|
|
|
|
public function plugin_screen_modal_js() {
|
|
|
|
?>
|
|
|
|
<script>
|
|
|
|
( function( $ ) {
|
|
|
|
var $update_box = $( '#woocommerce-update' );
|
|
|
|
var $update_link = $update_box.find('a.update-link').first();
|
|
|
|
var update_url = $update_link.attr( 'href' );
|
|
|
|
|
|
|
|
// Set up thickbox.
|
|
|
|
$update_link.removeClass( 'update-link' );
|
|
|
|
$update_link.addClass( 'wc-thickbox' );
|
|
|
|
$update_link.attr( 'href', '#TB_inline?height=600&width=550&inlineId=wc_untested_extensions_modal' );
|
|
|
|
|
|
|
|
// Trigger the update if the user accepts the modal's warning.
|
|
|
|
$( '#wc_untested_extensions_modal .accept' ).on( 'click', function( evt ) {
|
|
|
|
evt.preventDefault();
|
|
|
|
tb_remove();
|
|
|
|
$update_link.removeClass( 'wc-thickbox open-plugin-details-modal' );
|
|
|
|
$update_link.addClass( 'update-link' );
|
|
|
|
$update_link.attr( 'href', update_url );
|
2021-02-04 20:31:28 +00:00
|
|
|
$update_link.trigger( 'click' );
|
2017-08-02 21:57:17 +00:00
|
|
|
});
|
|
|
|
|
2017-08-08 16:12:50 +00:00
|
|
|
$( '#wc_untested_extensions_modal .cancel' ).on( 'click', function( evt ) {
|
2017-08-02 21:57:17 +00:00
|
|
|
evt.preventDefault();
|
|
|
|
tb_remove();
|
|
|
|
});
|
|
|
|
})( jQuery );
|
|
|
|
</script>
|
|
|
|
<?php
|
|
|
|
$this->generic_modal_js();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
new WC_Plugins_Screen_Updates();
|