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