Lots of changes for variable initialization - clean up, really,
[squirrelmail.git] / src / vcard.php
CommitLineData
7baf86a9 1<?php
895905c0 2
35586184 3/**
4 * vcard.php
5 *
76911253 6 * Copyright (c) 1999-2003 The SquirrelMail Project Team
35586184 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 */
7baf86a9 13
86725763 14/* Path for SquirrelMail required files. */
846a3a21 15Define('SM_PATH','../');
86725763 16
17/* SquirrelMail required files. */
08185f2a 18require_once(SM_PATH . 'include/validate.php');
86725763 19require_once(SM_PATH . 'functions/date.php');
20require_once(SM_PATH . 'functions/page_header.php');
21require_once(SM_PATH . 'functions/mime.php');
08185f2a 22require_once(SM_PATH . 'include/load_prefs.php');
7baf86a9 23
0b97a708 24/* globals */
25$key = $_COOKIE['key'];
26$username = $_SESSION['username'];
846a3a21 27$onetimepad = $_SESSION['onetimepad'];
a91189d6 28$mailbox = urldecode($_GET['mailbox']);
9b761dbd 29$passed_id = (int) $_GET['passed_id'];
846a3a21 30$ent_id = $_GET['ent_id'];
0b97a708 31$passed_ent_id = $_GET['passed_ent_id'];
33c8b76b 32$startMessage = (int) $_GET['startMessage'];
0b97a708 33/* end globals */
34
65c3ec94 35$imapConnection = sqimap_login($username, $key, $imapServerAddress, $imapPort, 0);
36sqimap_mailbox_select($imapConnection, $mailbox);
7baf86a9 37
38
65c3ec94 39displayPageHeader($color, 'None');
7baf86a9 40
24d16195 41echo '<br><table width="100%" border="0" cellspacing="0" cellpadding="2" ' .
42 'align="center">' . "\n" .
43 '<tr><td bgcolor="' . $color[0] . '">' .
7baf86a9 44 '<b><center>' .
24d16195 45 _("Viewing a Business Card") . " - ";
33c8b76b 46$msg_url = 'read_body.php?mailbox='.urlencode($mailbox).
47 '&amp;startMessage='.$startMessage.
48 '&amp;passed_id='.$passed_id;
49
24d16195 50$msg_url = set_url_var($msg_url, 'ent_id', 0);
33c8b76b 51
24d16195 52echo '<a href="'.$msg_url.'">'. _("View message") . '</a>';
53
65c3ec94 54echo '</center></b></td></tr>';
55
56$message = sqimap_get_message($imapConnection, $passed_id, $mailbox);
57
24d16195 58$entity_vcard = getEntity($message,$ent_id);
65c3ec94 59
24d16195 60$vcard = mime_fetch_body ($imapConnection, $passed_id, $ent_id);
65c3ec94 61$vcard = decodeBody($vcard, $entity_vcard->header->encoding);
62$vcard = explode ("\n",$vcard);
63foreach ($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
40a9d8b3 72 $k .= ';' . strtolower($attr);
65c3ec94 73 }
74
0f8a1ce9 75 $v = str_replace(';', "\n", $v);
65c3ec94 76 $vcard_nice[$k] = $v;
77}
78
79if ($vcard_nice['version'] == '2.1') {
80 // get firstname and lastname for sm addressbook
40a9d8b3 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 }
65c3ec94 90} else {
24d16195 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";
65c3ec94 94}
95
96foreach ($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
24d16195 115echo '<tr><td><br>' .
116 '<TABLE border=0 cellpadding=2 cellspacing=0 align=center>' . "\n";
65c3ec94 117
24d16195 118if (isset($vcard_safe['email;internet'])) { $vcard_safe['email;internet'] = '<A HREF="../src/compose.php?send_to=' .
65c3ec94 119 $vcard_safe['email;internet'] . '">' . $vcard_safe['email;internet'] .
24d16195 120 '</A>';
65c3ec94 121}
122if (isset($vcard_safe['url'])) {
24d16195 123 $vcard_safe['url'] = '<A HREF="' . $vcard_safe['url'] . '">' .
124 $vcard_safe['url'] . '</A>';
65c3ec94 125}
126
127foreach ($ShowValues as $k => $v) {
128 if (isset($vcard_safe[$k]) && $vcard_safe[$k]) {
24d16195 129 echo "<tr><td align=right><b>$v:</b></td><td>" . $vcard_safe[$k] .
130 "</td><tr>\n";
65c3ec94 131 }
132}
7baf86a9 133
65c3ec94 134echo '</table>' .
7baf86a9 135 '<br>' .
136 '</td></tr></table>' .
24d16195 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>' .
7baf86a9 152 '<select name="addaddr[label]">';
153
65c3ec94 154if (isset($vcard_nice['url'])) {
155 echo '<option value="' . htmlspecialchars($vcard_nice['url']) .
156 '">' . _("Web Page") . "</option>\n";
157}
158if (isset($vcard_nice['adr'])) {
159 echo '<option value="' . $vcard_nice['adr'] .
160 '">' . _("Address") . "</option>\n";
161}
162if (isset($vcard_nice['title'])) {
163 echo '<option value="' . $vcard_nice['title'] .
164 '">' . _("Title") . "</option>\n";
165}
166if (isset($vcard_nice['org'])) {
167 echo '<option value="' . $vcard_nice['org'] .
168 '">' . _("Organization / Department") . "</option>\n";
169}
170if (isset($vcard_nice['title'])) {
171 echo '<option value="' . $vcard_nice['title'] .
172 '; ' . $vcard_nice['org'] .
173 '">' . _("Title & Org. / Dept.") . "</option>\n";
174}
175if (isset($vcard_nice['tel;work'])) {
176 echo '<option value="' . $vcard_nice['tel;work'] .
177 '">' . _("Work Phone") . "</option>\n";
178}
179if (isset($vcard_nice['tel;home'])) {
180 echo '<option value="' . $vcard_nice['tel;home'] .
181 '">' . _("Home Phone") . "</option>\n";
182}
183if (isset($vcard_nice['tel;cell'])) {
184 echo '<option value="' . $vcard_nice['tel;cell'] .
185 '">' . _("Cellular Phone") . "</option>\n";
186}
187if (isset($vcard_nice['tel;fax'])) {
188 echo '<option value="' . $vcard_nice['tel;fax'] .
189 '">' . _("Fax") . "</option>\n";
190}
191if (isset($vcard_nice['note'])) {
192 echo '<option value="' . $vcard_nice['note'] .
193 '">' . _("Note") . "</option>\n";
194}
195echo '</select>' .
7baf86a9 196 '</td></tr>' .
24d16195 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">' .
7baf86a9 206 '</td></tr>' .
fab3baa6 207 '</table>' .
24d16195 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) .
9b761dbd 213 '&amp;passed_ent_id=' . urlencode($passed_ent_id) . '">' .
24d16195 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>' .
7baf86a9 220 '</body></html>';
65c3ec94 221
0f8a1ce9 222?>