]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - lib/common.php
allow a configured base for cache keys
[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 // try to figure out where we are
59
60 $_server = array_key_exists('SERVER_NAME', $_SERVER) ?
61   strtolower($_SERVER['SERVER_NAME']) :
62   null;
63 $_path = array_key_exists('SCRIPT_NAME', $_SERVER) ?
64   substr($_SERVER['SCRIPT_NAME'], 1, strrpos($_SERVER['SCRIPT_NAME'], '/') - 1) :
65   null;
66
67 // default configuration, overwritten in config.php
68
69 $config =
70   array('site' =>
71         array('name' => 'Just another Laconica microblog',
72               'server' => $_server,
73               'theme' => 'default',
74               'path' => $_path,
75               'logfile' => null,
76               'logo' => null,
77               'logdebug' => false,
78               'fancy' => false,
79               'locale_path' => INSTALLDIR.'/locale',
80               'language' => 'en_US',
81               'languages' => get_all_languages(),
82               'email' =>
83               array_key_exists('SERVER_ADMIN', $_SERVER) ? $_SERVER['SERVER_ADMIN'] : null,
84               'broughtby' => null,
85               'timezone' => 'UTC',
86               'broughtbyurl' => null,
87               'closed' => false,
88               'inviteonly' => false,
89               'private' => false,
90               'ssl' => 'never',
91               'sslserver' => null,
92               'dupelimit' => 60), # default for same person saying the same thing
93         'syslog' =>
94         array('appname' => 'laconica', # for syslog
95               'priority' => 'debug'), # XXX: currently ignored
96         'queue' =>
97         array('enabled' => false),
98         'license' =>
99         array('url' => 'http://creativecommons.org/licenses/by/3.0/',
100               'title' => 'Creative Commons Attribution 3.0',
101               'image' => 'http://i.creativecommons.org/l/by/3.0/80x15.png'),
102         'mail' =>
103         array('backend' => 'mail',
104               'params' => null),
105         'nickname' =>
106         array('blacklist' => array(),
107               'featured' => array()),
108         'profile' =>
109         array('banned' => array()),
110         'avatar' =>
111         array('server' => null,
112               'dir' => INSTALLDIR . '/avatar/',
113               'path' => $_path . '/avatar/'),
114         'public' =>
115         array('localonly' => true,
116               'blacklist' => array(),
117               'autosource' => array()),
118         'theme' =>
119         array('server' => null),
120         'throttle' =>
121         array('enabled' => false, // whether to throttle edits; false by default
122               'count' => 20, // number of allowed messages in timespan
123               'timespan' => 600), // timespan for throttling
124         'xmpp' =>
125         array('enabled' => false,
126               'server' => 'INVALID SERVER',
127               'port' => 5222,
128               'user' => 'update',
129               'encryption' => true,
130               'resource' => 'uniquename',
131               'password' => 'blahblahblah',
132               'host' => null, # only set if != server
133               'debug' => false, # print extra debug info
134               'public' => array()), # JIDs of users who want to receive the public stream
135         'sphinx' =>
136         array('enabled' => false,
137               'server' => 'localhost',
138               'port' => 3312),
139         'tag' =>
140         array('dropoff' => 864000.0),
141         'popular' =>
142         array('dropoff' => 864000.0),
143         'daemon' =>
144         array('piddir' => '/var/run',
145               'user' => false,
146               'group' => false),
147         'twitterbridge' =>
148         array('enabled' => false),
149         'integration' =>
150         array('source' => 'Laconica', # source attribute for Twitter
151               'taguri' => $_server.',2009'), # base for tag URIs
152         'memcached' =>
153         array('enabled' => false,
154               'server' => 'localhost',
155               'base' => null,
156               'port' => 11211),
157                 'ping' =>
158         array('notify' => array()),
159         'inboxes' =>
160         array('enabled' => true), # on by default for new sites
161         'newuser' =>
162         array('subscribe' => null,
163               'welcome' => null),
164         'snapshot' =>
165         array('run' => 'web',
166               'frequency' => 10000,
167               'reporturl' => 'http://laconi.ca/stats/report'),
168         'attachments' =>
169         array('supported' => array('image/png',
170             'image/jpeg',
171             'image/gif',
172             'image/svg+xml',
173             'audio/mpeg',
174             'audio/x-speex',
175             'application/ogg',
176             'application/pdf',
177             'application/vnd.oasis.opendocument.text',
178             'application/vnd.oasis.opendocument.text-template',
179             'application/vnd.oasis.opendocument.graphics',
180             'application/vnd.oasis.opendocument.graphics-template',
181             'application/vnd.oasis.opendocument.presentation',
182             'application/vnd.oasis.opendocument.presentation-template',
183             'application/vnd.oasis.opendocument.spreadsheet',
184             'application/vnd.oasis.opendocument.spreadsheet-template',
185             'application/vnd.oasis.opendocument.chart',
186             'application/vnd.oasis.opendocument.chart-template',
187             'application/vnd.oasis.opendocument.image',
188             'application/vnd.oasis.opendocument.image-template',
189             'application/vnd.oasis.opendocument.formula',
190             'application/vnd.oasis.opendocument.formula-template',
191             'application/vnd.oasis.opendocument.text-master',
192             'application/vnd.oasis.opendocument.text-web',
193             'application/x-zip',
194             'application/zip',
195             'text/plain',
196             'video/mpeg',
197             'video/mp4',
198             'video/quicktime',
199             'video/mpeg'),
200         'file_quota' => 5000000,
201         'user_quota' => 50000000,
202         'monthly_quota' => 15000000,
203         ),
204         'group' =>
205         array('maxaliases' => 3),
206         );
207
208 $config['db'] = &PEAR::getStaticProperty('DB_DataObject','options');
209
210 $config['db'] =
211   array('database' => 'YOU HAVE TO SET THIS IN config.php',
212         'schema_location' => INSTALLDIR . '/classes',
213         'class_location' => INSTALLDIR . '/classes',
214         'require_prefix' => 'classes/',
215         'class_prefix' => '',
216         'mirror' => null,
217         'utf8' => true,
218         'db_driver' => 'DB', # XXX: JanRain libs only work with DB
219         'quote_identifiers' => false,
220         'type' => 'mysql' );
221
222 if (function_exists('date_default_timezone_set')) {
223     /* Work internally in UTC */
224     date_default_timezone_set('UTC');
225 }
226
227 // From most general to most specific:
228 // server-wide, then vhost-wide, then for a path,
229 // finally for a dir (usually only need one of the last two).
230
231 $_config_files = array('/etc/laconica/laconica.php',
232                   '/etc/laconica/'.$_server.'.php');
233
234 if (strlen($_path) > 0) {
235     $_config_files[] = '/etc/laconica/'.$_server.'_'.$_path.'.php';
236 }
237
238 $_config_files[] = INSTALLDIR.'/config.php';
239
240 $_have_a_config = false;
241
242 foreach ($_config_files as $_config_file) {
243     if (@file_exists($_config_file)) {
244         include_once($_config_file);
245         $_have_a_config = true;
246     }
247 }
248
249 function _have_config()
250 {
251     global $_have_a_config;
252     return $_have_a_config;
253 }
254
255 // XXX: Throw a conniption if database not installed
256
257 // Fixup for laconica.ini
258
259 $_db_name = substr($config['db']['database'], strrpos($config['db']['database'], '/') + 1);
260
261 if ($_db_name != 'laconica' && !array_key_exists('ini_'.$_db_name, $config['db'])) {
262     $config['db']['ini_'.$_db_name] = INSTALLDIR.'/classes/laconica.ini';
263 }
264
265 // XXX: how many of these could be auto-loaded on use?
266
267 require_once 'Validate.php';
268 require_once 'markdown.php';
269
270 require_once INSTALLDIR.'/lib/util.php';
271 require_once INSTALLDIR.'/lib/action.php';
272 require_once INSTALLDIR.'/lib/theme.php';
273 require_once INSTALLDIR.'/lib/mail.php';
274 require_once INSTALLDIR.'/lib/subs.php';
275 require_once INSTALLDIR.'/lib/Shorturl_api.php';
276 require_once INSTALLDIR.'/lib/twitter.php';
277
278 require_once INSTALLDIR.'/lib/clientexception.php';
279 require_once INSTALLDIR.'/lib/serverexception.php';
280
281 // XXX: other formats here
282
283 define('NICKNAME_FMT', VALIDATE_NUM.VALIDATE_ALPHA_LOWER);
284
285 function __autoload($class)
286 {
287     if ($class == 'OAuthRequest') {
288         require_once('OAuth.php');
289     } else if (file_exists(INSTALLDIR.'/classes/' . $class . '.php')) {
290         require_once(INSTALLDIR.'/classes/' . $class . '.php');
291     } else if (file_exists(INSTALLDIR.'/lib/' . strtolower($class) . '.php')) {
292         require_once(INSTALLDIR.'/lib/' . strtolower($class) . '.php');
293     } else if (mb_substr($class, -6) == 'Action' &&
294                file_exists(INSTALLDIR.'/actions/' . strtolower(mb_substr($class, 0, -6)) . '.php')) {
295         require_once(INSTALLDIR.'/actions/' . strtolower(mb_substr($class, 0, -6)) . '.php');
296     }
297 }
298
299 // Give plugins a chance to initialize in a fully-prepared environment
300
301 Event::handle('InitializePlugin');