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

Last change on this file since 1697 was 1697, checked in by thomasb, 5 years ago

Moved code block to a more appropriate position + codestyle

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 8.0 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// define global vars
34$OUTPUT_TYPE = 'html';
35
36// init application and start session with requested task
37$RCMAIL = rcmail::get_instance();
38
39// init output class
40$OUTPUT = !empty($_REQUEST['_remote']) ? $RCMAIL->init_json() : $RCMAIL->load_gui(!empty($_REQUEST['_framed']));
41
42// set output buffering
43if ($RCMAIL->action != 'get' && $RCMAIL->action != 'viewsource') {
44  // use gzip compression if supported
45  if (function_exists('ob_gzhandler')
46      && !ini_get('zlib.output_compression')
47      && ini_get('output_handler') != 'ob_gzhandler') {
48    ob_start('ob_gzhandler');
49  }
50  else {
51    ob_start();
52  }
53}
54
55
56// check if config files had errors
57if ($err_str = $RCMAIL->config->get_error()) {
58  raise_error(array(
59    'code' => 601,
60    'type' => 'php',
61    'message' => $err_str), false, true);
62}
63
64// check DB connections and exit on failure
65if ($err_str = $DB->is_error()) {
66  raise_error(array(
67    'code' => 603,
68    'type' => 'db',
69    'message' => $err_str), FALSE, TRUE);
70}
71
72
73// error steps
74if ($RCMAIL->action=='error' && !empty($_GET['_code'])) {
75  raise_error(array('code' => hexdec($_GET['_code'])), FALSE, TRUE);
76}
77
78// try to log in
79if ($RCMAIL->action=='login' && $RCMAIL->task=='mail') {
80  $host = $RCMAIL->autoselect_host();
81 
82  // check if client supports cookies
83  if (empty($_COOKIE)) {
84    $OUTPUT->show_message("cookiesdisabled", 'warning');
85  }
86  else if ($_SESSION['temp'] && !empty($_POST['_user']) && isset($_POST['_pass']) &&
87           $RCMAIL->login(trim(get_input_value('_user', RCUBE_INPUT_POST), ' '),
88              get_input_value('_pass', RCUBE_INPUT_POST, true, 'ISO-8859-1'), $host)) {
89    // create new session ID
90    unset($_SESSION['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') && $RCMAIL->config->get('debug_level') & 1)
98      console(sprintf('Successful login for %s (id %d) from %s',
99                      trim(get_input_value('_user', RCUBE_INPUT_POST), ' '),
100                      $_SESSION['user_id'],
101                      $_SERVER['REMOTE_ADDR']));
102
103    // send redirect
104    $OUTPUT->redirect();
105  }
106  else {
107    $OUTPUT->show_message($IMAP->error_code == -1 ? 'imaperror' : 'loginfailed', 'warning');
108    $RCMAIL->kill_session();
109  }
110}
111
112// end session
113else if (($RCMAIL->task=='logout' || $RCMAIL->action=='logout') && isset($_SESSION['user_id'])) {
114  $OUTPUT->show_message('loggedout');
115  $RCMAIL->logout_actions();
116  $RCMAIL->kill_session();
117}
118
119// check session and auth cookie
120else if ($RCMAIL->action != 'login' && $_SESSION['user_id'] && $RCMAIL->action != 'send') {
121  if (!$RCMAIL->authenticate_session()) {
122    $OUTPUT->show_message('sessionerror', 'error');
123    $RCMAIL->kill_session();
124  }
125}
126
127
128// log in to imap server
129if (!empty($RCMAIL->user->ID) && $RCMAIL->task == 'mail') {
130  if (!$RCMAIL->imap_connect()) {
131    $RCMAIL->kill_session();
132  }
133}
134
135
136// check client X-header to verify request origin
137if ($OUTPUT->ajax_call) {
138  if ($RCMAIL->config->get('devel_mode') && !rc_request_header('X-RoundCube-Referer')) {
139    header('HTTP/1.1 404 Not Found');
140    die("Invalid Request");
141  }
142}
143
144
145// not logged in -> show login page
146if (empty($RCMAIL->user->ID)) {
147 
148  if ($OUTPUT->ajax_call)
149    $OUTPUT->redirect(array(), 2000);
150 
151  // check if installer is still active
152  if ($RCMAIL->config->get('enable_installer') && is_readable('./installer/index.php')) {
153    $OUTPUT->add_footer(html::div(array('style' => "background:#ef9398; border:2px solid #dc5757; padding:0.5em; margin:2em auto; width:50em"),
154      html::tag('h2', array('style' => "margin-top:0.2em"), "Installer script is still accessible") .
155      html::p(null, "The install script of your RoundCube installation is still stored in its default location!") .
156      html::p(null, "Please <b>remove</b> the whole <tt>installer</tt> folder from the RoundCube directory because .
157        these files may expose sensitive configuration data like server passwords and encryption keys
158        to the public. Make sure you cannot access the <a href=\"./installer/\">installer script</a> from your browser.")
159      )
160    );
161  }
162 
163  $OUTPUT->set_env('task', 'login');
164  $OUTPUT->send('login');
165}
166
167
168// handle keep-alive signal
169if ($RCMAIL->action == 'keep-alive') {
170  $OUTPUT->reset();
171  $OUTPUT->send();
172}
173// save preference value
174else if ($RCMAIL->action == 'save-pref') {
175  $RCMAIL->user->save_prefs(array(get_input_value('_name', RCUBE_INPUT_POST) => get_input_value('_value', RCUBE_INPUT_POST)));
176  $OUTPUT->reset();
177  $OUTPUT->send();
178}
179
180
181// map task/action to a certain include file
182$action_map = array(
183  'mail' => array(
184    'preview' => 'show.inc',
185    'print'   => 'show.inc',
186    'moveto'  => 'move_del.inc',
187    'delete'  => 'move_del.inc',
188    'send'    => 'sendmail.inc',
189    'expunge' => 'folders.inc',
190    'purge'   => 'folders.inc',
191    'remove-attachment'  => 'compose.inc',
192    'display-attachment' => 'compose.inc',
193  ),
194 
195  'addressbook' => array(
196    'add' => 'edit.inc',
197  ),
198 
199  'settings' => array(
200    'folders'       => 'manage_folders.inc',
201    'create-folder' => 'manage_folders.inc',
202    'rename-folder' => 'manage_folders.inc',
203    'delete-folder' => 'manage_folders.inc',
204    'subscribe'     => 'manage_folders.inc',
205    'unsubscribe'   => 'manage_folders.inc',
206    'add-identity'  => 'edit_identity.inc',
207  )
208);
209
210// include task specific functions
211include_once 'program/steps/'.$RCMAIL->task.'/func.inc';
212
213// allow 5 "redirects" to another action
214$redirects = 0; $incstep = null;
215while ($redirects < 5) {
216  $stepfile = !empty($action_map[$RCMAIL->task][$RCMAIL->action]) ?
217    $action_map[$RCMAIL->task][$RCMAIL->action] : strtr($RCMAIL->action, '-', '_') . '.inc';
218   
219  // try to include the step file
220  if (is_file(($incfile = 'program/steps/'.$RCMAIL->task.'/'.$stepfile))) {
221    include($incfile);
222    $redirects++;
223  }
224  else {
225    break;
226  }
227}
228
229
230// make sure the message count is refreshed (for default view)
231if ($RCMAIL->task == 'mail') {
232  $IMAP->messagecount($_SESSION['mbox'], 'ALL', true);
233}
234
235// parse main template (default)
236$OUTPUT->send($RCMAIL->task);
237
238
239// if we arrive here, something went wrong
240raise_error(array(
241  'code' => 404,
242  'type' => 'php',
243  'line' => __LINE__,
244  'file' => __FILE__,
245  'message' => "Invalid request"), true, true);
246                     
247?>
Note: See TracBrowser for help on using the repository browser.