]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - lib/common.php
Merge branch 'master' into 0.8.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.8.1dev');
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               'design' =>
98               array('backgroundcolor' => '#CEE1E9',
99                     'contentcolor' => '#FFFFFF',
100                     'sidebarcolor' => '#C8D1D5',
101                     'textcolor' => '#000000',
102                     'linkcolor' => '#002E6E',
103                     'backgroundimage' => null,
104                     'disposition' => 1),
105               'path' => $_path,
106               'logfile' => null,
107               'logo' => null,
108               'logdebug' => false,
109               'fancy' => false,
110               'locale_path' => INSTALLDIR.'/locale',
111               'language' => 'en_US',
112               'languages' => get_all_languages(),
113               'email' =>
114               array_key_exists('SERVER_ADMIN', $_SERVER) ? $_SERVER['SERVER_ADMIN'] : null,
115               'broughtby' => null,
116               'timezone' => 'UTC',
117               'broughtbyurl' => null,
118               'closed' => false,
119               'inviteonly' => false,
120               'private' => false,
121               'ssl' => 'never',
122               'sslserver' => null,
123               'shorturllength' => 30,
124               'dupelimit' => 60), # default for same person saying the same thing
125         'syslog' =>
126         array('appname' => 'laconica', # for syslog
127               'priority' => 'debug', # XXX: currently ignored
128               'facility' => LOG_USER),
129         'queue' =>
130         array('enabled' => false,
131               'subsystem' => 'db', # default to database, or 'stomp'
132               'stomp_server' => null,
133               'queue_basename' => 'laconica',
134               'stomp_username' => null,
135               'stomp_password' => null,
136               ),
137         'license' =>
138         array('url' => 'http://creativecommons.org/licenses/by/3.0/',
139               'title' => 'Creative Commons Attribution 3.0',
140               'image' => 'http://i.creativecommons.org/l/by/3.0/80x15.png'),
141         'mail' =>
142         array('backend' => 'mail',
143               'params' => null),
144         'nickname' =>
145         array('blacklist' => array(),
146               'featured' => array()),
147         'profile' =>
148         array('banned' => array()),
149         'avatar' =>
150         array('server' => null,
151               'dir' => INSTALLDIR . '/avatar/',
152               'path' => $_path . '/avatar/'),
153         'background' =>
154         array('server' => null,
155               'dir' => INSTALLDIR . '/background/',
156               'path' => $_path . '/background/'),
157         'public' =>
158         array('localonly' => true,
159               'blacklist' => array(),
160               'autosource' => array()),
161         'theme' =>
162         array('server' => null,
163               'dir' => null,
164               'path'=> null),
165         'throttle' =>
166         array('enabled' => false, // whether to throttle edits; false by default
167               'count' => 20, // number of allowed messages in timespan
168               'timespan' => 600), // timespan for throttling
169         'xmpp' =>
170         array('enabled' => false,
171               'server' => 'INVALID SERVER',
172               'port' => 5222,
173               'user' => 'update',
174               'encryption' => true,
175               'resource' => 'uniquename',
176               'password' => 'blahblahblah',
177               'host' => null, # only set if != server
178               'debug' => false, # print extra debug info
179               'public' => array()), # JIDs of users who want to receive the public stream
180         'invite' =>
181         array('enabled' => true),
182         'sphinx' =>
183         array('enabled' => false,
184               'server' => 'localhost',
185               'port' => 3312),
186         'tag' =>
187         array('dropoff' => 864000.0),
188         'popular' =>
189         array('dropoff' => 864000.0),
190         'daemon' =>
191         array('piddir' => '/var/run',
192               'user' => false,
193               'group' => false),
194         'twitterbridge' =>
195         array('enabled' => false),
196         'integration' =>
197         array('source' => 'Laconica', # source attribute for Twitter
198               'taguri' => $_server.',2009'), # base for tag URIs
199         'memcached' =>
200         array('enabled' => false,
201               'server' => 'localhost',
202               'base' => null,
203               'port' => 11211),
204                 'ping' =>
205         array('notify' => array()),
206         'inboxes' =>
207         array('enabled' => true), # on by default for new sites
208         'newuser' =>
209         array('default' => null,
210               'welcome' => null),
211         'snapshot' =>
212         array('run' => 'web',
213               'frequency' => 10000,
214               'reporturl' => 'http://laconi.ca/stats/report'),
215         'attachments' =>
216         array('server' => null,
217               'dir' => INSTALLDIR . '/file/',
218               'path' => $_path . '/file/',
219               'supported' => array('image/png',
220                                    'image/jpeg',
221                                    'image/gif',
222                                    'image/svg+xml',
223                                    'audio/mpeg',
224                                    'audio/x-speex',
225                                    'application/ogg',
226                                    'application/pdf',
227                                    'application/vnd.oasis.opendocument.text',
228                                    'application/vnd.oasis.opendocument.text-template',
229                                    'application/vnd.oasis.opendocument.graphics',
230                                    'application/vnd.oasis.opendocument.graphics-template',
231                                    'application/vnd.oasis.opendocument.presentation',
232                                    'application/vnd.oasis.opendocument.presentation-template',
233                                    'application/vnd.oasis.opendocument.spreadsheet',
234                                    'application/vnd.oasis.opendocument.spreadsheet-template',
235                                    'application/vnd.oasis.opendocument.chart',
236                                    'application/vnd.oasis.opendocument.chart-template',
237                                    'application/vnd.oasis.opendocument.image',
238                                    'application/vnd.oasis.opendocument.image-template',
239                                    'application/vnd.oasis.opendocument.formula',
240                                    'application/vnd.oasis.opendocument.formula-template',
241                                    'application/vnd.oasis.opendocument.text-master',
242                                    'application/vnd.oasis.opendocument.text-web',
243                                    'application/x-zip',
244                                    'application/zip',
245                                    'text/plain',
246                                    'video/mpeg',
247                                    'video/mp4',
248                                    'video/quicktime',
249                                    'video/mpeg'),
250         'file_quota' => 5000000,
251         'user_quota' => 50000000,
252         'monthly_quota' => 15000000,
253         'uploads' => true,
254         'filecommand' => '/usr/bin/file',
255         ),
256         'group' =>
257         array('maxaliases' => 3),
258         'oohembed' => array('endpoint' => 'http://oohembed.com/oohembed/'),
259         'search' =>
260         array('type' => 'fulltext'),
261         'sessions' =>
262         array('handle' => false, // whether to handle sessions ourselves
263               'debug' => false), // debugging output for sessions
264         );
265
266 $config['db'] = &PEAR::getStaticProperty('DB_DataObject','options');
267
268 $config['db'] =
269   array('database' => 'YOU HAVE TO SET THIS IN config.php',
270         'schema_location' => INSTALLDIR . '/classes',
271         'class_location' => INSTALLDIR . '/classes',
272         'require_prefix' => 'classes/',
273         'class_prefix' => '',
274         'mirror' => null,
275         'utf8' => true,
276         'db_driver' => 'DB', # XXX: JanRain libs only work with DB
277         'quote_identifiers' => false,
278         'type' => 'mysql' );
279
280 if (function_exists('date_default_timezone_set')) {
281     /* Work internally in UTC */
282     date_default_timezone_set('UTC');
283 }
284
285 function addPlugin($name, $attrs = null)
286 {
287     $name = ucfirst($name);
288     $pluginclass = "{$name}Plugin";
289
290     if (!class_exists($pluginclass)) {
291
292         $files = array("local/plugins/{$pluginclass}.php",
293                        "local/plugins/{$name}/{$pluginclass}.php",
294                        "local/{$pluginclass}.php",
295                        "local/{$name}/{$pluginclass}.php",
296                        "plugins/{$pluginclass}.php",
297                        "plugins/{$name}/{$pluginclass}.php");
298
299         foreach ($files as $file) {
300             $fullpath = INSTALLDIR.'/'.$file;
301             if (@file_exists($fullpath)) {
302                 include_once($fullpath);
303                 break;
304             }
305         }
306     }
307
308     $inst = new $pluginclass();
309
310     if (!empty($attrs)) {
311         foreach ($attrs as $aname => $avalue) {
312             $inst->$aname = $avalue;
313         }
314     }
315     return $inst;
316 }
317
318 // From most general to most specific:
319 // server-wide, then vhost-wide, then for a path,
320 // finally for a dir (usually only need one of the last two).
321
322 if (isset($conffile)) {
323     $_config_files = array($conffile);
324 } else {
325     $_config_files = array('/etc/laconica/laconica.php',
326                            '/etc/laconica/'.$_server.'.php');
327
328     if (strlen($_path) > 0) {
329         $_config_files[] = '/etc/laconica/'.$_server.'_'.$_path.'.php';
330     }
331
332     $_config_files[] = INSTALLDIR.'/config.php';
333 }
334
335 $_have_a_config = false;
336
337 foreach ($_config_files as $_config_file) {
338     if (@file_exists($_config_file)) {
339         include_once($_config_file);
340         $_have_a_config = true;
341     }
342 }
343
344 function _have_config()
345 {
346     global $_have_a_config;
347     return $_have_a_config;
348 }
349
350 // XXX: Throw a conniption if database not installed
351
352 // Fixup for laconica.ini
353
354 $_db_name = substr($config['db']['database'], strrpos($config['db']['database'], '/') + 1);
355
356 if ($_db_name != 'laconica' && !array_key_exists('ini_'.$_db_name, $config['db'])) {
357     $config['db']['ini_'.$_db_name] = INSTALLDIR.'/classes/laconica.ini';
358 }
359
360 // XXX: how many of these could be auto-loaded on use?
361
362 require_once 'Validate.php';
363 require_once 'markdown.php';
364
365 require_once INSTALLDIR.'/lib/util.php';
366 require_once INSTALLDIR.'/lib/action.php';
367 require_once INSTALLDIR.'/lib/theme.php';
368 require_once INSTALLDIR.'/lib/mail.php';
369 require_once INSTALLDIR.'/lib/subs.php';
370 require_once INSTALLDIR.'/lib/Shorturl_api.php';
371 require_once INSTALLDIR.'/lib/twitter.php';
372
373 require_once INSTALLDIR.'/lib/clientexception.php';
374 require_once INSTALLDIR.'/lib/serverexception.php';
375
376 // XXX: other formats here
377
378 define('NICKNAME_FMT', VALIDATE_NUM.VALIDATE_ALPHA_LOWER);
379
380 function __autoload($class)
381 {
382     if ($class == 'OAuthRequest') {
383         require_once('OAuth.php');
384     } else if (file_exists(INSTALLDIR.'/classes/' . $class . '.php')) {
385         require_once(INSTALLDIR.'/classes/' . $class . '.php');
386     } else if (file_exists(INSTALLDIR.'/lib/' . strtolower($class) . '.php')) {
387         require_once(INSTALLDIR.'/lib/' . strtolower($class) . '.php');
388     } else if (mb_substr($class, -6) == 'Action' &&
389                file_exists(INSTALLDIR.'/actions/' . strtolower(mb_substr($class, 0, -6)) . '.php')) {
390         require_once(INSTALLDIR.'/actions/' . strtolower(mb_substr($class, 0, -6)) . '.php');
391     }
392 }
393
394 // Give plugins a chance to initialize in a fully-prepared environment
395
396 Event::handle('InitializePlugin');