]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - lib/common.php
allow doc and api calls from private
[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.3');
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                 'syslog' =>
74                 array('appname' => 'laconica', # for syslog
75                           'priority' => 'debug'), # XXX: currently ignored
76                 'queue' =>
77                 array('enabled' => false),
78                 'license' =>
79                 array('url' => 'http://creativecommons.org/licenses/by/3.0/',
80                           'title' => 'Creative Commons Attribution 3.0',
81                           'image' => 'http://i.creativecommons.org/l/by/3.0/88x31.png'),
82                 'mail' =>
83                 array('backend' => 'mail',
84                           'params' => NULL),
85                 'nickname' =>
86                 array('blacklist' => array(),
87                           'featured' => array()),
88                 'profile' =>
89                 array('banned' => array()),
90                 'avatar' =>
91                 array('server' => NULL),
92                 'public' =>
93                 array('localonly' => true,
94                           'blacklist' => array()),
95                 'theme' =>
96                 array('server' => NULL),
97                 'throttle' =>
98         array('enabled' => false, // whether to throttle edits; false by default
99               'count' => 20, // number of allowed messages in timespan
100               'timespan' => 600), // timespan for throttling
101                 'xmpp' =>
102                 array('enabled' => false,
103                           'server' => 'INVALID SERVER',
104                           'port' => 5222,
105                           'user' => 'update',
106                           'encryption' => true,
107                           'resource' => 'uniquename',
108                           'password' => 'blahblahblah',
109                           'host' => NULL, # only set if != server
110                           'debug' => false, # print extra debug info
111                           'public' => array()), # JIDs of users who want to receive the public stream
112         'sphinx' =>
113         array('enabled' => false,
114               'server' => 'localhost',
115               'port' => 3312),
116                 'tag' =>
117                 array('dropoff' => 864000.0),
118                 'daemon' =>
119                 array('piddir' => '/var/run',
120                           'user' => false,
121                           'group' => false),
122                 'integration' =>
123                 array('source' => 'Laconica'), # source attribute for Twitter
124                 'memcached' =>
125                 array('enabled' => false,
126                           'server' => 'localhost',
127                           'port' => 11211),
128                 'inboxes' =>
129                 array('enabled' => true), # on by default for new sites
130                 );
131
132 $config['db'] = &PEAR::getStaticProperty('DB_DataObject','options');
133
134 $config['db'] =
135   array('database' => 'YOU HAVE TO SET THIS IN config.php',
136             'schema_location' => INSTALLDIR . '/classes',
137                 'class_location' => INSTALLDIR . '/classes',
138                 'require_prefix' => 'classes/',
139                 'class_prefix' => '',
140                 'mirror' => NULL,
141         'db_driver' => 'DB', # XXX: JanRain libs only work with DB
142                 'quote_identifiers' => false,
143                 'type' => 'mysql' );
144
145 if (function_exists('date_default_timezone_set')) {
146         /* Work internally in UTC */
147         date_default_timezone_set('UTC');
148 }
149
150 require_once(INSTALLDIR.'/config.php');
151
152 require_once('Validate.php');
153 require_once('markdown.php');
154
155 require_once(INSTALLDIR.'/lib/util.php');
156 require_once(INSTALLDIR.'/lib/action.php');
157 require_once(INSTALLDIR.'/lib/theme.php');
158 require_once(INSTALLDIR.'/lib/mail.php');
159 require_once(INSTALLDIR.'/lib/subs.php');
160 require_once(INSTALLDIR.'/lib/Shorturl_api.php');
161 require_once(INSTALLDIR.'/lib/twitter.php');
162
163 function __autoload($class) {
164         if ($class == 'OAuthRequest') {
165                 require_once('OAuth.php');
166         } else if (file_exists(INSTALLDIR.'/classes/' . $class . '.php')) {
167         require_once(INSTALLDIR.'/classes/' . $class . '.php');
168     }
169 }