]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - lib/common.php
Make WebChannel and AjaxWebChannel work
[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.0');
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 // try to figure out where we are
54
55 $_server = array_key_exists('SERVER_NAME', $_SERVER) ?
56   strtolower($_SERVER['SERVER_NAME']) :
57   null;
58 $_path = array_key_exists('SCRIPT_NAME', $_SERVER) ?
59   substr($_SERVER['SCRIPT_NAME'], 1, strrpos($_SERVER['SCRIPT_NAME'], '/') - 1) :
60   null;
61
62 // default configuration, overwritten in config.php
63
64 $config =
65   array('site' =>
66         array('name' => 'Just another Laconica microblog',
67               'server' => $_server,
68               'theme' => 'default',
69               'path' => $_path,
70               'logfile' => null,
71               'fancy' => false,
72               'locale_path' => INSTALLDIR.'/locale',
73               'language' => 'en_US',
74               'languages' => get_all_languages(),
75               'email' =>
76               array_key_exists('SERVER_ADMIN', $_SERVER) ? $_SERVER['SERVER_ADMIN'] : null,
77               'broughtby' => null,
78               'timezone' => 'UTC',
79               'broughtbyurl' => null,
80               'closed' => false,
81               'inviteonly' => false,
82               'private' => false),
83         'syslog' =>
84         array('appname' => 'laconica', # for syslog
85               'priority' => 'debug'), # XXX: currently ignored
86         'queue' =>
87         array('enabled' => false),
88         'license' =>
89         array('url' => 'http://creativecommons.org/licenses/by/3.0/',
90               'title' => 'Creative Commons Attribution 3.0',
91               'image' => 'http://i.creativecommons.org/l/by/3.0/80x15.png'),
92         'mail' =>
93         array('backend' => 'mail',
94               'params' => null),
95         'nickname' =>
96         array('blacklist' => array(),
97               'featured' => array()),
98         'profile' =>
99         array('banned' => array()),
100         'avatar' =>
101         array('server' => null),
102         'public' =>
103         array('localonly' => true,
104               'blacklist' => array()),
105         'theme' =>
106         array('server' => null),
107         'throttle' =>
108         array('enabled' => false, // whether to throttle edits; false by default
109               'count' => 20, // number of allowed messages in timespan
110               'timespan' => 600), // timespan for throttling
111         'xmpp' =>
112         array('enabled' => false,
113               'server' => 'INVALID SERVER',
114               'port' => 5222,
115               'user' => 'update',
116               'encryption' => true,
117               'resource' => 'uniquename',
118               'password' => 'blahblahblah',
119               'host' => null, # only set if != server
120               'debug' => false, # print extra debug info
121               'public' => array()), # JIDs of users who want to receive the public stream
122         'sphinx' =>
123         array('enabled' => false,
124               'server' => 'localhost',
125               'port' => 3312),
126         'tag' =>
127         array('dropoff' => 864000.0),
128         'popular' =>
129         array('dropoff' => 864000.0),
130         'daemon' =>
131         array('piddir' => '/var/run',
132               'user' => false,
133               'group' => false),
134         'integration' =>
135         array('source' => 'Laconica'), # source attribute for Twitter
136         'memcached' =>
137         array('enabled' => false,
138               'server' => 'localhost',
139               'port' => 11211),
140         'inboxes' =>
141         array('enabled' => true), # on by default for new sites
142         );
143
144 $config['db'] = &PEAR::getStaticProperty('DB_DataObject','options');
145
146 $config['db'] =
147   array('database' => 'YOU HAVE TO SET THIS IN config.php',
148         'schema_location' => INSTALLDIR . '/classes',
149         'class_location' => INSTALLDIR . '/classes',
150         'require_prefix' => 'classes/',
151         'class_prefix' => '',
152         'mirror' => null,
153         'db_driver' => 'DB', # XXX: JanRain libs only work with DB
154         'quote_identifiers' => false,
155         'type' => 'mysql' );
156
157 if (function_exists('date_default_timezone_set')) {
158     /* Work internally in UTC */
159     date_default_timezone_set('UTC');
160 }
161
162 // From most general to most specific:
163 // server-wide, then vhost-wide, then for a path,
164 // finally for a dir (usually only need one of the last two).
165
166 $_config_files = array('/etc/laconica/laconica.php',
167                   '/etc/laconica/'.$_server.'.php');
168
169 if (strlen($_path) > 0) {
170     $_config_files[] = '/etc/laconica/'.$_server.'_'.$_path.'.php';
171 }
172
173 $_config_files[] = INSTALLDIR.'/config.php';
174
175 foreach ($_config_files as $_config_file) {
176     if (file_exists($_config_file)) {
177         include_once($_config_file);
178     }
179 }
180
181 require_once('Validate.php');
182 require_once('markdown.php');
183
184 require_once(INSTALLDIR.'/lib/util.php');
185 require_once(INSTALLDIR.'/lib/action.php');
186 require_once(INSTALLDIR.'/lib/theme.php');
187 require_once(INSTALLDIR.'/lib/mail.php');
188 require_once(INSTALLDIR.'/lib/subs.php');
189 require_once(INSTALLDIR.'/lib/Shorturl_api.php');
190 require_once(INSTALLDIR.'/lib/twitter.php');
191
192 // XXX: other formats here
193
194 define('NICKNAME_FMT', VALIDATE_NUM.VALIDATE_ALPHA_LOWER);
195
196 function __autoload($class)
197 {
198     if ($class == 'OAuthRequest') {
199         require_once('OAuth.php');
200     } else if (file_exists(INSTALLDIR.'/classes/' . $class . '.php')) {
201         require_once(INSTALLDIR.'/classes/' . $class . '.php');
202     } else if (file_exists(INSTALLDIR.'/lib/' . strtolower($class) . '.php')) {
203         require_once(INSTALLDIR.'/lib/' . strtolower($class) . '.php');
204     }
205 }