alecpl
2008-08-04 8791df8bab361ed5a81cf0503c5cdd7fb362cf46
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
8c72e3 55
T 56 // check if config files had errors
57 if ($err_str = $RCMAIL->config->get_error()) {
58   raise_error(array(
59     'code' => 601,
60     'type' => 'php',
61     'message' => $err_str), false, true);
62 }
63
8affba 64 // check DB connections and exit on failure
47124c 65 if ($err_str = $DB->is_error()) {
f11541 66   raise_error(array(
T 67     'code' => 603,
68     'type' => 'db',
69     'message' => $err_str), FALSE, TRUE);
70 }
8affba 71
T 72
4e17e6 73 // error steps
197601 74 if ($RCMAIL->action=='error' && !empty($_GET['_code'])) {
4e17e6 75   raise_error(array('code' => hexdec($_GET['_code'])), FALSE, TRUE);
47124c 76 }
570f0b 77
4e17e6 78 // try to log in
197601 79 if ($RCMAIL->action=='login' && $RCMAIL->task=='mail') {
1854c4 80   $host = $RCMAIL->autoselect_host();
4e17e6 81   
T 82   // check if client supports cookies
47124c 83   if (empty($_COOKIE)) {
f11541 84     $OUTPUT->show_message("cookiesdisabled", 'warning');
T 85   }
f15c26 86   else if ($_SESSION['temp'] && !empty($_POST['_user']) && isset($_POST['_pass']) &&
197601 87            $RCMAIL->login(trim(get_input_value('_user', RCUBE_INPUT_POST), ' '),
47124c 88               get_input_value('_pass', RCUBE_INPUT_POST, true, 'ISO-8859-1'), $host)) {
aad6e2 89     // create new session ID
T 90     unset($_SESSION['temp']);
91     sess_regenerate_id();
92
93     // send auth cookie if necessary
1854c4 94     $RCMAIL->authenticate_session();
aad6e2 95
5e0045 96     // log successful login
S 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
4e17e6 103     // send redirect
c719f3 104     $OUTPUT->redirect();
4e17e6 105   }
47124c 106   else {
fc6725 107     $OUTPUT->show_message($IMAP->error_code == -1 ? 'imaperror' : 'loginfailed', 'warning');
1854c4 108     $RCMAIL->kill_session();
f11541 109   }
T 110 }
4e17e6 111
T 112 // end session
197601 113 else if (($RCMAIL->task=='logout' || $RCMAIL->action=='logout') && isset($_SESSION['user_id'])) {
f11541 114   $OUTPUT->show_message('loggedout');
1854c4 115   $RCMAIL->logout_actions();
T 116   $RCMAIL->kill_session();
f11541 117 }
4e17e6 118
bac7d1 119 // check session and auth cookie
197601 120 else if ($RCMAIL->action != 'login' && $_SESSION['user_id'] && $RCMAIL->action != 'send') {
1854c4 121   if (!$RCMAIL->authenticate_session()) {
f11541 122     $OUTPUT->show_message('sessionerror', 'error');
1854c4 123     $RCMAIL->kill_session();
4e17e6 124   }
f11541 125 }
4e17e6 126
T 127
128 // log in to imap server
197601 129 if (!empty($RCMAIL->user->ID) && $RCMAIL->task == 'mail') {
1854c4 130   if (!$RCMAIL->imap_connect()) {
T 131     $RCMAIL->kill_session();
47124c 132   }
f11541 133 }
4e17e6 134
T 135
719a25 136 // check client X-header to verify request origin
47124c 137 if ($OUTPUT->ajax_call) {
83a763 138   if ($RCMAIL->config->get('devel_mode') && !rc_request_header('X-RoundCube-Referer')) {
719a25 139     header('HTTP/1.1 404 Not Found');
T 140     die("Invalid Request");
141   }
142 }
143
4e17e6 144
T 145 // not logged in -> show login page
197601 146 if (empty($RCMAIL->user->ID)) {
83a763 147   
T 148   if ($OUTPUT->ajax_call)
c719f3 149     $OUTPUT->redirect(array(), 2000);
83a763 150   
330127 151   // check if installer is still active
83a763 152   if ($RCMAIL->config->get('enable_installer') && is_readable('./installer/index.php')) {
47124c 153     $OUTPUT->add_footer(html::div(array('style' => "background:#ef9398; border:2px solid #dc5757; padding:0.5em; margin:2em auto; width:50em"),
T 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   }
330127 162   
bbf15d 163   $OUTPUT->set_env('task', 'login');
f11541 164   $OUTPUT->send('login');
T 165 }
4e17e6 166
T 167
1cded8 168 // handle keep-alive signal
197601 169 if ($RCMAIL->action=='keep-alive') {
f11541 170   $OUTPUT->reset();
83a763 171   $OUTPUT->send();
f11541 172 }
4e17e6 173
6ea6c9 174
T 175 // map task/action to a certain include file
176 $action_map = array(
177   'mail' => array(
178     'preview' => 'show.inc',
179     'print'   => 'show.inc',
180     'moveto'  => 'move_del.inc',
181     'delete'  => 'move_del.inc',
182     'send'    => 'sendmail.inc',
183     'expunge' => 'folders.inc',
184     'purge'   => 'folders.inc',
185     'remove-attachment'  => 'compose.inc',
186     'display-attachment' => 'compose.inc',
187   ),
88375f 188   
6ea6c9 189   'addressbook' => array(
T 190     'add' => 'edit.inc',
191   ),
192   
193   'settings' => array(
194     'folders'       => 'manage_folders.inc',
195     'create-folder' => 'manage_folders.inc',
196     'rename-folder' => 'manage_folders.inc',
197     'delete-folder' => 'manage_folders.inc',
198     'subscribe'     => 'manage_folders.inc',
199     'unsubscribe'   => 'manage_folders.inc',
200     'add-identity'  => 'edit_identity.inc',
201   )
202 );
4e17e6 203
6ea6c9 204 // include task specific functions
T 205 include_once 'program/steps/'.$RCMAIL->task.'/func.inc';
4e17e6 206
6ea6c9 207 // allow 5 "redirects" to another action
T 208 $redirects = 0; $incstep = null;
209 while ($redirects < 5) {
210   $stepfile = !empty($action_map[$RCMAIL->task][$RCMAIL->action]) ?
211     $action_map[$RCMAIL->task][$RCMAIL->action] : strtr($RCMAIL->action, '-', '_') . '.inc';
4e17e6 212     
6ea6c9 213   // try to include the step file
T 214   if (is_file(($incfile = 'program/steps/'.$RCMAIL->task.'/'.$stepfile))) {
215     include($incfile);
216     $redirects++;
217   }
218   else {
219     break;
220   }
221 }
4e17e6 222
4647e1 223
6ea6c9 224 // make sure the message count is refreshed (for default view)
T 225 if ($RCMAIL->task == 'mail') {
47124c 226   $IMAP->messagecount($_SESSION['mbox'], 'ALL', true);
f11541 227 }
4e17e6 228
6ea6c9 229 // parse main template (default)
197601 230 $OUTPUT->send($RCMAIL->task);
539cd4 231
T 232
233 // if we arrive here, something went wrong
f11541 234 raise_error(array(
T 235   'code' => 404,
236   'type' => 'php',
237   'line' => __LINE__,
238   'file' => __FILE__,
47124c 239   'message' => "Invalid request"), true, true);
539cd4 240                       
d1d2c4 241 ?>