]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - lib/common.php
replace all tabs with four spaces
[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.6.4.1');
23
24 define('AVATAR_PROFILE_SIZE', 96);
25 define('AVATAR_STREAM_SIZE', 48);
26 define('AVATAR_MINI_SIZE', 24);
27 define('MAX_AVATAR_SIZE', 256 * 1024);
28
29 define('NOTICES_PER_PAGE', 20);
30 define('PROFILES_PER_PAGE', 20);
31
32 define('FOREIGN_NOTICE_SEND', 1);
33 define('FOREIGN_NOTICE_RECV', 2);
34 define('FOREIGN_NOTICE_SEND_REPLY', 4);
35
36 define('FOREIGN_FRIEND_SEND', 1);
37 define('FOREIGN_FRIEND_RECV', 2);
38
39 define_syslog_variables();
40
41 # append our extlib dir as the last-resort place to find libs
42
43 set_include_path(get_include_path() . PATH_SEPARATOR . INSTALLDIR . '/extlib/');
44
45 # global configuration object
46
47 require_once('PEAR.php');
48 require_once('DB/DataObject.php');
49 require_once('DB/DataObject/Cast.php'); # for dates
50
51 require_once(INSTALLDIR.'/lib/language.php');
52
53 // default configuration, overwritten in config.php
54
55 $config =
56   array('site' =>
57         array('name' => 'Just another Laconica microblog',
58               'server' => 'localhost',
59               'theme' => 'default',
60               'path' => '/',
61               'logfile' => NULL,
62               'fancy' => false,
63               'locale_path' => INSTALLDIR.'/locale',
64               'language' => 'en_US',
65               'languages' => get_all_languages(),
66               'email' =>
67               array_key_exists('SERVER_ADMIN', $_SERVER) ? $_SERVER['SERVER_ADMIN'] : NULL,
68               'broughtby' => NULL,
69               'timezone' => 'UTC',
70               'broughtbyurl' => NULL,
71               'closed' => false,
72               'inviteonly' => false,
73               'private' => false),
74         'syslog' =>
75         array('appname' => 'laconica', # for syslog
76               'priority' => 'debug'), # XXX: currently ignored
77         'queue' =>
78         array('enabled' => false),
79         'license' =>
80         array('url' => 'http://creativecommons.org/licenses/by/3.0/',
81               'title' => 'Creative Commons Attribution 3.0',
82               'image' => 'http://i.creativecommons.org/l/by/3.0/88x31.png'),
83         'mail' =>
84         array('backend' => 'mail',
85               'params' => NULL),
86         'nickname' =>
87         array('blacklist' => array(),
88               'featured' => array()),
89         'profile' =>
90         array('banned' => array()),
91         'avatar' =>
92         array('server' => NULL),
93         'public' =>
94         array('localonly' => true,
95               'blacklist' => array()),
96         'theme' =>
97         array('server' => NULL),
98         'throttle' =>
99         array('enabled' => false, // whether to throttle edits; false by default
100               'count' => 20, // number of allowed messages in timespan
101               'timespan' => 600), // timespan for throttling
102         'xmpp' =>
103         array('enabled' => false,
104               'server' => 'INVALID SERVER',
105               'port' => 5222,
106               'user' => 'update',
107               'encryption' => true,
108               'resource' => 'uniquename',
109               'password' => 'blahblahblah',
110               'host' => NULL, # only set if != server
111               'debug' => false, # print extra debug info
112               'public' => array()), # JIDs of users who want to receive the public stream
113         'sphinx' =>
114         array('enabled' => false,
115               'server' => 'localhost',
116               'port' => 3312),
117         'tag' =>
118         array('dropoff' => 864000.0),
119         'popular' =>
120         array('dropoff' => 864000.0),
121         'daemon' =>
122         array('piddir' => '/var/run',
123               'user' => false,
124               'group' => false),
125         'integration' =>
126         array('source' => 'Laconica'), # source attribute for Twitter
127         'memcached' =>
128         array('enabled' => false,
129               'server' => 'localhost',
130               'port' => 11211),
131         'inboxes' =>
132         array('enabled' => true), # on by default for new sites
133         );
134
135 $config['db'] = &PEAR::getStaticProperty('DB_DataObject','options');
136
137 $config['db'] =
138   array('database' => 'YOU HAVE TO SET THIS IN config.php',
139         'schema_location' => INSTALLDIR . '/classes',
140         'class_location' => INSTALLDIR . '/classes',
141         'require_prefix' => 'classes/',
142         'class_prefix' => '',
143         'mirror' => NULL,
144         'db_driver' => 'DB', # XXX: JanRain libs only work with DB
145         'quote_identifiers' => false,
146         'type' => 'mysql' );
147
148 if (function_exists('date_default_timezone_set')) {
149     /* Work internally in UTC */
150     date_default_timezone_set('UTC');
151 }
152
153 require_once(INSTALLDIR.'/config.php');
154
155 require_once('Validate.php');
156 require_once('markdown.php');
157
158 require_once(INSTALLDIR.'/lib/util.php');
159 require_once(INSTALLDIR.'/lib/action.php');
160 require_once(INSTALLDIR.'/lib/theme.php');
161 require_once(INSTALLDIR.'/lib/mail.php');
162 require_once(INSTALLDIR.'/lib/subs.php');
163 require_once(INSTALLDIR.'/lib/Shorturl_api.php');
164 require_once(INSTALLDIR.'/lib/twitter.php');
165
166 function __autoload($class) {
167     if ($class == 'OAuthRequest') {
168         require_once('OAuth.php');
169     } else if (file_exists(INSTALLDIR.'/classes/' . $class . '.php')) {
170         require_once(INSTALLDIR.'/classes/' . $class . '.php');
171     }
172 }