]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - index.php
Merge branch '0.7.x' of git@gitorious.org:laconica/dev into 0.7.x
[quix0rs-gnu-social.git] / index.php
1 <?php
2 /**
3  * Laconica - a distributed open-source microblogging tool
4  * Copyright (C) 2008, Controlez-Vous, Inc.
5  *
6  * This program is free software: you can redistribute it and/or modify
7  * it under the terms of the GNU Affero General Public License as published by
8  * the Free Software Foundation, either version 3 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU Affero General Public License for more details.
15  *
16  * You should have received a copy of the GNU Affero General Public License
17  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
18  */
19
20 define('INSTALLDIR', dirname(__FILE__));
21 define('LACONICA', true);
22
23 require_once INSTALLDIR . '/lib/common.php';
24
25 $user = null;
26 $action = null;
27
28 function getPath($req)
29 {
30     if (common_config('site', 'fancy')) {
31         return $req['p'];
32     } else if ($_SERVER['PATH_INFO']) {
33         return $_SERVER['PATH_INFO'];
34     } else {
35         return $req['p'];
36     }
37 }
38
39 function handleError($error)
40 {
41     common_log(LOG_ERR, "PEAR error: " . $error->getMessage());
42     $msg = sprintf(_('The database for %s isn\'t responding correctly, '.
43                      'so the site won\'t work properly. '.
44                      'The site admins probably know about the problem, '.
45                      'but you can contact them at %s to make sure. '.
46                      'Otherwise, wait a few minutes and try again.'),
47                    common_config('site', 'name'),
48                    common_config('site', 'email'));
49
50     $dac = new DBErrorAction($msg, 500);
51     $dac->showPage();
52     exit(-1);
53 }
54
55 function main()
56 {
57     global $user, $action;
58
59     // For database errors
60
61     PEAR::setErrorHandling(PEAR_ERROR_CALLBACK, 'handleError');
62
63     // XXX: we need a little more structure in this script
64
65     // get and cache current user
66
67     $user = common_current_user();
68
69     // initialize language env
70
71     common_init_language();
72
73     $path = getPath($_REQUEST);
74
75     $r = Router::get();
76
77     $args = $r->map($path);
78
79     if (!$args) {
80         $cac = new ClientErrorAction(_('Unknown page'), 404);
81         $cac->showPage();
82         return;
83     }
84
85     $args = array_merge($args, $_REQUEST);
86
87     $action = $args['action'];
88
89     if (!$action || !preg_match('/^[a-zA-Z0-9_-]*$/', $action)) {
90         common_redirect(common_local_url('public'));
91         return;
92     }
93
94     // If the site is private, and they're not on one of the "public"
95     // parts of the site, redirect to login
96
97     if (!$user && common_config('site', 'private') &&
98         !in_array($action, array('login', 'openidlogin', 'finishopenidlogin',
99                                  'recoverpassword', 'api', 'doc', 'register'))) {
100         common_redirect(common_local_url('login'));
101         return;
102     }
103
104     $action_class = ucfirst($action).'Action';
105
106     if (!class_exists($action_class)) {
107         $cac = new ClientErrorAction(_('Unknown action'), 404);
108         $cac->showPage();
109     } else {
110         $action_obj = new $action_class();
111
112         // XXX: find somewhere for this little block to live
113
114         if ($config['db']['mirror'] && $action_obj->isReadOnly()) {
115             if (is_array($config['db']['mirror'])) {
116                 // "load balancing", ha ha
117                 $k = array_rand($config['db']['mirror']);
118
119                 $mirror = $config['db']['mirror'][$k];
120             } else {
121                 $mirror = $config['db']['mirror'];
122             }
123             $config['db']['database'] = $mirror;
124         }
125
126         try {
127             if ($action_obj->prepare($args)) {
128                 $action_obj->handle($args);
129             }
130         } catch (ClientException $cex) {
131             $cac = new ClientErrorAction($cex->getMessage(), $cex->getCode());
132             $cac->showPage();
133         } catch (ServerException $sex) { // snort snort guffaw
134             $sac = new ServerErrorAction($sex->getMessage(), $sex->getCode());
135             $sac->showPage();
136         } catch (Exception $ex) {
137             $sac = new ServerErrorAction($ex->getMessage());
138             $sac->showPage();
139         }
140     }
141 }
142
143 main();
144
145 // XXX: cleanup exit() calls or add an exit handler so
146 // this always gets called
147
148 Event::handle('CleanupPlugin');