@@ 1784-1809 (lines=26) @@ | ||
1781 | /** |
|
1782 | * Get the wpcom user data of the current|specified connected user. |
|
1783 | */ |
|
1784 | public static function get_connected_user_data( $user_id = null ) { |
|
1785 | // TODO: remove in favor of Connection_Manager->get_connected_user_data |
|
1786 | if ( ! $user_id ) { |
|
1787 | $user_id = get_current_user_id(); |
|
1788 | } |
|
1789 | ||
1790 | $transient_key = "jetpack_connected_user_data_$user_id"; |
|
1791 | ||
1792 | if ( $cached_user_data = get_transient( $transient_key ) ) { |
|
1793 | return $cached_user_data; |
|
1794 | } |
|
1795 | ||
1796 | $xml = new Jetpack_IXR_Client( |
|
1797 | array( |
|
1798 | 'user_id' => $user_id, |
|
1799 | ) |
|
1800 | ); |
|
1801 | $xml->query( 'wpcom.getUser' ); |
|
1802 | if ( ! $xml->isError() ) { |
|
1803 | $user_data = $xml->getResponse(); |
|
1804 | set_transient( $transient_key, $xml->getResponse(), DAY_IN_SECONDS ); |
|
1805 | return $user_data; |
|
1806 | } |
|
1807 | ||
1808 | return false; |
|
1809 | } |
|
1810 | ||
1811 | /** |
|
1812 | * Get the wpcom email of the current|specified connected user. |
@@ 676-701 (lines=26) @@ | ||
673 | * @param Integer $user_id the user identifier. |
|
674 | * @return Object the user object. |
|
675 | */ |
|
676 | public function get_connected_user_data( $user_id = null ) { |
|
677 | if ( ! $user_id ) { |
|
678 | $user_id = get_current_user_id(); |
|
679 | } |
|
680 | ||
681 | $transient_key = "jetpack_connected_user_data_$user_id"; |
|
682 | $cached_user_data = get_transient( $transient_key ); |
|
683 | ||
684 | if ( $cached_user_data ) { |
|
685 | return $cached_user_data; |
|
686 | } |
|
687 | ||
688 | $xml = new \Jetpack_IXR_Client( |
|
689 | array( |
|
690 | 'user_id' => $user_id, |
|
691 | ) |
|
692 | ); |
|
693 | $xml->query( 'wpcom.getUser' ); |
|
694 | if ( ! $xml->isError() ) { |
|
695 | $user_data = $xml->getResponse(); |
|
696 | set_transient( $transient_key, $xml->getResponse(), DAY_IN_SECONDS ); |
|
697 | return $user_data; |
|
698 | } |
|
699 | ||
700 | return false; |
|
701 | } |
|
702 | ||
703 | /** |
|
704 | * Returns a user object of the connection owner. |