]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - lib/common.php
Merge branch '0.9.x' of git@gitorious.org:laconica/mainline into 0.9.x
[quix0rs-gnu-social.git] / lib / common.php
1 <?php
2 /*
3  * Laconica - a distributed open-source microblogging tool
4  * Copyright (C) 2008, 2009, Control Yourself, 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 if (!defined('LACONICA')) { exit(1); }
21
22 define('LACONICA_VERSION', '0.9.0dev');
23
24 define('AVATAR_PROFILE_SIZE', 96);
25 define('AVATAR_STREAM_SIZE', 48);
26 define('AVATAR_MINI_SIZE', 24);
27
28 define('NOTICES_PER_PAGE', 20);
29 define('PROFILES_PER_PAGE', 20);
30
31 define('FOREIGN_NOTICE_SEND', 1);
32 define('FOREIGN_NOTICE_RECV', 2);
33 define('FOREIGN_NOTICE_SEND_REPLY', 4);
34
35 define('FOREIGN_FRIEND_SEND', 1);
36 define('FOREIGN_FRIEND_RECV', 2);
37
38 define_syslog_variables();
39
40 # append our extlib dir as the last-resort place to find libs
41
42 set_include_path(get_include_path() . PATH_SEPARATOR . INSTALLDIR . '/extlib/');
43
44 # global configuration object
45
46 require_once('PEAR.php');
47 require_once('DB/DataObject.php');
48 require_once('DB/DataObject/Cast.php'); # for dates
49
50 require_once(INSTALLDIR.'/lib/language.php');
51
52 // This gets included before the config file, so that admin code and plugins
53 // can use it
54
55 require_once(INSTALLDIR.'/lib/event.php');
56 require_once(INSTALLDIR.'/lib/plugin.php');
57
58 function _sn_to_path($sn)
59 {
60     $past_root = substr($sn, 1);
61     $last_slash = strrpos($past_root, '/');
62     if ($last_slash > 0) {
63         $p = substr($past_root, 0, $last_slash);
64     } else {
65         $p = '';
66     }
67     return $p;
68 }
69
70 // try to figure out where we are. $server and $path
71 // can be set by including module, else we guess based
72 // on HTTP info.
73
74 if (isset($server)) {
75     $_server = $server;
76 } else {
77     $_server = array_key_exists('SERVER_NAME', $_SERVER) ?
78       strtolower($_SERVER['SERVER_NAME']) :
79     null;
80 }
81
82 if (isset($path)) {
83     $_path = $path;
84 } else {
85     $_path = array_key_exists('SCRIPT_NAME', $_SERVER) ?
86       _sn_to_path($_SERVER['SCRIPT_NAME']) :
87     null;
88 }
89
90 // default configuration, overwritten in config.php
91
92 $config =
93   array('site' =>
94         array('name' => 'Just another Laconica microblog',
95               'server' => $_server,
96               'theme' => 'default',
97               'path' => $_path,
98               'logfile' => null,
99               'logo' => null,
100               'logdebug' => false,
101               'fancy' => false,
102               'locale_path' => INSTALLDIR.'/locale',
103               'language' => 'en_US',
104               'languages' => get_all_languages(),
105               'email' =>
106               array_key_exists('SERVER_ADMIN', $_SERVER) ? $_SERVER['SERVER_ADMIN'] : null,
107               'broughtby' => null,
108               'timezone' => 'UTC',
109               'broughtbyurl' => null,
110               'closed' => false,
111               'inviteonly' => false,
112               'private' => false,
113               'ssl' => 'never',
114               'sslserver' => null,
115               'shorturllength' => 30,
116               'dupelimit' => 60, # default for same person saying the same thing
117               'textlimit' => 140,
118               ),
119         'syslog' =>
120         array('appname' => 'laconica', # for syslog
121               'priority' => 'debug', # XXX: currently ignored
122               'facility' => LOG_USER),
123         'queue' =>
124         array('enabled' => false,
125               'subsystem' => 'db', # default to database, or 'stomp'
126               'stomp_server' => null,
127               'queue_basename' => 'laconica',
128               'stomp_username' => null,
129               'stomp_password' => null,
130               ),
131         'license' =>
132         array('url' => 'http://creativecommons.org/licenses/by/3.0/',
133               'title' => 'Creative Commons Attribution 3.0',
134               'image' => 'http://i.creativecommons.org/l/by/3.0/80x15.png'),
135         'mail' =>
136         array('backend' => 'mail',
137               'params' => null),
138         'nickname' =>
139         array('blacklist' => array(),
140               'featured' => array()),
141         'profile' =>
142         array('banned' => array(),
143               'biolimit' => null),
144         'avatar' =>
145         array('server' => null,
146               'dir' => INSTALLDIR . '/avatar/',
147               'path' => $_path . '/avatar/'),
148         'background' =>
149         array('server' => null,
150               'dir' => INSTALLDIR . '/background/',
151               'path' => $_path . '/background/'),
152         'public' =>
153         array('localonly' => true,
154               'blacklist' => array(),
155               'autosource' => array()),
156         'theme' =>
157         array('server' => null,
158               'dir' => null,
159               'path'=> null),
160         'throttle' =>
161         array('enabled' => false, // whether to throttle edits; false by default
162               'count' => 20, // number of allowed messages in timespan
163               'timespan' => 600), // timespan for throttling
164         'xmpp' =>
165         array('enabled' => false,
166               'server' => 'INVALID SERVER',
167               'port' => 5222,
168               'user' => 'update',
169               'encryption' => true,
170               'resource' => 'uniquename',
171               'password' => 'blahblahblah',
172               'host' => null, # only set if != server
173               'debug' => false, # print extra debug info
174               'public' => array()), # JIDs of users who want to receive the public stream
175         'invite' =>
176         array('enabled' => true),
177         'sphinx' =>
178         array('enabled' => false,
179               'server' => 'localhost',
180               'port' => 3312),
181         'tag' =>
182         array('dropoff' => 864000.0),
183         'popular' =>
184         array('dropoff' => 864000.0),
185         'daemon' =>
186         array('piddir' => '/var/run',
187               'user' => false,
188               'group' => false),
189         'twitterbridge' =>
190         array('enabled' => false),
191         'integration' =>
192         array('source' => 'Laconica', # source attribute for Twitter
193               'taguri' => $_server.',2009'), # base for tag URIs
194         'memcached' =>
195         array('enabled' => false,
196               'server' => 'localhost',
197               'base' => null,
198               'port' => 11211),
199                 'ping' =>
200         array('notify' => array()),
201         'inboxes' =>
202         array('enabled' => true), # on by default for new sites
203         'newuser' =>
204         array('default' => null,
205               'welcome' => null),
206         'snapshot' =>
207         array('run' => 'web',
208               'frequency' => 10000,
209               'reporturl' => 'http://laconi.ca/stats/report'),
210         'attachments' =>
211         array('server' => null,
212               'dir' => INSTALLDIR . '/file/',
213               'path' => $_path . '/file/',
214               'supported' => array('image/png',
215                                    'image/jpeg',
216                                    'image/gif',
217                                    'image/svg+xml',
218                                    'audio/mpeg',
219                                    'audio/x-speex',
220                                    'application/ogg',
221                                    'application/pdf',
222                                    'application/vnd.oasis.opendocument.text',
223                                    'application/vnd.oasis.opendocument.text-template',
224                                    'application/vnd.oasis.opendocument.graphics',
225                                    'application/vnd.oasis.opendocument.graphics-template',
226                                    'application/vnd.oasis.opendocument.presentation',
227                                    'application/vnd.oasis.opendocument.presentation-template',
228                                    'application/vnd.oasis.opendocument.spreadsheet',
229                                    'application/vnd.oasis.opendocument.spreadsheet-template',
230                                    'application/vnd.oasis.opendocument.chart',
231                                    'application/vnd.oasis.opendocument.chart-template',
232                                    'application/vnd.oasis.opendocument.image',
233                                    'application/vnd.oasis.opendocument.image-template',
234                                    'application/vnd.oasis.opendocument.formula',
235                                    'application/vnd.oasis.opendocument.formula-template',
236                                    'application/vnd.oasis.opendocument.text-master',
237                                    'application/vnd.oasis.opendocument.text-web',
238                                    'application/x-zip',
239                                    'application/zip',
240                                    'text/plain',
241                                    'video/mpeg',
242                                    'video/mp4',
243                                    'video/quicktime',
244                                    'video/mpeg'),
245         'file_quota' => 5000000,
246         'user_quota' => 50000000,
247         'monthly_quota' => 15000000,
248         'uploads' => true,
249         'filecommand' => '/usr/bin/file',
250         ),
251         'group' =>
252         array('maxaliases' => 3,
253               'desclimit' => null),
254         'oohembed' => array('endpoint' => 'http://oohembed.com/oohembed/'),
255         'search' =>
256         array('type' => 'fulltext'),
257         'sessions' =>
258         array('handle' => false, // whether to handle sessions ourselves
259               'debug' => false), // debugging output for sessions
260         'design' =>
261         array('backgroundcolor' => null, // null -> 'use theme default'
262               'contentcolor' => null,
263               'sidebarcolor' => null,
264               'textcolor' => null,
265               'linkcolor' => null,
266               'backgroundimage' => null,
267               'disposition' => null),
268         'notice' =>
269         array('contentlimit' => null),
270         'message' =>
271         array('contentlimit' => null),
272         );
273
274 $config['db'] = &PEAR::getStaticProperty('DB_DataObject','options');
275
276 $config['db'] =
277   array('database' => 'YOU HAVE TO SET THIS IN config.php',
278         'schema_location' => INSTALLDIR . '/classes',
279         'class_location' => INSTALLDIR . '/classes',
280         'require_prefix' => 'classes/',
281         'class_prefix' => '',
282         'mirror' => null,
283         'utf8' => true,
284         'db_driver' => 'DB', # XXX: JanRain libs only work with DB
285         'quote_identifiers' => false,
286         'type' => 'mysql' );
287
288 // Backward compatibility
289
290 $config['site']['design'] =& $config['design'];
291
292 if (function_exists('date_default_timezone_set')) {
293     /* Work internally in UTC */
294     date_default_timezone_set('UTC');
295 }
296
297 function addPlugin($name, $attrs = null)
298 {
299     $name = ucfirst($name);
300     $pluginclass = "{$name}Plugin";
301
302     if (!class_exists($pluginclass)) {
303
304         $files = array("local/plugins/{$pluginclass}.php",
305                        "local/plugins/{$name}/{$pluginclass}.php",
306                        "local/{$pluginclass}.php",
307                        "local/{$name}/{$pluginclass}.php",
308                        "plugins/{$pluginclass}.php",
309                        "plugins/{$name}/{$pluginclass}.php");
310
311         foreach ($files as $file) {
312             $fullpath = INSTALLDIR.'/'.$file;
313             if (@file_exists($fullpath)) {
314                 include_once($fullpath);
315                 break;
316             }
317         }
318     }
319
320     $inst = new $pluginclass();
321
322     if (!empty($attrs)) {
323         foreach ($attrs as $aname => $avalue) {
324             $inst->$aname = $avalue;
325         }
326     }
327     return $inst;
328 }
329
330 // From most general to most specific:
331 // server-wide, then vhost-wide, then for a path,
332 // finally for a dir (usually only need one of the last two).
333
334 if (isset($conffile)) {
335     $_config_files = array($conffile);
336 } else {
337     $_config_files = array('/etc/laconica/laconica.php',
338                            '/etc/laconica/'.$_server.'.php');
339
340     if (strlen($_path) > 0) {
341         $_config_files[] = '/etc/laconica/'.$_server.'_'.$_path.'.php';
342     }
343
344     $_config_files[] = INSTALLDIR.'/config.php';
345 }
346
347 $_have_a_config = false;
348
349 foreach ($_config_files as $_config_file) {
350     if (@file_exists($_config_file)) {
351         include_once($_config_file);
352         $_have_a_config = true;
353     }
354 }
355
356 function _have_config()
357 {
358     global $_have_a_config;
359     return $_have_a_config;
360 }
361
362 // XXX: Throw a conniption if database not installed
363
364 // Fixup for laconica.ini
365
366 $_db_name = substr($config['db']['database'], strrpos($config['db']['database'], '/') + 1);
367
368 if ($_db_name != 'laconica' && !array_key_exists('ini_'.$_db_name, $config['db'])) {
369     $config['db']['ini_'.$_db_name] = INSTALLDIR.'/classes/laconica.ini';
370 }
371
372 // XXX: how many of these could be auto-loaded on use?
373
374 require_once 'Validate.php';
375 require_once 'markdown.php';
376
377 require_once INSTALLDIR.'/lib/util.php';
378 require_once INSTALLDIR.'/lib/action.php';
379 require_once INSTALLDIR.'/lib/theme.php';
380 require_once INSTALLDIR.'/lib/mail.php';
381 require_once INSTALLDIR.'/lib/subs.php';
382 require_once INSTALLDIR.'/lib/Shorturl_api.php';
383 require_once INSTALLDIR.'/lib/twitter.php';
384
385 require_once INSTALLDIR.'/lib/clientexception.php';
386 require_once INSTALLDIR.'/lib/serverexception.php';
387
388 // XXX: other formats here
389
390 define('NICKNAME_FMT', VALIDATE_NUM.VALIDATE_ALPHA_LOWER);
391
392 function __autoload($cls)
393 {
394     if (file_exists(INSTALLDIR.'/classes/' . $cls . '.php')) {
395         require_once(INSTALLDIR.'/classes/' . $cls . '.php');
396     } else if (file_exists(INSTALLDIR.'/lib/' . strtolower($cls) . '.php')) {
397         require_once(INSTALLDIR.'/lib/' . strtolower($cls) . '.php');
398     } else if (mb_substr($cls, -6) == 'Action' &&
399                file_exists(INSTALLDIR.'/actions/' . strtolower(mb_substr($cls, 0, -6)) . '.php')) {
400         require_once(INSTALLDIR.'/actions/' . strtolower(mb_substr($cls, 0, -6)) . '.php');
401     } else if ($cls == 'OAuthRequest') {
402         require_once('OAuth.php');
403     } else {
404         Event::handle('Autoload', array(&$cls));
405     }
406 }
407
408 // Give plugins a chance to initialize in a fully-prepared environment
409
410 Event::handle('InitializePlugin');