]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - include/vCard.php
Release 6.4.0
[Github/sugarcrm.git] / include / vCard.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 /**
39  * vCard implementation
40  * @api
41  */
42 class vCard
43 {
44         protected $properties = array();
45
46         protected $name = 'no_name';
47
48         public function clear()
49         {
50                 $this->properties = array();
51         }
52
53         function loadContact($contactid, $module='Contacts') {
54                 global $app_list_strings;
55
56                 require_once($GLOBALS['beanFiles'][$GLOBALS['beanList'][$module]]);
57                 $contact = new $GLOBALS['beanList'][$module]();
58                 $contact->retrieve($contactid);
59                 // cn: bug 8504 - CF/LB break Outlook's vCard import
60                 $bad = array("\n", "\r");
61                 $good = array("=0A", "=0D");
62                 $encoding = '';
63                 if(strpos($contact->primary_address_street, "\n") || strpos($contact->primary_address_street, "\r")) {
64                         $contact->primary_address_street = str_replace($bad, $good, $contact->primary_address_street);
65                         $encoding = 'QUOTED-PRINTABLE';
66                 }
67
68                 $this->setName(from_html($contact->first_name), from_html($contact->last_name), $app_list_strings['salutation_dom'][from_html($contact->salutation)]);
69                 if ( isset($contact->birthdate) )
70             $this->setBirthDate(from_html($contact->birthdate));
71                 $this->setPhoneNumber(from_html($contact->phone_fax), 'FAX');
72                 $this->setPhoneNumber(from_html($contact->phone_home), 'HOME');
73                 $this->setPhoneNumber(from_html($contact->phone_mobile), 'CELL');
74                 $this->setPhoneNumber(from_html($contact->phone_work), 'WORK');
75                 $this->setEmail(from_html($contact->email1));
76                 $this->setAddress(from_html($contact->primary_address_street), from_html($contact->primary_address_city), from_html($contact->primary_address_state), from_html($contact->primary_address_postalcode), from_html($contact->primary_address_country), 'WORK', $encoding);
77                 if ( isset($contact->account_name) )
78             $this->setORG(from_html($contact->account_name), from_html($contact->department));
79         else
80             $this->setORG('', from_html($contact->department));
81                 $this->setTitle($contact->title);
82         }
83
84         function setTitle($title){
85                 $this->setProperty("TITLE",$title );
86         }
87         function setORG($org, $dep){
88                 $this->setProperty("ORG","$org;$dep" );
89         }
90         function setAddress($address, $city, $state,$postal, $country, $type, $encoding=''){
91                 if(!empty($encoding)) {
92                         $encoding = ";ENCODING={$encoding}";
93                 }
94                 $this->setProperty("ADR;$type$encoding",";;$address;$city;$state;$postal;$country" );
95         }
96
97         function setName($first_name, $last_name, $prefix){
98                 $this->name = strtr($first_name.'_'.$last_name, ' ' , '_');
99                 $this->setProperty('N',$last_name.';'.$first_name.';;'.$prefix );
100                 $this->setProperty('FN',"$prefix $first_name $last_name");
101         }
102
103         function setEmail($address){
104                 $this->setProperty('EMAIL;INTERNET', $address);
105         }
106
107         function setPhoneNumber( $number, $type)
108         {
109                 if($type != 'FAX') {
110                     $this->setProperty("TEL;$type", $number);
111                 }
112                 else {
113                     $this->setProperty("TEL;WORK;$type", $number);
114                 }
115         }
116         function setBirthDate($date){
117                         $this->setProperty('BDAY',$date);
118         }
119         function getProperty($name){
120                 if(isset($this->properties[$name]))
121                         return $this->properties[$name];
122                 return null;
123         }
124
125         function setProperty($name, $value){
126                 $this->properties[$name] = $value;
127         }
128
129         function toString(){
130             global $locale;
131                 $temp = "BEGIN:VCARD\n";
132                 foreach($this->properties as $key=>$value){
133                     if(!empty($value)) {
134                             $temp .= $key. ';CHARSET='.strtolower($locale->getExportCharset()).':'.$value."\n";
135                     } else {
136                         $temp .= $key. ':'.$value."\n";
137                     }
138                 }
139                 $temp.= "END:VCARD\n";
140
141
142                 return $temp;
143         }
144
145         function saveVCard(){
146                 global $locale;
147                 $content = $this->toString();
148                 if ( !defined('SUGAR_PHPUNIT_RUNNER') ) {
149             header("Content-Disposition: attachment; filename={$this->name}.vcf");
150             header("Content-Type: text/x-vcard; charset=".$locale->getExportCharset());
151             header("Expires: Mon, 26 Jul 1997 05:00:00 GMT" );
152             header("Last-Modified: " . TimeDate::httpTime() );
153             header("Cache-Control: max-age=0");
154             header("Pragma: public");
155             //bug45856 IIS Doesn't like this to be set and it causes the vCard to not get saved
156             if (preg_match('/iis/i', $_SERVER['SERVER_SOFTWARE']) === 0) {
157                 header("Content-Length: ".strlen($content));
158             }
159         }
160
161                 print $locale->translateCharset($content, 'UTF-8', $locale->getExportCharset());
162         }
163
164         function importVCard($filename, $module='Contacts'){
165                 global $current_user;
166                 $lines =        file($filename);
167                 $start = false;
168                 $contact = loadBean($module);
169
170                 $contact->title = 'imported';
171                 $contact->assigned_user_id = $current_user->id;
172                 $fullname = '';
173         $email_suffix = 1;
174
175                 for($index = 0; $index < sizeof($lines); $index++){
176                         $line = $lines[$index];
177
178             // check the encoding and change it if needed
179             $locale = new Localization();
180             $encoding = $locale->detectCharset($line);
181             if ( $encoding != $GLOBALS['sugar_config']['default_charset'] ) {
182                 $line = $locale->translateCharset($line,$encoding);
183             }
184                         $line = trim($line);
185                         if($start){
186                                 //VCARD is done
187                                 if(substr_count(strtoupper($line), 'END:VCARD')){
188                                         if(!isset($contact->last_name)){
189                                                 $contact->last_name = $fullname;
190                                         }
191                     break;
192                                 }
193                                 $keyvalue = explode(':',$line);
194                                 if(sizeof($keyvalue)==2){
195                                         $value = $keyvalue[1];
196                                         for($newindex= $index + 1;  $newindex < sizeof($lines), substr_count($lines[$newindex], ':') == 0; $newindex++){
197                                                         $value .= $lines[$newindex];
198                                                         $index = $newindex;
199                                         }
200                                         $values = explode(';',$value );
201                                         $key = strtoupper($keyvalue[0]);
202                                         $key = strtr($key, '=', '');
203                                         $key = strtr($key, ',',';');
204                                         $keys = explode(';' ,$key);
205
206                                         if($keys[0] == 'TEL'){
207                                                 if(substr_count($key, 'WORK') > 0){
208                                                                 if(substr_count($key, 'FAX') > 0){
209                                                                                 if(!isset($contact->phone_fax)){
210                                                                                         $contact->phone_fax = $value;
211                                                                                 }
212                                                                 }else{
213                                                                         if(!isset($contact->phone_work)){
214                                                                                         $contact->phone_work = $value;
215                                                                         }
216                                                                 }
217                                                 }
218                                                 if(substr_count($key, 'HOME') > 0){
219                                                                 if(substr_count($key, 'FAX') > 0){
220                                                                                 if(!isset($contact->phone_fax)){
221                                                                                         $contact->phone_fax = $value;
222                                                                                 }
223                                                                 }else{
224                                                                         if(!isset($contact->phone_home)){
225                                                                                         $contact->phone_home = $value;
226                                                                         }
227                                                                 }
228                                                 }
229                                                 if(substr_count($key, 'CELL') > 0){
230                                                                 if(!isset($contact->phone_mobile)){
231                                                                                 $contact->phone_mobile = $value;
232                                                                 }
233
234                                                 }
235                                                 if(substr_count($key, 'FAX') > 0){
236                                                                                 if(!isset($contact->phone_fax)){
237                                                                                         $contact->phone_fax = $value;
238                                                 }
239
240                                                 }
241
242                                         }
243                                         if($keys[0] == 'N'){
244                                                 if(sizeof($values) > 0)
245                                                         $contact->last_name = $values[0];
246                                                 if(sizeof($values) > 1)
247                                                         $contact->first_name = $values[1];
248                                                 if(sizeof($values) > 2)
249                                                         $contact->salutation = $values[2];
250
251
252
253                                         }
254                                         if($keys[0] == 'FN'){
255                                                 $fullname = $value;
256
257
258                                         }
259
260                 }
261                                         if($keys[0] == 'ADR'){
262                                                 if(substr_count($key, 'WORK') > 0 && (substr_count($key, 'POSTAL') > 0|| substr_count($key, 'PARCEL') == 0)){
263
264                                                                 if(!isset($contact->primary_address_street) && sizeof($values) > 2){
265                                         $textBreaks = array("\n", "\r");
266                                         $vcardBreaks = array("=0A", "=0D");
267                                                                                 $contact->primary_address_street = str_replace($vcardBreaks, $textBreaks, $values[2]);
268                                                                 }
269                                                                 if(!isset($contact->primary_address_city) && sizeof($values) > 3){
270                                                                                 $contact->primary_address_city = $values[3];
271                                                                 }
272                                                                 if(!isset($contact->primary_address_state) && sizeof($values) > 4){
273                                                                                 $contact->primary_address_state = $values[4];
274                                                                 }
275                                                                 if(!isset($contact->primary_address_postalcode) && sizeof($values) > 5){
276                                                                                 $contact->primary_address_postalcode = $values[5];
277                                                                 }
278                                                                 if(!isset($contact->primary_address_country) && sizeof($values) > 6){
279                                                                                 $contact->primary_address_country = $values[6];
280                                                                 }
281                                                 }
282                                         }
283
284                                         if($keys[0] == 'TITLE'){
285                                                 $contact->title = $value;
286
287                                         }
288                                         if($keys[0] == 'EMAIL'){
289                         $field = 'email' . $email_suffix;
290                                                 if(!isset($contact->$field)) {
291                                                    $contact->$field = $value;
292                                                 }
293
294                                                 if($email_suffix == 1) {
295                                                    $_REQUEST['email1'] = $value;
296                                                 }
297
298                                                 $email_suffix++;
299                                         }
300
301                                         if($keys[0] == 'ORG'){
302                         $GLOBALS['log']->debug('I found a company name');
303                                                 if(!empty($value)){
304                             $GLOBALS['log']->debug('I found a company name (fer real)');
305                             if ( is_a($contact,"Contact") || is_a($contact,"Lead") ) {
306                                 $GLOBALS['log']->debug('And Im dealing with a person!');
307                                 $accountBean = loadBean('Accounts');
308                                 // It's a contact, we better try and match up an account
309                                                                 $full_company_name = trim($values[0]);
310                                 // Do we have a full company name match?
311                                 $result = $accountBean->retrieve_by_string_fields(array('name' => $full_company_name, 'deleted' => 0));
312                                 if ( ! isset($result->id) ) {
313                                     // Try to trim the full company name down, see if we get some other matches
314                                     $vCardTrimStrings = array('/ltd\.*/i'=>'',
315                                                               '/llc\.*/i'=>'',
316                                                               '/gmbh\.*/i'=>'',
317                                                               '/inc\.*/i'=>'',
318                                                               '/\.com/i'=>'',
319                                         );
320                                     // Allow users to override the trimming strings
321                                     if ( file_exists('custom/include/vCardTrimStrings.php') ) {
322                                         require_once('custom/include/vCardTrimStrings.php');
323                                     }
324                                     $short_company_name = trim(preg_replace(array_keys($vCardTrimStrings),$vCardTrimStrings,$full_company_name)," ,.");
325
326                                     $GLOBALS['log']->debug('Trying an extended search for: '.$short_company_name);
327                                     $result = $accountBean->retrieve_by_string_fields(array('name' => $short_company_name, 'deleted' => 0));
328                                 }
329
330                                 if (  is_a($contact,"Lead") || ! isset($result->id) ) {
331                                     // We could not find a parent account, or this is a lead so only copy the name, no linking
332                                     $GLOBALS['log']->debug("Did not find a matching company ($full_company_name)");
333                                     $contact->account_id = '';
334                                     $contact->account_name = $full_company_name;
335                                 } else {
336                                     $GLOBALS['log']->debug("Found a matching company: ".$result->name);
337                                     $contact->account_id = $result->id;
338                                     $contact->account_name = $result->name;
339                                 }
340                                 $contact->department = $values[1];
341                             } else{
342                                                                 $contact->department = $value;
343                             }
344                                                 }
345
346                                         }
347
348                                 }
349
350
351
352
353                         //FOUND THE BEGINING OF THE VCARD
354                         if(!$start && substr_count(strtoupper($line), 'BEGIN:VCARD')){
355                                 $start = true;
356                         }
357
358                 }
359
360         if ( is_a($contact, "Contact") && empty($contact->account_id) && !empty($contact->account_name) ) {
361             $GLOBALS['log']->debug("Look ma! I'm creating a new account: ".$contact->account_name);
362             // We need to create a new account
363             $accountBean = loadBean('Accounts');
364             // Populate the newly created account with all of the contact information
365             foreach ( $contact->field_defs as $field_name => $field_def ) {
366                 if ( !empty($contact->$field_name) ) {
367                     $accountBean->$field_name = $contact->$field_name;
368                 }
369             }
370             $accountBean->name = $contact->account_name;
371             $accountBean->save();
372             $contact->account_id = $accountBean->id;
373         }
374
375         $contactId = $contact->save();
376         return $contactId;
377         }
378         }
379
380
381
382
383
384
385
386
387 ?>