alecpl
2009-06-05 8209f77d8e6e2fa787d615dae0fba8530eddac1f
commit | author | age
4e17e6 1 <?php
T 2 /*
a6f90e 3  +-------------------------------------------------------------------------+
A 4  | RoundCube Webmail IMAP Client                                           |
cc97ea 5  | Version 0.3-20090419                                                    |
a6f90e 6  |                                                                         |
cbbef3 7  | Copyright (C) 2005-2009, RoundCube Dev. - Switzerland                   |
a6f90e 8  |                                                                         |
A 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
83a763 33 // init application and start session with requested task
T 34 $RCMAIL = rcmail::get_instance();
35
36 // init output class
37 $OUTPUT = !empty($_REQUEST['_remote']) ? $RCMAIL->init_json() : $RCMAIL->load_gui(!empty($_REQUEST['_framed']));
cc97ea 38
T 39 // init plugin API
40 $RCMAIL->plugins->init();
83a763 41
d51c93 42 // turn on output buffering
A 43 ob_start();
8affba 44
8c72e3 45 // check if config files had errors
T 46 if ($err_str = $RCMAIL->config->get_error()) {
47   raise_error(array(
48     'code' => 601,
49     'type' => 'php',
50     'message' => $err_str), false, true);
51 }
52
8affba 53 // check DB connections and exit on failure
47124c 54 if ($err_str = $DB->is_error()) {
f11541 55   raise_error(array(
T 56     'code' => 603,
57     'type' => 'db',
58     'message' => $err_str), FALSE, TRUE);
59 }
8affba 60
4e17e6 61 // error steps
197601 62 if ($RCMAIL->action=='error' && !empty($_GET['_code'])) {
4e17e6 63   raise_error(array('code' => hexdec($_GET['_code'])), FALSE, TRUE);
47124c 64 }
570f0b 65
cc97ea 66
T 67 // trigger startup plugin hook
68 $startup = $RCMAIL->plugins->exec_hook('startup', array('task' => $RCMAIL->task, 'action' => $RCMAIL->action));
69 $RCMAIL->set_task($startup['task']);
70 $RCMAIL->action = $startup['action'];
71
72
4e17e6 73 // try to log in
197601 74 if ($RCMAIL->action=='login' && $RCMAIL->task=='mail') {
0129d7 75   // purge the session in case of new login when a session already exists 
cc97ea 76   $RCMAIL->kill_session();
0129d7 77   
cc97ea 78   $auth = $RCMAIL->plugins->exec_hook('authenticate', array(
T 79     'host' => $RCMAIL->autoselect_host(),
80     'user' => trim(get_input_value('_user', RCUBE_INPUT_POST)),
81   )) + array('pass' => get_input_value('_pass', RCUBE_INPUT_POST, true, 'ISO-8859-1'));
82
4e17e6 83   // check if client supports cookies
47124c 84   if (empty($_COOKIE)) {
f11541 85     $OUTPUT->show_message("cookiesdisabled", 'warning');
T 86   }
cc97ea 87   else if ($_SESSION['temp'] && !empty($auth['user']) && !empty($auth['host']) && isset($auth['pass']) && 
T 88             $RCMAIL->login($auth['user'], $auth['pass'], $auth['host'])) {
aad6e2 89     // create new session ID
f22c2c 90     rcube_sess_unset('temp');
2e3ce3 91     rcube_sess_regenerate_id();
aad6e2 92
T 93     // send auth cookie if necessary
1854c4 94     $RCMAIL->authenticate_session();
aad6e2 95
5e0045 96     // log successful login
c8a21d 97     if ($RCMAIL->config->get('log_logins')) {
T 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     }
cc97ea 103     
T 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']);
5e0045 112
4e17e6 113     // send redirect
cc97ea 114     $OUTPUT->redirect($redir);
4e17e6 115   }
47124c 116   else {
7342d7 117     $OUTPUT->show_message($IMAP->error_code < -1 ? 'imaperror' : 'loginfailed', 'warning');
cc97ea 118     $RCMAIL->plugins->exec_hook('login_failed', array('code' => $IMAP->error_code, 'host' => $auth['host'], 'user' => $auth['user']));
1854c4 119     $RCMAIL->kill_session();
f11541 120   }
T 121 }
4e17e6 122
T 123 // end session
197601 124 else if (($RCMAIL->task=='logout' || $RCMAIL->action=='logout') && isset($_SESSION['user_id'])) {
f11541 125   $OUTPUT->show_message('loggedout');
1854c4 126   $RCMAIL->logout_actions();
T 127   $RCMAIL->kill_session();
f11541 128 }
4e17e6 129
bac7d1 130 // check session and auth cookie
197601 131 else if ($RCMAIL->action != 'login' && $_SESSION['user_id'] && $RCMAIL->action != 'send') {
1854c4 132   if (!$RCMAIL->authenticate_session()) {
f11541 133     $OUTPUT->show_message('sessionerror', 'error');
1854c4 134     $RCMAIL->kill_session();
4e17e6 135   }
f11541 136 }
4e17e6 137
T 138
719a25 139 // check client X-header to verify request origin
47124c 140 if ($OUTPUT->ajax_call) {
835ae8 141   if (!$RCMAIL->config->get('devel_mode') && !rc_request_header('X-RoundCube-Referer')) {
719a25 142     header('HTTP/1.1 404 Not Found');
T 143     die("Invalid Request");
144   }
145 }
146
4e17e6 147
T 148 // not logged in -> show login page
197601 149 if (empty($RCMAIL->user->ID)) {
83a763 150   
T 151   if ($OUTPUT->ajax_call)
c719f3 152     $OUTPUT->redirect(array(), 2000);
83a763 153   
330127 154   // check if installer is still active
83a763 155   if ($RCMAIL->config->get('enable_installer') && is_readable('./installer/index.php')) {
47124c 156     $OUTPUT->add_footer(html::div(array('style' => "background:#ef9398; border:2px solid #dc5757; padding:0.5em; margin:2em auto; width:50em"),
T 157       html::tag('h2', array('style' => "margin-top:0.2em"), "Installer script is still accessible") .
158       html::p(null, "The install script of your RoundCube installation is still stored in its default location!") .
159       html::p(null, "Please <b>remove</b> the whole <tt>installer</tt> folder from the RoundCube directory because .
160         these files may expose sensitive configuration data like server passwords and encryption keys
161         to the public. Make sure you cannot access the <a href=\"./installer/\">installer script</a> from your browser.")
162       )
163     );
164   }
330127 165   
bbf15d 166   $OUTPUT->set_env('task', 'login');
f11541 167   $OUTPUT->send('login');
T 168 }
4e17e6 169
T 170
1cded8 171 // handle keep-alive signal
48aff9 172 if ($RCMAIL->action == 'keep-alive') {
T 173   $OUTPUT->reset();
174   $OUTPUT->send();
175 }
176 // save preference value
177 else if ($RCMAIL->action == 'save-pref') {
178   $RCMAIL->user->save_prefs(array(get_input_value('_name', RCUBE_INPUT_POST) => get_input_value('_value', RCUBE_INPUT_POST)));
f11541 179   $OUTPUT->reset();
83a763 180   $OUTPUT->send();
f11541 181 }
4e17e6 182
6ea6c9 183
T 184 // map task/action to a certain include file
185 $action_map = array(
186   'mail' => array(
187     'preview' => 'show.inc',
188     'print'   => 'show.inc',
189     'moveto'  => 'move_del.inc',
190     'delete'  => 'move_del.inc',
191     'send'    => 'sendmail.inc',
192     'expunge' => 'folders.inc',
193     'purge'   => 'folders.inc',
133bb0 194     'remove-attachment'  => 'attachments.inc',
A 195     'display-attachment' => 'attachments.inc',
196     'upload' => 'attachments.inc',
6ea6c9 197   ),
88375f 198   
6ea6c9 199   'addressbook' => array(
T 200     'add' => 'edit.inc',
201   ),
202   
203   'settings' => array(
204     'folders'       => 'manage_folders.inc',
205     'create-folder' => 'manage_folders.inc',
206     'rename-folder' => 'manage_folders.inc',
207     'delete-folder' => 'manage_folders.inc',
208     'subscribe'     => 'manage_folders.inc',
209     'unsubscribe'   => 'manage_folders.inc',
210     'add-identity'  => 'edit_identity.inc',
211   )
212 );
f5aa16 213
6ea6c9 214 // include task specific functions
T 215 include_once 'program/steps/'.$RCMAIL->task.'/func.inc';
4e17e6 216
6ea6c9 217 // allow 5 "redirects" to another action
T 218 $redirects = 0; $incstep = null;
219 while ($redirects < 5) {
220   $stepfile = !empty($action_map[$RCMAIL->task][$RCMAIL->action]) ?
221     $action_map[$RCMAIL->task][$RCMAIL->action] : strtr($RCMAIL->action, '-', '_') . '.inc';
cc97ea 222
T 223   // execute a plugin action
0ce119 224   if (preg_match('/^plugin\./', $RCMAIL->action)) {
cc97ea 225     $RCMAIL->plugins->exec_action($RCMAIL->action);
T 226     break;
227   }
6ea6c9 228   // try to include the step file
cc97ea 229   else if (is_file(($incfile = 'program/steps/'.$RCMAIL->task.'/'.$stepfile))) {
6ea6c9 230     include($incfile);
T 231     $redirects++;
232   }
233   else {
234     break;
235   }
236 }
4e17e6 237
T 238
6ea6c9 239 // parse main template (default)
197601 240 $OUTPUT->send($RCMAIL->task);
539cd4 241
T 242
243 // if we arrive here, something went wrong
f11541 244 raise_error(array(
T 245   'code' => 404,
246   'type' => 'php',
247   'line' => __LINE__,
248   'file' => __FILE__,
47124c 249   'message' => "Invalid request"), true, true);
539cd4 250                       
d1d2c4 251 ?>