Вход Регистрация
Файл: Source/auth/Social/Network/Linkedin.php
Строк: 323
<?php
class Social_Network_Linkedin extends Social_Protocol_Model_Base {

    function 
init() {
        if ( ! 
$this->config["keys"]["key"] || ! $this->config["keys"]["secret"] ){
            throw new 
Social_Exception"Application key and secret needed to connect to $this->network_name");
        }

        require_once 
Social_Auth::$config["sdk_path"] . "OAuth/OAuth.php";
        require_once 
Social_Auth::$config["sdk_path"] . "Linkedin/linkedin.php";

        
$this->api = new LinkedIn( array( 'appKey' => $this->config["keys"]["key"], 'appSecret' => $this->config["keys"]["secret"], 'callbackUrl' => $this->client ) );

        if( 
$this->getToken"access_token_linkedin" ) ){
            
$this->api->setTokenAccess$this->getToken"access_token_linkedin" ) );
        }
    }

    function 
startLogin() {
        
$response $this->api->retrieveTokenRequest();

        if( isset( 
$response['success'] ) && $response['success'] === TRUE ){
            
$this->setToken"oauth_token"$response['linkedin']['oauth_token'] );
            
$this->setToken"oauth_token_secret"$response['linkedin']['oauth_token_secret'] );

            
Social_Auth::redirectLINKEDIN::_URL_AUTH $response['linkedin']['oauth_token'] );
        } else {
            throw new 
Social_Exception"Auth failed! $this->network_name: an invalid token." );
        }
    }

    function 
finishLogin() {
        
$oauth_token $_REQUEST['oauth_token'];
        
$oauth_verifier $_REQUEST['oauth_verifier'];

        if ( ! 
$oauth_verifier ){
            throw new 
Social_Exception"Auth failed! $this->network_name: invalid token." );
        }

        
$response $this->api->retrieveTokenAccess$oauth_token$this->getToken"oauth_token_secret" ), $oauth_verifier );

        if( isset( 
$response['success'] ) && $response['success'] === true ){
            
$this->deleteToken"oauth_token" );
            
$this->deleteToken"oauth_token_secret" );

            
$this->setToken"access_token_linkedin"$response['linkedin'] );
            
$this->setToken"access_token"$response['linkedin']['oauth_token'] );
            
$this->setToken"access_token_secret"$response['linkedin']['oauth_token_secret'] );

            
$this->connectUser();
        } else {
            throw new 
Social_Exception"Auth failed! $this->network_name: invalid token." );
        }
    }

    function 
getUserProfile() {
        try{
            
$response $this->api->profile('~:(id,first-name,last-name,public-profile-url,picture-url,email-address,date-of-birth,phone-numbers,summary)');
        } catch( 
LinkedInException $e ) {
            throw new 
Social_Exception"User profile request failed! $this->network_name error: $e");
        }

        if( isset( 
$response['success'] ) && $response['success'] === true ){
            
$data = @ new SimpleXMLElement$response['linkedin'] );

            if ( ! 
is_object$data ) ){
                throw new 
Social_Exception"User profile request failed! $this->network_name: invalid xml data.");
            }

            
$this->user->profile->identifier  = (string) $data->{'id'};
            
$this->user->profile->firstName   = (string) $data->{'first-name'};
            
$this->user->profile->lastName    = (string) $data->{'last-name'};
            
$this->user->profile->displayName trim$this->user->profile->firstName " " $this->user->profile->lastName );

            
$this->user->profile->email         = (string) $data->{'email-address'};
            
$this->user->profile->emailVerified = (string) $data->{'email-address'};

            
$this->user->profile->photoURL    = (string) $data->{'picture-url'};
            
$this->user->profile->profileURL  = (string) $data->{'public-profile-url'};
            
$this->user->profile->description = (string) $data->{'summary'};

            if( 
$data->{'phone-numbers'} && $data->{'phone-numbers'}->{'phone-number'} ){
                
$this->user->profile->phone = (string) $data->{'phone-numbers'}->{'phone-number'}->{'phone-number'};
            } else {
                
$this->user->profile->phone null;
            }

            if( 
$data->{'date-of-birth'} ) {
                
$this->user->profile->birthDay   = (string) $data->{'date-of-birth'}->day;
                
$this->user->profile->birthMonth = (string) $data->{'date-of-birth'}->month;
                
$this->user->profile->birthYear  = (string) $data->{'date-of-birth'}->year;
            }

            return 
$this->user->profile;
        } else {
            throw new 
Social_Exception"User profile request failed! $this->network_name returned an invalid response." );
        }
    }

    function 
getUserContacts() {
        try{
            
$response $this->api->profile('~/connections:(id,first-name,last-name,picture-url,public-profile-url,summary)');
        } catch( 
LinkedInException $e ) {
            throw new 
Social_Exception"User contacts request failed! $this->network_name error: $e);
        }

        if( ! 
$response || ! $response['success'] ){
            return array();
        }

        
$connections = new SimpleXMLElement$response['linkedin'] );

        
$contacts = array();

        foreach( 
$connections->person as $connection ) {
            
$uc = new Social_User_Contact();

            
$uc->identifier  = (string) $connection->id;
            
$uc->displayName = (string) $connection->{'last-name'} . " " $connection->{'first-name'};
            
$uc->profileURL  = (string) $connection->{'public-profile-url'};
            
$uc->photoURL    = (string) $connection->{'picture-url'};
            
$uc->description = (string) $connection->{'summary'};

            
$contacts[] = $uc;
        }

        return 
$contacts;
    }

    function 
setUserStatus$status ) {
        
$parameters = array();
        
$private    true;

        if( 
is_array$status ) ){
            if( isset( 
$status[0] ) && ! empty( $status[0] ) ) $parameters["title"] = $status[0];
            if( isset( 
$status[1] ) && ! empty( $status[1] ) ) $parameters["comment"] = $status[1];
            if( isset( 
$status[2] ) && ! empty( $status[2] ) ) $parameters["submitted-url"] = $status[2];
            if( isset( 
$status[3] ) && ! empty( $status[3] ) ) $parameters["submitted-image-url"] = $status[3];
            if( isset( 
$status[4] ) && ! empty( $status[4] ) ) $private $status[4];
        } else {
            
$parameters["comment"] = $status;
        }

        try{
            
$response  $this->api->share'new'$parameters$private );
        } catch( 
LinkedInException $e ) {
            throw new 
Social_Exception"Update user status update failed!  $this->network_name error: $e);
        }

        if ( ! 
$response || ! $response['success'] )
        {
            throw new 
Social_Exception"Update user status update failed! $this->network_name error." );
        }
    }

    function 
getUserActivity$stream ) {
        try{
            if( 
$stream == "me" ){
                
$response  $this->api->updates'?type=SHAR&scope=self&count=25' );
            } else {
                
$response  $this->api->updates'?type=SHAR&count=25' );
            }
        } catch( 
LinkedInException $e ) {
            throw new 
Social_Exception"User activity stream request failed! $this->network_name error: $e);
        }

        if( ! 
$response || ! $response['success'] ){
            return array();
        }

        
$updates = new SimpleXMLElement$response['linkedin'] );

        
$activities = array();

        foreach( 
$updates->update as $update ) {
            
$person $update->{'update-content'}->person;
            
$share  $update->{'update-content'}->person->{'current-share'};

            
$ua = new Social_User_Activity();

            
$ua->id = (string) $update->id;
            
$ua->date = (string) $update->timestamp;
            
$ua->text = (string) $share->{'comment'};

            
$ua->user->identifier = (string) $person->id;
            
$ua->user->displayName = (string) $person->{'first-name'} . ' ' $person->{'last-name'};
            
$ua->user->profileURL = (string) $person->{'site-standard-profile-request'}->url;
            
$ua->user->photoURL null;

            
$activities[] = $ua;
        }

        return 
$activities;
    }
}
Онлайн: 1
Реклама