summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/jetpack/class.jetpack-jitm.php')
-rw-r--r--plugins/jetpack/class.jetpack-jitm.php649
1 files changed, 217 insertions, 432 deletions
diff --git a/plugins/jetpack/class.jetpack-jitm.php b/plugins/jetpack/class.jetpack-jitm.php
index 68afe77f..282f6630 100644
--- a/plugins/jetpack/class.jetpack-jitm.php
+++ b/plugins/jetpack/class.jetpack-jitm.php
@@ -13,19 +13,10 @@ class Jetpack_JITM {
private static $instance = null;
/**
- * Get user dismissed messages.
+ * Initializes the class, or returns the singleton
*
- * @var array
+ * @return Jetpack_JITM
*/
- private static $jetpack_hide_jitm = null;
-
- /**
- * Whether plugin auto updates are allowed in this WordPress installation or not.
- *
- * @var bool
- */
- private static $auto_updates_allowed = false;
-
static function init() {
if ( is_null( self::$instance ) ) {
self::$instance = new Jetpack_JITM;
@@ -34,13 +25,21 @@ class Jetpack_JITM {
return self::$instance;
}
+ /**
+ * Jetpack_JITM constructor.
+ */
private function __construct() {
- if ( ! Jetpack::is_active() || self::is_jitm_dismissed() ) {
+ if ( ! Jetpack::is_active() ) {
return;
}
add_action( 'current_screen', array( $this, 'prepare_jitms' ) );
}
+ /**
+ * Get's the Jetpack emblem
+ *
+ * @return string The Jetpack emblem
+ */
function get_emblem()
{
return '<div class="jp-emblem">' . Jetpack::get_jp_emblem() . '</div>';
@@ -56,490 +55,276 @@ class Jetpack_JITM {
* @param object $screen
*/
function prepare_jitms( $screen ) {
- if ( ! current_user_can( 'jetpack_manage_modules' ) ) {
- return;
- }
-
- if ( 'edit-comments' == $screen->base && ! Jetpack::is_plugin_active( 'akismet/akismet.php' ) ) {
- add_action( 'admin_enqueue_scripts', array( $this, 'jitm_enqueue_files' ) );
- add_action( 'admin_notices', array( $this, 'akismet_msg' ) );
- }
- elseif (
- 'post' == $screen->base
- && ( isset( $_GET['message'] ) && 6 == $_GET['message'] )
- && ! Jetpack::is_plugin_active( 'vaultpress/vaultpress.php' )
- ) {
- add_action( 'admin_enqueue_scripts', array( $this, 'jitm_enqueue_files' ) );
- add_action( 'edit_form_top', array( $this, 'backups_after_publish_msg' ) );
- }
- elseif ( 'update-core' == $screen->base && ! Jetpack::is_plugin_active( 'vaultpress/vaultpress.php' ) ) {
+ if ( ! in_array( $screen->id, array( 'toplevel_page_jetpack', 'jetpack_page_stats', 'jetpack_page_akismet-key-config', 'admin_page_jetpack_modules' ) ) ) {
add_action( 'admin_enqueue_scripts', array( $this, 'jitm_enqueue_files' ) );
- add_action( 'admin_notices', array( $this, 'backups_updates_msg' ) );
+ add_action( 'admin_notices', array( $this, 'ajax_message' ) );
+ add_action( 'edit_form_top', array( $this, 'ajax_message' ) );
}
- elseif ( ! Jetpack::is_plugin_active( 'woocommerce-services/woocommerce-services.php' ) ) {
- $pages_to_display = array(
- 'woocommerce_page_wc-settings', // WooCommerce > Settings
- 'edit-shop_order', // WooCommerce > Orders
- 'shop_order', // WooCommerce > Edit Order
- );
-
- if ( in_array( $screen->id, $pages_to_display ) ) {
- add_action( 'admin_enqueue_scripts', array( $this, 'jitm_enqueue_files' ) );
- add_action( 'admin_notices', array( $this, 'woocommerce_services_msg' ) );
- }
- }
- }
-
- /*
- * Present Manage just in time activation msg on update-core.php
- *
- */
- function manage_msg() {
- $normalized_site_url = Jetpack::build_raw_urls( get_home_url() );
- ?>
- <div class="jp-jitm">
- <a href="#" data-module="manage" class="dismiss"><span class="genericon genericon-close"></span></a>
-
- <?php echo self::get_emblem(); ?>
-
- <p class="msg">
- <?php esc_html_e( 'Reduce security risks with automated plugin updates.', 'jetpack' ); ?>
- </p>
-
- <p>
- <img class="j-spinner hide" src="<?php echo esc_url( includes_url( 'images/spinner-2x.gif' ) ); ?>" alt="<?php echo esc_attr__( 'Loading...', 'jetpack' ); ?>" /><a href="#" data-module="manage" class="activate button <?php if ( Jetpack::is_module_active( 'manage' ) ) {
- echo 'hide';
- } ?>"><?php esc_html_e( 'Activate Now', 'jetpack' ); ?></a><a href="<?php echo esc_url( 'https://wordpress.com/plugins/' . $normalized_site_url ); ?>" target="_blank" title="<?php esc_attr_e( 'Go to WordPress.com to try these features', 'jetpack' ); ?>" id="jetpack-wordpressdotcom" class="button button-jetpack <?php if ( ! Jetpack::is_module_active( 'manage' ) ) {
- echo 'hide';
- } ?>"><?php esc_html_e( 'Go to WordPress.com', 'jetpack' ); ?></a>
- </p>
- </div>
- <?php
- //jitm is being viewed, track it
- $jetpack = Jetpack::init();
- $jetpack->stat( 'jitm', 'manage-viewed-' . JETPACK__VERSION );
- $jetpack->do_stats( 'server_side' );
- }
-
- /*
- * Present Photon just in time activation msg
- *
- */
- function photon_msg() {
- ?>
- <div class="jp-jitm">
- <a href="#" data-module="photon" class="dismiss"><span class="genericon genericon-close"></span></a>
-
- <?php echo self::get_emblem(); ?>
-
- <p class="msg">
- <?php esc_html_e( 'Speed up your photos and save bandwidth costs by using a free content delivery network.', 'jetpack' ); ?>
- </p>
-
- <p>
- <img class="j-spinner hide" style="margin-top: 13px;" width="17" height="17" src="<?php echo esc_url( includes_url( 'images/spinner-2x.gif' ) ); ?>" alt="<?php echo esc_attr__( 'Loading...', 'jetpack' ); ?>" /><a href="#" data-module="photon" class="activate button button-jetpack"><?php esc_html_e( 'Activate Photon', 'jetpack' ); ?></a>
- </p>
- </div>
- <?php
- //jitm is being viewed, track it
- $jetpack = Jetpack::init();
- $jetpack->stat( 'jitm', 'photon-viewed-' . JETPACK__VERSION );
- $jetpack->do_stats( 'server_side' );
}
/**
- * Display Photon JITM template in Media Library after user uploads an image.
+ * A special filter for WooCommerce, to set a message based on local state.
*
- * @since 3.9.0
- */
- function photon_tmpl() {
- ?>
- <script id="tmpl-jitm-photon" type="text/html">
- <div class="jp-jitm" data-track="photon-modal">
- <a href="#" data-module="photon" class="dismiss"><span class="genericon genericon-close"></span></a>
-
- <?php echo self::get_emblem(); ?>
-
- <p class="msg">
- <?php esc_html_e( 'Let Jetpack deliver your images optimized and faster than ever.', 'jetpack' ); ?>
- </p>
-
- <p>
- <img class="j-spinner hide" style="margin-top: 13px;" width="17" height="17" src="<?php echo esc_url( includes_url( 'images/spinner-2x.gif' ) ); ?>" alt="<?php echo esc_attr__( 'Loading...', 'jetpack' ); ?>" /><a href="#" data-module="photon" class="activate button button-jetpack"><?php esc_html_e( 'Activate Photon', 'jetpack' ); ?></a>
- </p>
- </div>
- </script>
- <?php
- }
-
- /**
- * Display message prompting user to enable auto-updates in WordPress.com.
+ * @param $message string The current message
*
- * @since 3.8.2
+ * @return array The new message
*/
- function manage_pi_msg() {
- $normalized_site_url = Jetpack::build_raw_urls( get_home_url() );
- $manage_active = Jetpack::is_module_active( 'manage' );
-
- // Check if plugin has auto update already enabled in WordPress.com and don't show JITM in such case.
- $active_before = get_option( 'jetpack_temp_active_plugins_before', array() );
- delete_option( 'jetpack_temp_active_plugins_before' );
- $active_now = get_option( 'active_plugins', array() );
- $activated = array_diff( $active_now, $active_before );
- $auto_update_plugin_list = Jetpack_Options::get_option( 'autoupdate_plugins', array() );
- $plugin_auto_update_disabled = false;
- foreach ( $activated as $plugin ) {
- if ( ! in_array( $plugin, $auto_update_plugin_list ) ) {
-
- // Plugin doesn't have auto updates enabled in WordPress.com yet.
- $plugin_auto_update_disabled = true;
-
- // We don't need to continue checking, it's ok to show JITM for this plugin.
- break;
- }
+ static function jitm_woocommerce_services_msg( $content ) {
+ if ( ! function_exists( 'wc_get_base_location' ) ) {
+ return $content;
}
- // Check if the activated plugin is in the WordPress.org repository
- $plugin_can_auto_update = false;
- $plugin_updates = get_site_transient( 'update_plugins' );
- if ( false === $plugin_updates ) {
-
- // If update_plugins doesn't exist, display message anyway
- $plugin_can_auto_update = true;
- } else {
- $plugin_updates = array_merge( $plugin_updates->response, $plugin_updates->no_update );
- foreach ( $activated as $plugin ) {
- if ( isset( $plugin_updates[ $plugin ] ) ) {
-
- // There's at least one plugin set cleared for auto updates
- $plugin_can_auto_update = true;
+ $base_location = wc_get_base_location();
- // We don't need to continue checking, it's ok to show JITM for this round.
- break;
- }
- }
+ switch ( $base_location['country'] ) {
+ case 'US':
+ $content->message = esc_html__( 'New free service: Show USPS shipping rates on your store! Added bonus: print shipping labels without leaving WooCommerce.', 'jetpack' );
+ break;
+ case 'CA':
+ $content->message = esc_html__( 'New free service: Show Canada Post shipping rates on your store!', 'jetpack' );
+ break;
+ default:
+ $content->message = '';
}
- if ( ! $manage_active && $plugin_auto_update_disabled && $plugin_can_auto_update && self::$auto_updates_allowed ) :
- ?>
- <div class="jp-jitm">
- <a href="#" data-module="manage-pi" class="dismiss"><span class="genericon genericon-close"></span></a>
-
- <?php echo self::get_emblem(); ?>
-
- <?php if ( ! $manage_active ) : ?>
- <p class="msg">
- <?php esc_html_e( 'Save time with automated plugin updates.', 'jetpack' ); ?>
- </p>
- <p>
- <img class="j-spinner hide" src="<?php echo esc_url( includes_url( 'images/spinner-2x.gif' ) ); ?>" alt="<?php echo esc_attr__( 'Loading...', 'jetpack' ); ?>" /><a href="#" data-module="manage" data-module-success="<?php esc_attr_e( 'Success!', 'jetpack' ); ?>" class="activate button"><?php esc_html_e( 'Activate remote management', 'jetpack' ); ?></a>
- </p>
- <?php elseif ( $manage_active ) : ?>
- <p>
- <?php esc_html_e( 'Save time with auto updates on WordPress.com', 'jetpack' ); ?>
- </p>
- <?php endif; // manage inactive
- ?>
- <p class="show-after-enable <?php echo $manage_active ? '' : 'hide'; ?>">
- <a href="<?php echo esc_url( 'https://wordpress.com/plugins/' . $normalized_site_url ); ?>" target="_blank" title="<?php esc_attr_e( 'Go to WordPress.com to enable auto-updates for plugins', 'jetpack' ); ?>" data-module="manage-pi" class="button button-jetpack launch show-after-enable"><?php if ( ! $manage_active ) : ?><?php esc_html_e( 'Enable auto-updates on WordPress.com', 'jetpack' ); ?><?php elseif ( $manage_active ) : ?><?php esc_html_e( 'Enable auto-updates', 'jetpack' ); ?><?php endif; // manage inactive ?></a>
- </p>
- </div>
- <?php
- //jitm is being viewed, track it
- $jetpack = Jetpack::init();
- $jetpack->stat( 'jitm', 'manage-pi-viewed-' . JETPACK__VERSION );
- $jetpack->do_stats( 'server_side' );
- endif; // manage inactive
+ return $content;
}
/**
- * Display message in editor prompting user to compose entry in WordPress.com.
+ * A special filter for WooCommerce Call To Action button
*
- * @since 3.8.2
+ * @param $CTA string The existing CTA
+ *
+ * @return string The new CTA
*/
- function editor_msg() {
- global $typenow;
- if ( current_user_can( 'manage_options' ) ) {
- $normalized_site_url = Jetpack::build_raw_urls( get_home_url() );
- $editor_dismissed = isset( self::$jetpack_hide_jitm['editor'] );
- if ( ! $editor_dismissed ) :
- ?>
- <div class="jp-jitm">
- <a href="#" data-module="editor" class="dismiss"><span class="genericon genericon-close"></span></a>
- <?php echo self::get_emblem(); ?>
- <p class="msg">
- <?php esc_html_e( 'Try the brand new editor.', 'jetpack' ); ?>
- </p>
- <p>
- <a href="<?php echo esc_url( 'https://wordpress.com/' . $typenow . '/' . $normalized_site_url ); ?>" target="_blank" title="<?php esc_attr_e( 'Write on WordPress.com', 'jetpack' ); ?>" data-module="editor" class="button button-jetpack launch show-after-enable"><?php esc_html_e( 'Write on WordPress.com', 'jetpack' ); ?></a>
- </p>
- </div>
- <?php
- //jitm is being viewed, track it
- $jetpack = Jetpack::init();
- $jetpack->stat( 'jitm', 'editor-viewed-' . JETPACK__VERSION );
- $jetpack->do_stats( 'server_side' );
- endif; // manage or editor inactive
- }
+ static function jitm_jetpack_woo_services_install( $CTA ) {
+ return wp_nonce_url( add_query_arg( array(
+ 'wc-services-action' => 'install'
+ ), admin_url( 'admin.php?page=wc-settings' ) ), 'wc-services-install' );
}
/**
- * Display message in editor prompting user to enable stats.
+ * A special filter for WooCommerce Call To Action button
*
- * @since 3.9.0
+ * @param $CTA string The existing CTA
+ *
+ * @return string The new CTA
*/
- function stats_msg() {
- $stats_active = Jetpack::is_module_active( 'stats' );
- $normalized_site_url = Jetpack::build_raw_urls( get_home_url() );
- ?>
- <div class="jp-jitm">
- <a href="#" data-module="stats" class="dismiss"><span class="genericon genericon-close"></span></a>
- <?php echo self::get_emblem(); ?>
- <p class="msg">
- <?php esc_html_e( 'Track detailed stats on this post and the rest of your site.', 'jetpack' ); ?>
- </p>
- <?php if ( ! $stats_active ) : ?>
- <p>
- <img class="j-spinner hide" src="<?php echo esc_url( includes_url( 'images/spinner-2x.gif' ) ); ?>" alt="<?php echo esc_attr__( 'Loading...', 'jetpack' ); ?>" /><a href="#" data-module="stats" data-module-success="<?php esc_attr_e( 'Success! Jetpack Stats is now activated.', 'jetpack' ); ?>" class="activate button"><?php esc_html_e( 'Enable Jetpack Stats', 'jetpack' ); ?></a>
- </p>
- <?php endif; // stats inactive
- ?>
- <p class="show-after-enable <?php echo $stats_active ? '' : 'hide'; ?>">
- <a href="<?php echo esc_url( 'https://wordpress.com/stats/insights/' . $normalized_site_url ); ?>" target="_blank" title="<?php esc_attr_e( 'Go to WordPress.com', 'jetpack' ); ?>" data-module="stats" class="button button-jetpack launch show-after-enable"><?php esc_html_e( 'Go to WordPress.com', 'jetpack' ); ?></a>
- </p>
- </div>
- <?php
- //jitm is being viewed, track it
- $jetpack = Jetpack::init();
- $jetpack->stat( 'jitm', 'post-stats-viewed-' . JETPACK__VERSION );
- $jetpack->do_stats( 'server_side' );
+ static function jitm_jetpack_woo_services_activate( $CTA ) {
+ return wp_nonce_url( add_query_arg( array(
+ 'wc-services-action' => 'activate'
+ ), admin_url( 'admin.php?page=wc-settings' ) ), 'wc-services-install' );
}
/**
- * Display JITM in Updates screen prompting user to enable Backups.
- *
- * @since 3.9.5
+ * Injects the dom to show a JITM inside of
*/
- function backups_updates_msg() {
- $normalized_site_url = Jetpack::build_raw_urls( get_home_url() );
- $url = 'https://jetpack.com/redirect/?source=jitm-backup-updates&site=' . $normalized_site_url;
- $jitm_stats_url = Jetpack::build_stats_url( array( 'x_jetpack-jitm' => 'vaultpress' ) );
+ function ajax_message() {
+ $message_path = $this->get_message_path();
+ $query_string = _http_build_query( $_GET, '', ',' );
+
?>
- <div class="jp-jitm" data-track="vaultpress-updates" data-stats_url="<?php echo esc_url( $jitm_stats_url ); ?>">
- <a href="#" data-module="vaultpress" class="dismiss"><span class="genericon genericon-close"></span></a>
- <?php echo self::get_emblem(); ?>
- <p class="msg">
- <?php esc_html_e( 'Backups are recommended to protect your site before you make any changes.', 'jetpack' ); ?>
- </p>
- <p>
- <a href="<?php echo esc_url( $url ); ?>" target="_blank" title="<?php esc_attr_e( 'Enable VaultPress Backups', 'jetpack' ); ?>" data-module="vaultpress" data-jptracks-name="nudge_click" data-jptracks-prop="jitm-vault" class="button button-jetpack launch jptracks"><?php esc_html_e( 'Enable VaultPress Backups', 'jetpack' ); ?></a>
- </p>
- </div>
+ <div class="jetpack-jitm-message"
+ data-nonce="<?php echo wp_create_nonce( 'wp_rest' ) ?>"
+ data-message-path="<?php echo esc_attr( $message_path ) ?>"
+ data-query="<?php echo urlencode_deep( $query_string ) ?>"
+ ></div>
<?php
- //jitm is being viewed, track it
- $jetpack = Jetpack::init();
- $jetpack->stat( 'jitm', 'vaultpress-updates-viewed-' . JETPACK__VERSION );
- $jetpack->do_stats( 'server_side' );
}
/**
- * Display JITM in Comments screen prompting user to enable Akismet.
+ * Get's the current message path for display of a JITM
*
- * @since 3.9.5
+ * @return string The message path
*/
- function akismet_msg() {
- $normalized_site_url = Jetpack::build_raw_urls( get_home_url() );
- $url = 'https://jetpack.com/redirect/?source=jitm-akismet&site=' . $normalized_site_url;
- $jitm_stats_url = Jetpack::build_stats_url( array( 'x_jetpack-jitm' => 'akismet' ) );
- ?>
- <div class="jp-jitm" data-stats_url="<?php echo esc_url( $jitm_stats_url ); ?>">
- <a href="#" data-module="akismet" class="dismiss"><span class="genericon genericon-close"></span></a>
- <?php echo self::get_emblem(); ?>
- <p class="msg">
- <?php esc_html_e( "Spam affects your site's legitimacy, protect your site with Akismet.", 'jetpack' ); ?>
- </p>
- <p>
- <a href="<?php echo esc_url( $url ); ?>" target="_blank" title="<?php esc_attr_e( 'Automate Spam Blocking', 'jetpack' ); ?>" data-module="akismet" data-jptracks-name="nudge_click" data-jptracks-prop="jitm-akismet" class="button button-jetpack launch jptracks"><?php esc_html_e( 'Automate Spam Blocking', 'jetpack' ); ?></a>
- </p>
- </div>
- <?php
- //jitm is being viewed, track it
- $jetpack = Jetpack::init();
- $jetpack->stat( 'jitm', 'akismet-viewed-' . JETPACK__VERSION );
- $jetpack->do_stats( 'server_side' );
+ function get_message_path() {
+ $screen = get_current_screen();
+
+ return 'wp:' . $screen->id . ':' . current_filter();
}
/**
- * Display JITM after a post is published prompting user to enable Backups.
- *
- * @since 3.9.5
- */
- function backups_after_publish_msg() {
- $normalized_site_url = Jetpack::build_raw_urls( get_home_url() );
- $url = 'https://jetpack.com/redirect/?source=jitm-backup-publish&site=' . $normalized_site_url;
- $jitm_stats_url = Jetpack::build_stats_url( array( 'x_jetpack-jitm' => 'vaultpress' ) );
- ?>
- <div class="jp-jitm" data-track="vaultpress-publish" data-stats_url="<?php echo esc_url( $jitm_stats_url ); ?>">
- <a href="#" data-module="vaultpress" class="dismiss"><span class="genericon genericon-close"></span></a>
-
- <?php echo self::get_emblem(); ?>
-
- <p class="msg">
- <?php esc_html_e( "Great job! Now let's make sure your hard work is never lost, backup everything with VaultPress.", 'jetpack' ); ?>
- </p>
- <p>
- <a href="<?php echo esc_url( $url ); ?>" target="_blank" title="<?php esc_attr_e( 'Enable Backups', 'jetpack' ); ?>" data-module="vaultpress" data-jptracks-name="nudge_click" data-jptracks-prop="jitm-vault-post" class="button button-jetpack launch jptracks"><?php esc_html_e( 'Enable Backups', 'jetpack' ); ?></a>
- </p>
- </div>
- <?php
- //jitm is being viewed, track it
- $jetpack = Jetpack::init();
- $jetpack->stat( 'jitm', 'vaultpress-publish-viewed-' . JETPACK__VERSION );
- $jetpack->do_stats( 'server_side' );
+ * Function to enqueue jitm css and js
+ */
+ function jitm_enqueue_files() {
+ $min = ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) ? '' : '.min';
+ wp_register_style(
+ 'jetpack-jitm-css',
+ plugins_url( "css/jetpack-admin-jitm{$min}.css", JETPACK__PLUGIN_FILE ),
+ false,
+ JETPACK__VERSION .
+ '-201243242'
+ );
+ wp_style_add_data( 'jetpack-jitm-css', 'rtl', 'replace' );
+ wp_style_add_data( 'jetpack-jitm-css', 'suffix', $min );
+ wp_enqueue_style( 'jetpack-jitm-css' );
+
+ wp_enqueue_script( 'jetpack-jitm-new', plugins_url( '_inc/jetpack-jitm.js', JETPACK__PLUGIN_FILE ), array( 'jquery' ), JETPACK__VERSION, true );
+ wp_localize_script('jetpack-jitm-new', 'jitm_config', array(
+ 'api_root' => esc_url_raw( rest_url() ),
+ ) );
}
/**
- * Display a JITM style message for the media-new page.
+ * Dismisses a JITM feature class so that it will no longer be shown
+ *
+ * @param $id string The id of the JITM that was dismissed
+ * @param $feature_class string The feature class of the JITM that was dismissed
*
- * @since 4.5
+ * @return bool Always true
*/
- function videopress_media_upload_warning_msg() {
- $jitm_stats_url = Jetpack::build_stats_url( array( 'x_jetpack-jitm' => 'videopress' ) );
+ function dismiss( $id, $feature_class ) {
+ // todo: track dismissal of id and feature class?
+ $hide_jitm = Jetpack_Options::get_option( 'hide_jitm' );
+ if ( ! is_array( $hide_jitm ) ) {
+ $hide_jitm = array();
+ }
+
+ if ( isset( $hide_jitm[ $feature_class ] ) ) {
+ if ( ! is_array( $hide_jitm[ $feature_class ] ) ) {
+ $hide_jitm[ $feature_class ] = array( 'last_dismissal' => 0, 'number' => 0 );
+ }
+ } else {
+ $hide_jitm[ $feature_class ] = array( 'last_dismissal' => 0, 'number' => 0 );
+ }
- $upload_url = add_query_arg( 'mode', 'grid', admin_url( 'upload.php' ) );
- $new_post_url = admin_url( 'post-new.php' );
+ $number = $hide_jitm[ $feature_class ]['number'];
- $msg = sprintf( __( 'Only videos uploaded from within the <a href="%s">media library</a> or while creating a <a href="%s">new post</a> will be fully hosted by WordPress.com.', 'jetpack' ), esc_url( $upload_url ), esc_url( $new_post_url ) );
- ?>
- <div class="jp-jitm" data-track="videopress-upload-warning" data-stats_url="<?php echo esc_url( $jitm_stats_url ); ?>">
- <!-- <a href="#" data-module="videopress" class="dismiss"><span class="genericon genericon-close"></span></a>-->
-
- <?php echo self::get_emblem(); ?>
-
- <p class="msg">
- <?php echo $msg; ?>
- </p>
- <p>
- <a href="<?php echo esc_url( $upload_url ); ?>" title="<?php esc_attr_e( 'Upload a Video', 'jetpack' ); ?>" data-module="videopress" data-jptracks-name="nudge_click" data-jptracks-prop="jitm-videopress-upload" class="button button-jetpack launch jptracks"><?php esc_html_e( 'Upload a Video Now', 'jetpack' ); ?></a>
- </p>
- </div>
- <?php
+ $hide_jitm[ $feature_class ] = array( 'last_dismissal' => time(), 'number' => $number + 1 );
+
+ Jetpack_Options::update_option( 'hide_jitm', $hide_jitm );
+
+ return true;
}
/**
- * Display message prompting user to install WooCommerce Services.
+ * Asks the wpcom API for the current message to display keyed on query string and message path
*
- * @since 4.6
+ * @param $message_path string The message path to ask for
+ * @param $query string The query string originally from the front end
+ *
+ * @return array The JITM's to show, or an empty array if there is nothing to show
*/
- function woocommerce_services_msg() {
- if ( ! current_user_can( 'manage_woocommerce' ) || ! current_user_can( 'install_plugins' ) ) {
- return;
+ static function get_messages( $message_path, $query ) {
+ // custom filters go here
+ add_filter( 'jitm_woocommerce_services_msg', array( 'Jetpack_JITM', 'jitm_woocommerce_services_msg' ) );
+ add_filter( 'jitm_jetpack_woo_services_install', array( 'Jetpack_JITM', 'jitm_jetpack_woo_services_install' ) );
+ add_filter( 'jitm_jetpack_woo_services_activate', array(
+ 'Jetpack_JITM',
+ 'jitm_jetpack_woo_services_activate'
+ ) );
+
+ $user = wp_get_current_user();
+
+ // unauthenticated or invalid requests just bail
+ if ( ! $user ) {
+ return array();
}
- if ( isset( self::$jetpack_hide_jitm['woocommerce_services'] ) ) {
- return;
- }
+ require_once( JETPACK__PLUGIN_DIR . 'class.jetpack-client.php' );
+
+ $site_id = Jetpack_Options::get_option( 'id' );
+
+ // build our jitm request
+ $path = add_query_arg( array(
+ 'external_user_id' => urlencode_deep( $user->ID ),
+ 'user_roles' => urlencode_deep( implode( ',', $user->roles ) ),
+ 'query_string' => urlencode_deep( $query ),
+ ), sprintf( '/sites/%d/jitm/%s', $site_id, $message_path ) );
+
+ // attempt to get from cache
+ $envelopes = get_transient( 'jetpack_jitm_' . substr( md5( $path ), 0, 31 ) );
+
+ // if something is in the cache and it was put in the cache after the last sync we care about, use it
+ $last_sync = (int) get_transient( 'jetpack_last_plugin_sync' );
+ $from_cache = $envelopes && $last_sync > 0 && $last_sync < $envelopes['last_response_time'];
+
+ // otherwise, ask again
+ if ( ! $from_cache ) {
+ $wpcom_response = Jetpack_Client::wpcom_json_api_request_as_blog(
+ $path,
+ '2',
+ array(
+ 'user_id' => $user->ID,
+ 'user_roles' => implode( ',', $user->roles ),
+ )
+ );
+
+ // silently fail...might be helpful to track it?
+ if ( is_wp_error( $wpcom_response ) ) {
+ return array();
+ }
- if ( ! function_exists( 'wc_get_base_location' ) ) {
- return;
- }
+ $envelopes = json_decode( $wpcom_response['body'] );
- $base_location = wc_get_base_location();
+ if ( ! is_array( $envelopes ) ) {
+ return array();
+ }
- switch ( $base_location['country'] ) {
- case 'US':
- $message = __( 'New free service: Show USPS shipping rates on your store! Added bonus: print shipping labels without leaving WooCommerce.', 'jetpack' );
- break;
- case 'CA':
- $message = __( 'New free service: Show Canada Post shipping rates on your store!', 'jetpack' );
- break;
- default:
- return;
+ $expiration = isset( $envelopes[0] ) ? $envelopes[0]->ttl : 300;
+ $envelopes['last_response_time'] = time();
+
+ set_transient( 'jetpack_jitm_' . substr( md5( $path ), 0, 31 ), $envelopes, $expiration );
}
- // If plugin dir exists, means it's installed but not activated
- $already_installed = ( 0 === validate_plugin( 'woocommerce-services/woocommerce-services.php' ) );
+ $hidden_jitms = Jetpack_Options::get_option( 'hide_jitm' );
+ unset( $envelopes['last_response_time'] );
- $install_url = wp_nonce_url( add_query_arg( array( 'wc-services-action' => $already_installed ? 'activate' : 'install' ) ), 'wc-services-install' );
+ foreach ( $envelopes as $idx => &$envelope ) {
- ?>
- <div class="jp-jitm woo-jitm">
- <a href="#" data-module="wooservices" class="dismiss"><span class="genericon genericon-close"></span></a>
- <div class="jp-emblem">
- <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" id="Layer_1" x="0" y="0" viewBox="0 0 24 24" enable-background="new 0 0 24 24" xml:space="preserve">
- <path d="M18,8h-2V7c0-1.105-0.895-2-2-2H4C2.895,5,2,5.895,2,7v10h2c0,1.657,1.343,3,3,3s3-1.343,3-3h4c0,1.657,1.343,3,3,3s3-1.343,3-3h2v-5L18,8z M7,18.5c-0.828,0-1.5-0.672-1.5-1.5s0.672-1.5,1.5-1.5s1.5,0.672,1.5,1.5S7.828,18.5,7,18.5z M4,14V7h10v7H4z M17,18.5c-0.828,0-1.5-0.672-1.5-1.5s0.672-1.5,1.5-1.5s1.5,0.672,1.5,1.5S17.828,18.5,17,18.5z" />
- </svg>
- </div>
- <p class="msg">
- <?php echo esc_html( $message ); ?>
- </p>
- <p>
- <a href="<?php echo esc_url( $install_url ); ?>" title="<?php $already_installed ? esc_attr_e( 'Activate WooCommerce Services', 'jetpack' ) : esc_attr_e( 'Install WooCommerce Services', 'jetpack' ); ?>" data-module="wooservices" class="button button-jetpack show-after-enable">
- <?php $already_installed ? esc_html_e( 'Activate WooCommerce Services', 'jetpack' ) : esc_html_e( 'Install WooCommerce Services', 'jetpack' ); ?>
- </a>
- </p>
- </div>
- <?php
- //jitm is being viewed, track it
- $jetpack = Jetpack::init();
- $jetpack->stat( 'jitm', 'wooservices-viewed-' . JETPACK__VERSION );
- }
+ $dismissed_feature = isset( $hidden_jitms[ $envelope->feature_class ] ) && is_array( $hidden_jitms[ $envelope->feature_class ] ) ? $hidden_jitms[ $envelope->feature_class ] : null;
- /*
- * Function to enqueue jitm css and js
- */
- function jitm_enqueue_files( $hook ) {
+ // if the this feature class has been dismissed and the request has not expired from the cache, skip it as it's been dismissed
+ if ( is_array( $dismissed_feature ) && $from_cache && time() - $dismissed_feature['last_dismissal'] < $expiration + 60 ) {
+ unset( $envelopes[ $idx ] );
+ continue;
+ }
- $wp_styles = new WP_Styles();
- $min = ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) ? '' : '.min';
- wp_enqueue_style( 'jetpack-jitm-css', plugins_url( "css/jetpack-admin-jitm{$min}.css", JETPACK__PLUGIN_FILE ), false, JETPACK__VERSION . '-201243242' );
- $wp_styles->add_data( 'jetpack-jitm-css', 'rtl', true );
-
- //Build stats url for tracking manage button
- $jitm_stats_url = Jetpack::build_stats_url( array( 'x_jetpack-jitm' => 'wordpresstools' ) );
-
- // Enqueue javascript to handle jitm notice events
- wp_enqueue_script( 'jetpack-jitm-js', plugins_url( '_inc/jetpack-jitm.js', JETPACK__PLUGIN_FILE ),
- array( 'jquery' ), JETPACK__VERSION, true );
- wp_localize_script(
- 'jetpack-jitm-js',
- 'jitmL10n',
- array(
- 'ajaxurl' => admin_url( 'admin-ajax.php' ),
- 'jitm_nonce' => wp_create_nonce( 'jetpack-jitm-nonce' ),
- 'photon_msgs' => array(
- 'success' => esc_html__( 'Success! Photon is now actively optimizing and serving your images for free.', 'jetpack' ),
- 'fail' => esc_html__( 'We are sorry but unfortunately Photon did not activate.', 'jetpack' )
- ),
- 'manage_msgs' => array(
- 'success' => esc_html__( 'Success! WordPress.com tools are now active.', 'jetpack' ),
- 'fail' => esc_html__( 'We are sorry but unfortunately Manage did not activate.', 'jetpack' )
- ),
- 'stats_msgs' => array(
- 'success' => esc_html__( 'Success! Stats are now active.', 'jetpack' ),
- 'fail' => esc_html__( 'We are sorry but unfortunately Stats did not activate.', 'jetpack' )
- ),
- 'jitm_stats_url' => $jitm_stats_url
- )
- );
- }
+ $normalized_site_url = Jetpack::build_raw_urls( get_home_url() );
+ $envelope->url = 'https://jetpack.com/redirect/?source=jitm-' . $envelope->id . '&site=' . $normalized_site_url;
+ $envelope->jitm_stats_url = Jetpack::build_stats_url( array( 'x_jetpack-jitm' => $envelope->id ) );
- /**
- * Check if a JITM was dismissed or not. Currently, dismissing one JITM will dismiss all of them.
- *
- * @since 3.8.2
- *
- * @return bool
- */
- function is_jitm_dismissed() {
- if ( empty( self::$jetpack_hide_jitm ) ) {
+ if ( $envelope->CTA->hook ) {
+ $envelope->url = apply_filters( 'jitm_' . $envelope->CTA->hook, $envelope->url ) ;
+ unset( $envelope->CTA->hook );
+ }
+
+ if ( isset( $envelope->content->hook ) ) {
+ $envelope->content = apply_filters( 'jitm_' . $envelope->content->hook, $envelope->content );
+ unset( $envelope->content->hook );
+ }
+
+ // no point in showing an empty message
+ if ( empty( $envelope->content->message ) ) {
+ return array();
+ }
+
+ switch ( $envelope->content->icon ) {
+ case 'jetpack':
+ $envelope->content->icon = '<div class="jp-emblem">' . Jetpack::get_jp_emblem() . '</div>';
+ break;
+ case 'woocommerce':
+ $envelope->content->icon = '<div class="jp-emblem"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" id="Layer_1" x="0px" y="0px" viewBox="0 0 168 100" xml:space="preserve" enable-background="new 0 0 168 100" width="50" height="30"><style type="text/css">
+ .st0{clip-path:url(#SVGID_2_);enable-background:new ;}
+ .st1{clip-path:url(#SVGID_4_);}
+ .st2{clip-path:url(#SVGID_6_);}
+ .st3{clip-path:url(#SVGID_8_);fill:#8F567F;}
+ .st4{clip-path:url(#SVGID_10_);fill:#FFFFFE;}
+ .st5{clip-path:url(#SVGID_12_);fill:#FFFFFE;}
+ .st6{clip-path:url(#SVGID_14_);fill:#FFFFFE;}
+ </style><g><defs><polygon id="SVGID_1_" points="83.8 100 0 100 0 0.3 83.8 0.3 167.6 0.3 167.6 100 "/></defs><clipPath id="SVGID_2_"><use xlink:href="#SVGID_1_" overflow="visible"/></clipPath><g class="st0"><g><defs><rect id="SVGID_3_" width="168" height="100"/></defs><clipPath id="SVGID_4_"><use xlink:href="#SVGID_3_" overflow="visible"/></clipPath><g class="st1"><defs><path id="SVGID_5_" d="M15.6 0.3H152c8.6 0 15.6 7 15.6 15.6v52c0 8.6-7 15.6-15.6 15.6h-48.9l6.7 16.4L80.2 83.6H15.6C7 83.6 0 76.6 0 67.9v-52C0 7.3 7 0.3 15.6 0.3"/></defs><clipPath id="SVGID_6_"><use xlink:href="#SVGID_5_" overflow="visible"/></clipPath><g class="st2"><defs><rect id="SVGID_7_" width="168" height="100"/></defs><clipPath id="SVGID_8_"><use xlink:href="#SVGID_7_" overflow="visible"/></clipPath><rect x="-10" y="-9.7" class="st3" width="187.6" height="119.7"/></g></g></g></g></g><g><defs><path id="SVGID_9_" d="M8.4 14.5c1-1.3 2.4-2 4.3-2.1 3.5-0.2 5.5 1.4 6 4.9 2.1 14.3 4.4 26.4 6.9 36.4l15-28.6c1.4-2.6 3.1-3.9 5.2-4.1 3-0.2 4.9 1.7 5.6 5.7 1.7 9.1 3.9 16.9 6.5 23.4 1.8-17.4 4.8-30 9-37.7 1-1.9 2.5-2.9 4.5-3 1.6-0.1 3 0.3 4.3 1.4 1.3 1 2 2.3 2.1 3.9 0.1 1.2-0.1 2.3-0.7 3.3 -2.7 5-4.9 13.2-6.6 24.7 -1.7 11.1-2.3 19.8-1.9 26.1 0.1 1.7-0.1 3.2-0.8 4.5 -0.8 1.5-2 2.4-3.7 2.5 -1.8 0.1-3.6-0.7-5.4-2.5C52.4 66.7 47.4 57 43.7 44.1c-4.4 8.8-7.7 15.3-9.9 19.7 -4 7.7-7.5 11.7-10.3 11.9 -1.9 0.1-3.5-1.4-4.8-4.7 -3.5-9-7.3-26.3-11.3-52C7.1 17.3 7.5 15.8 8.4 14.5"/></defs><clipPath id="SVGID_10_"><use xlink:href="#SVGID_9_" overflow="visible"/></clipPath><rect x="-2.7" y="-0.6" class="st4" width="90.6" height="86.4"/></g><g><defs><path id="SVGID_11_" d="M155.6 25.2c-2.5-4.3-6.1-6.9-11-7.9 -1.3-0.3-2.5-0.4-3.7-0.4 -6.6 0-11.9 3.4-16.1 10.2 -3.6 5.8-5.3 12.3-5.3 19.3 0 5.3 1.1 9.8 3.3 13.6 2.5 4.3 6.1 6.9 11 7.9 1.3 0.3 2.5 0.4 3.7 0.4 6.6 0 12-3.4 16.1-10.2 3.6-5.9 5.3-12.4 5.3-19.4C159 33.4 157.9 28.9 155.6 25.2zM147 44.2c-0.9 4.5-2.7 7.9-5.2 10.1 -2 1.8-3.9 2.5-5.5 2.2 -1.7-0.3-3-1.8-4-4.4 -0.8-2.1-1.2-4.2-1.2-6.2 0-1.7 0.2-3.4 0.5-5 0.6-2.8 1.8-5.5 3.6-8.1 2.3-3.3 4.7-4.8 7.1-4.2 1.7 0.3 3 1.8 4 4.4 0.8 2.1 1.2 4.2 1.2 6.2C147.5 40.9 147.3 42.6 147 44.2z"/></defs><clipPath id="SVGID_12_"><use xlink:href="#SVGID_11_" overflow="visible"/></clipPath><rect x="109.6" y="6.9" class="st5" width="59.4" height="71.4"/></g><g><defs><path id="SVGID_13_" d="M112.7 25.2c-2.5-4.3-6.1-6.9-11-7.9 -1.3-0.3-2.5-0.4-3.7-0.4 -6.6 0-11.9 3.4-16.1 10.2 -3.5 5.8-5.3 12.3-5.3 19.3 0 5.3 1.1 9.8 3.3 13.6 2.5 4.3 6.1 6.9 11 7.9 1.3 0.3 2.5 0.4 3.7 0.4 6.6 0 12-3.4 16.1-10.2 3.5-5.9 5.3-12.4 5.3-19.4C116 33.4 114.9 28.9 112.7 25.2zM104.1 44.2c-0.9 4.5-2.7 7.9-5.2 10.1 -2 1.8-3.9 2.5-5.5 2.2 -1.7-0.3-3-1.8-4-4.4 -0.8-2.1-1.2-4.2-1.2-6.2 0-1.7 0.2-3.4 0.5-5 0.6-2.8 1.8-5.5 3.6-8.1 2.3-3.3 4.7-4.8 7.1-4.2 1.7 0.3 3 1.8 4 4.4 0.8 2.1 1.2 4.2 1.2 6.2C104.6 40.9 104.4 42.6 104.1 44.2z"/></defs><clipPath id="SVGID_14_"><use xlink:href="#SVGID_13_" overflow="visible"/></clipPath><rect x="66.7" y="6.9" class="st6" width="59.4" height="71.4"/></g></svg></div>';
+ break;
+ default:
+ $envelope->content->icon = '';
+ break;
+ }
- // The option returns false when nothing was dismissed
- self::$jetpack_hide_jitm = Jetpack_Options::get_option( 'hide_jitm' );
+ $jetpack = Jetpack::init();
+ $jetpack->stat( 'jitm', $envelope->id . '-viewed-' . JETPACK__VERSION );
+ $jetpack->do_stats( 'server_side' );
}
- // so if it's not an array, it means no JITM was dismissed
- return is_array( self::$jetpack_hide_jitm );
+ return $envelopes;
}
}
if (