]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - lib/common.php
dca1ae94f641d1a7d059398b68f5c3e54cce85af
[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.4.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 # global configuration object
30
31 require_once('PEAR.php');
32 require_once('DB/DataObject.php');
33 require_once('DB/DataObject/Cast.php'); # for dates
34
35 // default configuration, overwritten in config.php
36
37 $config =
38   array('site' =>
39                 array('name' => 'Just another Laconica microblog',
40                           'server' => 'localhost',
41                           'theme' => 'default',
42                           'path' => '/',
43                           'logfile' => NULL,
44                           'fancy' => false,
45                       'email' => 
46                       array_key_exists('SERVER_ADMIN', $_SERVER) ? $_SERVER['SERVER_ADMIN'] : NULL,
47                           'broughtby' => NULL,
48                           'broughtbyurl' => NULL),
49                 'syslog' =>
50                 array('appname' => 'laconica', # for syslog
51                           'priority' => 'debug'), # XXX: currently ignored
52                 'queue' =>
53                 array('enabled' => false),
54                 'license' =>
55                 array('url' => 'http://creativecommons.org/licenses/by/3.0/',
56                           'title' => 'Creative Commons Attribution 3.0',
57                           'image' => 'http://i.creativecommons.org/l/by/3.0/88x31.png'),
58                 'mail' =>
59                 array('backend' => 'mail',
60                           'params' => NULL),
61                 'nickname' =>
62                 array('blacklist' => array()),
63                 'avatar' =>
64                 array('server' => NULL),
65                 'theme' =>
66                 array('server' => NULL),
67                 'xmpp' =>
68                 array('enabled' => false,
69                           'server' => 'INVALID SERVER',
70                           'port' => 5222,
71                           'user' => 'update',
72                           'resource' => 'uniquename',
73                           'password' => 'blahblahblah',
74                           'host' => NULL, # only set if != server
75                           'debug' => false), # print extra debug info
76                 );
77
78 $config['db'] = &PEAR::getStaticProperty('DB_DataObject','options');
79
80 $config['db'] =
81   array('database' => 'YOU HAVE TO SET THIS IN config.php',
82             'schema_location' => INSTALLDIR . '/classes',
83                 'class_location' => INSTALLDIR . '/classes',
84                 'require_prefix' => 'classes/',
85                 'class_prefix' => '',
86         'db_driver' => 'DB', # XXX: JanRain libs only work with DB
87                 'quote_identifiers' => false);
88
89 require_once(INSTALLDIR.'/config.php');
90 require_once(INSTALLDIR.'/lib/util.php');
91 require_once(INSTALLDIR.'/lib/action.php');
92 require_once(INSTALLDIR.'/lib/theme.php');
93 require_once(INSTALLDIR.'/lib/mail.php');
94
95 require_once(INSTALLDIR.'/classes/Avatar.php');
96 require_once(INSTALLDIR.'/classes/Notice.php');
97 require_once(INSTALLDIR.'/classes/Profile.php');
98 require_once(INSTALLDIR.'/classes/Remote_profile.php');
99 require_once(INSTALLDIR.'/classes/Subscription.php');
100 require_once(INSTALLDIR.'/classes/User.php');
101 require_once(INSTALLDIR.'/classes/Confirm_address.php');
102 require_once(INSTALLDIR.'/classes/Remember_me.php');
103 require_once(INSTALLDIR.'/classes/Queue_item.php');
104 require_once(INSTALLDIR.'/classes/Reply.php');
105
106 require_once('markdown.php');