]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - lib/common.php
Added the new pinghandler to the stopdaemons script and improved the behaviour and...
[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.7.1');
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               'logdebug' => false,
77               'fancy' => false,
78               'locale_path' => INSTALLDIR.'/locale',
79               'language' => 'en_US',
80               'languages' => get_all_languages(),
81               'email' =>
82               array_key_exists('SERVER_ADMIN', $_SERVER) ? $_SERVER['SERVER_ADMIN'] : null,
83               'broughtby' => null,
84               'timezone' => 'UTC',
85               'broughtbyurl' => null,
86               'closed' => false,
87               'inviteonly' => false,
88               'private' => false,
89               'dupelimit' => 60), # default for same person saying the same thing
90         'syslog' =>
91         array('appname' => 'laconica', # for syslog
92               'priority' => 'debug'), # XXX: currently ignored
93         'queue' =>
94         array('enabled' => false),
95         'license' =>
96         array('url' => 'http://creativecommons.org/licenses/by/3.0/',
97               'title' => 'Creative Commons Attribution 3.0',
98               'image' => 'http://i.creativecommons.org/l/by/3.0/80x15.png'),
99         'mail' =>
100         array('backend' => 'mail',
101               'params' => null),
102         'nickname' =>
103         array('blacklist' => array(),
104               'featured' => array()),
105         'profile' =>
106         array('banned' => array()),
107         'avatar' =>
108         array('server' => null),
109         'public' =>
110         array('localonly' => true,
111               'blacklist' => array(),
112               'autosource' => array()),
113         'theme' =>
114         array('server' => null),
115         'throttle' =>
116         array('enabled' => false, // whether to throttle edits; false by default
117               'count' => 20, // number of allowed messages in timespan
118               'timespan' => 600), // timespan for throttling
119         'xmpp' =>
120         array('enabled' => false,
121               'server' => 'INVALID SERVER',
122               'port' => 5222,
123               'user' => 'update',
124               'encryption' => true,
125               'resource' => 'uniquename',
126               'password' => 'blahblahblah',
127               'host' => null, # only set if != server
128               'debug' => false, # print extra debug info
129               'public' => array()), # JIDs of users who want to receive the public stream
130         'sphinx' =>
131         array('enabled' => false,
132               'server' => 'localhost',
133               'port' => 3312),
134         'tag' =>
135         array('dropoff' => 864000.0),
136         'popular' =>
137         array('dropoff' => 864000.0),
138         'daemon' =>
139         array('piddir' => '/var/run',
140               'user' => false,
141               'group' => false),
142         'integration' =>
143         array('source' => 'Laconica'), # source attribute for Twitter
144         'memcached' =>
145         array('enabled' => false,
146               'server' => 'localhost',
147               'port' => 11211),
148                 'ping' =>
149         array('notify' => array()),
150         'inboxes' =>
151         array('enabled' => true), # on by default for new sites
152         );
153
154 $config['db'] = &PEAR::getStaticProperty('DB_DataObject','options');
155
156 $config['db'] =
157   array('database' => 'YOU HAVE TO SET THIS IN config.php',
158         'schema_location' => INSTALLDIR . '/classes',
159         'class_location' => INSTALLDIR . '/classes',
160         'require_prefix' => 'classes/',
161         'class_prefix' => '',
162         'mirror' => null,
163         'db_driver' => 'DB', # XXX: JanRain libs only work with DB
164         'quote_identifiers' => false,
165         'type' => 'mysql' );
166
167 if (function_exists('date_default_timezone_set')) {
168     /* Work internally in UTC */
169     date_default_timezone_set('UTC');
170 }
171
172 // From most general to most specific:
173 // server-wide, then vhost-wide, then for a path,
174 // finally for a dir (usually only need one of the last two).
175
176 $_config_files = array('/etc/laconica/laconica.php',
177                   '/etc/laconica/'.$_server.'.php');
178
179 if (strlen($_path) > 0) {
180     $_config_files[] = '/etc/laconica/'.$_server.'_'.$_path.'.php';
181 }
182
183 $_config_files[] = INSTALLDIR.'/config.php';
184
185 $_have_a_config = false;
186
187 foreach ($_config_files as $_config_file) {
188     if (file_exists($_config_file)) {
189         include_once($_config_file);
190         $_have_a_config = true;
191     }
192 }
193
194 function _have_config()
195 {
196     global $_have_a_config;
197     return $_have_a_config;
198 }
199
200 // XXX: Throw a conniption if database not installed
201
202 // Fixup for laconica.ini
203
204 $_db_name = substr($config['db']['database'], strrpos($config['db']['database'], '/') + 1);
205
206 if ($_db_name != 'laconica' && !array_key_exists('ini_'.$_db_name, $config['db'])) {
207     $config['db']['ini_'.$_db_name] = INSTALLDIR.'/classes/laconica.ini';
208 }
209
210 // XXX: how many of these could be auto-loaded on use?
211
212 require_once('Validate.php');
213 require_once('markdown.php');
214
215 require_once(INSTALLDIR.'/lib/util.php');
216 require_once(INSTALLDIR.'/lib/action.php');
217 require_once(INSTALLDIR.'/lib/theme.php');
218 require_once(INSTALLDIR.'/lib/mail.php');
219 require_once(INSTALLDIR.'/lib/subs.php');
220 require_once(INSTALLDIR.'/lib/Shorturl_api.php');
221 require_once(INSTALLDIR.'/lib/twitter.php');
222
223 require_once(INSTALLDIR.'/lib/clientexception.php');
224 require_once(INSTALLDIR.'/lib/serverexception.php');
225
226 // XXX: other formats here
227
228 define('NICKNAME_FMT', VALIDATE_NUM.VALIDATE_ALPHA_LOWER);
229
230 function __autoload($class)
231 {
232     if ($class == 'OAuthRequest') {
233         require_once('OAuth.php');
234     } else if (file_exists(INSTALLDIR.'/classes/' . $class . '.php')) {
235         require_once(INSTALLDIR.'/classes/' . $class . '.php');
236     } else if (file_exists(INSTALLDIR.'/lib/' . strtolower($class) . '.php')) {
237         require_once(INSTALLDIR.'/lib/' . strtolower($class) . '.php');
238     } else if (mb_substr($class, -6) == 'Action' &&
239                file_exists(INSTALLDIR.'/actions/' . strtolower(mb_substr($class, 0, -6)) . '.php')) {
240         require_once(INSTALLDIR.'/actions/' . strtolower(mb_substr($class, 0, -6)) . '.php');
241     }
242 }
243
244 // Give plugins a chance to initialize in a fully-prepared environment
245
246 Event::handle('InitializePlugin');