Completed
Push — update/remove-disconnect-link ( 1e4f61...906d0d )
by
unknown
114:57 queued 106:29
created

class.jetpack-debugger.php (3 issues)

Upgrade to new PHP Analysis Engine

These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more

1
<?php
2
3
class Jetpack_Debugger {
4
5
	private static function is_jetpack_support_open() {
6
		try {
7
			$url = add_query_arg( 'ver', JETPACK__VERSION, 'https://jetpack.com/is-support-open/' );
8
			$response = wp_remote_request( esc_url_raw( $url ) );
9
			if ( is_wp_error( $response ) ) {
10
				return false;
11
			}
12
			$body = wp_remote_retrieve_body( $response );
13
			$json = json_decode( $body );
14
			return ( ( bool ) $json->is_support_open );
15
		}
16
		catch ( Exception $e ) {
17
			return true;
18
		}
19
	}
20
21
	static function seconds_to_time( $seconds ) {
22
		$units = array(
23
			"week"   => 7*24*3600,
24
			"day"    =>   24*3600,
25
			"hour"   =>      3600,
26
			"minute" =>        60,
27
			"second" =>         1,
28
		);
29
		// specifically handle zero
30
		if ( $seconds == 0 ) return "0 seconds";
31
		$human_readable = "";
32
		foreach ( $units as $name => $divisor ) {
33
			if ( $quot = intval( $seconds / $divisor) ) {
34
				$human_readable .= "$quot $name";
35
				$human_readable .= ( abs( $quot ) > 1 ? "s" : "" ) . ", ";
36
				$seconds -= $quot * $divisor;
37
			}
38
		}
39
		return substr( $human_readable, 0, -2 );
40
	}
41
42
	public static function jetpack_increase_timeout() {
43
		return 30; // seconds
44
	}
45
46
	public static function disconnect_and_redirect() {
47
		$can_disconnect = isset( $_GET['disconnect'] ) && $_GET['disconnect'] && isset( $_GET['nonce'] ) && wp_verify_nonce( $_GET['nonce'], 'jp_disconnect' );
48
		if ( $can_disconnect ) {
49
			if ( Jetpack::is_active() ) {
50
				Jetpack::disconnect();
51
				wp_redirect( Jetpack::admin_url() );
52
			}
53
		}
54
	}
55
56
	public static function jetpack_debug_display_handler() {
57
		if ( ! current_user_can( 'manage_options' ) )
58
			wp_die( esc_html__('You do not have sufficient permissions to access this page.', 'jetpack' ) );
59
60
		$current_user = wp_get_current_user();
61
62
		$user_id = get_current_user_id();
63
		$user_tokens = Jetpack_Options::get_option( 'user_tokens' );
64
		if ( is_array( $user_tokens ) && array_key_exists( $user_id, $user_tokens ) ) {
65
			$user_token = $user_tokens[$user_id];
66
		} else {
67
			$user_token = '[this user has no token]';
68
		}
69
		unset( $user_tokens );
70
71
		$debug_info = "\r\n";
72
		foreach ( array(
73
			'CLIENT_ID'   => 'id',
74
			'BLOG_TOKEN'  => 'blog_token',
75
			'MASTER_USER' => 'master_user',
76
			'CERT'        => 'fallback_no_verify_ssl_certs',
77
			'TIME_DIFF'   => 'time_diff',
78
			'VERSION'     => 'version',
79
			'OLD_VERSION' => 'old_version',
80
			'PUBLIC'      => 'public',
81
		) as $label => $option_name ) {
82
			$debug_info .= "\r\n" . esc_html( $label . ": " . Jetpack_Options::get_option( $option_name ) );
83
		}
84
85
		$debug_info .= "\r\n" . esc_html( "USER_ID: " . $user_id );
86
		$debug_info .= "\r\n" . esc_html( "USER_TOKEN: " . $user_token );
87
		$debug_info .= "\r\n" . esc_html( "PHP_VERSION: " . PHP_VERSION );
88
		$debug_info .= "\r\n" . esc_html( "WORDPRESS_VERSION: " . $GLOBALS['wp_version'] );
89
		$debug_info .= "\r\n" . esc_html( "JETPACK__VERSION: " . JETPACK__VERSION );
90
		$debug_info .= "\r\n" . esc_html( "JETPACK__PLUGIN_DIR: " . JETPACK__PLUGIN_DIR );
91
		$debug_info .= "\r\n" . esc_html( "SITE_URL: " . site_url() );
92
		$debug_info .= "\r\n" . esc_html( "HOME_URL: " . home_url() );
93
94
		$debug_info .= "\r\n";
95
		require_once JETPACK__PLUGIN_DIR . 'sync/class.jetpack-sync-modules.php';
96
		$sync_module = Jetpack_Sync_Modules::get_module( 'full-sync' );
97
		$sync_statuses = $sync_module->get_status();
98
		$human_readable_sync_status = array();
99
		foreach( $sync_statuses  as $sync_status => $sync_status_value ) {
100
			$human_readable_sync_status[ $sync_status ] =
101
				in_array( $sync_status, array( 'started', 'queue_finished', 'send_started', 'finished' ) )
102
				? date( 'r', $sync_status_value ) : $sync_status_value ;
103
		}
104
105
		$debug_info .= "\r\n". sprintf( esc_html__( 'Jetpack Sync Full Status: `%1$s`', 'jetpack' ), print_r( $human_readable_sync_status, 1 ) );
106
107
		require_once JETPACK__PLUGIN_DIR. 'sync/class.jetpack-sync-sender.php';
108
109
		$queue = Jetpack_Sync_Sender::get_instance()->get_sync_queue();
110
111
		$debug_info .= "\r\n". sprintf( esc_html__( 'Sync Queue size: %1$s', 'jetpack' ), $queue->size() );
112
		$debug_info .= "\r\n". sprintf( esc_html__( 'Sync Queue lag: %1$s', 'jetpack' ), self::seconds_to_time( $queue->lag() ) );
113
114
		$full_sync_queue = Jetpack_Sync_Sender::get_instance()->get_full_sync_queue();
115
116
		$debug_info .= "\r\n". sprintf( esc_html__( 'Full Sync Queue size: %1$s', 'jetpack' ), $full_sync_queue->size() );
117
		$debug_info .= "\r\n". sprintf( esc_html__( 'Full Sync Queue lag: %1$s', 'jetpack' ), self::seconds_to_time( $full_sync_queue->lag() ) );
118
119
		$debug_info .= "\r\n";
120
121
		foreach ( array (
122
					  'HTTP_HOST',
123
					  'SERVER_PORT',
124
					  'HTTPS',
125
					  'GD_PHP_HANDLER',
126
					  'HTTP_AKAMAI_ORIGIN_HOP',
127
					  'HTTP_CF_CONNECTING_IP',
128
					  'HTTP_CLIENT_IP',
129
					  'HTTP_FASTLY_CLIENT_IP',
130
					  'HTTP_FORWARDED',
131
					  'HTTP_FORWARDED_FOR',
132
					  'HTTP_INCAP_CLIENT_IP',
133
					  'HTTP_TRUE_CLIENT_IP',
134
					  'HTTP_X_CLIENTIP',
135
					  'HTTP_X_CLUSTER_CLIENT_IP',
136
					  'HTTP_X_FORWARDED',
137
					  'HTTP_X_FORWARDED_FOR',
138
					  'HTTP_X_IP_TRAIL',
139
					  'HTTP_X_REAL_IP',
140
					  'HTTP_X_VARNISH',
141
					  'REMOTE_ADDR'
142
				  ) as $header ) {
143
			if ( isset( $_SERVER[ $header ] ) ) {
144
				$debug_info .= "\r\n" . esc_html( $header . ": " . $_SERVER[ $header ] );
145
			}
146
		}
147
148
		$debug_info .= "\r\n" . esc_html( "PROTECT_TRUSTED_HEADER: " . json_encode( get_site_option( 'trusted_ip_header' ) ) );
149
150
		$debug_info .= "\r\n\r\nTEST RESULTS:\r\n\r\n";
151
		$debug_raw_info = '';
152
153
154
		$tests = array();
155
156
		$tests['HTTP']['result'] = wp_remote_get( preg_replace( '/^https:/', 'http:', JETPACK__API_BASE ) . 'test/1/' );
157
		$tests['HTTP']['fail_message'] = esc_html__( 'Your site isn’t reaching the Jetpack servers.', 'jetpack' );
158
159
		$tests['HTTPS']['result'] = wp_remote_get( preg_replace( '/^http:/', 'https:', JETPACK__API_BASE ) . 'test/1/' );
160
		$tests['HTTPS']['fail_message'] = esc_html__( 'Your site isn’t securely reaching the Jetpack servers.', 'jetpack' );
161
162
		$identity_crisis_message = '';
163
		if ( $identity_crisis = Jetpack::check_identity_crisis() ) {
164
			$identity_crisis_message .= sprintf(
165
				__( 'Your url is set as `%1$s`, but your WordPress.com connection lists it as `%2$s`!', 'jetpack' ),
166
				$identity_crisis['home'],
167
				$identity_crisis['wpcom_home']
168
			);
169
			$identity_crisis = new WP_Error( 'identity-crisis', $identity_crisis_message, $identity_crisis );
170
		} else {
171
			$identity_crisis = 'PASS';
172
		}
173
		$tests['IDENTITY_CRISIS']['result'] = $identity_crisis;
174
		$tests['IDENTITY_CRISIS']['fail_message'] = esc_html__( 'Something has gotten mixed up in your Jetpack Connection!', 'jetpack' );
175
176
		$self_xml_rpc_url = home_url( 'xmlrpc.php' );
177
178
		$testsite_url = Jetpack::fix_url_for_bad_hosts( JETPACK__API_BASE . 'testsite/1/?url=' );
179
180
		add_filter( 'http_request_timeout', array( 'Jetpack_Debugger', 'jetpack_increase_timeout' ) );
181
182
		$tests['SELF']['result'] = wp_remote_get( $testsite_url . $self_xml_rpc_url );
183
		if ( is_wp_error( $tests['SELF']['result'] ) && 0 == strpos( $tests['SELF']['result']->get_error_message(), 'Operation timed out' ) ){
184
			$tests['SELF']['fail_message'] = esc_html__( 'Your site did not get a response from our debugging service in the expected timeframe. If you are not experiencing other issues, this could be due to a slow connection between your site and our server.', 'jetpack' );
185
		} else {
186
			$tests['SELF']['fail_message'] = esc_html__( 'It looks like your site can not communicate properly with Jetpack.', 'jetpack' );
187
		}
188
189
		remove_filter( 'http_request_timeout', array( 'Jetpack_Debugger', 'jetpack_increase_timeout' ) );
190
191
		?>
192
		<div class="wrap">
193
			<h2><?php esc_html_e( 'Jetpack Debugging Center', 'jetpack' ); ?></h2>
194
			<?php if ( $can_disconnect ) : ?>
0 ignored issues
show
The variable $can_disconnect does not exist. Did you forget to declare it?

This check marks access to variables or properties that have not been declared yet. While PHP has no explicit notion of declaring a variable, accessing it before a value is assigned to it is most likely a bug.

Loading history...
195
				<div id="message" class="updated notice notice-success is-dismissible"><p><?php esc_html_e( 'This site was successfully disconnected.', 'jetpack' ) ?> <a href="<?php echo esc_url( Jetpack::admin_url() ); ?>"><?php esc_html_e( 'Go to connection screen.', 'jetpack' ); ?></a></p>
196
					<button type="button" class="notice-dismiss"><span class="screen-reader-text"><?php esc_html_e( 'Dismiss this notice.', 'jetpack' ); ?></span></button></div>
197
			<?php else: ?>
198
				<h3><?php _e( "Testing your site's compatibility with Jetpack...", 'jetpack' ); ?></h3>
199
				<div class="jetpack-debug-test-container">
200
					<?php
201
					ob_start();
202
					foreach ( $tests as $test_name => $test_info ) :
203
						if ( 'PASS' !== $test_info['result'] && ( is_wp_error( $test_info['result'] ) ||
204
								false == ( $response_code = wp_remote_retrieve_response_code( $test_info['result'] ) )  ||
205
								'200' != $response_code ) ) {
0 ignored issues
show
The variable $response_code does not seem to be defined for all execution paths leading up to this point.

If you define a variable conditionally, it can happen that it is not defined for all execution paths.

Let’s take a look at an example:

function myFunction($a) {
    switch ($a) {
        case 'foo':
            $x = 1;
            break;

        case 'bar':
            $x = 2;
            break;
    }

    // $x is potentially undefined here.
    echo $x;
}

In the above example, the variable $x is defined if you pass “foo” or “bar” as argument for $a. However, since the switch statement has no default case statement, if you pass any other value, the variable $x would be undefined.

Available Fixes

  1. Check for existence of the variable explicitly:

    function myFunction($a) {
        switch ($a) {
            case 'foo':
                $x = 1;
                break;
    
            case 'bar':
                $x = 2;
                break;
        }
    
        if (isset($x)) { // Make sure it's always set.
            echo $x;
        }
    }
    
  2. Define a default value for the variable:

    function myFunction($a) {
        $x = ''; // Set a default which gets overridden for certain paths.
        switch ($a) {
            case 'foo':
                $x = 1;
                break;
    
            case 'bar':
                $x = 2;
                break;
        }
    
        echo $x;
    }
    
  3. Add a value for the missing path:

    function myFunction($a) {
        switch ($a) {
            case 'foo':
                $x = 1;
                break;
    
            case 'bar':
                $x = 2;
                break;
    
            // We add support for the missing case.
            default:
                $x = '';
                break;
        }
    
        echo $x;
    }
    
Loading history...
206
							$debug_info .= $test_name . ": FAIL\r\n";
207
							?>
208
							<div class="jetpack-test-error">
209
							<p>
210
								<a class="jetpack-test-heading" href="#"><?php echo $test_info['fail_message']; ?>
211
									<span class="noticon noticon-collapse"></span>
212
								</a>
213
							</p>
214
						<pre class="jetpack-test-details"><?php echo esc_html( $test_name ); ?>:
215
							<?php echo esc_html( is_wp_error( $test_info['result'] ) ? $test_info['result']->get_error_message() : print_r( $test_info['result'], 1 ) ); ?></pre>
216
							</div><?php
217
						} else {
218
							$debug_info .= $test_name . ": PASS\r\n";
219
						}
220
						$debug_raw_info .= "\r\n\r\n" . $test_name . "\r\n" . esc_html( is_wp_error( $test_info['result'] ) ? $test_info['result']->get_error_message() : print_r( $test_info['result'], 1 ) );
221
						?>
222
					<?php endforeach;
223
					$html = ob_get_clean();
224
225
					if ( '' == trim( $html ) ) {
226
						echo '<div class="jetpack-tests-succed">' . esc_html__( 'Your Jetpack setup looks a-okay!', 'jetpack' ) . '</div>';
227
					} else {
228
						echo '<h3>' . esc_html__( 'There seems to be a problem with your site’s ability to communicate with Jetpack!', 'jetpack' ) . '</h3>';
229
						echo $html;
230
					}
231
					$debug_info .= "\r\n\r\nRAW TEST RESULTS:" . $debug_raw_info ."\r\n";
232
					?>
233
				</div>
234
			<?php endif; ?>
235
236
			<div class="entry-content">
237
				<h3><?php esc_html_e( 'Trouble with Jetpack?', 'jetpack' ); ?></h3>
238
				<h4><?php esc_html_e( 'It may be caused by one of these issues, which you can diagnose yourself:', 'jetpack' ); ?></h4>
239
				<ol>
240
					<li><b><em><?php esc_html_e( 'A known issue.', 'jetpack' ); ?></em></b>  <?php echo sprintf( __( 'Some themes and plugins have <a href="%1$s" target="_blank">known conflicts</a> with Jetpack – check the <a href="%2$s" target="_blank">list</a>. (You can also browse the <a href="%3$s" target="_blank">Jetpack support pages</a> or <a href="%4$s" target="_blank">Jetpack support forum</a> to see if others have experienced and solved the problem.)', 'jetpack' ), 'http://jetpack.com/support/getting-started-with-jetpack/known-issues/', 'http://jetpack.com/support/getting-started-with-jetpack/known-issues/', 'http://jetpack.com/support/', 'https://wordpress.org/support/plugin/jetpack' ); ?></li>
241
					<li><b><em><?php esc_html_e( 'An incompatible plugin.', 'jetpack' ); ?></em></b>  <?php esc_html_e( "Find out by disabling all plugins except Jetpack. If the problem persists, it's not a plugin issue. If the problem is solved, turn your plugins on one by one until the problem pops up again – there's the culprit! Let us know, and we'll try to help.", 'jetpack' ); ?></li>
242
					<li>
243
						<b><em><?php esc_html_e( 'A theme conflict.', 'jetpack' ); ?></em></b>
244
						<?php
245
							$default_theme = wp_get_theme( WP_DEFAULT_THEME );
246
247
							if ( $default_theme->exists() ) {
248
								echo esc_html( sprintf( __( "If your problem isn't known or caused by a plugin, try activating %s (the default WordPress theme).", 'jetpack' ), $default_theme->get( 'Name' ) ) );
249
							} else {
250
								esc_html_e( "If your problem isn't known or caused by a plugin, try activating the default WordPress theme.", 'jetpack' );
251
							}
252
						?>
253
						<?php esc_html_e( "If this solves the problem, something in your theme is probably broken – let the theme's author know.", 'jetpack' ); ?>
254
					</li>
255
					<li><b><em><?php esc_html_e( 'A problem with your XMLRPC file.', 'jetpack' ); ?></em></b>  <?php echo sprintf( __( 'Load your <a href="%s">XMLRPC file</a>. It should say “XML-RPC server accepts POST requests only.” on a line by itself.', 'jetpack' ), site_url( 'xmlrpc.php' ) ); ?>
256
						<ul>
257
							<li>- <?php esc_html_e( "If it's not by itself, a theme or plugin is displaying extra characters. Try steps 2 and 3.", 'jetpack' ); ?></li>
258
							<li>- <?php esc_html_e( "If you get a 404 message, contact your web host. Their security may block XMLRPC.", 'jetpack' ); ?></li>
259
						</ul>
260
					</li>
261
					<?php if ( current_user_can( 'jetpack_disconnect' ) && Jetpack::is_active() ) : ?>
262
						<li>
263
							<strong><em><?php esc_html_e( 'A connection problem with WordPress.com.', 'jetpack' ); ?></em></strong>
264
							<?php
265
							echo wp_kses(
266
								sprintf(
267
									__( 'Jetpack works by connecting to WordPress.com for a lot of features. Sometimes, when the connection gets messed up, you need to disconnect and reconnect to get things working properly. <a href="%s">Disconnect from WordPress.com</a>', 'jetpack' ),
268
									wp_nonce_url(
269
										Jetpack::admin_url( array( 'page' => 'jetpack-debugger', 'disconnect' => true ) ),
270
										'jp_disconnect',
271
										'nonce'
272
									)
273
								),
274
								array( 'a' => array( 'href'  => array(), 'class' => array() ) )
275
							);
276
							?>
277
						</li>
278
					<?php endif; ?>
279
				</ol>
280
				<?php if ( self::is_jetpack_support_open() ): ?>
281
				<p class="jetpack-show-contact-form"><?php echo sprintf( __( 'If none of these help you find a solution, <a href="%s">click here to contact Jetpack support</a>. Tell us as much as you can about the issue and what steps you\'ve tried to resolve it, and one of our Happiness Engineers will be in touch to help.', 'jetpack' ), Jetpack::admin_url( array( 'page' => 'jetpack-debugger', 'contact' => true ) ) ); ?>
282
				</p>
283
				<?php endif; ?>
284
				<hr />
285
				<?php if ( Jetpack::is_active() ) : ?>
286
					<div id="connected-user-details">
287
						<p><?php printf( __( 'The primary connection is owned by <strong>%s</strong>\'s WordPress.com account.', 'jetpack' ), esc_html( Jetpack::get_master_user_email() ) ); ?></p>
288
					</div>
289
				<?php else : ?>
290
					<div id="dev-mode-details">
291
						<p><?php printf(
292
							__( 'Would you like to use Jetpack on your local development site? You can do so thanks to <a href="%s">Jetpack\'s development mode</a>.', 'jetpack' ),
293
							'https://jetpack.com/support/development-mode/'
294
						); ?></p>
295
					</div>
296
				<?php endif; ?>
297
			</div>
298
			<div id="contact-message" <?php if( ! isset( $_GET['contact'] ) ) {?>  style="display:none" <?php } ?>>
299
			<?php if ( self::is_jetpack_support_open() ): ?>
300
				<form id="contactme" method="post" action="https://jetpack.com/contact-support/">
301
					<input type="hidden" name="action" value="submit">
302
					<input type="hidden" name="jetpack" value="needs-service">
303
304
					<input type="hidden" name="contact_form" id="contact_form" value="1">
305
					<input type="hidden" name="blog_url" id="blog_url" value="<?php echo esc_attr( site_url() ); ?>">
306
					<?php
307
						$subject_line = sprintf(
308
							/* translators: %s is the URL of the site */
309
							_x( 'from: %s Jetpack contact form', 'Support request email subject line', 'jetpack' ),
310
							esc_attr( site_url() )
311
						);
312
313
						if ( Jetpack::is_development_version() ) {
314
							$subject_line = 'BETA ' . $subject_line;
315
						}
316
317
						$subject_line_input = printf(
0 ignored issues
show
$subject_line_input is not used, you could remove the assignment.

This check looks for variable assignements that are either overwritten by other assignments or where the variable is not used subsequently.

$myVar = 'Value';
$higher = false;

if (rand(1, 6) > 3) {
    $higher = true;
} else {
    $higher = false;
}

Both the $myVar assignment in line 1 and the $higher assignment in line 2 are dead. The first because $myVar is never used and the second because $higher is always overwritten for every possible time line.

Loading history...
318
							'<input type="hidden" name="subject" id="subject" value="%s"">',
319
							$subject_line
320
						);
321
					?>
322
					<div class="formbox">
323
						<label for="message" class="h"><?php esc_html_e( 'Please describe the problem you are having.', 'jetpack' ); ?></label>
324
						<textarea name="message" cols="40" rows="7" id="did"></textarea>
325
					</div>
326
327
					<div id="name_div" class="formbox">
328
						<label class="h" for="your_name"><?php esc_html_e( 'Name', 'jetpack' ); ?></label>
329
			  			<span class="errormsg"><?php esc_html_e( 'Let us know your name.', 'jetpack' ); ?></span>
330
						<input name="your_name" type="text" id="your_name" value="<?php esc_html_e( $current_user->display_name, 'jetpack'); ?>" size="40">
331
					</div>
332
333
					<div id="email_div" class="formbox">
334
						<label class="h" for="your_email"><?php esc_html_e( 'Email', 'jetpack' ); ?></label>
335
			  			<span class="errormsg"><?php esc_html_e( 'Use a valid email address.', 'jetpack' ); ?></span>
336
						<input name="your_email" type="text" id="your_email" value="<?php esc_html_e( $current_user->user_email, 'jetpack'); ?>" size="40">
337
					</div>
338
339
					<div id="toggle_debug_form_info" class="formbox">
340
						<p><?php _e( 'The test results and some other useful debug information will be sent to the support team. Please feel free to <a href="#">review/modify</a> this information.', 'jetpack' ); ?></p>
341
					</div>
342
343
					<div id="debug_info_form_div" class="formbox" style="display:none">
344
						<label class="h" for="debug_info"><?php esc_html_e( 'Debug Info', 'jetpack' ); ?></label>
345
			  			<textarea name="debug_info" cols="40" rows="7" id="debug_form_info"><?php echo esc_attr( $debug_info ); ?></textarea>
346
					</div>
347
348
					<div style="clear: both;"></div>
349
350
					<div id="blog_div" class="formbox">
351
						<div id="submit_div" class="contact-support">
352
						<input type="submit" name="submit" value="<?php esc_html_e( 'Submit &#187;', 'jetpack' ); ?>">
353
						</div>
354
					</div>
355
					<div style="clear: both;"></div>
356
				</form>
357
			<?php endif; ?>
358
		</div> <!-- contact-message, hidden by default. -->
359
		<div id="toggle_debug_info"><a href="#"><?php _e( 'View Advanced Debug Results', 'jetpack' ); ?></a></div>
360
			<div id="debug_info_div" style="display:none">
361
			<h4><?php esc_html_e( 'Debug Info', 'jetpack' ); ?></h4>
362
			<div id="debug_info"><pre><?php echo esc_html( $debug_info ) ; ?></pre></div>
363
		</div>
364
		</div>
365
	<?php
366
	}
367
368
	public static function jetpack_debug_admin_head() {
369
		?>
370
		<style type="text/css">
371
372
			.jetpack-debug-test-container {
373
				margin-top: 20px;
374
				margin-bottom: 30px;
375
			}
376
377
			.jetpack-tests-succed {
378
				font-size: large;
379
				color: #8BAB3E;
380
			}
381
382
			.jetpack-test-details {
383
				margin: 4px 6px;
384
				padding: 10px;
385
				overflow: auto;
386
				display: none;
387
			}
388
389
			.jetpack-test-error {
390
				margin-bottom: 10px;
391
				background: #FFEBE8;
392
				border: solid 1px #C00;
393
				border-radius: 3px;
394
			}
395
396
			.jetpack-test-error p {
397
				margin: 0;
398
				padding: 0;
399
			}
400
401
			.jetpack-test-error a.jetpack-test-heading {
402
				padding: 4px 6px;
403
				display: block;
404
				text-decoration: none;
405
				color: inherit;
406
			}
407
408
			.jetpack-test-error .noticon {
409
				float: right;
410
			}
411
412
			form#contactme {
413
				border: 1px solid #dfdfdf;
414
				background: #eaf3fa;
415
				padding: 20px;
416
				margin: 10px;
417
				background-color: #eaf3fa;
418
				border-radius: 5px;
419
				font-size: 15px;
420
			}
421
422
			form#contactme label.h {
423
				color: #444;
424
				display: block;
425
				font-weight: bold;
426
				margin: 0 0 7px 10px;
427
				text-shadow: 1px 1px 0 #fff;
428
			}
429
430
			.formbox {
431
				margin: 0 0 25px 0;
432
			}
433
434
			.formbox input[type="text"], .formbox input[type="email"], .formbox input[type="url"], .formbox textarea, #debug_info_div {
435
				border: 1px solid #e5e5e5;
436
				border-radius: 11px;
437
				box-shadow: inset 0 1px 1px rgba(0,0,0,0.1);
438
				color: #666;
439
				font-size: 14px;
440
				padding: 10px;
441
				width: 97%;
442
			}
443
			#debug_info_div {
444
				border-radius: 0;
445
				margin-top: 16px;
446
				background: #FFF;
447
				padding: 16px;
448
			}
449
			.formbox .contact-support input[type="submit"] {
450
				float: right;
451
				margin: 0 !important;
452
				border-radius: 20px !important;
453
				cursor: pointer;
454
				font-size: 13pt !important;
455
				height: auto !important;
456
				margin: 0 0 2em 10px !important;
457
				padding: 8px 16px !important;
458
				background-color: #ddd;
459
				border: 1px solid rgba(0,0,0,0.05);
460
				border-top-color: rgba(255,255,255,0.1);
461
				border-bottom-color: rgba(0,0,0,0.15);
462
				color: #333;
463
				font-weight: 400;
464
				display: inline-block;
465
				text-align: center;
466
				text-decoration: none;
467
			}
468
469
			.formbox span.errormsg {
470
				margin: 0 0 10px 10px;
471
				color: #d00;
472
				display: none;
473
			}
474
475
			.formbox.error span.errormsg {
476
				display: block;
477
			}
478
479
			#contact-message ul {
480
				margin: 0 0 20px 10px;
481
			}
482
483
			#contact-message li {
484
				margin: 0 0 10px 10px;
485
				list-style: disc;
486
				display: list-item;
487
			}
488
489
			#debug_info_div, #toggle_debug_info, #debug_info_div p {
490
				font-size: 12px;
491
			}
492
493
		</style>
494
		<script type="text/javascript">
495
		jQuery( document ).ready( function($) {
496
497
			$( '#debug_info' ).prepend( 'jQuery version: ' + jQuery.fn.jquery + "\r\n" );
498
			$( '#debug_form_info' ).prepend( 'jQuery version: ' + jQuery.fn.jquery + "\r\n" );
499
500
			$( '.jetpack-test-error .jetpack-test-heading' ).on( 'click', function() {
501
				$( this ).parents( '.jetpack-test-error' ).find( '.jetpack-test-details' ).slideToggle();
502
				return false;
503
			} );
504
505
			$( '.jetpack-show-contact-form a' ).on( 'click', function() {
506
				$( '#contact-message' ).slideToggle();
507
				return false;
508
			} );
509
510
			$( '#toggle_debug_info a' ).on( 'click', function() {
511
				$( '#debug_info_div' ).slideToggle();
512
				return false;
513
			} );
514
515
			$( '#toggle_debug_form_info a' ).on( 'click', function() {
516
				$( '#debug_info_form_div' ).slideToggle();
517
				return false;
518
			} );
519
520
			$( 'form#contactme' ).on( "submit", function(e){
521
				var form = $( this );
522
				var message = form.find( '#did' );
523
				var name = form.find( '#your_name' );
524
				var email = form.find( '#your_email' )
525
				var validation_error = false;
526
				if( !name.val() ) {
527
					name.parents( '.formbox' ).addClass( 'error' );
528
					validation_error = true;
529
				}
530
				if( !email.val() ) {
531
					email.parents( '.formbox' ).addClass( 'error' );
532
					validation_error = true;
533
				}
534
				if ( validation_error ) {
535
					return false;
536
				}
537
				message.val( message.val() + "\r\n\r\n----------------------------------------------\r\n\r\nDEBUG INFO:\r\n" + $('#debug_form_info').val()  );
538
				return true;
539
	    	});
540
541
		} );
542
		</script>
543
		<?php
544
	}
545
}
546