Correct error on logout
[squirrelmail.git] / src / vcard.php
CommitLineData
7baf86a9 1<?php
895905c0 2
35586184 3/**
4 * vcard.php
5 *
35586184 6 * This file shows an attched vcard
7 *
47ccfad4 8 * @copyright &copy; 1999-2006 The SquirrelMail Project Team
4b4abf93 9 * @license http://opensource.org/licenses/gpl-license.php GNU Public License
30967a1e 10 * @version $Id$
8f6f9ba5 11 * @package squirrelmail
35586184 12 */
7baf86a9 13
30967a1e 14/**
202bcbcc 15 * Include the SquirrelMail initialization file.
30967a1e 16 */
202bcbcc 17require('../include/init.php');
86725763 18
19/* SquirrelMail required files. */
ae299e07 20
21/** imap functions depend on date functions */
22include_once(SM_PATH . 'functions/date.php');
23/** form functions */
24include_once(SM_PATH . 'functions/forms.php');
25/** mime decoding */
26include_once(SM_PATH . 'functions/mime.php');
27/** url parser */
28include_once(SM_PATH . 'functions/url_parser.php');
29/** imap functions used to retrieve vcard */
30include_once(SM_PATH . 'functions/imap_general.php');
31include_once(SM_PATH . 'functions/imap_messages.php');
7baf86a9 32
0b97a708 33/* globals */
f38b7cf0 34
35sqgetGlobalVar('passed_id', $passed_id, SQ_GET);
36sqgetGlobalVar('mailbox', $mailbox, SQ_GET);
37sqgetGlobalVar('ent_id', $ent_id, SQ_GET);
38sqgetGlobalVar('startMessage', $startMessage, SQ_GET);
0b97a708 39/* end globals */
40
906f7e9f 41$imapConnection = sqimap_login($username, false, $imapServerAddress, $imapPort, 0);
65c3ec94 42sqimap_mailbox_select($imapConnection, $mailbox);
7baf86a9 43
65c3ec94 44displayPageHeader($color, 'None');
7baf86a9 45
3c621ba1 46echo '<br /><table width="100%" border="0" cellspacing="0" cellpadding="2" ' .
47 'align="center">' . "\n" .
f265009a 48 '<tr><td bgcolor="' . $color[0] . '"><b><div style="text-align: center;">' .
3c621ba1 49 _("Viewing a Business Card") . " - ";
50
33c8b76b 51$msg_url = 'read_body.php?mailbox='.urlencode($mailbox).
164584f0 52 '&amp;startMessage='.urlencode($startMessage).
53 '&amp;passed_id='.urlencode($passed_id);
33c8b76b 54
24d16195 55$msg_url = set_url_var($msg_url, 'ent_id', 0);
33c8b76b 56
d444fa27 57echo '<a href="'.$msg_url.'">'. _("View message") . '</a>' .
f265009a 58 '</div></b></td></tr>';
65c3ec94 59
60$message = sqimap_get_message($imapConnection, $passed_id, $mailbox);
61
24d16195 62$entity_vcard = getEntity($message,$ent_id);
65c3ec94 63
d444fa27 64$vcard = mime_fetch_body($imapConnection, $passed_id, $ent_id);
65c3ec94 65$vcard = decodeBody($vcard, $entity_vcard->header->encoding);
66$vcard = explode ("\n",$vcard);
67foreach ($vcard as $l) {
68 $k = substr($l, 0, strpos($l, ':'));
69 $v = substr($l, strpos($l, ':') + 1);
70 $attributes = explode(';', $k);
71 $k = strtolower(array_shift($attributes));
72 foreach ($attributes as $attr) {
73 if ($attr == 'quoted-printable')
74 $v = quoted_printable_decode($v);
75 else
40a9d8b3 76 $k .= ';' . strtolower($attr);
65c3ec94 77 }
78
0f8a1ce9 79 $v = str_replace(';', "\n", $v);
65c3ec94 80 $vcard_nice[$k] = $v;
81}
82
83if ($vcard_nice['version'] == '2.1') {
84 // get firstname and lastname for sm addressbook
40a9d8b3 85 $vcard_nice['firstname'] = substr($vcard_nice['n'],
86 strpos($vcard_nice['n'], "\n") + 1, strlen($vcard_nice['n']));
87 $vcard_nice['lastname'] = substr($vcard_nice['n'], 0,
88 strpos($vcard_nice['n'], "\n"));
89 // workaround for Outlook, should be fixed in a better way,
90 // maybe in new 'vCard' class.
91 if (isset($vcard_nice['email;pref;internet'])) {
92 $vcard_nice['email;internet'] = $vcard_nice['email;pref;internet'];
93 }
65c3ec94 94} else {
89ac34a4 95 echo '<tr><td align="center">' .
1bae252c 96 sprintf(_("vCard Version %s is not supported. Some information might not be converted correctly."),
97 htmlspecialchars($vcard_nice['version'])) .
134e4174 98 "</td></tr>\n";
d543fbac 99 $vcard_nice['firstname'] = '';
100 $vcard_nice['lastname'] = '';
65c3ec94 101}
102
103foreach ($vcard_nice as $k => $v) {
104 $v = htmlspecialchars($v);
105 $v = trim($v);
106 $vcard_safe[$k] = trim(nl2br($v));
107}
108
109$ShowValues = array(
110 'fn' => _("Name"),
111 'title' => _("Title"),
674a2ca2 112 'email;internet' => _("E-mail"),
65c3ec94 113 'url' => _("Web Page"),
114 'org' => _("Organization / Department"),
115 'adr' => _("Address"),
116 'tel;work' => _("Work Phone"),
117 'tel;home' => _("Home Phone"),
118 'tel;cell' => _("Cellular Phone"),
119 'tel;fax' => _("Fax"),
120 'note' => _("Note"));
121
3c621ba1 122echo '<tr><td><br />' .
123 '<table border="0" cellpadding="2" cellspacing="0" align="center">' . "\n";
65c3ec94 124
d62c4938 125if (isset($vcard_safe['email;internet'])) {
126 $vcard_safe['email;internet'] = makeComposeLink('src/compose.php?send_to='.urlencode($vcard_safe['email;internet']),
127 $vcard_safe['email;internet']);
65c3ec94 128}
d62c4938 129
65c3ec94 130if (isset($vcard_safe['url'])) {
3c621ba1 131 $vcard_safe['url'] = '<a href="' . $vcard_safe['url'] . '">' .
132 $vcard_safe['url'] . '</a>';
65c3ec94 133}
134
135foreach ($ShowValues as $k => $v) {
136 if (isset($vcard_safe[$k]) && $vcard_safe[$k]) {
d444fa27 137 echo "<tr><td align=\"right\" valign=\"top\"><b>$v:</b></td><td>" .
138 $vcard_safe[$k] . "</td><tr>\n";
65c3ec94 139 }
140}
7baf86a9 141
d444fa27 142?>
143</table>
144<br />
145</td></tr></table>
146<table width="100%" border="0" cellspacing="0" cellpadding="2" align="center">
147<tr><td bgcolor="<?php echo $color[0]; ?>">
f265009a 148<div style="text-align: center;"><b><?php echo _("Add to address book"); ?></b></div>
d444fa27 149</td></tr>
150<tr><td align="center">
151<?php echo addForm('../src/addressbook.php', 'post', 'f_add'); ?><br />
152<table border="0" cellpadding="2" cellspacing="0" align="center">
153<tr><td align="right"><b><?php echo _("Nickname"); ?>:</b></td>
154<td>
155<?php
156
157echo addInput('addaddr[nickname]', $vcard_safe['firstname'] .
158 '-' . $vcard_safe['lastname'], '20');
159
160/*
916669ad 161 * If the vCard comes with an e-mail address it should be added to the
d444fa27 162 * address book, otherwise the user must add one manually to avoid an
916669ad 163 * error message in src/addressbook.php. SquirrelMail is nice enough to
164 * suggest the e-mail address of the sender though.
d444fa27 165 */
166if (isset($vcard_nice['email;internet'])) {
167 echo addHidden('addaddr[email]', $vcard_nice['email;internet']);
168} else {
916669ad 169 $message = sqimap_get_message($imapConnection, $passed_id, $mailbox);
170 $header = $message->rfc822_header;
171 $from_name = $header->getAddr_s('from');
172
d444fa27 173 echo '</td></tr>' .
174 '<tr><td align="right"><b>' . _("E-mail address") . ':</b></td><td>' .
916669ad 175 addInput('addaddr[email]',
176 getEmail(decodeHeader($from_name)), '20');
d444fa27 177}
178
179echo '</td></tr>' .
180 '<tr><td align="right"><b>' . _("Additional info") . ':</b></td><td>';
7baf86a9 181
64c9e87e 182$opts = array();
65c3ec94 183if (isset($vcard_nice['url'])) {
64c9e87e 184 $opts[$vcard_nice['url']] = _("Web Page");
65c3ec94 185}
186if (isset($vcard_nice['adr'])) {
64c9e87e 187 $opts[$vcard_nice['adr']] = _("Address");
65c3ec94 188}
189if (isset($vcard_nice['title'])) {
64c9e87e 190 $opts[$vcard_nice['title']] = _("Title");
65c3ec94 191}
192if (isset($vcard_nice['org'])) {
64c9e87e 193 $opts[$vcard_nice['org']] = _("Organization / Department");
65c3ec94 194}
195if (isset($vcard_nice['title'])) {
407e7032 196 $opts[$vcard_nice['title'].'; '.$vcard_nice['org']] = _("Title &amp; Org. / Dept.");
65c3ec94 197}
198if (isset($vcard_nice['tel;work'])) {
64c9e87e 199 $opts[$vcard_nice['tel;work']] = _("Work Phone");
65c3ec94 200}
201if (isset($vcard_nice['tel;home'])) {
64c9e87e 202 $opts[$vcard_nice['tel;home']] = _("Home Phone");
65c3ec94 203}
204if (isset($vcard_nice['tel;cell'])) {
64c9e87e 205 $opts[$vcard_nice['tel;cell']] = _("Cellular Phone");
65c3ec94 206}
207if (isset($vcard_nice['tel;fax'])) {
64c9e87e 208 $opts[$vcard_nice['tel;fax']] = _("Fax");
65c3ec94 209}
210if (isset($vcard_nice['note'])) {
64c9e87e 211 $opts[$vcard_nice['note']] = _("Note");
65c3ec94 212}
64c9e87e 213
d444fa27 214/*
215 * If the vcard comes with nothing but name and e-mail address, the user gets
216 * the chance to type some additional info. If there's more info in the card,
217 * the user gets to choose what will be added as additional info.
218 */
219if (count($opts) == 0) {
220 echo addInput('addaddr[label]', '', '20');
221} else {
222 echo addSelect('addaddr[label]', $opts, '', TRUE);
223}
224
2841ba15 225?>
226</td></tr>
d444fa27 227<tr><td colspan="2" align="center"><br />
2841ba15 228<?php
6b2eed75 229
d444fa27 230echo addHidden('addaddr[firstname]', $vcard_safe['firstname']) .
231 addHidden('addaddr[lastname]', $vcard_safe['lastname']) .
674a2ca2 232 addSubmit(_("Add to address book"), 'addaddr[SUBMIT]');
d444fa27 233
2841ba15 234?>
235</td></tr>
236</table>
237</form>
238</td></tr>
239<tr><td align="center">
240<?php
d444fa27 241echo '<a href="../src/download.php?absolute_dl=true&amp;passed_id=' .
2841ba15 242 urlencode($passed_id) . '&amp;mailbox=' . urlencode($mailbox) .
d444fa27 243 '&amp;ent_id=' . urlencode($ent_id) . '">' .
2841ba15 244 _("Download this as a file") . '</a>';
245?>
246</td></tr></table>
2841ba15 247<table border="0" cellspacing="0" cellpadding="2" align="center">
248<tr><td bgcolor="<?php echo $color[4]; ?>">
249</td></tr></table>
5c4ff7bf 250<?php
251$oTemplate->display('footer.tpl');
906f7e9f 252?>