104 public function encode(
string $string): string
112 public function fold(
string $string =
""): string
115 preg_match_all(
"/(.{1,74})/", $string, $matches);
116 for (
$i = 0, $iMax = count($matches[1]);
$i < $iMax;
$i++) {
117 if (
$i < (count($matches[1]) - 1)) {
118 $matches[1][
$i] .=
"\n";
121 $matches[1][
$i] =
" " . $matches[1][
$i];
123 $folded_string .= $matches[1][
$i];
125 return $folded_string;
131 public function escape(
string $string): string
133 $string = preg_replace(
"/(?<!\\\\)(\\\\)([^;,n\\\\])/",
"\${1}\${1}\${2}", $string);
134 $string = preg_replace(
"/(?<!\\\\);/",
"\\;", $string);
135 $string = preg_replace(
"/(?<!\\\\),/",
"\\,", $string);
136 $string = preg_replace(
"/\n/",
"\\n", $string);
144 public function explodeVar(
string $variable,
string $separator =
","): array
146 $exploded = explode($separator, $variable);
147 foreach ($exploded as
$index => $var) {
158 $fn = $n = $nickname = $photo = $bday = $adr = $label = $tel =
$email = $mailer =
159 $tz = $geo = $title = $role = $logo = $agent = $org = $categories = $note = $prodid =
160 $rev = $sortstring = $sound = $uid =
$url = $class =
$key = 0;
162 $vcard =
"BEGIN:VCARD\n";
163 $vcard .=
"VERSION:" . $this->types[
"VERSION"] .
"\n";
164 foreach ($this->types as
$type => $var) {
169 if (strcmp($this->types[
"FN"],
"") != 0) {
170 $fn = $this->
fold(
"FN:" . $this->types[
"FN"]) .
"\n";
176 if (strcmp($this->types[
"N"],
"") != 0) {
177 $n = $this->
fold(
"N:" . $this->types[
"N"]) .
"\n";
183 if (strcmp($this->types[
"NICKNAME"],
"") != 0) {
184 $nickname = $this->
fold(
"NICKNAME:" . $this->types[
"NICKNAME"]) .
"\n";
191 if (isset($this->types[
"PHOTO"])) {
192 if (strcmp(($this->types[
"PHOTO"][
"VALUE"] ??
""),
"") != 0) {
193 $photo = $this->
fold(
"PHOTO;VALUE=uri:" . $this->types[
"PHOTO"][
"VALUE"]) .
"\n";
194 } elseif (strcmp(($this->types[
"PHOTO"][
"ENCODING"] ??
""),
"") != 0) {
195 $photo =
"PHOTO;ENCODING=" . $this->types[
"PHOTO"][
"ENCODING"];
196 if (strcmp($this->types[
"PHOTO"][
"TYPE"],
"") != 0) {
197 $photo .=
";TYPE=" . $this->types[
"PHOTO"][
"TYPE"];
199 $photo .=
":" . $this->types[
"PHOTO"][
"PHOTO"];
200 $photo = $this->
fold($photo) .
"\n";
205 if (strcmp($this->types[
"BDAY"],
"") != 0) {
206 $bday = $this->
fold(
"BDAY:" . $this->types[
"BDAY"]) .
"\n";
212 if (count($this->types[
"ADR"])) {
214 foreach ($this->types[
"ADR"] as
$key => $address) {
215 $test = implode(
'', $address);
216 if (strcmp($test,
"") != 0) {
218 $adr_types = array();
219 if ($address[
"TYPE"] > 0) {
221 $adr_types[] =
"dom";
224 $adr_types[] =
"intl";
227 $adr_types[] =
"postal";
230 $adr_types[] =
"parcel";
233 $adr_types[] =
"home";
236 $adr_types[] =
"work";
239 $adr_types[] =
"pref";
241 $adr .=
";TYPE=" . implode(
",", $adr_types);
243 $adr .=
":" . $address[
"POBOX"] .
";" . $address[
"EXTENDED_ADDRESS"] .
244 ";" . $address[
"STREET_ADDRESS"] .
";" . $address[
"LOCALITY"] .
245 ";" . $address[
"REGION"] .
";" . $address[
"POSTAL_CODE"] .
246 ";" . $address[
"COUNTRY"];
247 $adr = $this->
fold($adr) .
"\n";
258 if (isset($this->types[
"LABEL"])) {
259 if (strcmp(($this->types[
"LABEL"][
"LABEL"] ??
""),
"") != 0) {
261 $adr_types = array();
262 if ($this->types[
"LABEL"][
"TYPE"] > 0) {
263 if (($this->types[
"LABEL"][
"TYPE"] &
ADR_TYPE_DOM) > 0) {
264 $adr_types[] =
"dom";
267 $adr_types[] =
"intl";
270 $adr_types[] =
"postal";
273 $adr_types[] =
"parcel";
276 $adr_types[] =
"home";
279 $adr_types[] =
"work";
282 $adr_types[] =
"pref";
284 $label .=
";TYPE=" . implode(
",", $adr_types);
286 $label .=
":" . $this->types[
"LABEL"][
"LABEL"];
287 $label = $this->
fold($label) .
"\n";
292 if (count($this->types[
"TEL"])) {
294 foreach ($this->types[
"TEL"] as
$key => $phone) {
295 if (strcmp($phone[
"TEL"],
"") != 0) {
297 $tel_types = array();
298 if ($phone[
"TYPE"] > 0) {
300 $tel_types[] =
"home";
303 $tel_types[] =
"msg";
306 $tel_types[] =
"work";
309 $tel_types[] =
"pref";
312 $tel_types[] =
"voice";
315 $tel_types[] =
"fax";
318 $tel_types[] =
"cell";
321 $tel_types[] =
"video";
324 $tel_types[] =
"pager";
327 $tel_types[] =
"bbs";
330 $tel_types[] =
"modem";
333 $tel_types[] =
"car";
336 $tel_types[] =
"isdn";
339 $tel_types[] =
"pcs";
341 $tel .=
";TYPE=" . implode(
",", $tel_types);
343 $tel .=
":" . $phone[
"TEL"];
344 $tel = $this->
fold($tel) .
"\n";
345 $phonenumbers .= $tel;
348 $tel = $phonenumbers;
354 if (count($this->types[
"EMAIL"])) {
356 foreach ($this->types[
"EMAIL"] as
$key => $mail) {
357 if (strcmp($mail[
"EMAIL"],
"") != 0) {
359 $adr_types = array();
360 if ($mail[
"TYPE"] > 0) {
362 $adr_types[] =
"internet";
365 $adr_types[] =
"x400";
368 $adr_types[] =
"pref";
370 $email .=
";TYPE=" . implode(
",", $adr_types);
372 $email .=
":" . $mail[
"EMAIL"];
383 if (strcmp(($this->types[
"MAILER"] ??
""),
"") != 0) {
384 $mailer = $this->
fold(
"MAILER:" . $this->types[
"MAILER"]) .
"\n";
390 if (strcmp(($this->types[
"TZ"] ??
""),
"") != 0) {
391 $tz = $this->
fold(
"TZ:" . $this->types[
"TZ"]) .
"\n";
397 if (isset($this->types[
"GEO"]) and
398 (strcmp(($this->types[
"GEO"][
"LAT"] ??
""),
"") != 0) and
399 (strcmp(($this->types[
"GEO"][
"LON"] ??
""),
"") != 0)) {
401 "GEO:" . $this->types[
"GEO"][
"LAT"] .
";" . $this->types[
"GEO"][
"LON"]
408 if (strcmp(($this->types[
"TITLE"] ??
""),
"") != 0) {
409 $title = $this->
fold(
"TITLE:" . $this->types[
"TITLE"]) .
"\n";
415 if (strcmp(($this->types[
"ROLE"] ??
""),
"") != 0) {
416 $role = $this->
fold(
"ROLE:" . $this->types[
"ROLE"]) .
"\n";
423 if (isset($this->types[
"LOGO"])) {
424 if (strcmp(($this->types[
"LOGO"][
"VALUE"] ??
""),
"") != 0) {
425 $logo = $this->
fold(
"LOGO;VALUE=uri:" . $this->types[
"LOGO"][
"VALUE"]) .
"\n";
426 } elseif (strcmp(($this->types[
"LOGO"][
"ENCODING"] ??
""),
"") != 0) {
427 $logo =
"LOGO;ENCODING=" . $this->types[
"LOGO"][
"ENCODING"];
428 if (strcmp($this->types[
"LOGO"][
"TYPE"],
"") != 0) {
429 $logo .=
";TYPE=" . $this->types[
"LOGO"][
"TYPE"];
431 $logo .=
":" . $this->types[
"LOGO"][
"LOGO"];
432 $logo = $this->
fold($logo) .
"\n";
437 if (strcmp(($this->types[
"AGENT"] ??
""),
"") != 0) {
438 $agent = $this->
fold(
"AGENT:" . $this->types[
"AGENT"]) .
"\n";
444 if (strcmp(($this->types[
"ORG"] ??
""),
"") != 0) {
445 $org = $this->
fold(
"ORG:" . $this->types[
"ORG"]) .
"\n";
451 if (strcmp(($this->types[
"CATEGORIES"] ??
""),
"") != 0) {
452 $categories = $this->
fold(
"CATEGORIES:" . $this->types[
"CATEGORIES"]) .
"\n";
458 if (strcmp(($this->types[
"NOTE"] ??
""),
"") != 0) {
459 $note = $this->
fold(
"NOTE:" . $this->types[
"NOTE"]) .
"\n";
465 if (strcmp(($this->types[
"PRODID"] ??
""),
"") != 0) {
466 $prodid = $this->
fold(
"PRODID:" . $this->types[
"PRODID"]) .
"\n";
472 if (strcmp(($this->types[
"REV"] ??
""),
"") != 0) {
473 $rev = $this->
fold(
"REV:" . $this->types[
"REV"]) .
"\n";
479 if (strcmp(($this->types[
"SORT-STRING"] ??
""),
"") != 0) {
480 $sortstring = $this->
fold(
"SORT-STRING:" . $this->types[
"SORT-STRING"]) .
"\n";
487 if (isset($this->types[
"SOUND"])) {
488 if (strcmp(($this->types[
"SOUND"][
"VALUE"] ??
""),
"") != 0) {
489 $sound = $this->
fold(
"SOUND;VALUE=uri:" . $this->types[
"SOUND"][
"VALUE"]) .
"\n";
490 } elseif (strcmp(($this->types[
"SOUND"][
"ENCODING"] ??
""),
"") != 0) {
491 $sound =
"SOUND;ENCODING=" . $this->types[
"SOUND"][
"ENCODING"];
492 if (strcmp($this->types[
"SOUND"][
"TYPE"],
"") != 0) {
493 $sound .=
";TYPE=" . $this->types[
"SOUND"][
"TYPE"];
495 $sound .=
":" . $this->types[
"SOUND"][
"SOUND"];
496 $sound = $this->
fold($sound) .
"\n";
502 if (isset($this->types[
"UID"])) {
503 if (strcmp(($this->types[
"UID"][
"UID"] ??
""),
"") != 0) {
505 if (strcmp($this->types[
"UID"][
"TYPE"],
"") != 0) {
506 $uid .=
";TYPE=" . $this->types[
"UID"][
"TYPE"];
508 $uid .=
":" . $this->types[
"UID"][
"UID"];
509 $uid = $this->
fold($uid) .
"\n";
514 if (strcmp(($this->types[
"URL"] ??
""),
"") != 0) {
515 $url = $this->
fold(
"URL:" . $this->types[
"URL"]) .
"\n";
522 if (isset($this->types[
"KEY"])) {
523 if (strcmp(($this->types[
"KEY"][
"KEY"] ??
""),
"") != 0) {
525 if (strcmp($this->types[
"KEY"][
"TYPE"],
"") != 0) {
526 $key .=
";TYPE=" . $this->types[
"KEY"][
"TYPE"];
528 if (strcmp($this->types[
"KEY"][
"ENCODING"],
"") != 0) {
529 $key .=
";ENCODING=" . $this->types[
"KEY"][
"ENCODING"];
531 $key .=
":" . $this->types[
"KEY"][
"KEY"];
537 if (strcmp(($this->types[
"CLASS"] ??
""),
"") != 0) {
538 $class = $this->
fold(
"CLASS:" . $this->types[
"CLASS"]) .
"\n";
545 $vcard .= $fn . $n . $nickname . $photo . $bday . $adr . $label . $tel .
$email . $mailer .
546 $tz . $geo . $title . $role . $logo . $agent . $org . $categories . $note . $prodid .
547 $rev . $sortstring . $sound . $uid .
$url . $class .
$key;
548 $vcard .=
"END:vCard\n";
557 $hex = array(
'0',
'1',
'2',
'3',
'4',
'5',
'6',
'7',
'8',
'9',
'A',
'B',
'C',
'D',
'E',
'F');
558 $lines = preg_split(
"/(\r\n|\r|\n)/", $input);
560 $linebreak =
"=0D=0A";
564 for ($j = 0, $jMax = count($lines); $j < $jMax; $j++) {
566 $linlen = strlen($line);
568 for (
$i = 0;
$i < $linlen;
$i++) {
569 $c = substr($line,
$i, 1);
571 if (($dec == 32) && (
$i == ($linlen - 1))) {
573 } elseif (($dec == 61) || ($dec < 32) || ($dec > 126)) {
574 $h2 = floor($dec / 16);
575 $h1 = floor($dec % 16);
576 $c = $escape . $hex[(string) $h2] . $hex[(
string) $h1];
578 if ((strlen($newline) + strlen(
$c)) >= $line_max) {
579 $output .= $newline . $escape . $eol;
585 if ($j < count($lines) - 1) {
586 $output .= $linebreak;
589 return trim($output);
607 $this->types[
"FN"] = $this->
escape($formatted_name);
634 string $given_name =
"",
635 string $additional_names =
"",
636 string $honorific_prefixes =
"",
637 string $honorific_suffixes =
"" 639 $familynames = $this->
explodeVar($family_name);
641 $addnames = $this->
explodeVar($additional_names);
642 $prefixes = $this->
explodeVar($honorific_prefixes);
643 $suffixes = $this->
explodeVar($honorific_suffixes);
646 implode(
",", $familynames) .
648 implode(
",", $givennames) .
650 implode(
",", $addnames) .
652 implode(
",", $prefixes) .
654 implode(
",", $suffixes);
656 $this->filename = $given_name .
"_" . $family_name .
".vcf";
657 if (strcmp($this->types[
"FN"],
"") === 0) {
658 $fn = trim(
"$honorific_prefixes $given_name $additional_names $family_name $honorific_suffixes");
659 $fn = preg_replace(
"/\s{2,10}/",
" ", $fn);
680 $this->types[
"NICKNAME"] = implode(
",", $nicknames);
715 if (preg_match(
"/^http/", $photo)) {
716 $value = $this->
encode($photo);
719 $photo = base64_encode($photo);
721 $this->types[
"PHOTO"] = array(
724 "ENCODING" => $encoding,
743 public function setBirthday(
int $year,
int $month,
int $day): void
745 if (($year < 1) or ($day < 1) or ($month < 1)) {
746 $this->types[
"BDAY"] =
"";
748 $this->types[
"BDAY"] = sprintf(
"%04d-%02d-%02d", $year, $month, $day);
805 string $extended_address =
"",
806 string $street_address =
"",
807 string $locality =
"",
809 string $postal_code =
"",
810 string $country =
"",
816 $po_box = implode(
",", $this->
explodeVar($po_box));
817 $extended_address = implode(
",", $this->
explodeVar($extended_address));
818 $street_address = implode(
",", $this->
explodeVar($street_address));
819 $locality = implode(
",", $this->
explodeVar($locality));
820 $region = implode(
",", $this->
explodeVar($region));
821 $postal_code = implode(
",", $this->
explodeVar($postal_code));
822 $country = implode(
",", $this->
explodeVar($country));
823 $this->types[
"ADR"][] = array(
825 "EXTENDED_ADDRESS" => $extended_address,
826 "STREET_ADDRESS" => $street_address,
827 "LOCALITY" => $locality,
829 "POSTAL_CODE" => $postal_code,
830 "COUNTRY" => $country,
872 $this->types[
"LABEL"] = array(
873 "LABEL" => $this->
escape($label),
921 $this->types[
"TEL"][] = array(
922 "TEL" => $this->
escape($number),
948 string $address =
"",
951 $this->types[
"EMAIL"][] = array(
952 "EMAIL" => $this->
escape($address),
994 $this->types[
"TZ"] = $this->
escape($zone);
1023 public function setPosition(
string $latitude =
"",
string $longitude =
""): void
1025 $this->types[
"GEO"] = array(
1048 $this->types[
"TITLE"] = $this->
escape($title);
1067 $this->types[
"ROLE"] = $this->
escape($role);
1099 if (preg_match(
"/^http/", $logo)) {
1100 $value = $this->
encode($logo);
1103 $logo = base64_encode($logo);
1105 $this->types[
"LOGO"] = array(
1108 "ENCODING" => $encoding,
1135 $this->types[
"AGENT"] = $this->
escape($agent);
1154 $organization = implode(
";", $this->
explodeVar($organization,
";"));
1155 $this->types[
"ORG"] = $organization;
1175 $categories = implode(
",", $this->
explodeVar($categories));
1176 $this->types[
"CATEGORIES"] = $categories;
1193 $this->types[
"NOTE"] = $this->
escape($note);
1210 $this->types[
"PRODID"] = $this->
escape($product_id);
1229 $this->types[
"REV"] = $this->
escape($revision_date);
1266 $this->types[
"SORT-STRING"] = $this->
escape($string);
1299 if (preg_match(
"/^http/", $sound)) {
1300 $value = $this->
encode($sound);
1303 $sound = base64_encode($sound);
1305 $this->types[
"SOUND"] = array(
1308 "ENCODING" => $encoding,
1333 $this->types[
"UID"] = array(
1334 "UID" => $this->
escape($uid),
1349 public function setURL(
string $uri =
""): void
1351 $this->types[
"URL"] = $this->
escape($uri);
1366 $this->types[
"VERSION"] =
$version;
1391 $this->types[
"CLASS"] = $this->
escape($classification);
1434 $this->types[
"KEY"] = array(
1437 "ENCODING" => $encoding
1443 if (strcmp($this->filename,
"") == 0) {
1452 return "text/x-vcard";
fold(string $string="")
Fold a string according to RFC 2425.
setOrganization(string $organization="")
Sets the value for the vCard ORG type.
setSortString(string $string="")
Sets the value for the vCard SORT-STRING type.
setKey(string $key="", string $type="")
Sets the value for the vCard KEY type.
static getLogger(string $a_component_id)
Get component logger.
setRevision(string $revision_date="")
Sets the value for the vCard REV type.
const EMAIL_TYPE_INTERNET
setLabel(string $label="", int $type=ADR_TYPE_NONE)
Sets the value for the vCard LABEL type.
setProductId(string $product_id="")
Sets the value for the vCard PRODID type.
encode(string $string)
Encode data with "b" type encoding according to RFC 2045.
setBirthday(int $year, int $month, int $day)
Sets the value for the vCard BDAY type.
quoted_printable_encode(string $input, int $line_max=76)
Creates a quoted printable encoded string according to RFC 2045.
setVersion(string $version="3.0")
Sets the value for the vCard VERSION type.
setMailer(string $name="")
Sets the value for the vCard MAILER type.
setCategories(string $categories)
Sets the value for the vCard CATEGORIES type.
setAgent(string $agent="")
Sets the value for the vCard AGENT type.
RFC 2426 vCard MIME Directory Profile 3.0 class.
setAddress(string $po_box="", string $extended_address="", string $street_address="", string $locality="", string $region="", string $postal_code="", string $country="", int $type=ADR_TYPE_NONE)
Sets the value for the vCard ADR type.
setNickname(string $nickname)
Sets the value for the vCard NICKNAME type.
setTimezone(string $zone="")
Sets the value for the vCard TZ type.
setTitle(string $title="")
Sets the value for the vCard TITLE type.
escape(string $string)
Escapes a string according to RFC 2426.
setFormattedName(string $formatted_name)
Sets the value for the vCard FN type.
explodeVar(string $variable, string $separator=",")
Splits a variable into an array using a separator and escapes every value.
setPosition(string $latitude="", string $longitude="")
Sets the value for the vCard GEO type.
setNote(string $note="")
Sets the value for the vCard NOTE type.
setRole(string $role="")
Sets the value for the vCard ROLE type.
buildVCard()
Builds a vCard string out of the attributes of this object.
setPhoto(string $photo, string $type="")
Sets the value for the vCard PHOTO type.
setURL(string $uri="")
Sets the value for the vCard URL type.
const ADR_TYPE_NONE
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
setName(string $family_name, string $given_name="", string $additional_names="", string $honorific_prefixes="", string $honorific_suffixes="")
Sets the value for the vCard N type.
setLogo(string $logo, string $type="")
Sets the value for the vCard LOGO type.
setEmail(string $address="", int $type=EMAIL_TYPE_INTERNET)
Sets the value for the vCard EMAIL type.
setPhone(string $number="", int $type=TEL_TYPE_VOICE)
Sets the value for the vCard TEL type.
__construct(string $version="3.0")
setSound(string $sound="", string $type="")
Sets the value for the vCard SOUND type.
setClassification(string $classification="")
Sets the value for the vCard CLASS type.
setUID(string $uid="", string $type="")
Sets the value for the vCard UID type.