-
Notifications
You must be signed in to change notification settings - Fork 0
/
vcard_convert.php
1293 lines (1131 loc) · 39.1 KB
/
vcard_convert.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?php
session_start();
/*
+-----------------------------------------------------------------------+
| vCard to LDIF/CSV Converter Class |
| extends the PEAR Contact_Vcard_Parse Class |
| |
| Copyright (C) 2006-2013, Thomas Bruederli - Switzerland |
| Licensed under the GNU GPL |
| |
+-----------------------------------------------------------------------+
| Author: Thomas Bruederli <thomas@brotherli.ch> |
+-----------------------------------------------------------------------+
*/
// version 1.31 required
require_once('Contact_Vcard_Parse.php');
/**
* Typedef of a vCard object
*/
class vCard
{
var $version;
var $displayname;
var $surname;
var $firstname;
var $middlename;
var $nickname;
var $title;
var $birthday;
var $organization;
var $department;
var $jobtitle;
var $home = array();
var $work = array();
var $countrycode;
var $relatedname;
var $email;
var $email2;
var $email3;
var $pager;
var $mobile;
var $im = array();
var $notes;
var $categories;
var $uid;
var $photo;
}
/**
* vCard to LDIF/CSV Converter Class
*/
class vcard_convert extends Contact_Vcard_Parse
{
// define mapping for newline values
static $NEWLINE_MAP = array(
'\n' => "\n",
'n' => "\n",
'lf' => "\n",
'\r' => "\r",
'r' => "\r",
'cr' => "\r",
'rn' => "\r\n",
'\r\n' => "\r\n",
'crlf' => "\r\n",
);
var $parsed = array();
var $vcards = array();
var $file_charset = 'ISO-8859-1';
var $charset = 'ISO-8859-1';
var $export_count = 0;
var $mailonly = false;
var $phoneonly = false;
var $accesscode = null;
/**
* Constructor taking a list of converter properties
*/
function __construct($p = array())
{
foreach ($p as $prop => $value)
$this->$prop = $value;
}
/**
* Read a file and parse it
*
* @override
*/
function fromFile($filename, $decode_qp = true)
{
if (!filesize($filename) || ($text = $this->fileGetContents($filename)) === false)
return false;
// dump to, and get return from, the fromText() method.
return $this->fromText($text, $decode_qp);
}
/**
* Parse a given string for vCards
*
* @override
*/
function fromText($text, $decode_qp = true)
{
// check if charsets are specified (usually vcard version < 3.0 but this is not reliable)
if (preg_match('/charset=/i', substr($text, 0, 2048)))
$this->charset = null;
// try to detect charset of the whole file
else if ($encoding = vcard_convert::get_charset($text))
$this->charset = $this->file_charset = $encoding;
// convert document to UTF-8
if (isset($this->charset) && $this->charset != 'UTF-8' && $this->charset != 'ISO-8859-1')
{
$text = $this->utf8_convert($text);
$this->charset = 'UTF-8';
}
$this->parsed = parent::fromText($text, $decode_qp);
if (!empty($this->parsed))
{
$this->normalize();
// after normalize() all values should be UTF-8
if (!isset($this->charset))
$this->charset = 'UTF-8';
return count($this->cards);
}
else
return false;
}
/**
* Convert the abstract vCard structure into address objects
*
* @access private
*/
function normalize()
{
$this->cards = array();
if($_SESSION['user']=="Paid_User"){
foreach($this->parsed as $i => $card)
{
$vcard = new vCard;
$vcard->version = (float)$card['VERSION'][0]['value'][0][0];
// convert all values to UTF-8 according to their charset param
if (!isset($this->charset))
$card = $this->card2utf8($card);
// extract names
$names = $card['N'][0]['value'];
$vcard->surname = trim($names[0][0]);
$vcard->firstname = trim($names[1][0]);
$vcard->middlename = trim($names[2][0]);
$vcard->title = trim($names[3][0]);
if (empty($vcard->title) && isset($card['TITLE']))
$vcard->title = trim($card['TITLE'][0]['value'][0][0]);
$vcard->displayname = isset($card['FN']) ? trim($card['FN'][0]['value'][0][0]) : '';
$vcard->nickname = isset($card['NICKNAME']) ? trim($card['NICKNAME'][0]['value'][0][0]) : '';
// extract notes
$vcard->notes = isset($card['NOTE']) ? ltrim($card['NOTE'][0]['value'][0][0]) : '';
// extract birthday and anniversary
foreach (array('BDAY' => 'birthday', 'ANNIVERSARY' => 'anniversary', 'X-ANNIVERSARY' => 'anniversary') as $vcf => $propname)
{
if (is_array($card[$vcf]))
{
$temp = preg_replace('/[\-\.\/]/', '', $card[$vcf][0]['value'][0][0]);
$vcard->$propname = array(
'y' => substr($temp,0,4),
'm' => substr($temp,4,2),
'd' => substr($temp,6,2));
}
}
if (is_array($card['GENDER']))
$vcard->gender = $card['GENDER'][0]['value'][0][0];
else if (is_array($card['X-GENDER']))
$vcard->gender = $card['X-GENDER'][0]['value'][0][0];
if (!empty($vcard->gender))
$vcard->gender = strtoupper($vcard->gender[0]);
// extract job_title
if (is_array($card['TITLE']))
$vcard->jobtitle = $card['TITLE'][0]['value'][0][0];
// extract UID
if (is_array($card['UID']))
$vcard->uid = $card['UID'][0]['value'][0][0];
// extract org and dep
if (is_array($card['ORG']) && ($temp = $card['ORG'][0]['value']))
{
$vcard->organization = trim($temp[0][0]);
$vcard->department = trim($temp[1][0]);
}
// extract urls
if (is_array($card['URL']))
$this->parse_url($card['URL'], $vcard);
// extract addresses
if (is_array($card['ADR']))
$this->parse_adr($card['ADR'], $vcard);
// extract phones
if (is_array($card['TEL']))
$this->parse_tel($card['TEL'], $vcard);
// read Apple Address Book proprietary fields
for ($n = 1; $n <= 9; $n++)
{
$prefix = 'ITEM'.$n;
if (is_array($card["$prefix.TEL"])) {
$this->parse_tel($card["$prefix.TEL"], $vcard);
}
if (is_array($card["$prefix.URL"])) {
$this->parse_url($card["$prefix.URL"], $vcard);
}
if (is_array($card["$prefix.ADR"])) {
$this->parse_adr($card["$prefix.ADR"], $vcard);
}
if (is_array($card["$prefix.X-ABADR"])) {
$this->parse_cc($card["$prefix.X-ABADR"], $vcard);
}
if (is_array($card["$prefix.X-ABDATE"])) {
$this->parse_abdate($card["$prefix.X-ABDATE"], $vcard, $card["$prefix.X-ABLABEL"][0]);
}
if (is_array($card["$prefix.X-ABRELATEDNAMES"])) {
$this->parse_rn($card["$prefix.X-ABRELATEDNAMES"], $vcard /*, $card["$prefix.X-ABLABEL"][0]*/);
}
}
// extract e-mail addresses
$a_email = array();
$n = 0;
if (is_array($card['EMAIL'])) {
while (isset($card['EMAIL'][$n])) {
$a_email[] = $card['EMAIL'][$n]['value'][0][0];
$n++;
}
}
if ($n < 2) { //as only 3 e-mail address will be exported we don't need to search for more
for ($n = 1; $n <= 9; $n++) {
if (is_array($card["ITEM$n.EMAIL"]))
{
$a_email[] = $card["ITEM$n.EMAIL"][0]['value'][0][0];
if (isset($card["ITEM$n.EMAIL"][1]))
$a_email[] = $card["ITEM$n.EMAIL"][1]['value'][0][0];
}
}
}
if (count($a_email))
$vcard->email = $a_email[0];
if (!empty($a_email[1]))
$vcard->email2 = $a_email[1];
if (!empty($a_email[2]))
$vcard->email3 = $a_email[2];
// find IM entries
if (is_array($card['X-AIM']))
$vcard->im['aim'] = $card['X-AIM'][0]['value'][0][0];
if (is_array($card['X-IQC']))
$vcard->im['icq'] = $card['X-ICQ'][0]['value'][0][0];
if (is_array($card['X-MSN']))
$vcard->im['msn'] = $card['X-MSN'][0]['value'][0][0];
if (is_array($card['X-JABBER']))
$vcard->im['jabber'] = $card['X-JABBER'][0]['value'][0][0];
if (is_array($card['PHOTO'][0]))
$vcard->photo = array('data' => $card['PHOTO'][0]['value'][0][0], 'encoding' => $card['PHOTO'][0]['param']['ENCODING'][0], 'type' => $card['PHOTO'][0]['param']['TYPE'][0]);
$vcard->categories = join(',', (array)$card['CATEGORIES'][0]['value'][0]);
$this->cards[] = $vcard;
}
}else{
foreach($this->parsed as $i => $card){
if($i<5){
$vcard = new vCard;
$vcard->version = (float)$card['VERSION'][0]['value'][0][0];
// convert all values to UTF-8 according to their charset param
if (!isset($this->charset))
$card = $this->card2utf8($card);
// extract names
$names = $card['N'][0]['value'];
$vcard->surname = trim($names[0][0]);
$vcard->firstname = trim($names[1][0]);
$vcard->middlename = trim($names[2][0]);
$vcard->title = trim($names[3][0]);
if (empty($vcard->title) && isset($card['TITLE']))
$vcard->title = trim($card['TITLE'][0]['value'][0][0]);
$vcard->displayname = isset($card['FN']) ? trim($card['FN'][0]['value'][0][0]) : '';
$vcard->nickname = isset($card['NICKNAME']) ? trim($card['NICKNAME'][0]['value'][0][0]) : '';
// extract notes
$vcard->notes = isset($card['NOTE']) ? ltrim($card['NOTE'][0]['value'][0][0]) : '';
// extract birthday and anniversary
foreach (array('BDAY' => 'birthday', 'ANNIVERSARY' => 'anniversary', 'X-ANNIVERSARY' => 'anniversary') as $vcf => $propname)
{
if (is_array($card[$vcf]))
{
$temp = preg_replace('/[\-\.\/]/', '', $card[$vcf][0]['value'][0][0]);
$vcard->$propname = array(
'y' => substr($temp,0,4),
'm' => substr($temp,4,2),
'd' => substr($temp,6,2));
}
}
if (is_array($card['GENDER']))
$vcard->gender = $card['GENDER'][0]['value'][0][0];
else if (is_array($card['X-GENDER']))
$vcard->gender = $card['X-GENDER'][0]['value'][0][0];
if (!empty($vcard->gender))
$vcard->gender = strtoupper($vcard->gender[0]);
// extract job_title
if (is_array($card['TITLE']))
$vcard->jobtitle = $card['TITLE'][0]['value'][0][0];
// extract UID
if (is_array($card['UID']))
$vcard->uid = $card['UID'][0]['value'][0][0];
// extract org and dep
if (is_array($card['ORG']) && ($temp = $card['ORG'][0]['value']))
{
$vcard->organization = trim($temp[0][0]);
$vcard->department = trim($temp[1][0]);
}
// extract urls
if (is_array($card['URL']))
$this->parse_url($card['URL'], $vcard);
// extract addresses
if (is_array($card['ADR']))
$this->parse_adr($card['ADR'], $vcard);
// extract phones
if (is_array($card['TEL']))
$this->parse_tel($card['TEL'], $vcard);
// read Apple Address Book proprietary fields
for ($n = 1; $n <= 9; $n++)
{
$prefix = 'ITEM'.$n;
if (is_array($card["$prefix.TEL"])) {
$this->parse_tel($card["$prefix.TEL"], $vcard);
}
if (is_array($card["$prefix.URL"])) {
$this->parse_url($card["$prefix.URL"], $vcard);
}
if (is_array($card["$prefix.ADR"])) {
$this->parse_adr($card["$prefix.ADR"], $vcard);
}
if (is_array($card["$prefix.X-ABADR"])) {
$this->parse_cc($card["$prefix.X-ABADR"], $vcard);
}
if (is_array($card["$prefix.X-ABDATE"])) {
$this->parse_abdate($card["$prefix.X-ABDATE"], $vcard, $card["$prefix.X-ABLABEL"][0]);
}
if (is_array($card["$prefix.X-ABRELATEDNAMES"])) {
$this->parse_rn($card["$prefix.X-ABRELATEDNAMES"], $vcard /*, $card["$prefix.X-ABLABEL"][0]*/);
}
}
// extract e-mail addresses
$a_email = array();
$n = 0;
if (is_array($card['EMAIL'])) {
while (isset($card['EMAIL'][$n])) {
$a_email[] = $card['EMAIL'][$n]['value'][0][0];
$n++;
}
}
if ($n < 2) { //as only 3 e-mail address will be exported we don't need to search for more
for ($n = 1; $n <= 9; $n++) {
if (is_array($card["ITEM$n.EMAIL"]))
{
$a_email[] = $card["ITEM$n.EMAIL"][0]['value'][0][0];
if (isset($card["ITEM$n.EMAIL"][1]))
$a_email[] = $card["ITEM$n.EMAIL"][1]['value'][0][0];
}
}
}
if (count($a_email))
$vcard->email = $a_email[0];
if (!empty($a_email[1]))
$vcard->email2 = $a_email[1];
if (!empty($a_email[2]))
$vcard->email3 = $a_email[2];
// find IM entries
if (is_array($card['X-AIM']))
$vcard->im['aim'] = $card['X-AIM'][0]['value'][0][0];
if (is_array($card['X-IQC']))
$vcard->im['icq'] = $card['X-ICQ'][0]['value'][0][0];
if (is_array($card['X-MSN']))
$vcard->im['msn'] = $card['X-MSN'][0]['value'][0][0];
if (is_array($card['X-JABBER']))
$vcard->im['jabber'] = $card['X-JABBER'][0]['value'][0][0];
if (is_array($card['PHOTO'][0]))
$vcard->photo = array('data' => $card['PHOTO'][0]['value'][0][0], 'encoding' => $card['PHOTO'][0]['param']['ENCODING'][0], 'type' => $card['PHOTO'][0]['param']['TYPE'][0]);
$vcard->categories = join(',', (array)$card['CATEGORIES'][0]['value'][0]);
$this->cards[] = $vcard;
}
}
}
$_SESSION['user']="";
}
/**
* Helper method to parse an URL node
*
* @access private
*/
function parse_url(&$node, &$vcard)
{
foreach($node as $url)
{
if (empty($url['param']['TYPE'][0]) || in_array_nc("WORK", $url['param']['TYPE']) || in_array_nc("PREF", $url['param']['TYPE']))
$vcard->work['url'] = $url['value'][0][0];
if (in_array_nc("HOME", $url['param']['TYPE']))
$vcard->home['url'] = $url['value'][0][0];
}
}
/**
* Helper method to parse first or preferred related name node (when available)
*
* @access private
*/
function parse_rn(&$node, &$vcard, $ablabel = null)
{
$key = $ablabel ? strtolower(trim($ablabel['value'][0][0], '_$!<>')) : null;
if (empty($key))
$key = 'relatedname';
foreach($node as $rn)
{
if (empty($vcard->{$key}) || in_array_nc("PREF", $rn['param']['TYPE']))
$vcard->{$key} = $rn['value'][0][0];
}
}
/**
* Helper method to parse first or preferred country code (when available)
*
* @access private
*/
function parse_cc(&$node, &$vcard)
{
foreach($node as $cc)
{
if (empty($vcard->countrycode) || in_array_nc("PREF", $cc['param']['TYPE']))
$vcard->countrycode = $cc['value'][0][0];
}
}
/**
* Helper method to parse an address node
*
* @access private
*/
function parse_adr(&$node, &$vcard)
{
$home = array();
$work = array();
foreach($node as $adr)
{
if (empty($adr['param']['TYPE'][0]) || in_array_nc("HOME", $adr['param']['TYPE']))
$home = $adr['value'];
if (in_array_nc("WORK", $adr['param']['TYPE']))
$work = $adr['value'];
}
// values not splitted by Contact_Vcard_Parse if key is like item1.ADR
if (strstr($home[0][0], ';'))
{
$temp = explode(';', $home[0][0]);
$vcard->home += array(
'addr1' => $temp[2],
'city' => $temp[3],
'state' => $temp[4],
'zipcode' => $temp[5],
'country' => $temp[6]);
}
else if (sizeof($home)>6)
{
$vcard->home += array(
'addr1' => $home[2][0],
'city' => $home[3][0],
'state' => $home[4][0],
'zipcode' => $home[5][0],
'country' => $home[6][0]);
}
// values not splitted by Contact_Vcard_Parse if key is like item1.ADR
if (strstr($work[0][0], ';'))
{
$temp = explode(';', $work[0][0]);
$vcard->work += array(
'office' => $temp[1],
'addr1' => $temp[2],
'city' => $temp[3],
'state' => $temp[4],
'zipcode' => $temp[5],
'country' => $temp[6]);
}
else if (sizeof($work)>6)
{
$vcard->work += array(
'addr1' => $work[2][0],
'city' => $work[3][0],
'state' => $work[4][0],
'zipcode' => $work[5][0],
'country' => $work[6][0]);
}
}
/**
* Helper method to parse an phone number node
*
* @access private
*/
function parse_tel(&$node, &$vcard)
{
foreach($node as $tel)
{
if (in_array_nc("PAGER", $tel['param']['TYPE']))
$vcard->pager = $tel['value'][0][0];
else if (in_array_nc("CELL", $tel['param']['TYPE']))
$vcard->mobile = $tel['value'][0][0];
else if (in_array_nc("HOME", $tel['param']['TYPE']) || in_array_nc("PREF", $tel['param']['TYPE']))
{
if (in_array_nc("FAX", $tel['param']['TYPE']))
$vcard->home['fax'] = $tel['value'][0][0];
else
$vcard->home['phone'] = $tel['value'][0][0];
}
else if (in_array_nc("WORK", $tel['param']['TYPE']))
{
if(in_array_nc("FAX", $tel['param']['TYPE']))
$vcard->work['fax'] = $tel['value'][0][0];
else
$vcard->work['phone'] = $tel['value'][0][0];
}
else if (in_array_nc("VOICE", $tel['param']['TYPE']))
{
if (!isset($vcard->home['phone']))
$vcard->home['phone'] = $tel['value'][0][0];
else if (!isset($vcard->work['phone']))
$vcard->work['phone'] = $tel['value'][0][0];
else if (!isset($vcard->mobile))
$vcard->mobile = $tel['value'][0][0];
}
if (in_array_nc("FAX", $tel['param']['TYPE']))
$vcard->fax = $tel['value'][0][0];
}
}
/**
* Helper method to parse X-ABDATE nodes
*
* @access private
*/
function parse_abdate(&$node, &$vcard, $ablabel = null)
{
$key = $ablabel ? strtolower(trim($ablabel['value'][0][0], '_$!<>')) : null;
if (empty($key))
$key = '_x_abdate';
foreach($node as $abdate)
{
if (empty($vcard->{$key}) && preg_match('/^(\d{4})-(\d{2})-(\d{2})/', $abdate['value'][0][0], $m))
{
$vcard->{$key} = array(
'y' => intval($m[1]),
'm' => intval($m[2]),
'd' => intval($m[3]),
);
}
}
}
/**
* Convert the parsed vCard data into CSV format
*/
function toCSV($delm="\t", $add_title=true, $encoding=null, $newlines="\n")
{
$out = '';
$eol = isset(self::$NEWLINE_MAP[$newlines]) ? self::$NEWLINE_MAP[$newlines] : $newlines;
$this->export_count = 0;
if ($add_title)
{
$out .= 'First Name'.$delm.'Last Name'.$delm.'Display Name'.$delm.'Nickname'.$delm.'E-mail Address'.$delm.'E-mail 2 Address'.$delm.'E-mail 3 Address'.$delm;
$out .= 'Home Phone'.$delm.'Business Phone'.$delm.'Home Fax'.$delm.'Business Fax'.$delm.'Pager'.$delm.'Mobile Phone'.$delm;
$out .= 'Home Street'.$delm.'Home Address 2'.$delm.'Home City'.$delm.'Home State'.$delm.'Home Postal Code'.$delm.'Home Country'.$delm;
$out .= 'Business Address'.$delm.'Business Address 2'.$delm.'Business City'.$delm.'Business State'.$delm.'Business Postal Code'.$delm;
$out .= 'Business Country'.$delm.'Country Code'.$delm.'Related name'.$delm.'Job Title'.$delm.'Department'.$delm.'Organization'.$delm.'Notes'.$delm;
$out .= 'Birthday'.$delm.'Anniversary'.$delm.'Gender'.$delm;
$out .= 'Web Page'.$delm.'Web Page 2'.$delm.'Categories';
$out .= $eol;
}
foreach ($this->cards as $card)
{
if ($this->mailonly && empty($card->email) && empty($card->email2) && empty($card->email3))
continue;
if ($this->phoneonly && empty($card->home['phone']) && empty($card->work['phone']) && empty($card->mobile))
continue;
$out .= $this->csv_encode($card->firstname, $delm);
$out .= $this->csv_encode($card->surname, $delm);
$out .= $this->csv_encode($card->displayname, $delm);
$out .= $this->csv_encode($card->nickname, $delm);
$out .= $this->csv_encode($card->email, $delm);
$out .= $this->csv_encode($card->email2, $delm);
$out .= $this->csv_encode($card->email3, $delm);
$out .= $this->csv_encode($this->normalize_phone($card->home['phone']), $delm);
$out .= $this->csv_encode($this->normalize_phone($card->work['phone']), $delm);
$out .= $this->csv_encode($this->normalize_phone($card->home['fax']), $delm);
$out .= $this->csv_encode($this->normalize_phone($card->work['fax']), $delm);
$out .= $this->csv_encode($this->normalize_phone($card->pager), $delm);
$out .= $this->csv_encode($this->normalize_phone($card->mobile), $delm);
$out .= $this->csv_encode($card->home['addr1'], $delm);
$out .= $this->csv_encode($card->home['addr2'], $delm);
$out .= $this->csv_encode($card->home['city'], $delm);
$out .= $this->csv_encode($card->home['state'], $delm);
$out .= $this->csv_encode($card->home['zipcode'], $delm);
$out .= $this->csv_encode($card->home['country'], $delm);
$out .= $this->csv_encode($card->work['addr1'], $delm);
$out .= $this->csv_encode($card->work['addr2'], $delm);
$out .= $this->csv_encode($card->work['city'], $delm);
$out .= $this->csv_encode($card->work['state'], $delm);
$out .= $this->csv_encode($card->work['zipcode'], $delm);
$out .= $this->csv_encode($card->work['country'], $delm);
$out .= $this->csv_encode($card->countrycode, $delm);
$out .= $this->csv_encode($card->relatedname, $delm);
$out .= $this->csv_encode($card->jobtitle, $delm);
$out .= $this->csv_encode($card->department, $delm);
$out .= $this->csv_encode($card->organization, $delm);
$out .= $this->csv_encode($card->notes, $delm);
$out .= !empty($card->birthday) ? $this->csv_encode(sprintf('%04d-%02d-%02d 00:00:00', $card->birthday['y'], $card->birthday['m'], $card->birthday['d']), $delm) : $delm;
$out .= !empty($card->anniversary) ? $this->csv_encode(sprintf('%04d-%02d-%02d', $card->anniversary['y'], $card->anniversary['m'], $card->anniversary['d']), $delm) : $delm;
$out .= $this->csv_encode($card->gender, $delm);
$out .= $this->csv_encode($card->work['url'], $delm);
$out .= $this->csv_encode($card->home['url'], $delm);
$out .= $this->csv_encode($card->categories, $delm, false);
$out .= $eol;
$this->export_count++;
}
return $this->charset_convert($out, $encoding);
}
/**
* New GMail export function
*
* @author Thomas Bruederli
* @author Max Plischke <plischke@gmail.com>
*/
function toGmail()
{
$delm = ',';
$this->export_count = 0;
$out = "Name,E-mail,Notes,".
"Phone(HOME),Mobile,".
"Address(HOME),".
"Email(Work),".
"Phone(Office),".
"Company,Professtion,".
"Department,Address(Office),Nickname,URL\n";
foreach ($this->cards as $card)
{
if ($this->mailonly && empty($card->email) && empty($card->email2))
continue;
if ($this->phoneonly && empty($card->home['phone']) && empty($card->work['phone']) && empty($card->mobile))
continue;
$home = array($card->home['addr1'], $card->home['city']);
if ($card->home['state']) $home[] = $card->home['state'];
if ($card->home['zipcode']) $home[] = $card->home['zipcode'];
if ($card->home['country']) $home[] = $card->home['country'];
$work = array($card->work['addr1'], $card->work['city']);
if ($card->work['state']) $work[] = $card->work['state'];
if ($card->work['zipcode']) $work[] = $card->work['zipcode'];
if ($card->work['country']) $work[] = $card->work['country'];
$im = array_values($card->im);
$out .= $this->csv_encode($card->displayname, $delm);
$out .= $this->csv_encode($card->email, $delm); // main
$out .= $this->csv_encode($card->notes, $delm); // Notes
// $out .= $this->csv_encode('Home', $delm);
// $out .= $this->csv_encode('', $delm); // home email ?
// $out .= $this->csv_encode($im[0], $delm); // IM
$out .= $this->csv_encode($this->normalize_phone($card->home['phone']), $delm);
$out .= $this->csv_encode($this->normalize_phone($card->mobile), $delm);
// $out .= $this->csv_encode($this->normalize_phone($card->pager), $delm);
// $out .= $this->csv_encode($this->normalize_phone($card->home['fax']), $delm);
// $out .= $this->csv_encode('', $delm); //
// $out .= /* $card['title'] . */ $delm;
// $out .= $this->csv_encode('', $delm); // other
$out .= $this->csv_encode(join(' ', $home), $delm);
// $out .= $this->csv_encode('Work', $delm);
$out .= $this->csv_encode($card->email2, $delm); // work email
// $out .= $this->csv_encode($im[1], $delm); // IM
$out .= $this->csv_encode($this->normalize_phone($card->work['phone']), $delm);
// $out .= $this->csv_encode('', $delm); //
// $out .= $this->csv_encode('', $delm); //
// $out .= $this->csv_encode($this->normalize_phone($card->work['fax']), $delm); // work fax
$out .= $this->csv_encode($card->organization, $delm);
$out .= $this->csv_encode($card->jobtitle, $delm); // title
$out .= $this->csv_encode($card->department, $delm);
$out .= $this->csv_encode(join(' ', $work), $delm);
$out .= $this->csv_encode($card->nickname, $delm);
// $out .= $this->csv_encode($card->home['url'], $delm);
$out .= $this->csv_encode($card->work['url'], $delm, FALSE);
$out .= "\n";
$this->export_count++;
}
return $out;
}
/**
* Convert the parsed vCard data into libdlusb format
*
* @author Kevin Clement <donkjunk@softhome.net>
*/
function toLibdlusb()
{
$delm="; ";
$out = '';
$this->export_count = 0;
foreach ($this->cards as $card)
{
if ($this->mailonly && empty($card->email) && empty($card->email2))
continue;
if ($this->phoneonly && empty($card->home['phone']) && empty($card->work['phone']) && empty($card->mobile))
continue;
// a little ugly but this filters out files that only have incompatible data to prevent "blank" files
if (empty($card->home['phone']) && empty($card->work['phone']) && empty($card->email) && empty($card->mobile))
continue;
// having determined there is data that needs exporting this
// makes certain we don't have holes to save watch memory
$out .= $this->csv_encode($card->displayname, $delm);
if ($card->home['phone'] != '')
{
$out .= 'Home = ';
$out .= $this->csv_encode($this->normalize_phone($card->home['phone']), $delm);
}
if ($card->work['phone'] != '')
{
$out .= 'Work = ';
$out .= $this->csv_encode($this->normalize_phone($card->work['phone']), $delm);
}
if ($card->email != '')
{
$out .= 'Email = ';
$out .= $this->csv_encode($card->email, $delm);
}
if($card->mobile != '')
{
$out .= 'Mobile = ';
$out .= $this->csv_encode($this->normalize_phone($card->mobile), $delm);
}
$out .= "\n";
$this->export_count++;
}
// convert to ISO-8859-1
//if ($encoding == 'ISO-8859-1' && $this->charset == 'UTF-8' && function_exists('utf8_decode'))
// $out = utf8_decode($out);
return $out;
}
/**
* Export cards as Ldif/LDAP Ldif
*/
function toLdif($identifier="", $attrib=null, $encoding="UTF-8")
{
$out = '';
$this->export_count = 0;
foreach($this->cards as $card)
{
if ($this->mailonly && empty($card->email) && empty($card->email2))
continue;
if ($this->phoneonly && empty($card->home['phone']) && empty($card->work['phone']) && empty($card->mobile) && empty($card->fax))
continue;
// If we will export LDIF for an LDAP server, some checks and tweaks are needed
if ($identifier != "")
{
$card->displayname = trim($card->displayname);
// Generate a random UID for LDAP Ldif if not present
if (empty($card->uid))
$card->uid = uniqid('card-id-');
if (empty($card->displayname))
$card->displayname = trim($card->firstname.' '.$card->surname);
if (empty($card->displayname))
$card->displayname = trim($card->nickname);
if (empty($card->displayname))
$card->displayname = trim($card->organization);
if (empty($card->displayname))
$card->displayname = $card->uid;
if (empty($card->surname))
$card->surname = $card->displayname;
}
$a_out = array();
if ($identifier == "")
$a_out['dn'] = sprintf("cn=%s,mail=%s", $card->displayname, $card->email);
else
$a_out['dn'] = sprintf("uid=%s,%s", $card->uid, $identifier);
$a_out['objectclass'] = array('top', 'person', 'organizationalPerson', 'inetOrgPerson', 'mozillaAbPersonAlpha');
$a_out['cn'] = $card->displayname;
$a_out['sn'] = $card->surname;
if ($card->uid)
$a_out['uid'] = $card->uid;
if ($card->firstname)
$a_out['givenName'] = $card->firstname;
if ($card->title)
$a_out['title'] = $card->title;
if ($card->jobtitle)
$a_out['employeeType'] = $card->jobtitle;
if ($card->email)
$a_out['mail'] = $card->email;
// Get the binary for the photo of type jpeg
// FIXME: ? According to the specs, only JFIF formats should be used
// but some clients read even PNG from the jpegPhoto attr. Should we be
// so restrictive here?
if ($card->photo && strtolower($card->photo['type']) == "jpeg")
$a_out['jpegPhoto'] = base64_decode(preg_replace('/\s+/', '', $card->photo['data']));
if ($card->nickname)
$a_out['mozillaNickname'] = $card->nickname;
if ($card->email2)
$a_out['mozillaSecondEmail'] = $card->email2;
if ($card->home['phone'])
$a_out['homePhone'] = $this->normalize_phone($card->home['phone']);
if ($card->mobile)
$a_out['mobile'] = $this->normalize_phone($card->mobile);
if ($card->fax)
$a_out['fax'] = $this->normalize_phone($card->fax);
if ($card->pager)
$a_out['pager'] = $this->normalize_phone($card->pager);
if ($card->home['addr1'])
$a_out['mozillaHomeStreet'] = $card->home['addr1'];
if ($card->home['city'])
$a_out['mozillaHomeLocalityName'] = $card->home['city'];
if ($card->home['state'])
$a_out['mozillaHomeState'] = $card->home['state'];
if ($card->home['zipcode'])
$a_out['mozillaHomePostalCode'] = $card->home['zipcode'];
if ($card->home['country'])
$a_out['mozillaHomeCountryName'] = $card->home['country'];
if ($card->organization)
$a_out['o'] = $card->organization;
if ($card->department)
$a_out['departmentNumber'] = $card->department;
if ($card->work['addr1'])
$a_out['street'] = $card->work['addr1'];
if ($card->work['city'])
$a_out['l'] = $card->work['city'];
if ($card->work['state'])
$a_out['st'] = $card->work['state'];
if ($card->work['zipcode'])
$a_out['postalCode'] = $card->work['zipcode'];
if ($card->work['country'] && strlen($card->work['country']) == 2)
$a_out['c'] = $card->work['country'];
if ($card->work['phone'])
$a_out['telephoneNumber'] = $this->normalize_phone($card->work['phone']);
if ($card->work['fax'])
$a_out['fax'] = $this->normalize_phone($card->work['fax']);
else if ($card->home['fax'])
$a_out['fax'] = $this->normalize_phone($card->home['fax']);
if ($card->work['url'])
$a_out['mozillaWorkUrl'] = $card->work['url'];
if ($card->home['url'])
$a_out['mozillaHomeUrl'] = $card->home['url'];
if ($card->notes)
$a_out['description'] = $card->notes;
if ($card->birthday) {
$a_out['birthyear'] = $card->birthday['y'];
$a_out['mozillaCustom1'] = sprintf("%04d-%02d-%02d", $card->birthday['y'], $card->birthday['m'], $card->birthday['d']);
}
// only return a single attribute (e.g. dn)
if (!empty($attrib))
{
if (!isset($a_out[$attrib]))
continue;
$val = is_array($a_out[$attrib]) ? $a_out[$attrib][0] : $a_out[$attrib];
$out .= trim($this->ldif_encode($val, $enc, true));
}
else
{
// compose ldif output
foreach ($a_out as $key => $val)
{
$enc = $key == 'dn' ? 'UTF-8' : $encoding;
if (is_array($val))
foreach ($val as $i => $val2)
$out .= sprintf("%s: %s\n", $key, $this->ldif_encode($val2, $enc));
else
$out .= sprintf("%s:%s\n", $key, $this->ldif_encode($val, $enc));
}
}
$out .= "\n";
$this->export_count++;
}
return $out;
}
/**
* Convert the parsed vCard data into CSV format for FritzBox
*
* @author Thomas Bruederli
* @author Gerd Mueller <gerd@zeltnerweg9.ch>
*/
function toFritzBox()
{
$delm=";";
$out = 'sep='.$delm."\r\n";
$this->export_count = 0;
$out .= 'Name'.$delm.
'TelNumHome'.$delm.'VanityHome'.$delm.'KurzWahlHome'.$delm.
'TelNumWork'.$delm.'VanityWork'.$delm.'KurzWahlWork'.$delm.
'TelNumMobile'.$delm.'VanityMobile'.$delm.'KurzWahlMobile'.$delm.
'Kommentar'.$delm.'Firma'.$delm.'Bild'.$delm.'Kategorie'.$delm.'ImageUrl'.$delm.
'Prio'.$delm.'Email'.$delm.'RingTone'.$delm.'RingVol'.
"\r\n";
foreach ($this->cards as $card)
{
if ($this->mailonly && empty($card->email) && empty($card->email2))
continue;
if ($this->phoneonly && empty($card->home['phone']) && empty($card->work['phone']) && empty($card->mobile))
continue;