alecpl
2008-07-01 e6e5c60aae745a580a2d7fca1e2b7104c3907352
commit | author | age
4e17e6 1 <?php
T 2 /*
a6f90e 3  +-------------------------------------------------------------------------+
A 4  | RoundCube Webmail IMAP Client                                           |
c719f3 5  | Version 0.2-20080620                                                    |
a6f90e 6  |                                                                         |
A 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  +-------------------------------------------------------------------------+
4e17e6 25
T 26  $Id$
27
28 */
15a9d1 29
47124c 30 // include environment
T 31 require_once 'program/include/iniset.php';
15a9d1 32
4e17e6 33 // define global vars
T 34 $OUTPUT_TYPE = 'html';
2f2f15 35
83a763 36 // init application and start session with requested task
T 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
2f2f15 42 // set output buffering
197601 43 if ($RCMAIL->action != 'get' && $RCMAIL->action != 'viewsource') {
2f2f15 44   // use gzip compression if supported
03fcc1 45   if (function_exists('ob_gzhandler')
47124c 46       && !ini_get('zlib.output_compression')
T 47       && ini_get('output_handler') != 'ob_gzhandler') {
2f2f15 48     ob_start('ob_gzhandler');
03fcc1 49   }
47124c 50   else {
2f2f15 51     ob_start();
47124c 52   }
f11541 53 }
8affba 54
T 55 // check DB connections and exit on failure
47124c 56 if ($err_str = $DB->is_error()) {
f11541 57   raise_error(array(
T 58     'code' => 603,
59     'type' => 'db',
60     'message' => $err_str), FALSE, TRUE);
61 }
8affba 62
T 63
4e17e6 64 // error steps
197601 65 if ($RCMAIL->action=='error' && !empty($_GET['_code'])) {
4e17e6 66   raise_error(array('code' => hexdec($_GET['_code'])), FALSE, TRUE);
47124c 67 }
570f0b 68
4e17e6 69 // try to log in
197601 70 if ($RCMAIL->action=='login' && $RCMAIL->task=='mail') {
1854c4 71   $host = $RCMAIL->autoselect_host();
4e17e6 72   
T 73   // check if client supports cookies
47124c 74   if (empty($_COOKIE)) {
f11541 75     $OUTPUT->show_message("cookiesdisabled", 'warning');
T 76   }
f15c26 77   else if ($_SESSION['temp'] && !empty($_POST['_user']) && isset($_POST['_pass']) &&
197601 78            $RCMAIL->login(trim(get_input_value('_user', RCUBE_INPUT_POST), ' '),
47124c 79               get_input_value('_pass', RCUBE_INPUT_POST, true, 'ISO-8859-1'), $host)) {
aad6e2 80     // create new session ID
T 81     unset($_SESSION['temp']);
82     sess_regenerate_id();
83
84     // send auth cookie if necessary
1854c4 85     $RCMAIL->authenticate_session();
aad6e2 86
5e0045 87     // log successful login
S 88     if ($RCMAIL->config->get('log_logins') && $RCMAIL->config->get('debug_level') & 1)
89       console(sprintf('Successful login for %s (id %d) from %s',
90                       trim(get_input_value('_user', RCUBE_INPUT_POST), ' '),
91                       $_SESSION['user_id'],
92                       $_SERVER['REMOTE_ADDR']));
93
4e17e6 94     // send redirect
c719f3 95     $OUTPUT->redirect();
4e17e6 96   }
47124c 97   else {
fc6725 98     $OUTPUT->show_message($IMAP->error_code == -1 ? 'imaperror' : 'loginfailed', 'warning');
1854c4 99     $RCMAIL->kill_session();
f11541 100   }
T 101 }
4e17e6 102
T 103 // end session
197601 104 else if (($RCMAIL->task=='logout' || $RCMAIL->action=='logout') && isset($_SESSION['user_id'])) {
f11541 105   $OUTPUT->show_message('loggedout');
1854c4 106   $RCMAIL->logout_actions();
T 107   $RCMAIL->kill_session();
f11541 108 }
4e17e6 109
bac7d1 110 // check session and auth cookie
197601 111 else if ($RCMAIL->action != 'login' && $_SESSION['user_id'] && $RCMAIL->action != 'send') {
1854c4 112   if (!$RCMAIL->authenticate_session()) {
f11541 113     $OUTPUT->show_message('sessionerror', 'error');
1854c4 114     $RCMAIL->kill_session();
4e17e6 115   }
f11541 116 }
4e17e6 117
T 118
119 // log in to imap server
197601 120 if (!empty($RCMAIL->user->ID) && $RCMAIL->task == 'mail') {
1854c4 121   if (!$RCMAIL->imap_connect()) {
T 122     $RCMAIL->kill_session();
47124c 123   }
f11541 124 }
4e17e6 125
T 126
719a25 127 // check client X-header to verify request origin
47124c 128 if ($OUTPUT->ajax_call) {
83a763 129   if ($RCMAIL->config->get('devel_mode') && !rc_request_header('X-RoundCube-Referer')) {
719a25 130     header('HTTP/1.1 404 Not Found');
T 131     die("Invalid Request");
132   }
133 }
134
4e17e6 135
T 136 // not logged in -> show login page
197601 137 if (empty($RCMAIL->user->ID)) {
83a763 138   
T 139   if ($OUTPUT->ajax_call)
c719f3 140     $OUTPUT->redirect(array(), 2000);
83a763 141   
330127 142   // check if installer is still active
83a763 143   if ($RCMAIL->config->get('enable_installer') && is_readable('./installer/index.php')) {
47124c 144     $OUTPUT->add_footer(html::div(array('style' => "background:#ef9398; border:2px solid #dc5757; padding:0.5em; margin:2em auto; width:50em"),
T 145       html::tag('h2', array('style' => "margin-top:0.2em"), "Installer script is still accessible") .
146       html::p(null, "The install script of your RoundCube installation is still stored in its default location!") .
147       html::p(null, "Please <b>remove</b> the whole <tt>installer</tt> folder from the RoundCube directory because .
148         these files may expose sensitive configuration data like server passwords and encryption keys
149         to the public. Make sure you cannot access the <a href=\"./installer/\">installer script</a> from your browser.")
150       )
151     );
152   }
330127 153   
bbf15d 154   $OUTPUT->set_env('task', 'login');
f11541 155   $OUTPUT->send('login');
T 156 }
4e17e6 157
T 158
1cded8 159 // handle keep-alive signal
197601 160 if ($RCMAIL->action=='keep-alive') {
f11541 161   $OUTPUT->reset();
83a763 162   $OUTPUT->send();
f11541 163 }
4e17e6 164
6ea6c9 165
T 166 // map task/action to a certain include file
167 $action_map = array(
168   'mail' => array(
169     'preview' => 'show.inc',
170     'print'   => 'show.inc',
171     'moveto'  => 'move_del.inc',
172     'delete'  => 'move_del.inc',
173     'send'    => 'sendmail.inc',
174     'expunge' => 'folders.inc',
175     'purge'   => 'folders.inc',
176     'remove-attachment'  => 'compose.inc',
177     'display-attachment' => 'compose.inc',
178   ),
88375f 179   
6ea6c9 180   'addressbook' => array(
T 181     'add' => 'edit.inc',
182   ),
183   
184   'settings' => array(
185     'folders'       => 'manage_folders.inc',
186     'create-folder' => 'manage_folders.inc',
187     'rename-folder' => 'manage_folders.inc',
188     'delete-folder' => 'manage_folders.inc',
189     'subscribe'     => 'manage_folders.inc',
190     'unsubscribe'   => 'manage_folders.inc',
191     'add-identity'  => 'edit_identity.inc',
192   )
193 );
4e17e6 194
6ea6c9 195 // include task specific functions
T 196 include_once 'program/steps/'.$RCMAIL->task.'/func.inc';
4e17e6 197
6ea6c9 198 // allow 5 "redirects" to another action
T 199 $redirects = 0; $incstep = null;
200 while ($redirects < 5) {
201   $stepfile = !empty($action_map[$RCMAIL->task][$RCMAIL->action]) ?
202     $action_map[$RCMAIL->task][$RCMAIL->action] : strtr($RCMAIL->action, '-', '_') . '.inc';
4e17e6 203     
6ea6c9 204   // try to include the step file
T 205   if (is_file(($incfile = 'program/steps/'.$RCMAIL->task.'/'.$stepfile))) {
206     include($incfile);
207     $redirects++;
208   }
209   else {
210     break;
211   }
212 }
4e17e6 213
4647e1 214
6ea6c9 215 // make sure the message count is refreshed (for default view)
T 216 if ($RCMAIL->task == 'mail') {
47124c 217   $IMAP->messagecount($_SESSION['mbox'], 'ALL', true);
f11541 218 }
4e17e6 219
6ea6c9 220 // parse main template (default)
197601 221 $OUTPUT->send($RCMAIL->task);
539cd4 222
T 223
224 // if we arrive here, something went wrong
f11541 225 raise_error(array(
T 226   'code' => 404,
227   'type' => 'php',
228   'line' => __LINE__,
229   'file' => __FILE__,
47124c 230   'message' => "Invalid request"), true, true);
539cd4 231                       
d1d2c4 232 ?>