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