@@ 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(); |
@@ 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(); |
@@ 1535-1548 (lines=14) @@ | ||
1532 | /** |
|
1533 | * Get the wpcom user data of the current|specified connected user. |
|
1534 | */ |
|
1535 | public static function get_connected_user_data( $user_id = null ) { |
|
1536 | if ( ! $user_id ) { |
|
1537 | $user_id = get_current_user_id(); |
|
1538 | } |
|
1539 | Jetpack::load_xml_rpc_client(); |
|
1540 | $xml = new Jetpack_IXR_Client( array( |
|
1541 | 'user_id' => $user_id, |
|
1542 | ) ); |
|
1543 | $xml->query( 'wpcom.getUser' ); |
|
1544 | if ( ! $xml->isError() ) { |
|
1545 | return $xml->getResponse(); |
|
1546 | } |
|
1547 | return false; |
|
1548 | } |
|
1549 | ||
1550 | /** |
|
1551 | * Get the wpcom email of the current|specified connected user. |
|
@@ 1553-1566 (lines=14) @@ | ||
1550 | /** |
|
1551 | * Get the wpcom email of the current|specified connected user. |
|
1552 | */ |
|
1553 | public static function get_connected_user_email( $user_id = null ) { |
|
1554 | if ( ! $user_id ) { |
|
1555 | $user_id = get_current_user_id(); |
|
1556 | } |
|
1557 | Jetpack::load_xml_rpc_client(); |
|
1558 | $xml = new Jetpack_IXR_Client( array( |
|
1559 | 'user_id' => $user_id, |
|
1560 | ) ); |
|
1561 | $xml->query( 'wpcom.getUserEmail' ); |
|
1562 | if ( ! $xml->isError() ) { |
|
1563 | return $xml->getResponse(); |
|
1564 | } |
|
1565 | return false; |
|
1566 | } |
|
1567 | ||
1568 | /** |
|
1569 | * Get the wpcom email of the master user. |