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

Last change on this file since 3879 was 3879, checked in by thomasb, 3 years ago

Fix unit tests + update version

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