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

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