source: subversion/trunk/roundcubemail/index.php @ 2119

Last change on this file since 2119 was 2119, checked in by alec, 4 years ago
  • performance: connect to imap server only when needed (some mail actions do not require imap connection)
  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 7.5 KB
Line 
1<?php
2/*
3 +-------------------------------------------------------------------------+
4 | RoundCube Webmail IMAP Client                                           |
5 | Version 0.2-20080829                                                    |
6 |                                                                         |
7 | Copyright (C) 2005-2008, RoundCube Dev. - Switzerland                   |
8 |                                                                         |
9 | This program is free software; you can redistribute it and/or modify    |
10 | it under the terms of the GNU General Public License version 2          |
11 | as published by the Free Software Foundation.                           |
12 |                                                                         |
13 | This program is distributed in the hope that it will be useful,         |
14 | but WITHOUT ANY WARRANTY; without even the implied warranty of          |
15 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the           |
16 | GNU General Public License for more details.                            |
17 |                                                                         |
18 | You should have received a copy of the GNU General Public License along |
19 | with this program; if not, write to the Free Software Foundation, Inc., |
20 | 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.             |
21 |                                                                         |
22 +-------------------------------------------------------------------------+
23 | Author: Thomas Bruederli <roundcube@gmail.com>                          |
24 +-------------------------------------------------------------------------+
25
26 $Id$
27
28*/
29
30// include environment
31require_once 'program/include/iniset.php';
32
33// init application and start session with requested task
34$RCMAIL = rcmail::get_instance();
35
36// init output class
37$OUTPUT = !empty($_REQUEST['_remote']) ? $RCMAIL->init_json() : $RCMAIL->load_gui(!empty($_REQUEST['_framed']));
38
39// set output buffering
40if ($RCMAIL->action != 'get' && $RCMAIL->action != 'viewsource') {
41  // use gzip compression if supported
42  if (function_exists('ob_gzhandler')
43      && !ini_get('zlib.output_compression')
44      && ini_get('output_handler') != 'ob_gzhandler') {
45    ob_start('ob_gzhandler');
46  }
47  else {
48    ob_start();
49  }
50}
51
52// check if config files had errors
53if ($err_str = $RCMAIL->config->get_error()) {
54  raise_error(array(
55    'code' => 601,
56    'type' => 'php',
57    'message' => $err_str), false, true);
58}
59
60// check DB connections and exit on failure
61if ($err_str = $DB->is_error()) {
62  raise_error(array(
63    'code' => 603,
64    'type' => 'db',
65    'message' => $err_str), FALSE, TRUE);
66}
67
68// error steps
69if ($RCMAIL->action=='error' && !empty($_GET['_code'])) {
70  raise_error(array('code' => hexdec($_GET['_code'])), FALSE, TRUE);
71}
72
73// try to log in
74if ($RCMAIL->action=='login' && $RCMAIL->task=='mail') {
75  $host = $RCMAIL->autoselect_host();
76 
77  // check if client supports cookies
78  if (empty($_COOKIE)) {
79    $OUTPUT->show_message("cookiesdisabled", 'warning');
80  }
81  else if ($_SESSION['temp'] && !empty($_POST['_user']) && !empty($_POST['_pass']) &&
82           $RCMAIL->login(trim(get_input_value('_user', RCUBE_INPUT_POST), ' '),
83              get_input_value('_pass', RCUBE_INPUT_POST, true, 'ISO-8859-1'), $host)) {
84    // create new session ID
85    unset($_SESSION['temp']);
86    rcube_sess_regenerate_id();
87
88    // send auth cookie if necessary
89    $RCMAIL->authenticate_session();
90
91    // log successful login
92    if ($RCMAIL->config->get('log_logins')) {
93      write_log('userlogins', sprintf('Successful login for %s (id %d) from %s',
94        $RCMAIL->user->get_username(),
95        $RCMAIL->user->ID,
96        $_SERVER['REMOTE_ADDR']));
97    }
98
99    // send redirect
100    $OUTPUT->redirect();
101  }
102  else {
103    $OUTPUT->show_message($IMAP->error_code < -1 ? 'imaperror' : 'loginfailed', 'warning');
104    $RCMAIL->kill_session();
105  }
106}
107
108// end session
109else if (($RCMAIL->task=='logout' || $RCMAIL->action=='logout') && isset($_SESSION['user_id'])) {
110  $OUTPUT->show_message('loggedout');
111  $RCMAIL->logout_actions();
112  $RCMAIL->kill_session();
113}
114
115// check session and auth cookie
116else if ($RCMAIL->action != 'login' && $_SESSION['user_id'] && $RCMAIL->action != 'send') {
117  if (!$RCMAIL->authenticate_session()) {
118    $OUTPUT->show_message('sessionerror', 'error');
119    $RCMAIL->kill_session();
120  }
121}
122
123
124// check client X-header to verify request origin
125if ($OUTPUT->ajax_call) {
126  if (!$RCMAIL->config->get('devel_mode') && !rc_request_header('X-RoundCube-Referer')) {
127    header('HTTP/1.1 404 Not Found');
128    die("Invalid Request");
129  }
130}
131
132
133// not logged in -> show login page
134if (empty($RCMAIL->user->ID)) {
135 
136  if ($OUTPUT->ajax_call)
137    $OUTPUT->redirect(array(), 2000);
138 
139  // check if installer is still active
140  if ($RCMAIL->config->get('enable_installer') && is_readable('./installer/index.php')) {
141    $OUTPUT->add_footer(html::div(array('style' => "background:#ef9398; border:2px solid #dc5757; padding:0.5em; margin:2em auto; width:50em"),
142      html::tag('h2', array('style' => "margin-top:0.2em"), "Installer script is still accessible") .
143      html::p(null, "The install script of your RoundCube installation is still stored in its default location!") .
144      html::p(null, "Please <b>remove</b> the whole <tt>installer</tt> folder from the RoundCube directory because .
145        these files may expose sensitive configuration data like server passwords and encryption keys
146        to the public. Make sure you cannot access the <a href=\"./installer/\">installer script</a> from your browser.")
147      )
148    );
149  }
150 
151  $OUTPUT->set_env('task', 'login');
152  $OUTPUT->send('login');
153}
154
155
156// handle keep-alive signal
157if ($RCMAIL->action == 'keep-alive') {
158  $OUTPUT->reset();
159  $OUTPUT->send();
160}
161// save preference value
162else if ($RCMAIL->action == 'save-pref') {
163  $RCMAIL->user->save_prefs(array(get_input_value('_name', RCUBE_INPUT_POST) => get_input_value('_value', RCUBE_INPUT_POST)));
164  $OUTPUT->reset();
165  $OUTPUT->send();
166}
167
168
169// map task/action to a certain include file
170$action_map = array(
171  'mail' => array(
172    'preview' => 'show.inc',
173    'print'   => 'show.inc',
174    'moveto'  => 'move_del.inc',
175    'delete'  => 'move_del.inc',
176    'send'    => 'sendmail.inc',
177    'expunge' => 'folders.inc',
178    'purge'   => 'folders.inc',
179    'remove-attachment'  => 'compose.inc',
180    'display-attachment' => 'compose.inc',
181  ),
182 
183  'addressbook' => array(
184    'add' => 'edit.inc',
185  ),
186 
187  'settings' => array(
188    'folders'       => 'manage_folders.inc',
189    'create-folder' => 'manage_folders.inc',
190    'rename-folder' => 'manage_folders.inc',
191    'delete-folder' => 'manage_folders.inc',
192    'subscribe'     => 'manage_folders.inc',
193    'unsubscribe'   => 'manage_folders.inc',
194    'add-identity'  => 'edit_identity.inc',
195  )
196);
197
198// include task specific functions
199include_once 'program/steps/'.$RCMAIL->task.'/func.inc';
200
201// allow 5 "redirects" to another action
202$redirects = 0; $incstep = null;
203while ($redirects < 5) {
204  $stepfile = !empty($action_map[$RCMAIL->task][$RCMAIL->action]) ?
205    $action_map[$RCMAIL->task][$RCMAIL->action] : strtr($RCMAIL->action, '-', '_') . '.inc';
206   
207  // try to include the step file
208  if (is_file(($incfile = 'program/steps/'.$RCMAIL->task.'/'.$stepfile))) {
209    include($incfile);
210    $redirects++;
211  }
212  else {
213    break;
214  }
215}
216
217
218// parse main template (default)
219$OUTPUT->send($RCMAIL->task);
220
221
222// if we arrive here, something went wrong
223raise_error(array(
224  'code' => 404,
225  'type' => 'php',
226  'line' => __LINE__,
227  'file' => __FILE__,
228  'message' => "Invalid request"), true, true);
229                     
230?>
Note: See TracBrowser for help on using the repository browser.