| 1 | <?php |
|---|
| 2 | /* |
|---|
| 3 | +-------------------------------------------------------------------------+ |
|---|
| 4 | | Roundcube Webmail IMAP Client | |
|---|
| 5 | | Version 0.5.4 | |
|---|
| 6 | | | |
|---|
| 7 | | Copyright (C) 2005-2011, 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 |
|---|
| 31 | require_once 'program/include/iniset.php'; |
|---|
| 32 | |
|---|
| 33 | // init application, start session, init output class, etc. |
|---|
| 34 | $RCMAIL = rcmail::get_instance(); |
|---|
| 35 | |
|---|
| 36 | // turn on output buffering |
|---|
| 37 | ob_start(); |
|---|
| 38 | |
|---|
| 39 | // check if config files had errors |
|---|
| 40 | if ($err_str = $RCMAIL->config->get_error()) { |
|---|
| 41 | raise_error(array( |
|---|
| 42 | 'code' => 601, |
|---|
| 43 | 'type' => 'php', |
|---|
| 44 | 'message' => $err_str), false, true); |
|---|
| 45 | } |
|---|
| 46 | |
|---|
| 47 | // check DB connections and exit on failure |
|---|
| 48 | if ($err_str = $DB->is_error()) { |
|---|
| 49 | raise_error(array( |
|---|
| 50 | 'code' => 603, |
|---|
| 51 | 'type' => 'db', |
|---|
| 52 | 'message' => $err_str), FALSE, TRUE); |
|---|
| 53 | } |
|---|
| 54 | |
|---|
| 55 | // error steps |
|---|
| 56 | if ($RCMAIL->action=='error' && !empty($_GET['_code'])) { |
|---|
| 57 | raise_error(array('code' => hexdec($_GET['_code'])), FALSE, TRUE); |
|---|
| 58 | } |
|---|
| 59 | |
|---|
| 60 | // check if https is required (for login) and redirect if necessary |
|---|
| 61 | if (empty($_SESSION['user_id']) && ($force_https = $RCMAIL->config->get('force_https', false))) { |
|---|
| 62 | $https_port = is_bool($force_https) ? 443 : $force_https; |
|---|
| 63 | if (!rcube_https_check($https_port)) { |
|---|
| 64 | $host = preg_replace('/:[0-9]+$/', '', $_SERVER['HTTP_HOST']); |
|---|
| 65 | $host .= ($https_port != 443 ? ':' . $https_port : ''); |
|---|
| 66 | header('Location: https://' . $host . $_SERVER['REQUEST_URI']); |
|---|
| 67 | exit; |
|---|
| 68 | } |
|---|
| 69 | } |
|---|
| 70 | |
|---|
| 71 | // trigger startup plugin hook |
|---|
| 72 | $startup = $RCMAIL->plugins->exec_hook('startup', array('task' => $RCMAIL->task, 'action' => $RCMAIL->action)); |
|---|
| 73 | $RCMAIL->set_task($startup['task']); |
|---|
| 74 | $RCMAIL->action = $startup['action']; |
|---|
| 75 | |
|---|
| 76 | // try to log in |
|---|
| 77 | if ($RCMAIL->task == 'login' && $RCMAIL->action == 'login') { |
|---|
| 78 | $request_valid = $_SESSION['temp'] && $RCMAIL->check_request(RCUBE_INPUT_POST, 'login'); |
|---|
| 79 | |
|---|
| 80 | // purge the session in case of new login when a session already exists |
|---|
| 81 | $RCMAIL->kill_session(); |
|---|
| 82 | |
|---|
| 83 | $auth = $RCMAIL->plugins->exec_hook('authenticate', array( |
|---|
| 84 | 'host' => $RCMAIL->autoselect_host(), |
|---|
| 85 | 'user' => trim(get_input_value('_user', RCUBE_INPUT_POST)), |
|---|
| 86 | 'pass' => get_input_value('_pass', RCUBE_INPUT_POST, true, |
|---|
| 87 | $RCMAIL->config->get('password_charset', 'ISO-8859-1')), |
|---|
| 88 | 'cookiecheck' => true, |
|---|
| 89 | 'valid' => $request_valid, |
|---|
| 90 | )); |
|---|
| 91 | |
|---|
| 92 | // check if client supports cookies |
|---|
| 93 | if ($auth['cookiecheck'] && empty($_COOKIE)) { |
|---|
| 94 | $OUTPUT->show_message("cookiesdisabled", 'warning'); |
|---|
| 95 | } |
|---|
| 96 | else if ($auth['valid'] && !$auth['abort'] && |
|---|
| 97 | !empty($auth['host']) && !empty($auth['user']) && |
|---|
| 98 | $RCMAIL->login($auth['user'], $auth['pass'], $auth['host']) |
|---|
| 99 | ) { |
|---|
| 100 | // create new session ID, don't destroy the current session |
|---|
| 101 | // it was destroyed already by $RCMAIL->kill_session() above |
|---|
| 102 | $RCMAIL->session->remove('temp'); |
|---|
| 103 | $RCMAIL->session->regenerate_id(false); |
|---|
| 104 | |
|---|
| 105 | // send auth cookie if necessary |
|---|
| 106 | $RCMAIL->authenticate_session(); |
|---|
| 107 | |
|---|
| 108 | // log successful login |
|---|
| 109 | rcmail_log_login(); |
|---|
| 110 | |
|---|
| 111 | // restore original request parameters |
|---|
| 112 | $query = array(); |
|---|
| 113 | if ($url = get_input_value('_url', RCUBE_INPUT_POST)) { |
|---|
| 114 | parse_str($url, $query); |
|---|
| 115 | |
|---|
| 116 | // prevent endless looping on login page |
|---|
| 117 | if ($query['_task'] == 'login') |
|---|
| 118 | unset($query['_task']); |
|---|
| 119 | } |
|---|
| 120 | |
|---|
| 121 | // allow plugins to control the redirect url after login success |
|---|
| 122 | $redir = $RCMAIL->plugins->exec_hook('login_after', $query + array('_task' => 'mail')); |
|---|
| 123 | unset($redir['abort']); |
|---|
| 124 | |
|---|
| 125 | // send redirect |
|---|
| 126 | $OUTPUT->redirect($redir); |
|---|
| 127 | } |
|---|
| 128 | else { |
|---|
| 129 | $error_code = is_object($IMAP) ? $IMAP->get_error_code() : -1; |
|---|
| 130 | |
|---|
| 131 | $OUTPUT->show_message($error_code < -1 ? 'imaperror' : (!$auth['valid'] ? 'invalidrequest' : 'loginfailed'), 'warning'); |
|---|
| 132 | $RCMAIL->plugins->exec_hook('login_failed', array( |
|---|
| 133 | 'code' => $error_code, 'host' => $auth['host'], 'user' => $auth['user'])); |
|---|
| 134 | $RCMAIL->kill_session(); |
|---|
| 135 | } |
|---|
| 136 | } |
|---|
| 137 | |
|---|
| 138 | // end session (after optional referer check) |
|---|
| 139 | else if ($RCMAIL->task == 'logout' && isset($_SESSION['user_id']) && (!$RCMAIL->config->get('referer_check') || rcube_check_referer())) { |
|---|
| 140 | $userdata = array('user' => $_SESSION['username'], 'host' => $_SESSION['imap_host'], 'lang' => $RCMAIL->user->language); |
|---|
| 141 | $OUTPUT->show_message('loggedout'); |
|---|
| 142 | $RCMAIL->logout_actions(); |
|---|
| 143 | $RCMAIL->kill_session(); |
|---|
| 144 | $RCMAIL->plugins->exec_hook('logout_after', $userdata); |
|---|
| 145 | } |
|---|
| 146 | |
|---|
| 147 | // check session and auth cookie |
|---|
| 148 | else if ($RCMAIL->task != 'login' && $_SESSION['user_id'] && $RCMAIL->action != 'send') { |
|---|
| 149 | if (!$RCMAIL->authenticate_session()) { |
|---|
| 150 | $OUTPUT->show_message('sessionerror', 'error'); |
|---|
| 151 | $RCMAIL->kill_session(); |
|---|
| 152 | } |
|---|
| 153 | } |
|---|
| 154 | |
|---|
| 155 | // not logged in -> show login page |
|---|
| 156 | if (empty($RCMAIL->user->ID)) { |
|---|
| 157 | if ($OUTPUT->ajax_call) |
|---|
| 158 | $OUTPUT->redirect(array(), 2000); |
|---|
| 159 | |
|---|
| 160 | if (!empty($_REQUEST['_framed'])) |
|---|
| 161 | $OUTPUT->command('redirect', '?'); |
|---|
| 162 | |
|---|
| 163 | // check if installer is still active |
|---|
| 164 | if ($RCMAIL->config->get('enable_installer') && is_readable('./installer/index.php')) { |
|---|
| 165 | $OUTPUT->add_footer(html::div(array('style' => "background:#ef9398; border:2px solid #dc5757; padding:0.5em; margin:2em auto; width:50em"), |
|---|
| 166 | html::tag('h2', array('style' => "margin-top:0.2em"), "Installer script is still accessible") . |
|---|
| 167 | html::p(null, "The install script of your Roundcube installation is still stored in its default location!") . |
|---|
| 168 | html::p(null, "Please <b>remove</b> the whole <tt>installer</tt> folder from the Roundcube directory because . |
|---|
| 169 | these files may expose sensitive configuration data like server passwords and encryption keys |
|---|
| 170 | to the public. Make sure you cannot access the <a href=\"./installer/\">installer script</a> from your browser.") |
|---|
| 171 | ) |
|---|
| 172 | ); |
|---|
| 173 | } |
|---|
| 174 | |
|---|
| 175 | $RCMAIL->set_task('login'); |
|---|
| 176 | $OUTPUT->send('login'); |
|---|
| 177 | } |
|---|
| 178 | // CSRF prevention |
|---|
| 179 | else { |
|---|
| 180 | // don't check for valid request tokens in these actions |
|---|
| 181 | $request_check_whitelist = array('login'=>1, 'spell'=>1); |
|---|
| 182 | |
|---|
| 183 | // check client X-header to verify request origin |
|---|
| 184 | if ($OUTPUT->ajax_call) { |
|---|
| 185 | if (rc_request_header('X-Roundcube-Request') != $RCMAIL->get_request_token() && !$RCMAIL->config->get('devel_mode')) { |
|---|
| 186 | header('HTTP/1.1 404 Not Found'); |
|---|
| 187 | die("Invalid Request"); |
|---|
| 188 | } |
|---|
| 189 | } |
|---|
| 190 | // check request token in POST form submissions |
|---|
| 191 | else if (!empty($_POST) && !$request_check_whitelist[$RCMAIL->action] && !$RCMAIL->check_request()) { |
|---|
| 192 | $OUTPUT->show_message('invalidrequest', 'error'); |
|---|
| 193 | $OUTPUT->send($RCMAIL->task); |
|---|
| 194 | } |
|---|
| 195 | |
|---|
| 196 | // check referer if configured |
|---|
| 197 | if (!$request_check_whitelist[$RCMAIL->action] && $RCMAIL->config->get('referer_check') && !rcube_check_referer()) { |
|---|
| 198 | raise_error(array( |
|---|
| 199 | 'code' => 403, |
|---|
| 200 | 'type' => 'php', |
|---|
| 201 | 'message' => "Referer check failed"), true, true); |
|---|
| 202 | } |
|---|
| 203 | } |
|---|
| 204 | |
|---|
| 205 | // handle special actions |
|---|
| 206 | if ($RCMAIL->action == 'keep-alive') { |
|---|
| 207 | $OUTPUT->reset(); |
|---|
| 208 | $OUTPUT->send(); |
|---|
| 209 | } |
|---|
| 210 | else if ($RCMAIL->action == 'save-pref') { |
|---|
| 211 | include 'steps/utils/save_pref.inc'; |
|---|
| 212 | } |
|---|
| 213 | |
|---|
| 214 | |
|---|
| 215 | // map task/action to a certain include file |
|---|
| 216 | $action_map = array( |
|---|
| 217 | 'mail' => array( |
|---|
| 218 | 'preview' => 'show.inc', |
|---|
| 219 | 'print' => 'show.inc', |
|---|
| 220 | 'moveto' => 'move_del.inc', |
|---|
| 221 | 'delete' => 'move_del.inc', |
|---|
| 222 | 'send' => 'sendmail.inc', |
|---|
| 223 | 'expunge' => 'folders.inc', |
|---|
| 224 | 'purge' => 'folders.inc', |
|---|
| 225 | 'remove-attachment' => 'attachments.inc', |
|---|
| 226 | 'display-attachment' => 'attachments.inc', |
|---|
| 227 | 'upload' => 'attachments.inc', |
|---|
| 228 | 'group-expand' => 'autocomplete.inc', |
|---|
| 229 | ), |
|---|
| 230 | |
|---|
| 231 | 'addressbook' => array( |
|---|
| 232 | 'add' => 'edit.inc', |
|---|
| 233 | 'group-create' => 'groups.inc', |
|---|
| 234 | 'group-rename' => 'groups.inc', |
|---|
| 235 | 'group-delete' => 'groups.inc', |
|---|
| 236 | 'group-addmembers' => 'groups.inc', |
|---|
| 237 | 'group-delmembers' => 'groups.inc', |
|---|
| 238 | ), |
|---|
| 239 | |
|---|
| 240 | 'settings' => array( |
|---|
| 241 | 'folders' => 'folders.inc', |
|---|
| 242 | 'rename-folder' => 'folders.inc', |
|---|
| 243 | 'delete-folder' => 'folders.inc', |
|---|
| 244 | 'subscribe' => 'folders.inc', |
|---|
| 245 | 'unsubscribe' => 'folders.inc', |
|---|
| 246 | 'purge' => 'folders.inc', |
|---|
| 247 | 'folder-size' => 'folders.inc', |
|---|
| 248 | 'add-identity' => 'edit_identity.inc', |
|---|
| 249 | ) |
|---|
| 250 | ); |
|---|
| 251 | |
|---|
| 252 | // include task specific functions |
|---|
| 253 | if (is_file($incfile = 'program/steps/'.$RCMAIL->task.'/func.inc')) |
|---|
| 254 | include_once($incfile); |
|---|
| 255 | |
|---|
| 256 | // allow 5 "redirects" to another action |
|---|
| 257 | $redirects = 0; $incstep = null; |
|---|
| 258 | while ($redirects < 5) { |
|---|
| 259 | $stepfile = !empty($action_map[$RCMAIL->task][$RCMAIL->action]) ? |
|---|
| 260 | $action_map[$RCMAIL->task][$RCMAIL->action] : strtr($RCMAIL->action, '-', '_') . '.inc'; |
|---|
| 261 | |
|---|
| 262 | // execute a plugin action |
|---|
| 263 | if ($RCMAIL->plugins->is_plugin_task($RCMAIL->task)) { |
|---|
| 264 | $RCMAIL->plugins->exec_action($RCMAIL->task.'.'.$RCMAIL->action); |
|---|
| 265 | break; |
|---|
| 266 | } |
|---|
| 267 | else if (preg_match('/^plugin\./', $RCMAIL->action)) { |
|---|
| 268 | $RCMAIL->plugins->exec_action($RCMAIL->action); |
|---|
| 269 | break; |
|---|
| 270 | } |
|---|
| 271 | // try to include the step file |
|---|
| 272 | else if (is_file($incfile = 'program/steps/'.$RCMAIL->task.'/'.$stepfile)) { |
|---|
| 273 | include($incfile); |
|---|
| 274 | $redirects++; |
|---|
| 275 | } |
|---|
| 276 | else { |
|---|
| 277 | break; |
|---|
| 278 | } |
|---|
| 279 | } |
|---|
| 280 | |
|---|
| 281 | |
|---|
| 282 | // parse main template (default) |
|---|
| 283 | $OUTPUT->send($RCMAIL->task); |
|---|
| 284 | |
|---|
| 285 | |
|---|
| 286 | // if we arrive here, something went wrong |
|---|
| 287 | raise_error(array( |
|---|
| 288 | 'code' => 404, |
|---|
| 289 | 'type' => 'php', |
|---|
| 290 | 'line' => __LINE__, |
|---|
| 291 | 'file' => __FILE__, |
|---|
| 292 | 'message' => "Invalid request"), true, true); |
|---|
| 293 | |
|---|