]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - lib/common.php
Merge branch '0.8.x' into cmdline
[quix0rs-gnu-social.git] / lib / common.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 if (!defined('LACONICA')) { exit(1); }
21
22 define('LACONICA_VERSION', '0.8.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               'skin' => 'default',
98               'design' =>
99               array('backgroundcolor' => '#F0F2F5',
100                     'contentcolor' => '#FFFFFF',
101                     'sidebarcolor' => '#CEE1E9',
102                     'textcolor' => '#000000',
103                     'linkcolor' => '#002E6E',
104                     'backgroundimage' => null,
105                     'disposition' => 1),
106               'path' => $_path,
107               'logfile' => null,
108               'logo' => null,
109               'logdebug' => false,
110               'fancy' => false,
111               'locale_path' => INSTALLDIR.'/locale',
112               'language' => 'en_US',
113               'languages' => get_all_languages(),
114               'email' =>
115               array_key_exists('SERVER_ADMIN', $_SERVER) ? $_SERVER['SERVER_ADMIN'] : null,
116               'broughtby' => null,
117               'timezone' => 'UTC',
118               'broughtbyurl' => null,
119               'closed' => false,
120               'inviteonly' => false,
121               'private' => false,
122               'ssl' => 'never',
123               'sslserver' => null,
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         'queue' =>
129         array('enabled' => false),
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         'throttle' =>
157         array('enabled' => false, // whether to throttle edits; false by default
158               'count' => 20, // number of allowed messages in timespan
159               'timespan' => 600), // timespan for throttling
160         'xmpp' =>
161         array('enabled' => false,
162               'server' => 'INVALID SERVER',
163               'port' => 5222,
164               'user' => 'update',
165               'encryption' => true,
166               'resource' => 'uniquename',
167               'password' => 'blahblahblah',
168               'host' => null, # only set if != server
169               'debug' => false, # print extra debug info
170               'public' => array()), # JIDs of users who want to receive the public stream
171         'sphinx' =>
172         array('enabled' => false,
173               'server' => 'localhost',
174               'port' => 3312),
175         'tag' =>
176         array('dropoff' => 864000.0),
177         'popular' =>
178         array('dropoff' => 864000.0),
179         'daemon' =>
180         array('piddir' => '/var/run',
181               'user' => false,
182               'group' => false),
183         'twitterbridge' =>
184         array('enabled' => false),
185         'integration' =>
186         array('source' => 'Laconica', # source attribute for Twitter
187               'taguri' => $_server.',2009'), # base for tag URIs
188         'memcached' =>
189         array('enabled' => false,
190               'server' => 'localhost',
191               'base' => null,
192               'port' => 11211),
193                 'ping' =>
194         array('notify' => array()),
195         'inboxes' =>
196         array('enabled' => true), # on by default for new sites
197         'newuser' =>
198         array('subscribe' => null,
199               'welcome' => null),
200         'snapshot' =>
201         array('run' => 'web',
202               'frequency' => 10000,
203               'reporturl' => 'http://laconi.ca/stats/report'),
204         'attachments' =>
205         array('supported' => array('image/png',
206             'image/jpeg',
207             'image/gif',
208             'image/svg+xml',
209             'audio/mpeg',
210             'audio/x-speex',
211             'application/ogg',
212             'application/pdf',
213             'application/vnd.oasis.opendocument.text',
214             'application/vnd.oasis.opendocument.text-template',
215             'application/vnd.oasis.opendocument.graphics',
216             'application/vnd.oasis.opendocument.graphics-template',
217             'application/vnd.oasis.opendocument.presentation',
218             'application/vnd.oasis.opendocument.presentation-template',
219             'application/vnd.oasis.opendocument.spreadsheet',
220             'application/vnd.oasis.opendocument.spreadsheet-template',
221             'application/vnd.oasis.opendocument.chart',
222             'application/vnd.oasis.opendocument.chart-template',
223             'application/vnd.oasis.opendocument.image',
224             'application/vnd.oasis.opendocument.image-template',
225             'application/vnd.oasis.opendocument.formula',
226             'application/vnd.oasis.opendocument.formula-template',
227             'application/vnd.oasis.opendocument.text-master',
228             'application/vnd.oasis.opendocument.text-web',
229             'application/x-zip',
230             'application/zip',
231             'text/plain',
232             'video/mpeg',
233             'video/mp4',
234             'video/quicktime',
235             'video/mpeg'),
236         'file_quota' => 5000000,
237         'user_quota' => 50000000,
238         'monthly_quota' => 15000000,
239         'uploads' => true,
240         ),
241         'group' =>
242         array('maxaliases' => 3),
243         'oohembed' => array('endpoint' => 'http://oohembed.com/oohembed/')
244         );
245
246 $config['db'] = &PEAR::getStaticProperty('DB_DataObject','options');
247
248 $config['db'] =
249   array('database' => 'YOU HAVE TO SET THIS IN config.php',
250         'schema_location' => INSTALLDIR . '/classes',
251         'class_location' => INSTALLDIR . '/classes',
252         'require_prefix' => 'classes/',
253         'class_prefix' => '',
254         'mirror' => null,
255         'utf8' => true,
256         'db_driver' => 'DB', # XXX: JanRain libs only work with DB
257         'quote_identifiers' => false,
258         'type' => 'mysql' );
259
260 if (function_exists('date_default_timezone_set')) {
261     /* Work internally in UTC */
262     date_default_timezone_set('UTC');
263 }
264
265 // From most general to most specific:
266 // server-wide, then vhost-wide, then for a path,
267 // finally for a dir (usually only need one of the last two).
268
269 $_config_files = array('/etc/laconica/laconica.php',
270                   '/etc/laconica/'.$_server.'.php');
271
272 if (strlen($_path) > 0) {
273     $_config_files[] = '/etc/laconica/'.$_server.'_'.$_path.'.php';
274 }
275
276 $_config_files[] = INSTALLDIR.'/config.php';
277
278 $_have_a_config = false;
279
280 foreach ($_config_files as $_config_file) {
281     if (@file_exists($_config_file)) {
282         include_once($_config_file);
283         $_have_a_config = true;
284     }
285 }
286
287 function _have_config()
288 {
289     global $_have_a_config;
290     return $_have_a_config;
291 }
292
293 // XXX: Throw a conniption if database not installed
294
295 // Fixup for laconica.ini
296
297 $_db_name = substr($config['db']['database'], strrpos($config['db']['database'], '/') + 1);
298
299 if ($_db_name != 'laconica' && !array_key_exists('ini_'.$_db_name, $config['db'])) {
300     $config['db']['ini_'.$_db_name] = INSTALLDIR.'/classes/laconica.ini';
301 }
302
303 // XXX: how many of these could be auto-loaded on use?
304
305 require_once 'Validate.php';
306 require_once 'markdown.php';
307
308 require_once INSTALLDIR.'/lib/util.php';
309 require_once INSTALLDIR.'/lib/action.php';
310 require_once INSTALLDIR.'/lib/theme.php';
311 require_once INSTALLDIR.'/lib/mail.php';
312 require_once INSTALLDIR.'/lib/subs.php';
313 require_once INSTALLDIR.'/lib/Shorturl_api.php';
314 require_once INSTALLDIR.'/lib/twitter.php';
315
316 require_once INSTALLDIR.'/lib/clientexception.php';
317 require_once INSTALLDIR.'/lib/serverexception.php';
318
319 // XXX: other formats here
320
321 define('NICKNAME_FMT', VALIDATE_NUM.VALIDATE_ALPHA_LOWER);
322
323 function __autoload($class)
324 {
325     if ($class == 'OAuthRequest') {
326         require_once('OAuth.php');
327     } else if (file_exists(INSTALLDIR.'/classes/' . $class . '.php')) {
328         require_once(INSTALLDIR.'/classes/' . $class . '.php');
329     } else if (file_exists(INSTALLDIR.'/lib/' . strtolower($class) . '.php')) {
330         require_once(INSTALLDIR.'/lib/' . strtolower($class) . '.php');
331     } else if (mb_substr($class, -6) == 'Action' &&
332                file_exists(INSTALLDIR.'/actions/' . strtolower(mb_substr($class, 0, -6)) . '.php')) {
333         require_once(INSTALLDIR.'/actions/' . strtolower(mb_substr($class, 0, -6)) . '.php');
334     }
335 }
336
337 // Give plugins a chance to initialize in a fully-prepared environment
338
339 Event::handle('InitializePlugin');