source: github/index.php @ 315993e

release-0.7
Last change on this file since 315993e was 315993e, checked in by thomascube <thomas@…>, 14 months ago

Bump version to 0.7.2

  • Property mode set to 100644
File size: 10.1 KB
Line 
1<?php
2/*
3 +-------------------------------------------------------------------------+
4 | Roundcube Webmail IMAP Client                                           |
5 | Version 0.7.2                                                           |
6 |                                                                         |
7 | Copyright (C) 2005-2012, The Roundcube Dev Team                         |
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, start session, init output class, etc.
34$RCMAIL = rcmail::get_instance();
35
36// Make the whole PHP output non-cacheable (#1487797)
37send_nocacheing_headers();
38
39// turn on output buffering
40ob_start();
41
42// check if config files had errors
43if ($err_str = $RCMAIL->config->get_error()) {
44  raise_error(array(
45    'code' => 601,
46    'type' => 'php',
47    'message' => $err_str), false, true);
48}
49
50// check DB connections and exit on failure
51if ($err_str = $DB->is_error()) {
52  raise_error(array(
53    'code' => 603,
54    'type' => 'db',
55    'message' => $err_str), FALSE, TRUE);
56}
57
58// error steps
59if ($RCMAIL->action=='error' && !empty($_GET['_code'])) {
60  raise_error(array('code' => hexdec($_GET['_code'])), FALSE, TRUE);
61}
62
63// check if https is required (for login) and redirect if necessary
64if (empty($_SESSION['user_id']) && ($force_https = $RCMAIL->config->get('force_https', false))) {
65  $https_port = is_bool($force_https) ? 443 : $force_https;
66  if (!rcube_https_check($https_port)) {
67    $host  = preg_replace('/:[0-9]+$/', '', $_SERVER['HTTP_HOST']);
68    $host .= ($https_port != 443 ? ':' . $https_port : '');
69    header('Location: https://' . $host . $_SERVER['REQUEST_URI']);
70    exit;
71  }
72}
73
74// trigger startup plugin hook
75$startup = $RCMAIL->plugins->exec_hook('startup', array('task' => $RCMAIL->task, 'action' => $RCMAIL->action));
76$RCMAIL->set_task($startup['task']);
77$RCMAIL->action = $startup['action'];
78
79// try to log in
80if ($RCMAIL->task == 'login' && $RCMAIL->action == 'login') {
81  $request_valid = $_SESSION['temp'] && $RCMAIL->check_request(RCUBE_INPUT_POST, 'login');
82
83  // purge the session in case of new login when a session already exists
84  $RCMAIL->kill_session();
85
86  $auth = $RCMAIL->plugins->exec_hook('authenticate', array(
87    'host' => $RCMAIL->autoselect_host(),
88    'user' => trim(get_input_value('_user', RCUBE_INPUT_POST)),
89    'pass' => get_input_value('_pass', RCUBE_INPUT_POST, true,
90       $RCMAIL->config->get('password_charset', 'ISO-8859-1')),
91    'cookiecheck' => true,
92    'valid' => $request_valid,
93  ));
94
95  // check if client supports cookies
96  if ($auth['cookiecheck'] && empty($_COOKIE)) {
97    $OUTPUT->show_message("cookiesdisabled", 'warning');
98  }
99  else if ($auth['valid'] && !$auth['abort'] &&
100        !empty($auth['host']) && !empty($auth['user']) &&
101        $RCMAIL->login($auth['user'], $auth['pass'], $auth['host'])
102  ) {
103    // create new session ID, don't destroy the current session
104    // it was destroyed already by $RCMAIL->kill_session() above
105    $RCMAIL->session->remove('temp');
106    $RCMAIL->session->regenerate_id(false);
107
108    // send auth cookie if necessary
109    $RCMAIL->session->set_auth_cookie();
110
111    // log successful login
112    rcmail_log_login();
113
114    // restore original request parameters
115    $query = array();
116    if ($url = get_input_value('_url', RCUBE_INPUT_POST)) {
117      parse_str($url, $query);
118
119      // prevent endless looping on login page
120      if ($query['_task'] == 'login')
121        unset($query['_task']);
122    }
123
124    // allow plugins to control the redirect url after login success
125    $redir = $RCMAIL->plugins->exec_hook('login_after', $query + array('_task' => 'mail'));
126    unset($redir['abort'], $redir['_err']);
127
128    // send redirect
129    $OUTPUT->redirect($redir);
130  }
131  else {
132    $error_code = is_object($IMAP) ? $IMAP->get_error_code() : -1;
133
134    $OUTPUT->show_message($error_code < -1 ? 'imaperror' : (!$auth['valid'] ? 'invalidrequest' : 'loginfailed'), 'warning');
135    $RCMAIL->plugins->exec_hook('login_failed', array(
136      'code' => $error_code, 'host' => $auth['host'], 'user' => $auth['user']));
137    $RCMAIL->kill_session();
138  }
139}
140
141// end session (after optional referer check)
142else if ($RCMAIL->task == 'logout' && isset($_SESSION['user_id']) && (!$RCMAIL->config->get('referer_check') || rcube_check_referer())) {
143  $userdata = array('user' => $_SESSION['username'], 'host' => $_SESSION['imap_host'], 'lang' => $RCMAIL->user->language);
144  $OUTPUT->show_message('loggedout');
145  $RCMAIL->logout_actions();
146  $RCMAIL->kill_session();
147  $RCMAIL->plugins->exec_hook('logout_after', $userdata);
148}
149
150// check session and auth cookie
151else if ($RCMAIL->task != 'login' && $_SESSION['user_id'] && $RCMAIL->action != 'send') {
152  if (!$RCMAIL->session->check_auth()) {
153    $RCMAIL->kill_session();
154    $session_error = true;
155  }
156}
157
158// not logged in -> show login page
159if (empty($RCMAIL->user->ID)) {
160  // log session failures
161  if (($task = get_input_value('_task', RCUBE_INPUT_GPC)) && !in_array($task, array('login','logout')) && !$session_error && ($sess_id = $_COOKIE[ini_get('session.name')])) {
162    $RCMAIL->session->log("Aborted session " . $sess_id . "; no valid session data found");
163    $session_error = true;
164  }
165
166  if ($OUTPUT->ajax_call)
167    $OUTPUT->redirect(array('_err' => 'session'), 2000);
168
169  if (!empty($_REQUEST['_framed']))
170    $OUTPUT->command('redirect', $RCMAIL->url(array('_err' => 'session')));
171
172  // check if installer is still active
173  if ($RCMAIL->config->get('enable_installer') && is_readable('./installer/index.php')) {
174    $OUTPUT->add_footer(html::div(array('style' => "background:#ef9398; border:2px solid #dc5757; padding:0.5em; margin:2em auto; width:50em"),
175      html::tag('h2', array('style' => "margin-top:0.2em"), "Installer script is still accessible") .
176      html::p(null, "The install script of your Roundcube installation is still stored in its default location!") .
177      html::p(null, "Please <b>remove</b> the whole <tt>installer</tt> folder from the Roundcube directory because .
178        these files may expose sensitive configuration data like server passwords and encryption keys
179        to the public. Make sure you cannot access the <a href=\"./installer/\">installer script</a> from your browser.")
180      )
181    );
182  }
183
184  if ($session_error || $_REQUEST['_err'] == 'session')
185    $OUTPUT->show_message('sessionerror', 'error', null, true, -1);
186
187  $RCMAIL->set_task('login');
188  $OUTPUT->send('login');
189}
190// CSRF prevention
191else {
192  // don't check for valid request tokens in these actions
193  $request_check_whitelist = array('login'=>1, 'spell'=>1);
194
195  // check client X-header to verify request origin
196  if ($OUTPUT->ajax_call) {
197    if (rc_request_header('X-Roundcube-Request') != $RCMAIL->get_request_token() && !$RCMAIL->config->get('devel_mode')) {
198      header('HTTP/1.1 403 Forbidden');
199      die("Invalid Request");
200    }
201  }
202  // check request token in POST form submissions
203  else if (!empty($_POST) && !$request_check_whitelist[$RCMAIL->action] && !$RCMAIL->check_request()) {
204    $OUTPUT->show_message('invalidrequest', 'error');
205    $OUTPUT->send($RCMAIL->task);
206  }
207
208  // check referer if configured
209  if (!$request_check_whitelist[$RCMAIL->action] && $RCMAIL->config->get('referer_check') && !rcube_check_referer()) {
210    raise_error(array(
211      'code' => 403,
212      'type' => 'php',
213      'message' => "Referer check failed"), true, true);
214  }
215}
216
217// we're ready, user is authenticated and the request is safe
218$plugin = $RCMAIL->plugins->exec_hook('ready', array('task' => $RCMAIL->task, 'action' => $RCMAIL->action));
219$RCMAIL->set_task($plugin['task']);
220$RCMAIL->action = $plugin['action'];
221
222
223// handle special actions
224if ($RCMAIL->action == 'keep-alive') {
225  $OUTPUT->reset();
226  $RCMAIL->plugins->exec_hook('keep_alive', array());
227  $OUTPUT->send();
228}
229else if ($RCMAIL->action == 'save-pref') {
230  include INSTALL_PATH . 'program/steps/utils/save_pref.inc';
231}
232
233
234// include task specific functions
235if (is_file($incfile = INSTALL_PATH . 'program/steps/'.$RCMAIL->task.'/func.inc'))
236  include_once $incfile;
237
238// allow 5 "redirects" to another action
239$redirects = 0; $incstep = null;
240while ($redirects < 5) {
241  // execute a plugin action
242  if ($RCMAIL->plugins->is_plugin_task($RCMAIL->task)) {
243    if (!$RCMAIL->action) $RCMAIL->action = 'index';
244    $RCMAIL->plugins->exec_action($RCMAIL->task.'.'.$RCMAIL->action);
245    break;
246  }
247  else if (preg_match('/^plugin\./', $RCMAIL->action)) {
248    $RCMAIL->plugins->exec_action($RCMAIL->action);
249    break;
250  }
251  // try to include the step file
252  else if (($stepfile = $RCMAIL->get_action_file())
253    && is_file($incfile = INSTALL_PATH . 'program/steps/'.$RCMAIL->task.'/'.$stepfile)
254  ) {
255    include $incfile;
256    $redirects++;
257  }
258  else {
259    break;
260  }
261}
262
263
264// parse main template (default)
265$OUTPUT->send($RCMAIL->task);
266
267
268// if we arrive here, something went wrong
269raise_error(array(
270  'code' => 404,
271  'type' => 'php',
272  'line' => __LINE__,
273  'file' => __FILE__,
274  'message' => "Invalid request"), true, true);
275
Note: See TracBrowser for help on using the repository browser.