]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - lib/common.php
a8c7634f6231b050a2e4b47421c846f7a3d54723
[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.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               'design' =>
98               array('backgroundcolor' => '#F0F2F5',
99                     'contentcolor' => '#FFFFFF',
100                     'sidebarcolor' => '#CEE1E9',
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               'dupelimit' => 60), # default for same person saying the same thing
124         'syslog' =>
125         array('appname' => 'laconica', # for syslog
126               'priority' => 'debug'), # XXX: currently ignored
127         'queue' =>
128         array('enabled' => false),
129         'license' =>
130         array('url' => 'http://creativecommons.org/licenses/by/3.0/',
131               'title' => 'Creative Commons Attribution 3.0',
132               'image' => 'http://i.creativecommons.org/l/by/3.0/80x15.png'),
133         'mail' =>
134         array('backend' => 'mail',
135               'params' => null),
136         'nickname' =>
137         array('blacklist' => array(),
138               'featured' => array()),
139         'profile' =>
140         array('banned' => array()),
141         'avatar' =>
142         array('server' => null,
143               'dir' => INSTALLDIR . '/avatar/',
144               'path' => $_path . '/avatar/'),
145         'background' =>
146         array('server' => null,
147               'dir' => INSTALLDIR . '/background/',
148               'path' => $_path . '/background/'),
149         'public' =>
150         array('localonly' => true,
151               'blacklist' => array(),
152               'autosource' => array()),
153         'theme' =>
154         array('server' => null,
155               'dir' => null,
156               'path'=> null),
157         'throttle' =>
158         array('enabled' => false, // whether to throttle edits; false by default
159               'count' => 20, // number of allowed messages in timespan
160               'timespan' => 600), // timespan for throttling
161         'xmpp' =>
162         array('enabled' => false,
163               'server' => 'INVALID SERVER',
164               'port' => 5222,
165               'user' => 'update',
166               'encryption' => true,
167               'resource' => 'uniquename',
168               'password' => 'blahblahblah',
169               'host' => null, # only set if != server
170               'debug' => false, # print extra debug info
171               'public' => array()), # JIDs of users who want to receive the public stream
172         'sphinx' =>
173         array('enabled' => false,
174               'server' => 'localhost',
175               'port' => 3312),
176         'tag' =>
177         array('dropoff' => 864000.0),
178         'popular' =>
179         array('dropoff' => 864000.0),
180         'daemon' =>
181         array('piddir' => '/var/run',
182               'user' => false,
183               'group' => false),
184         'twitterbridge' =>
185         array('enabled' => false),
186         'integration' =>
187         array('source' => 'Laconica', # source attribute for Twitter
188               'taguri' => $_server.',2009'), # base for tag URIs
189         'memcached' =>
190         array('enabled' => false,
191               'server' => 'localhost',
192               'base' => null,
193               'port' => 11211),
194                 'ping' =>
195         array('notify' => array()),
196         'inboxes' =>
197         array('enabled' => true), # on by default for new sites
198         'newuser' =>
199         array('subscribe' => null,
200               'welcome' => null),
201         'snapshot' =>
202         array('run' => 'web',
203               'frequency' => 10000,
204               'reporturl' => 'http://laconi.ca/stats/report'),
205         'attachments' =>
206         array('supported' => array('image/png',
207             'image/jpeg',
208             'image/gif',
209             'image/svg+xml',
210             'audio/mpeg',
211             'audio/x-speex',
212             'application/ogg',
213             'application/pdf',
214             'application/vnd.oasis.opendocument.text',
215             'application/vnd.oasis.opendocument.text-template',
216             'application/vnd.oasis.opendocument.graphics',
217             'application/vnd.oasis.opendocument.graphics-template',
218             'application/vnd.oasis.opendocument.presentation',
219             'application/vnd.oasis.opendocument.presentation-template',
220             'application/vnd.oasis.opendocument.spreadsheet',
221             'application/vnd.oasis.opendocument.spreadsheet-template',
222             'application/vnd.oasis.opendocument.chart',
223             'application/vnd.oasis.opendocument.chart-template',
224             'application/vnd.oasis.opendocument.image',
225             'application/vnd.oasis.opendocument.image-template',
226             'application/vnd.oasis.opendocument.formula',
227             'application/vnd.oasis.opendocument.formula-template',
228             'application/vnd.oasis.opendocument.text-master',
229             'application/vnd.oasis.opendocument.text-web',
230             'application/x-zip',
231             'application/zip',
232             'text/plain',
233             'video/mpeg',
234             'video/mp4',
235             'video/quicktime',
236             'video/mpeg'),
237         'file_quota' => 5000000,
238         'user_quota' => 50000000,
239         'monthly_quota' => 15000000,
240         'uploads' => true,
241         ),
242         'group' =>
243         array('maxaliases' => 3),
244         'oohembed' => array('endpoint' => 'http://oohembed.com/oohembed/'),
245         'search' =>
246         array('type' => 'fulltext'),
247         );
248
249 $config['db'] = &PEAR::getStaticProperty('DB_DataObject','options');
250
251 $config['db'] =
252   array('database' => 'YOU HAVE TO SET THIS IN config.php',
253         'schema_location' => INSTALLDIR . '/classes',
254         'class_location' => INSTALLDIR . '/classes',
255         'require_prefix' => 'classes/',
256         'class_prefix' => '',
257         'mirror' => null,
258         'utf8' => true,
259         'db_driver' => 'DB', # XXX: JanRain libs only work with DB
260         'quote_identifiers' => false,
261         'type' => 'mysql' );
262
263 if (function_exists('date_default_timezone_set')) {
264     /* Work internally in UTC */
265     date_default_timezone_set('UTC');
266 }
267
268 // From most general to most specific:
269 // server-wide, then vhost-wide, then for a path,
270 // finally for a dir (usually only need one of the last two).
271
272 $_config_files = array('/etc/laconica/laconica.php',
273                   '/etc/laconica/'.$_server.'.php');
274
275 if (strlen($_path) > 0) {
276     $_config_files[] = '/etc/laconica/'.$_server.'_'.$_path.'.php';
277 }
278
279 $_config_files[] = INSTALLDIR.'/config.php';
280
281 $_have_a_config = false;
282
283 foreach ($_config_files as $_config_file) {
284     if (@file_exists($_config_file)) {
285         include_once($_config_file);
286         $_have_a_config = true;
287     }
288 }
289
290 function _have_config()
291 {
292     global $_have_a_config;
293     return $_have_a_config;
294 }
295
296 // XXX: Throw a conniption if database not installed
297
298 // Fixup for laconica.ini
299
300 $_db_name = substr($config['db']['database'], strrpos($config['db']['database'], '/') + 1);
301
302 if ($_db_name != 'laconica' && !array_key_exists('ini_'.$_db_name, $config['db'])) {
303     $config['db']['ini_'.$_db_name] = INSTALLDIR.'/classes/laconica.ini';
304 }
305
306 // XXX: how many of these could be auto-loaded on use?
307
308 require_once 'Validate.php';
309 require_once 'markdown.php';
310
311 require_once INSTALLDIR.'/lib/util.php';
312 require_once INSTALLDIR.'/lib/action.php';
313 require_once INSTALLDIR.'/lib/theme.php';
314 require_once INSTALLDIR.'/lib/mail.php';
315 require_once INSTALLDIR.'/lib/subs.php';
316 require_once INSTALLDIR.'/lib/Shorturl_api.php';
317 require_once INSTALLDIR.'/lib/twitter.php';
318
319 require_once INSTALLDIR.'/lib/clientexception.php';
320 require_once INSTALLDIR.'/lib/serverexception.php';
321
322 // XXX: other formats here
323
324 define('NICKNAME_FMT', VALIDATE_NUM.VALIDATE_ALPHA_LOWER);
325
326 function __autoload($class)
327 {
328     if ($class == 'OAuthRequest') {
329         require_once('OAuth.php');
330     } else if (file_exists(INSTALLDIR.'/classes/' . $class . '.php')) {
331         require_once(INSTALLDIR.'/classes/' . $class . '.php');
332     } else if (file_exists(INSTALLDIR.'/lib/' . strtolower($class) . '.php')) {
333         require_once(INSTALLDIR.'/lib/' . strtolower($class) . '.php');
334     } else if (mb_substr($class, -6) == 'Action' &&
335                file_exists(INSTALLDIR.'/actions/' . strtolower(mb_substr($class, 0, -6)) . '.php')) {
336         require_once(INSTALLDIR.'/actions/' . strtolower(mb_substr($class, 0, -6)) . '.php');
337     }
338 }
339
340 // Give plugins a chance to initialize in a fully-prepared environment
341
342 Event::handle('InitializePlugin');