Code Duplication    Length = 14-16 lines in 4 locations

modules/sso.php 1 location

@@ 520-535 (lines=16) @@
517
		<?php
518
	}
519
520
	static function delete_connection_for_user( $user_id ) {
521
		if ( ! $wpcom_user_id = get_user_meta( $user_id, 'wpcom_user_id', true ) ) {
522
			return;
523
		}
524
		Jetpack::load_xml_rpc_client();
525
		$xml = new Jetpack_IXR_Client( array(
526
			'user_id' => $user_id
527
		) );
528
		$xml->query( 'jetpack.sso.removeUser', $wpcom_user_id );
529
530
		if ( $xml->isError() ) {
531
			return false;
532
		}
533
534
		return $xml->getResponse();
535
	}
536
537
	static function request_initial_nonce() {
538
		Jetpack::load_xml_rpc_client();

modules/post-by-email.php 1 location

@@ 136-151 (lines=16) @@
133
	<?php
134
	}
135
136
	function get_post_by_email_address() {
137
		Jetpack::load_xml_rpc_client();
138
		$xml = new Jetpack_IXR_Client( array(
139
			'user_id' => get_current_user_id(),
140
		) );
141
		$xml->query( 'jetpack.getPostByEmailAddress' );
142
143
		if ( $xml->isError() )
144
			return NULL;
145
146
		$response = $xml->getResponse();
147
		if ( empty( $response ) )
148
			return NULL;
149
150
		return $response;
151
	}
152
153
	function create_post_by_email_address() {
154
		Jetpack::load_xml_rpc_client();

class.jetpack.php 2 locations

@@ 1522-1535 (lines=14) @@
1519
	/**
1520
	 * Get the wpcom user data of the current|specified connected user.
1521
	 */
1522
	public static function get_connected_user_data( $user_id = null ) {
1523
		if ( ! $user_id ) {
1524
			$user_id = get_current_user_id();
1525
		}
1526
		Jetpack::load_xml_rpc_client();
1527
		$xml = new Jetpack_IXR_Client( array(
1528
			'user_id' => $user_id,
1529
		) );
1530
		$xml->query( 'wpcom.getUser' );
1531
		if ( ! $xml->isError() ) {
1532
			return $xml->getResponse();
1533
		}
1534
		return false;
1535
	}
1536
1537
	/**
1538
	 * Get the wpcom email of the current|specified connected user.
@@ 1540-1553 (lines=14) @@
1537
	/**
1538
	 * Get the wpcom email of the current|specified connected user.
1539
	 */
1540
	public static function get_connected_user_email( $user_id = null ) {
1541
		if ( ! $user_id ) {
1542
			$user_id = get_current_user_id();
1543
		}
1544
		Jetpack::load_xml_rpc_client();
1545
		$xml = new Jetpack_IXR_Client( array(
1546
			'user_id' => $user_id,
1547
		) );
1548
		$xml->query( 'wpcom.getUserEmail' );
1549
		if ( ! $xml->isError() ) {
1550
			return $xml->getResponse();
1551
		}
1552
		return false;
1553
	}
1554
1555
	/**
1556
	 * Get the wpcom email of the master user.