]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - modules/Connectors/connectors/sources/ext/rest/linkedin/linkedin.php
Release 6.4.0
[Github/sugarcrm.git] / modules / Connectors / connectors / sources / ext / rest / linkedin / linkedin.php
1 <?php
2 if(!defined('sugarEntry') || !sugarEntry) die('Not A Valid Entry Point');
3 /*********************************************************************************
4  * SugarCRM Community Edition is a customer relationship management program developed by
5  * SugarCRM, Inc. Copyright (C) 2004-2011 SugarCRM Inc.
6  * 
7  * This program is free software; you can redistribute it and/or modify it under
8  * the terms of the GNU Affero General Public License version 3 as published by the
9  * Free Software Foundation with the addition of the following permission added
10  * to Section 15 as permitted in Section 7(a): FOR ANY PART OF THE COVERED WORK
11  * IN WHICH THE COPYRIGHT IS OWNED BY SUGARCRM, SUGARCRM DISCLAIMS THE WARRANTY
12  * OF NON INFRINGEMENT OF THIRD PARTY RIGHTS.
13  * 
14  * This program is distributed in the hope that it will be useful, but WITHOUT
15  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
16  * FOR A PARTICULAR PURPOSE.  See the GNU Affero General Public License for more
17  * details.
18  * 
19  * You should have received a copy of the GNU Affero General Public License along with
20  * this program; if not, see http://www.gnu.org/licenses or write to the Free
21  * Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
22  * 02110-1301 USA.
23  * 
24  * You can contact SugarCRM, Inc. headquarters at 10050 North Wolfe Road,
25  * SW2-130, Cupertino, CA 95014, USA. or at email address contact@sugarcrm.com.
26  * 
27  * The interactive user interfaces in modified source and object code versions
28  * of this program must display Appropriate Legal Notices, as required under
29  * Section 5 of the GNU Affero General Public License version 3.
30  * 
31  * In accordance with Section 7(b) of the GNU Affero General Public License version 3,
32  * these Appropriate Legal Notices must retain the display of the "Powered by
33  * SugarCRM" logo. If the display of the logo is not reasonably feasible for
34  * technical reasons, the Appropriate Legal Notices must display the words
35  * "Powered by SugarCRM".
36  ********************************************************************************/
37
38 require_once('include/connectors/sources/ext/rest/rest.php');
39 class ext_rest_linkedin extends ext_rest {
40         public function __construct(){
41                 parent::__construct();
42                 $this->_enable_in_wizard = false;
43                 $this->_enable_in_hover = true;
44         }
45         
46         /*
47          * getItem
48          *
49          * As the linked in connector does not have a true API call, we simply
50          * override this abstract method
51          */
52         public function getItem($args=array(), $module=null){}
53
54
55     /*
56          * getList
57          *
58          * As the linked in connector does not have a true API call, we simply
59          * override this abstract method
60
61          */
62
63     public function getList($args = array(), $module = null)
64     {
65         $params = array('count' => 10, 'start' => 0);
66
67         if (!empty($args['maxResults']))
68             $params['count'] = $args['maxResults'];
69
70         if (!empty($args['startIndex']))
71             $params['start'] = $args['startIndex'];
72
73
74         $results = FALSE;
75
76         try
77         {
78             $queryFields = "(id,first-name,last-name,industry,headline,summary,location:(name,country:(code)),positions:(title,summary,company:(name)))";
79             $url = "http://api.linkedin.com/v1/people/~/connections:$queryFields";
80             $response = $this->_eapm->makeRequest("GET", $url, $params);
81             $results = $this->formatListResponse($response);
82         }
83
84         catch (Exception $e)
85         {
86             $GLOBALS['log']->fatal("Unable to retrieve item list for linkedin connector.");
87         }
88
89         return $results;
90     }
91
92
93     private function formatListResponse($resp)
94     {
95         $records = array();
96         $xmlResp = simplexml_load_string($resp);
97         if ($xmlResp === FALSE)
98             throw new Exception('Unable to parse list response');
99
100         foreach ($xmlResp->person as $person)
101         {
102             $tmp = array();
103             $this->convertPersonListResponeToArray($person, $tmp);
104             $records[] = $tmp;
105
106         }
107
108         return array('totalResults' => (int)$xmlResp->attributes()->total,
109                      'startIndex' => (int)$xmlResp->attributes()->start,
110                      'records' => $records);
111     }
112
113
114     private function convertPersonListResponeToArray(SimpleXMLElement $xmlResp, &$result, $suffix = '')
115     {
116         foreach ((array)$xmlResp as $k => $v)
117         {
118             $key = !empty($suffix) ? "{$suffix}-{$k}" : $k;
119             if ($v instanceof SimpleXMLElement) {
120                 $this->convertPersonListResponeToArray($v, $result, $key);
121             }
122
123             else if (is_array($v)) //Skip over attributes
124             {
125                 if ($k == 'position')
126                 {
127                     $latestPosition = $v[0];
128                     $result['company_name'] = (string)$latestPosition->company->name;
129                     $result['title'] = (string)$latestPosition->title;
130                     $result['position-summary'] = (string)$latestPosition->summary;
131
132                 }
133             }
134             else
135             {
136                 $result[$key] = $v;
137             }
138         }
139     }
140 }
141
142 ?>