Add ProfileCorps to Profile
[platal.git] / include / vcard.inc.php
CommitLineData
89460d9c 1<?php
2/***************************************************************************
9f5bd98e 3 * Copyright (C) 2003-2010 Polytechnique.org *
89460d9c 4 * http://opensource.polytechnique.org/ *
5 * *
6 * This program is free software; you can redistribute it and/or modify *
7 * it under the terms of the GNU General Public License as published by *
8 * the Free Software Foundation; either version 2 of the License, or *
9 * (at your option) any later version. *
10 * *
11 * This program is distributed in the hope that it will be useful, *
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
14 * GNU General Public License for more details. *
15 * *
16 * You should have received a copy of the GNU General Public License *
17 * along with this program; if not, write to the Free Software *
18 * Foundation, Inc., *
19 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA *
20 ***************************************************************************/
21
5d42c993 22class VCard extends PlVCard
89460d9c 23{
6713fc49 24 private $profile_list = array();
29b12e6e 25 private $count = 0;
26 private $freetext = null;
27 private $photos = true;
89460d9c 28
5d42c993 29 public function __construct($photos = true, $freetext = null)
89460d9c 30 {
5d42c993 31 PlVCard::$folding = false;
29b12e6e 32 $this->freetext = $freetext;
33 $this->photos = $photos;
89460d9c 34 }
35
6713fc49 36 public function addProfile($profile)
89460d9c 37 {
6713fc49
RB
38 $profile = Profile::get($profile);
39 if ($profile) {
40 $this->profile_list[] = $profile;
3ce06e37
FB
41 $this->count++;
42 }
89460d9c 43 }
44
6713fc49
RB
45 public function addProfiles(array $profiles) {
46 foreach ($profiles as $profile) {
47 $this->addProfile($profile);
5d42c993 48 }
89460d9c 49 }
50
5d42c993 51 protected function fetch()
89460d9c 52 {
6713fc49 53 return PlIteratorUtils::fromArray($this->profile_list);
29b12e6e 54 }
89460d9c 55
6713fc49 56 protected function buildEntry($pf)
29b12e6e 57 {
29b12e6e 58 global $globals;
89460d9c 59
6713fc49
RB
60 $entry = new PlVCardEntry($pf->firstNames(), $pf->lastNames, null, null, $pf->nickname);
61
62 $user = $pf->owner();
5d42c993
FB
63
64 // Free text
6713fc49 65 $freetext = '(' . $pf->promo . ')';
29b12e6e 66 if ($this->freetext) {
5d42c993
FB
67 $freetext .= "\n" . $this->freetext;
68 }
5d42c993 69 $entry->set('NOTE', $freetext);
5d42c993 70 // Mobile
6713fc49
RB
71 if (!empty($pf->mobile)) {
72 $entry->addTel(null, $pf->mobile, false, true, true, false, true, true);
5d42c993
FB
73 }
74
75 // Emails
6713fc49
RB
76 if (!is_null($user)) {
77 $entry->addMail(null, $user->bestalias, true);
78 $entry->addMail(null, $user->bestalias_alternate);
79 if ($user->forlife != $user->bestalias) {
80 $entry->addMail(null, $user->forlife);
81 $entry->addMail(null, $user->forlife_alternate);
82 }
5d42c993
FB
83 }
84
85 // Homes
6713fc49
RB
86 $adrs = $pf->getAddresses(Profile::ADDRESS_PERSO);
87 while ($adr = $adrs->next()) {
88 // TODO : find a way to fetch only the "street" part of the address
89 $group = $entry->addHome($adr['text'], null, null, $adr['postalCode'],
90 $adr['locality'], $adr['administrativeArea'], $adr['country'],
91 $adr['current'], $adr['mail'], $adr['mail']);
92 if (!empty($adr['fixed_tel'])) {
93 $entry->addTel($group, $adr['fixed_tel'], false, true, true, false, false, $adr['current'] && empty($pf->mobile));
5d42c993 94 }
6713fc49
RB
95 if (!empty($adr['fax_tel'])) {
96 $entry->addTel($group, $adr['fax_tel'], true, false, false, false, false, false);
5d42c993
FB
97 }
98 }
99
100 // Pro
6713fc49
RB
101 $adrs = $pf->getAddresses(Profile::ADDRESS_PRO);
102 while ($adr = $adrs->next()) {
103 // TODO : link address to company
104 $group = $entry->addWork(null, null, null, null,
105 $adr['text'], null, null, $adr['postalCode'],
106 $adr['locality'], $adr['administrativeArea'], $adr['country']);
107 if (!empty($adr['fixed_tel'])) {
108 $entry->addTel($group, $adr['fixed_tel']);
109 }
110 if (!empty($adr['fax_tel'])) {
111 $entry->addTel($group, $adr['display_tel'], true);
112 }
113 /* TODO : fetch email for jobs, too
a86b9767
OLF
114 if (!empty($pro['email'])) {
115 $entry->addMail($group, $pro['email']);
116 }
6713fc49 117 */
89460d9c 118 }
119
5d42c993 120 // Melix
6713fc49
RB
121 if (!is_null($user)) {
122 $alias = $user->emailAlias();
123 if (!is_null($alias)) {
124 $entry->addMail(null, $alias);
125 }
5d42c993
FB
126 }
127
128 // Custom fields
6713fc49
RB
129 if (!is_null($user)) {
130 $groups = $user->groups();
131 if (count($groups)) {
2998edf1 132 $gn = DirEnum::getOptions(DirEnum::GROUPESX);
6713fc49
RB
133 $gns = array();
134 foreach (array_keys($groups) as $gid) {
135 $gns[$gid] = $gn[$gid];
136 }
137 $entry->set('X-GROUPS', join(', ', $gns));
138 }
5d42c993 139 }
6713fc49
RB
140
141 $binets = $pf->getBinets();
142
143 if (count($binets)) {
2998edf1 144 $bn = DirEnum::getOptions(DirEnum::BINETS);
6713fc49
RB
145 $bns = array();
146 foreach ($binets as $bid) {
147 $bns[$bid] = $bn[$bid];
148 }
149 $entry->set('X-BINETS', join(', ', $bid));
5d42c993 150 }
6713fc49 151 if (!empty($pf->section)) {
2998edf1 152 $sections = DirEnum::getOptions(DirEnum::SECTIONS);
6713fc49 153 $entry->set('X-SECTION', $sections[$pf->section]);
5d42c993 154 }
eaf30d86 155
5d42c993 156 // Photo
917c4d11 157 if ($this->photos) {
158 $res = XDB::query(
a104d709
VZ
159 "SELECT attach, attachmime
160 FROM photo AS p
6713fc49 161 WHERE p.uid = {?}", $pf->id());
917c4d11 162 if ($res->numRows()) {
5d42c993
FB
163 list($data, $type) = $res->fetchOneRow();
164 $entry->setPhoto($data, strtoupper($type));
29b12e6e 165 }
29b12e6e 166 }
5d42c993 167 return $entry;
89460d9c 168 }
89460d9c 169}
170
a7de4ef7 171// vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
89460d9c 172?>