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