Completed
Push — add/implement_pre_connection_j... ( c6d296 )
by
unknown
06:35
created

JITM::dismiss()   A

Complexity

Conditions 4
Paths 6

Size

Total Lines 39

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 4
nc 6
nop 2
dl 0
loc 39
rs 9.296
c 0
b 0
f 0
1
<?php
2
/**
3
 * Jetpack's JITM class.
4
 *
5
 * @package automattic/jetpack-jitm
6
 */
7
8
namespace Automattic\Jetpack\JITMS;
9
10
use Automattic\Jetpack\Assets;
11
use Automattic\Jetpack\Connection\Manager;
12
use Automattic\Jetpack\Connection\Client;
13
use Automattic\Jetpack\Assets\Logo as Jetpack_Logo;
14
use Automattic\Jetpack\Partner;
15
use Automattic\Jetpack\JITMS\Post_Connection_JITM;
16
use Automattic\Jetpack\JITMS\Pre_Connection_JITM;
17
18
/**
19
 * Jetpack just in time messaging through out the admin
20
 *
21
 * @since 5.6.0
22
 */
23
class JITM {
24
25
	const PACKAGE_VERSION = '1.0'; // TODO: Keep in sync with version specified in composer.json.
26
27
	/**
28
	 * The configuration method that is called from the jetpack-config package.
29
	 */
30
	public static function configure() {
31
		$jitm = self::get_instance();
32
		$jitm->register();
33
	}
34
35
	/**
36
	 * Pre/Post Connection JITM factory metod
37
	 *
38
	 * @return Post_Connection_JITM|Pre_Connection_JITM JITM instance.
39
	 */
40
	public static function get_instance() {
41
		if ( \Jetpack::is_active() ) {
42
			$jitm = new Post_Connection_JITM();
43
		} else {
44
			$jitm = new Pre_Connection_JITM();
45
		}
46
		return $jitm;
47
	}
48
49
	/**
50
	 * Determines if JITMs are enabled.
51
	 *
52
	 * @return bool Enable JITMs.
53
	 */
54
	public function register() {
55
		add_action( 'current_screen', array( $this, 'prepare_jitms' ) );
56
		return true;
57
	}
58
59
	/**
60
	 * Prepare actions according to screen and post type.
61
	 *
62
	 * @since 3.8.2
63
	 *
64
	 * @uses Jetpack_Autoupdate::get_possible_failures()
65
	 *
66
	 * @param \WP_Screen $screen WP Core's screen object.
67
	 */
68
	public function prepare_jitms( $screen ) {
69
		if ( ! in_array(
70
			$screen->id,
71
			array(
72
				'jetpack_page_akismet-key-config',
73
				'admin_page_jetpack_modules',
74
			),
75
			true
76
		) ) {
77
			add_action( 'admin_enqueue_scripts', array( $this, 'jitm_enqueue_files' ) );
78
			add_action( 'admin_notices', array( $this, 'ajax_message' ) );
79
			add_action( 'edit_form_top', array( $this, 'ajax_message' ) );
80
		}
81
	}
82
83
	/**
84
	 * Function to enqueue jitm css and js
85
	 */
86
	public function jitm_enqueue_files() {
87
		if ( $this->is_gutenberg_page() ) {
88
			return;
89
		}
90
		$min = ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) ? '' : '.min';
91
		wp_register_style(
92
			'jetpack-jitm-css',
93
			plugins_url( "assets/jetpack-admin-jitm{$min}.css", __DIR__ ),
94
			false,
95
			self::PACKAGE_VERSION .
96
			'-201243242'
97
		);
98
		wp_style_add_data( 'jetpack-jitm-css', 'rtl', 'replace' );
99
		wp_style_add_data( 'jetpack-jitm-css', 'suffix', $min );
100
		wp_enqueue_style( 'jetpack-jitm-css' );
101
102
		wp_enqueue_script(
103
			'jetpack-jitm-new',
104
			Assets::get_file_url_for_environment( '_inc/build/jetpack-jitm.min.js', '_inc/jetpack-jitm.js' ),
105
			array( 'jquery' ),
106
			self::PACKAGE_VERSION,
107
			true
108
		);
109
		wp_localize_script(
110
			'jetpack-jitm-new',
111
			'jitm_config',
112
			array(
113
				'api_root'               => esc_url_raw( rest_url() ),
114
				'activate_module_text'   => esc_html__( 'Activate', 'jetpack' ),
115
				'activated_module_text'  => esc_html__( 'Activated', 'jetpack' ),
116
				'activating_module_text' => esc_html__( 'Activating', 'jetpack' ),
117
			)
118
		);
119
	}
120
121
	/**
122
	 * Is the current page a block editor page?
123
	 *
124
	 * @since 8.0.0
125
	 */
126
	public function is_gutenberg_page() {
127
		$current_screen = get_current_screen();
128
		return ( method_exists( $current_screen, 'is_block_editor' ) && $current_screen->is_block_editor() );
129
	}
130
131
	/**
132
	 * Get's the current message path for display of a JITM
133
	 *
134
	 * @return string The message path
135
	 */
136
	public function get_message_path() {
137
		$screen = get_current_screen();
138
139
		return 'wp:' . $screen->id . ':' . current_filter();
140
	}
141
142
	/**
143
	 * Injects the dom to show a JITM inside of wp-admin.
144
	 */
145
	public function ajax_message() {
146
		if ( ! is_admin() ) {
147
			return;
148
		}
149
150
		// do not display on Gutenberg pages.
151
		if ( $this->is_gutenberg_page() ) {
152
			return;
153
		}
154
155
		$message_path   = $this->get_message_path();
156
		$query_string   = _http_build_query( $_GET, '', ',' ); // phpcs:ignore WordPress.Security.NonceVerification.Recommended
157
		$current_screen = wp_unslash( $_SERVER['REQUEST_URI'] );
158
		?>
159
		<div class="jetpack-jitm-message"
160
			data-nonce="<?php echo esc_attr( wp_create_nonce( 'wp_rest' ) ); ?>"
161
			data-ajax-nonce="<?php echo esc_attr( wp_create_nonce( 'wp_ajax_action' ) ); ?>"
162
			data-message-path="<?php echo esc_attr( $message_path ); ?>"
163
			data-query="<?php echo urlencode_deep( $query_string ); ?>"
164
			data-redirect="<?php echo urlencode_deep( $current_screen ); ?>"
165
		></div>
166
		<?php
167
	}
168
169
	/**
170
	 * Generate the icon to display on the JITM
171
	 *
172
	 * @param string $content_icon Icon type name.
173
	 * @param bool   $full_jp_logo_exists Is there a big JP logo already displayed on this screen.
174
	 */
175
	public function generate_icon( $content_icon, $full_jp_logo_exists ) {
176
		switch ( $content_icon ) {
177
			case 'jetpack':
178
				$jetpack_logo = new Jetpack_Logo();
179
				$content_icon = '<div class="jp-emblem">' . ( ( $full_jp_logo_exists ) ? $jetpack_logo->get_jp_emblem() : $jetpack_logo->get_jp_emblem_larger() ) . '</div>';
180
				break;
181
			case 'woocommerce':
182
				$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">
183
				.st0{clip-path:url(#SVGID_2_);enable-background:new    ;}
184
				.st1{clip-path:url(#SVGID_4_);}
185
				.st2{clip-path:url(#SVGID_6_);}
186
				.st3{clip-path:url(#SVGID_8_);fill:#8F567F;}
187
				.st4{clip-path:url(#SVGID_10_);fill:#FFFFFE;}
188
				.st5{clip-path:url(#SVGID_12_);fill:#FFFFFE;}
189
				.st6{clip-path:url(#SVGID_14_);fill:#FFFFFE;}
190
			</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>';
191
				break;
192
			default:
193
				$content_icon = '';
194
				break;
195
		}
196
		return $content_icon;
197
	}
198
}
199