source: github/program/steps/mail/show.inc @ 6afdd69

HEADcourier-fixdev-browser-capabilitiespdorelease-0.6release-0.7release-0.8
Last change on this file since 6afdd69 was 112c9133, checked in by alecpl <alec@…>, 5 years ago
  • removed deprecated rcube_add_label() and all uses
  • code for 'show' action added in r1937 moved to show.inc
  • Property mode set to 100644
File size: 7.6 KB
Line 
1<?php
2
3/*
4 +-----------------------------------------------------------------------+
5 | program/steps/mail/show.inc                                           |
6 |                                                                       |
7 | This file is part of the RoundCube Webmail client                     |
8 | Copyright (C) 2005-2008, RoundCube Dev. - Switzerland                 |
9 | Licensed under the GNU GPL                                            |
10 |                                                                       |
11 | PURPOSE:                                                              |
12 |   Display a mail message similar as a usual mail application does     |
13 |                                                                       |
14 +-----------------------------------------------------------------------+
15 | Author: Thomas Bruederli <roundcube@gmail.com>                        |
16 +-----------------------------------------------------------------------+
17
18 $Id$
19
20*/
21
22$PRINT_MODE = $RCMAIL->action=='print' ? TRUE : FALSE;
23
24// similar code as in program/steps/mail/get.inc
25if ($_GET['_uid']) {
26  $MESSAGE = new rcube_message(get_input_value('_uid', RCUBE_INPUT_GET));
27 
28  // set message charset as default
29  if (!empty($MESSAGE->headers->charset))
30    $IMAP->set_charset($MESSAGE->headers->charset);
31
32  // go back to list if message not found (wrong UID)
33  if (empty($MESSAGE->headers)) {
34    $OUTPUT->show_message('messageopenerror', 'error');
35    if ($RCMAIL->action=='preview' && $OUTPUT->template_exists('messagepreview'))
36        $OUTPUT->send('messagepreview');
37    else {
38      rcmail_overwrite_action('');
39      return;
40    }
41  }
42   
43  $mbox_name = $IMAP->get_mailbox_name();
44 
45  // check known senders to display images
46  if (!$MESSAGE->is_safe
47      && !empty($MESSAGE->sender['mailto'])
48      && $RCMAIL->config->get('addrbook_show_images')
49      && $MESSAGE->has_html_part()) {
50    $CONTACTS = new rcube_contacts($DB, $_SESSION['user_id']);
51   
52    if ($CONTACTS->search('email', $MESSAGE->sender['mailto'], true, false)->count) {
53      $MESSAGE->set_safe(true);
54    }
55  }
56
57  // calculate Etag for this request
58  $etag = md5($MESSAGE->uid.$mbox_name.session_id().intval($MESSAGE->headers->mdn_sent).intval($MESSAGE->is_safe).intval($PRINT_MODE));
59
60  // allow caching, unless remote images are present
61  if ((bool)$MESSAGE->is_safe)
62    send_nocacheing_headers();
63  else if (empty($CONFIG['devel_mode']))
64    send_modified_header($_SESSION['login_time'], $etag, !$MESSAGE->headers->seen);
65
66  $OUTPUT->set_pagetitle($MESSAGE->subject);
67 
68  // mark message as read
69  if (!$MESSAGE->headers->seen)
70    $IMAP->set_flag($MESSAGE->uid, 'SEEN');
71
72  // give message uid to the client
73  $OUTPUT->set_env('uid', $MESSAGE->uid);
74  // set environement
75  $OUTPUT->set_env('safemode', $MESSAGE->is_safe);
76  $OUTPUT->set_env('sender', $MESSAGE->sender['string']);
77  $OUTPUT->set_env('permaurl', rcmail_url('show', array('_uid' => $MESSAGE->uid, '_mbox' => $mbox_name)));
78  $OUTPUT->set_env('mailbox', $mbox_name);
79  if ($CONFIG['trash_mbox'])
80    $OUTPUT->set_env('trash_mailbox', $CONFIG['trash_mbox']);
81  if (!$OUTPUT->ajax_call)
82    $OUTPUT->add_label('checkingmail', 'deletemessage', 'movemessagetotrash', 'movingmessage');
83   
84  // check for unset disposition notification
85  if ($MESSAGE->headers->mdn_to &&
86      !$MESSAGE->headers->mdn_sent &&
87      $IMAP->check_permflag('MDNSENT') &&
88      $mbox_name != $CONFIG['drafts_mbox'] &&
89      $mbox_name != $CONFIG['sent_mbox'])
90  {
91    if (intval($CONFIG['mdn_requests']) === 1)
92    {
93      if (rcmail_send_mdn($MESSAGE->uid))
94        $OUTPUT->show_message('receiptsent', 'confirmation');
95      else
96        $OUTPUT->show_message('errorsendingreceipt', 'error');
97    }
98    else if (empty($CONFIG['mdn_requests']))
99    {
100      $OUTPUT->add_label('mdnrequest');
101      $OUTPUT->set_env('mdn_request', true);
102    }
103  }
104
105
106  $next = $prev = $first = $last = -1;
107  // get previous, first, next and last message UID
108  if ((!($_SESSION['sort_col'] == 'date' && $_SESSION['sort_order'] == 'DESC') &&
109      $IMAP->get_capability('sort')) || !empty($_REQUEST['_search']))
110    {
111    // Only if we use custom sorting
112    $a_msg_index = $IMAP->message_index(NULL, $_SESSION['sort_col'], $_SESSION['sort_order']);
113 
114    $MESSAGE->index = array_search((string)$MESSAGE->uid, $a_msg_index, TRUE);
115    $prev = isset($a_msg_index[$MESSAGE->index-1]) ? $a_msg_index[$MESSAGE->index-1] : -1 ;
116    $first = count($a_msg_index)>0 ? $a_msg_index[0] : -1;
117    $next = isset($a_msg_index[$MESSAGE->index+1]) ? $a_msg_index[$MESSAGE->index+1] : -1 ;
118    $last = count($a_msg_index)>0 ? $a_msg_index[count($a_msg_index)-1] : -1;
119    }
120  else
121    {
122    // this assumes that we are sorted by date_DESC
123    $seq = $IMAP->get_id($MESSAGE->uid);
124    $prev = $IMAP->get_uid($seq + 1);
125    $first = $IMAP->get_uid($IMAP->messagecount());
126    $next = $IMAP->get_uid($seq - 1);
127    $last = $IMAP->get_uid(1);
128    $MESSAGE->index = $IMAP->messagecount() - $seq;
129    }
130 
131  if ($prev > 0)
132    $OUTPUT->set_env('prev_uid', $prev);
133  if ($first >0)
134    $OUTPUT->set_env('first_uid', $first);
135  if ($next > 0)
136    $OUTPUT->set_env('next_uid', $next);
137  if ($last >0)
138    $OUTPUT->set_env('last_uid', $last);
139  }
140
141
142
143function rcmail_message_attachments($attrib)
144{
145  global $PRINT_MODE, $MESSAGE;
146 
147  $out = $ol = '';
148
149  if (sizeof($MESSAGE->attachments)) {
150    foreach ($MESSAGE->attachments as $attach_prop) {
151      if ($PRINT_MODE) {
152        $ol .= html::tag('li', null, sprintf("%s (%s)", Q($attach_prop->filename), Q(show_bytes($attach_prop->size))));
153      }
154      else {
155        if (rc_strlen($attach_prop->filename) > 50) {
156          $filename = abbreviate_string($attach_prop->filename, 50);
157          $title = $attach_prop->filename;
158      }
159      else {
160        $filename = $attach_prop->filename;
161        $title = '';
162      }
163
164        $ol .= html::tag('li', null,
165          html::a(array(
166            'href' => $MESSAGE->get_part_url($attach_prop->mime_id),
167            'onclick' => sprintf(
168              'return %s.command(\'load-attachment\',{part:\'%s\', mimetype:\'%s\'},this)',
169              JS_OBJECT_NAME,
170              $attach_prop->mime_id,
171              $attach_prop->mimetype),
172              'title' => Q($title),
173            ),
174            Q($filename)));
175      }
176    }
177
178    $out = html::tag('ul', $attrib, $ol, html::$common_attrib);
179  }
180 
181  return $out;
182}
183
184
185
186function rcmail_remote_objects_msg($attrib)
187{
188  global $MESSAGE, $RCMAIL;
189 
190  if (!$attrib['id'])
191    $attrib['id'] = 'rcmremoteobjmsg';
192 
193  $msg = Q(rcube_label('blockedimages')) . '&nbsp;';
194  $msg .= html::a(array('href' => "#loadimages", 'onclick' => JS_OBJECT_NAME.".command('load-images')"), Q(rcube_label('showimages')));
195 
196  // add link to save sender in addressbook and reload message
197  if ($MESSAGE->sender['mailto'] && $RCMAIL->config->get('addrbook_show_images')) {
198    $msg .= ' ' . html::a(array('href' => "#alwaysload", 'onclick' => JS_OBJECT_NAME.".command('always-load')", 'style' => "white-space:nowrap"),
199      Q(rcube_label(array('name' => 'alwaysshow', 'vars' => array('sender' => $MESSAGE->sender['mailto'])))));
200  }
201 
202  $RCMAIL->output->add_gui_object('remoteobjectsmsg', $attrib['id']);
203  return html::div($attrib, $msg);
204}
205
206
207$OUTPUT->add_handlers(array(
208  'messageattachments' => 'rcmail_message_attachments',
209  'mailboxname' => 'rcmail_mailbox_name_display',
210  'blockedobjects' => 'rcmail_remote_objects_msg'));
211
212
213if ($RCMAIL->action=='print' && $OUTPUT->template_exists('printmessage'))
214  $OUTPUT->send('printmessage');
215else if ($RCMAIL->action=='preview' && $OUTPUT->template_exists('messagepreview'))
216    $OUTPUT->send('messagepreview');
217else
218  $OUTPUT->send('message');
219?>
Note: See TracBrowser for help on using the repository browser.