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