Fetch fixed and fax for profile addresses
[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
89460d9c 22require_once('user.func.inc.php');
23
5d42c993 24class VCard extends PlVCard
89460d9c 25{
29b12e6e 26 private $user_list = array();
27 private $count = 0;
28 private $freetext = null;
29 private $photos = true;
89460d9c 30
5d42c993 31 public function __construct($photos = true, $freetext = null)
89460d9c 32 {
5d42c993 33 PlVCard::$folding = false;
29b12e6e 34 $this->freetext = $freetext;
35 $this->photos = $photos;
89460d9c 36 }
37
5d42c993 38 public function addUser($user)
89460d9c 39 {
d5e60905 40 $user = Profile::get($user);
c72cef4c
VZ
41 if ($user) {
42 $this->user_list[] = $user;
3ce06e37
FB
43 $this->count++;
44 }
89460d9c 45 }
46
5d42c993
FB
47 public function addUsers(array $users) {
48 foreach ($users as $user) {
49 $this->addUser($user);
50 }
89460d9c 51 }
52
5d42c993 53 protected function fetch()
89460d9c 54 {
20661fd0 55 return PlIteratorUtils::fromArray($this->user_list);
29b12e6e 56 }
89460d9c 57
5d42c993 58 protected function buildEntry($entry)
29b12e6e 59 {
29b12e6e 60 global $globals;
5d42c993 61 $login = $entry['value'];
d5e60905 62 $user = get_user_details($login->hrid());
89460d9c 63
5d42c993
FB
64 if (empty($user['nom_usage'])) {
65 $entry = new PlVCardEntry($user['prenom'], $user['nom'], null, null, @$user['nickname']);
66 } else {
67 $entry = new PlVCardEntry($user['prenom'], array($user['nom'], $user['nom_usage']), null, null, @$user['nickname']);
89460d9c 68 }
5d42c993
FB
69
70 // Free text
71 $freetext = '(' . $user['promo'] . ')';
29b12e6e 72 if ($this->freetext) {
5d42c993
FB
73 $freetext .= "\n" . $this->freetext;
74 }
75 if (strlen(trim($user['freetext']))) {
76 $freetext .= "\n" . MiniWiki::WikiToText($user['freetext']);
77 }
78 $entry->set('NOTE', $freetext);
79
80 // Mobile
81 if (!empty($user['mobile'])) {
82 $entry->addTel(null, $user['mobile'], false, true, true, false, true, true);
83 }
84
85 // Emails
90c614cd 86 // TODO: this logic is not hruid-compatible; replace it.
5d42c993
FB
87 $entry->addMail(null, $user['bestalias'] . '@' . $globals->mail->domain, true);
88 $entry->addMail(null, $user['bestalias'] . '@' . $globals->mail->domain2);
89 if ($user['bestalias'] != $user['forlife']) {
90 $entry->addMail(null, $user['forlife'] . '@' . $globals->mail->domain);
91 $entry->addMail(null, $user['forlife'] . '@' . $globals->mail->domain2);
92 }
93
94 // Homes
95 foreach ($user['adr'] as $adr) {
96 $street = array($adr['adr1']);
97 if (!empty($adr['adr2'])) {
98 $street[] = $adr['adr2'];
99 }
100 if (!empty($adr['adr3'])) {
101 $street[] = $adr['adr3'];
102 }
103 $group = $entry->addHome($street, null, null, $adr['postcode'], $adr['city'], $adr['region'], @$adr['country'],
104 $adr['active'], $adr['courier'], $adr['courier']);
105 if (!empty($adr['tels'])) {
106 foreach ($adr['tels'] as $tel) {
107 $fax = $tel['tel_type'] == 'Fax';
108 $entry->addTel($group, $tel['tel'], $fax, !$fax, !$fax, false, false, !$fax && $adr['active'] && empty($user['mobile']));
109 }
110 }
111 }
112
113 // Pro
a86b9767
OLF
114 if (!empty($user['adr_pro'])) {
115 foreach ($user['adr_pro'] as $pro) {
b9e7de30 116 $street = array($pro['adr1']);
a86b9767
OLF
117 if (!empty($pro['adr2'])) {
118 $street[] = $pro['adr2'];
119 }
120 if (!empty($pro['adr3'])) {
121 $street[] = $pro['adr3'];
122 }
123 $group = $entry->addWork($pro['entreprise'], null, $pro['poste'], $pro['fonction'],
124 $street, null, null, $pro['postcode'], $pro['city'], $pro['region'], @$pro['country']);
125 if (!empty($pro['tel'])) {
126 $entry->addTel($group, $pro['tel']);
127 }
128 if (!empty($pro['fax'])) {
129 $entry->addTel($group, $pro['fax'], true);
130 }
131 if (!empty($pro['email'])) {
132 $entry->addMail($group, $pro['email']);
133 }
89460d9c 134 }
135 }
136
5d42c993 137 // Melix
89460d9c 138 $res = XDB::query(
139 "SELECT alias
d5e60905
FB
140 FROM virtual AS v
141 INNER JOIN virtual_redirect AS vr ON (v.vid = vr.vid)
89460d9c 142 INNER JOIN auth_user_quick ON ( user_id = {?} AND emails_alias_pub = 'public' )
143 WHERE ( redirect={?} OR redirect={?} )
144 AND alias LIKE '%@{$globals->mail->alias_dom}'",
755bbd93 145 $user['user_id'],
89460d9c 146 $user['forlife'].'@'.$globals->mail->domain,
147 $user['forlife'].'@'.$globals->mail->domain2);
5d42c993
FB
148 if ($res->numRows()) {
149 $entry->addMail(null, $res->fetchOneCell());
150 }
151
152 // Custom fields
153 if (count($user['gpxs_name'])) {
154 $entry->set('X-GROUPS', join(', ', $user['gpxs_name']));
155 }
156 if (count($user['binets'])) {
157 $entry->set('X-BINETS', join(', ', $user['binets']));
158 }
159 if (!empty($user['section'])) {
160 $entry->set('X-SECTION', $user['section']);
161 }
eaf30d86 162
5d42c993 163 // Photo
917c4d11 164 if ($this->photos) {
165 $res = XDB::query(
a104d709
VZ
166 "SELECT attach, attachmime
167 FROM photo AS p
020ad86d 168 WHERE p.uid = {?}", $login->id());
917c4d11 169 if ($res->numRows()) {
5d42c993
FB
170 list($data, $type) = $res->fetchOneRow();
171 $entry->setPhoto($data, strtoupper($type));
29b12e6e 172 }
29b12e6e 173 }
5d42c993 174 return $entry;
89460d9c 175 }
89460d9c 176}
177
a7de4ef7 178// vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
89460d9c 179?>