]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - index.php
Updated JS to show/hide attachment thumbnails with timers. Minor
[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') || !array_key_exists('PATH_INFO', $_SERVER))
31         && array_key_exists('p', $req)) {
32         return $req['p'];
33     } else if (array_key_exists('PATH_INFO', $_SERVER)) {
34         return $_SERVER['PATH_INFO'];
35     } else {
36         return null;
37     }
38 }
39
40 function handleError($error)
41 {
42     if ($error->getCode() == DB_DATAOBJECT_ERROR_NODATA) {
43         return;
44     }
45
46     $logmsg = "PEAR error: " . $error->getMessage();
47     if(common_config('site', 'logdebug')) {
48         $logmsg .= " : ". $error->getDebugInfo();
49     }
50     common_log(LOG_ERR, $logmsg);
51     $msg = sprintf(_('The database for %s isn\'t responding correctly, '.
52                      'so the site won\'t work properly. '.
53                      'The site admins probably know about the problem, '.
54                      'but you can contact them at %s to make sure. '.
55                      'Otherwise, wait a few minutes and try again.'),
56                    common_config('site', 'name'),
57                    common_config('site', 'email'));
58
59     $dac = new DBErrorAction($msg, 500);
60     $dac->showPage();
61     exit(-1);
62 }
63
64 function main()
65 {
66     // quick check for fancy URL auto-detection support in installer.
67     if (isset($_SERVER['REDIRECT_URL']) && ((dirname($_SERVER['REQUEST_URI']) . '/check-fancy') === $_SERVER['REDIRECT_URL'])) {
68         die("Fancy URL support detection succeeded. We suggest you enable this to get fancy (pretty) URLs.");
69     }
70     global $user, $action, $config;
71
72     if (!_have_config()) {
73         $msg = sprintf(_("No configuration file found. Try running ".
74                          "the installation program first."));
75         $sac = new ServerErrorAction($msg);
76         $sac->showPage();
77         return;
78     }
79
80     // For database errors
81
82     PEAR::setErrorHandling(PEAR_ERROR_CALLBACK, 'handleError');
83
84     // XXX: we need a little more structure in this script
85
86     // get and cache current user
87
88     $user = common_current_user();
89
90     // initialize language env
91
92     common_init_language();
93
94     $path = getPath($_REQUEST);
95
96     $r = Router::get();
97
98     $args = $r->map($path);
99
100     if (!$args) {
101         $cac = new ClientErrorAction(_('Unknown page'), 404);
102         $cac->showPage();
103         return;
104     }
105
106     $args = array_merge($args, $_REQUEST);
107
108     Event::handle('ArgsInitialize', array(&$args));
109
110     $action = $args['action'];
111
112     if (!$action || !preg_match('/^[a-zA-Z0-9_-]*$/', $action)) {
113         common_redirect(common_local_url('public'));
114         return;
115     }
116
117     // If the site is private, and they're not on one of the "public"
118     // parts of the site, redirect to login
119
120     if (!$user && common_config('site', 'private') &&
121         !in_array($action, array('login', 'openidlogin', 'finishopenidlogin',
122                                  'recoverpassword', 'api', 'doc', 'register'))) {
123         common_redirect(common_local_url('login'));
124         return;
125     }
126
127     $action_class = ucfirst($action).'Action';
128
129     if (!class_exists($action_class)) {
130         $cac = new ClientErrorAction(_('Unknown action'), 404);
131         $cac->showPage();
132     } else {
133         $action_obj = new $action_class();
134
135         // XXX: find somewhere for this little block to live
136
137         if (common_config('db', 'mirror') && $action_obj->isReadOnly($args)) {
138             if (is_array(common_config('db', 'mirror'))) {
139                 // "load balancing", ha ha
140                 $arr = common_config('db', 'mirror');
141                 $k = array_rand($arr);
142                 $mirror = $arr[$k];
143             } else {
144                 $mirror = common_config('db', 'mirror');
145             }
146             $config['db']['database'] = $mirror;
147         }
148
149         try {
150             if ($action_obj->prepare($args)) {
151                 $action_obj->handle($args);
152             }
153         } catch (ClientException $cex) {
154             $cac = new ClientErrorAction($cex->getMessage(), $cex->getCode());
155             $cac->showPage();
156         } catch (ServerException $sex) { // snort snort guffaw
157             $sac = new ServerErrorAction($sex->getMessage(), $sex->getCode());
158             $sac->showPage();
159         } catch (Exception $ex) {
160             $sac = new ServerErrorAction($ex->getMessage());
161             $sac->showPage();
162         }
163     }
164 }
165
166 main();
167
168 // XXX: cleanup exit() calls or add an exit handler so
169 // this always gets called
170
171 Event::handle('CleanupPlugin');