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