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

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