More cleanup. This dir all done.
[squirrelmail.git] / src / vcard.php
1 <?php
2
3 /**
4 * vcard.php
5 *
6 * Copyright (c) 1999-2003 The SquirrelMail Project Team
7 * Licensed under the GNU GPL. For full terms see the file COPYING.
8 *
9 * This file shows an attched vcard
10 *
11 * $Id$
12 */
13
14 /* Path for SquirrelMail required files. */
15 Define('SM_PATH','../');
16
17 /* SquirrelMail required files. */
18 require_once(SM_PATH . 'include/validate.php');
19 require_once(SM_PATH . 'functions/date.php');
20 require_once(SM_PATH . 'functions/page_header.php');
21 require_once(SM_PATH . 'functions/mime.php');
22 require_once(SM_PATH . 'include/load_prefs.php');
23
24 /* globals */
25 sqgetGlobalVar('username', $username, SQ_SESSION);
26 sqgetGlobalVar('key', $key, SQ_COOKIE);
27 sqgetGlobalVar('onetimepad', $onetimepad, SQ_SESSION);
28
29 sqgetGlobalVar('passed_id', $passed_id, SQ_GET);
30 sqgetGlobalVar('mailbox', $mailbox, SQ_GET);
31 sqgetGlobalVar('ent_id', $ent_id, SQ_GET);
32 sqgetGlobalVar('startMessage', $startMessage, SQ_GET);
33 /* end globals */
34
35 $imapConnection = sqimap_login($username, $key, $imapServerAddress, $imapPort, 0);
36 sqimap_mailbox_select($imapConnection, $mailbox);
37
38
39 displayPageHeader($color, 'None');
40
41 echo '<br><table width="100%" border="0" cellspacing="0" cellpadding="2" ' .
42 'align="center">' . "\n" .
43 '<tr><td bgcolor="' . $color[0] . '">' .
44 '<b><center>' .
45 _("Viewing a Business Card") . " - ";
46 $msg_url = 'read_body.php?mailbox='.urlencode($mailbox).
47 '&amp;startMessage='.$startMessage.
48 '&amp;passed_id='.$passed_id;
49
50 $msg_url = set_url_var($msg_url, 'ent_id', 0);
51
52 echo '<a href="'.$msg_url.'">'. _("View message") . '</a>';
53
54 echo '</center></b></td></tr>';
55
56 $message = sqimap_get_message($imapConnection, $passed_id, $mailbox);
57
58 $entity_vcard = getEntity($message,$ent_id);
59
60 $vcard = mime_fetch_body ($imapConnection, $passed_id, $ent_id);
61 $vcard = decodeBody($vcard, $entity_vcard->header->encoding);
62 $vcard = explode ("\n",$vcard);
63 foreach ($vcard as $l) {
64 $k = substr($l, 0, strpos($l, ':'));
65 $v = substr($l, strpos($l, ':') + 1);
66 $attributes = explode(';', $k);
67 $k = strtolower(array_shift($attributes));
68 foreach ($attributes as $attr) {
69 if ($attr == 'quoted-printable')
70 $v = quoted_printable_decode($v);
71 else
72 $k .= ';' . strtolower($attr);
73 }
74
75 $v = str_replace(';', "\n", $v);
76 $vcard_nice[$k] = $v;
77 }
78
79 if ($vcard_nice['version'] == '2.1') {
80 // get firstname and lastname for sm addressbook
81 $vcard_nice['firstname'] = substr($vcard_nice['n'],
82 strpos($vcard_nice['n'], "\n") + 1, strlen($vcard_nice['n']));
83 $vcard_nice['lastname'] = substr($vcard_nice['n'], 0,
84 strpos($vcard_nice['n'], "\n"));
85 // workaround for Outlook, should be fixed in a better way,
86 // maybe in new 'vCard' class.
87 if (isset($vcard_nice['email;pref;internet'])) {
88 $vcard_nice['email;internet'] = $vcard_nice['email;pref;internet'];
89 }
90 } else {
91 echo '<tr><td align=center>vCard Version ' . $vcard_nice['version'] .
92 ' is not supported. Some information might not be converted ' .
93 "correctly.</td></tr>\n";
94 }
95
96 foreach ($vcard_nice as $k => $v) {
97 $v = htmlspecialchars($v);
98 $v = trim($v);
99 $vcard_safe[$k] = trim(nl2br($v));
100 }
101
102 $ShowValues = array(
103 'fn' => _("Name"),
104 'title' => _("Title"),
105 'email;internet' => _("Email"),
106 'url' => _("Web Page"),
107 'org' => _("Organization / Department"),
108 'adr' => _("Address"),
109 'tel;work' => _("Work Phone"),
110 'tel;home' => _("Home Phone"),
111 'tel;cell' => _("Cellular Phone"),
112 'tel;fax' => _("Fax"),
113 'note' => _("Note"));
114
115 echo '<tr><td><br>' .
116 '<TABLE border=0 cellpadding=2 cellspacing=0 align=center>' . "\n";
117
118 if (isset($vcard_safe['email;internet'])) { $vcard_safe['email;internet'] = '<A HREF="../src/compose.php?send_to=' .
119 $vcard_safe['email;internet'] . '">' . $vcard_safe['email;internet'] .
120 '</A>';
121 }
122 if (isset($vcard_safe['url'])) {
123 $vcard_safe['url'] = '<A HREF="' . $vcard_safe['url'] . '">' .
124 $vcard_safe['url'] . '</A>';
125 }
126
127 foreach ($ShowValues as $k => $v) {
128 if (isset($vcard_safe[$k]) && $vcard_safe[$k]) {
129 echo "<tr><td align=right><b>$v:</b></td><td>" . $vcard_safe[$k] .
130 "</td><tr>\n";
131 }
132 }
133
134 echo '</table>' .
135 '<br>' .
136 '</td></tr></table>' .
137 '<table width="100%" border="0" cellspacing="0" cellpadding="2" ' .
138 'align="center">' .
139 '<tr>' .
140 '<td bgcolor="' . $color[0] . '">' .
141 '<b><center>' .
142 _("Add to Addressbook") .
143 '</td></tr>' .
144 '<tr><td align=center>' .
145 '<FORM ACTION="../src/addressbook.php" METHOD="POST" NAME=f_add>' .
146 '<table border=0 cellpadding=2 cellspacing=0 align=center>' .
147 '<tr><td align=right><b>Nickname:</b></td>' .
148 '<td><input type=text name="addaddr[nickname]" size=20 value="' .
149 $vcard_safe['firstname'] . '-' . $vcard_safe['lastname'] .
150 '"></td></tr>' .
151 '<tr><td align=right><b>Note Field Contains:</b></td><td>' .
152 '<select name="addaddr[label]">';
153
154 if (isset($vcard_nice['url'])) {
155 echo '<option value="' . htmlspecialchars($vcard_nice['url']) .
156 '">' . _("Web Page") . "</option>\n";
157 }
158 if (isset($vcard_nice['adr'])) {
159 echo '<option value="' . $vcard_nice['adr'] .
160 '">' . _("Address") . "</option>\n";
161 }
162 if (isset($vcard_nice['title'])) {
163 echo '<option value="' . $vcard_nice['title'] .
164 '">' . _("Title") . "</option>\n";
165 }
166 if (isset($vcard_nice['org'])) {
167 echo '<option value="' . $vcard_nice['org'] .
168 '">' . _("Organization / Department") . "</option>\n";
169 }
170 if (isset($vcard_nice['title'])) {
171 echo '<option value="' . $vcard_nice['title'] .
172 '; ' . $vcard_nice['org'] .
173 '">' . _("Title & Org. / Dept.") . "</option>\n";
174 }
175 if (isset($vcard_nice['tel;work'])) {
176 echo '<option value="' . $vcard_nice['tel;work'] .
177 '">' . _("Work Phone") . "</option>\n";
178 }
179 if (isset($vcard_nice['tel;home'])) {
180 echo '<option value="' . $vcard_nice['tel;home'] .
181 '">' . _("Home Phone") . "</option>\n";
182 }
183 if (isset($vcard_nice['tel;cell'])) {
184 echo '<option value="' . $vcard_nice['tel;cell'] .
185 '">' . _("Cellular Phone") . "</option>\n";
186 }
187 if (isset($vcard_nice['tel;fax'])) {
188 echo '<option value="' . $vcard_nice['tel;fax'] .
189 '">' . _("Fax") . "</option>\n";
190 }
191 if (isset($vcard_nice['note'])) {
192 echo '<option value="' . $vcard_nice['note'] .
193 '">' . _("Note") . "</option>\n";
194 }
195 echo '</select>' .
196 '</td></tr>' .
197 '<tr><td colspan=2 align=center>' .
198 '<INPUT NAME="addaddr[email]" type=hidden value="' .
199 htmlspecialchars($vcard_nice['email;internet']) . '">' .
200 '<INPUT NAME="addaddr[firstname]" type=hidden value="' .
201 $vcard_safe['firstname'] . '">' .
202 '<INPUT NAME="addaddr[lastname]" type=hidden value="' .
203 $vcard_safe['lastname'] . '">' .
204 '<INPUT TYPE=submit NAME="addaddr[SUBMIT]" ' .
205 'VALUE="Add to Address Book">' .
206 '</td></tr>' .
207 '</table>' .
208 '</FORM>' .
209 '</td></tr>' .
210 '<tr><td align=center>' .
211 '<a href="../src/download.php?absolute_dl=true&amp;passed_id=' .
212 $passed_id . '&amp;mailbox=' . urlencode($mailbox) .
213 '&amp;ent_id=' . urlencode($ent_id) . '">' .
214 _("Download this as a file") . '</A>' .
215 '</TD></TR></TABLE>' .
216
217 '<TABLE BORDER=0 CELLSPACING=0 CELLPADDING=2 ALIGN=CENTER>' .
218 '<TR><TD BGCOLOR="' . $color[4] . '">' .
219 '</TD></TR></TABLE>' .
220 '</body></html>';
221
222 ?>