]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - lib/statusnet.php
Use addPlugin! (esp. XMPP folks should do this)
[quix0rs-gnu-social.git] / lib / statusnet.php
1 <?php
2 /**
3  * StatusNet - the distributed open-source microblogging tool
4  * Copyright (C) 2009-2010 StatusNet, 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
21 if (!defined('STATUSNET') && !defined('LACONICA')) {
22     exit(1);
23 }
24
25 global $config, $_server, $_path;
26
27 /**
28  * Global configuration setup and management.
29  */
30 class StatusNet
31 {
32     protected static $have_config;
33     protected static $is_api;
34     protected static $is_ajax;
35     protected static $plugins = array();
36
37     /**
38      * Configure and instantiate a plugin into the current configuration.
39      * Class definitions will be loaded from standard paths if necessary.
40      * Note that initialization events won't be fired until later.
41      *
42      * @param string $name class name & plugin file/subdir name
43      * @param array $attrs key/value pairs of public attributes to set on plugin instance
44      *
45      * @throws ServerException if plugin can't be found
46      */
47     public static function addPlugin($name, $attrs = null)
48     {
49         $name = ucfirst($name);
50         $pluginclass = "{$name}Plugin";
51
52         if (!class_exists($pluginclass)) {
53
54             $files = array("local/plugins/{$pluginclass}.php",
55                            "local/plugins/{$name}/{$pluginclass}.php",
56                            "local/{$pluginclass}.php",
57                            "local/{$name}/{$pluginclass}.php",
58                            "plugins/{$pluginclass}.php",
59                            "plugins/{$name}/{$pluginclass}.php");
60
61             foreach ($files as $file) {
62                 $fullpath = INSTALLDIR.'/'.$file;
63                 if (@file_exists($fullpath)) {
64                     include_once($fullpath);
65                     break;
66                 }
67             }
68             if (!class_exists($pluginclass)) {
69                 throw new ServerException("Plugin $name not found.", 500);
70             }
71         }
72
73         $inst = new $pluginclass();
74         if (!empty($attrs)) {
75             foreach ($attrs as $aname => $avalue) {
76                 $inst->$aname = $avalue;
77             }
78         }
79
80         // Record activated plugins for later display/config dump
81         self::$plugins[] = array($name, $attrs);
82
83         return true;
84     }
85
86     /**
87      * Get a list of activated plugins in this process.
88      * @return array of (string $name, array $args) pairs
89      */
90     public static function getActivePlugins()
91     {
92         return self::$plugins;
93     }
94
95     /**
96      * Initialize, or re-initialize, StatusNet global configuration
97      * and plugins.
98      *
99      * If switching site configurations during script execution, be
100      * careful when working with leftover objects -- global settings
101      * affect many things and they may not behave as you expected.
102      *
103      * @param $server optional web server hostname for picking config
104      * @param $path optional URL path for picking config
105      * @param $conffile optional configuration file path
106      *
107      * @throws NoConfigException if config file can't be found
108      */
109     public static function init($server=null, $path=null, $conffile=null)
110     {
111         Router::clear();
112
113         self::initDefaults($server, $path);
114         self::loadConfigFile($conffile);
115
116         $sprofile = common_config('site', 'profile');
117         if (!empty($sprofile)) {
118             self::loadSiteProfile($sprofile);
119         }
120         // Load settings from database; note we need autoload for this
121         Config::loadSettings();
122
123         self::initPlugins();
124     }
125
126     /**
127      * Get identifier of the currently active site configuration
128      * @return string
129      */
130     public static function currentSite()
131     {
132         return common_config('site', 'nickname');
133     }
134
135     /**
136      * Change site configuration to site specified by nickname,
137      * if set up via Status_network. If not, sites other than
138      * the current will fail horribly.
139      *
140      * May throw exception or trigger a fatal error if the given
141      * site is missing or configured incorrectly.
142      *
143      * @param string $nickname
144      */
145     public static function switchSite($nickname)
146     {
147         if ($nickname == StatusNet::currentSite()) {
148             return true;
149         }
150
151         $sn = Status_network::getKV('nickname', $nickname);
152         if (empty($sn)) {
153             return false;
154             throw new Exception("No such site nickname '$nickname'");
155         }
156
157         $server = $sn->getServerName();
158         StatusNet::init($server);
159     }
160
161     /**
162      * Pull all local sites from status_network table.
163      *
164      * Behavior undefined if site is not configured via Status_network.
165      *
166      * @return array of nicknames
167      */
168     public static function findAllSites()
169     {
170         $sites = array();
171         $sn = new Status_network();
172         $sn->find();
173         while ($sn->fetch()) {
174             $sites[] = $sn->nickname;
175         }
176         return $sites;
177     }
178
179     /**
180      * Fire initialization events for all instantiated plugins.
181      */
182     protected static function initPlugins()
183     {
184         // Load core plugins
185         foreach (common_config('plugins', 'core') as $name => $params) {
186             call_user_func('addPlugin', $name, $params);
187         }
188
189         // Load default plugins
190         foreach (common_config('plugins', 'default') as $name => $params) {
191             $key = 'disable-' . $name;
192             if (common_config('plugins', $key)) {
193                 continue;
194             }
195
196             if (is_null($params)) {
197                 addPlugin($name);
198             } else if (is_array($params)) {
199                 if (count($params) == 0) {
200                     addPlugin($name);
201                 } else {
202                     $keys = array_keys($params);
203                     if (is_string($keys[0])) {
204                         addPlugin($name, $params);
205                     } else {
206                         foreach ($params as $paramset) {
207                             addPlugin($name, $paramset);
208                         }
209                     }
210                 }
211             }
212         }
213
214         // XXX: if plugins should check the schema at runtime, do that here.
215         if (common_config('db', 'schemacheck') == 'runtime') {
216             Event::handle('CheckSchema');
217         }
218
219         // Give plugins a chance to initialize in a fully-prepared environment
220         Event::handle('InitializePlugin');
221     }
222
223     /**
224      * Quick-check if configuration has been established.
225      * Useful for functions which may get used partway through
226      * initialization to back off from fancier things.
227      *
228      * @return bool
229      */
230     public static function haveConfig()
231     {
232         return self::$have_config;
233     }
234
235     public static function isApi()
236     {
237         return self::$is_api;
238     }
239
240     public static function setApi($mode)
241     {
242         self::$is_api = $mode;
243     }
244
245     public static function isAjax()
246     {
247         return self::$is_ajax;
248     }
249
250     public static function setAjax($mode)
251     {
252         self::$is_ajax = $mode;
253     }
254
255     /**
256      * Build default configuration array
257      * @return array
258      */
259     protected static function defaultConfig()
260     {
261         global $_server, $_path;
262         require(INSTALLDIR.'/lib/default.php');
263         return $default;
264     }
265
266     /**
267      * Establish default configuration based on given or default server and path
268      * Sets global $_server, $_path, and $config
269      */
270     public static function initDefaults($server, $path)
271     {
272         global $_server, $_path, $config, $_PEAR;
273
274         Event::clearHandlers();
275         self::$plugins = array();
276
277         // try to figure out where we are. $server and $path
278         // can be set by including module, else we guess based
279         // on HTTP info.
280
281         if (isset($server)) {
282             $_server = $server;
283         } else {
284             $_server = array_key_exists('SERVER_NAME', $_SERVER) ?
285               strtolower($_SERVER['SERVER_NAME']) :
286             null;
287         }
288
289         if (isset($path)) {
290             $_path = $path;
291         } else {
292             $_path = (array_key_exists('SERVER_NAME', $_SERVER) && array_key_exists('SCRIPT_NAME', $_SERVER)) ?
293               self::_sn_to_path($_SERVER['SCRIPT_NAME']) :
294             null;
295         }
296
297         // Set config values initially to default values
298         $default = self::defaultConfig();
299         $config = $default;
300
301         // default configuration, overwritten in config.php
302         // Keep DB_DataObject's db config synced to ours...
303
304         $config['db'] = &$_PEAR->getStaticProperty('DB_DataObject','options');
305
306         $config['db'] = $default['db'];
307
308         if (function_exists('date_default_timezone_set')) {
309             /* Work internally in UTC */
310             date_default_timezone_set('UTC');
311         }
312     }
313
314     public static function loadSiteProfile($name)
315     {
316         global $config;
317         $settings = SiteProfile::getSettings($name);
318         $config = array_merge($config, $settings);
319     }
320
321     protected static function _sn_to_path($sn)
322     {
323         $past_root = substr($sn, 1);
324         $last_slash = strrpos($past_root, '/');
325         if ($last_slash > 0) {
326             $p = substr($past_root, 0, $last_slash);
327         } else {
328             $p = '';
329         }
330         return $p;
331     }
332
333     /**
334      * Load the default or specified configuration file.
335      * Modifies global $config and may establish plugins.
336      *
337      * @throws NoConfigException
338      */
339     protected static function loadConfigFile($conffile=null)
340     {
341         global $_server, $_path, $config;
342
343         // From most general to most specific:
344         // server-wide, then vhost-wide, then for a path,
345         // finally for a dir (usually only need one of the last two).
346
347         if (isset($conffile)) {
348             $config_files = array($conffile);
349         } else {
350             $config_files = array('/etc/statusnet/statusnet.php',
351                                   '/etc/statusnet/laconica.php',
352                                   '/etc/laconica/laconica.php',
353                                   '/etc/statusnet/'.$_server.'.php',
354                                   '/etc/laconica/'.$_server.'.php');
355
356             if (strlen($_path) > 0) {
357                 $config_files[] = '/etc/statusnet/'.$_server.'_'.$_path.'.php';
358                 $config_files[] = '/etc/laconica/'.$_server.'_'.$_path.'.php';
359             }
360
361             $config_files[] = INSTALLDIR.'/config.php';
362         }
363
364         self::$have_config = false;
365
366         foreach ($config_files as $_config_file) {
367             if (@file_exists($_config_file)) {
368                 // Ignore 0-byte config files
369                 if (filesize($_config_file) > 0) {
370                     common_log(LOG_INFO, "Including config file: " . $_config_file);
371                     include($_config_file);
372                     self::$have_config = true;
373                 }
374             }
375         }
376
377         if (!self::$have_config) {
378             throw new NoConfigException("No configuration file found.",
379                                         $config_files);
380         }
381
382         // Check for database server; must exist!
383
384         if (empty($config['db']['database'])) {
385             throw new ServerException("No database server for this site.");
386         }
387     }
388
389     /**
390      * Are we running from the web with HTTPS?
391      *
392      * @return boolean true if we're running with HTTPS; else false
393      */
394
395     static function isHTTPS()
396     {
397         // There are some exceptions to this; add them here!
398         if(empty($_SERVER['HTTPS'])) {
399             return false;
400         } else {
401             return $_SERVER['HTTPS'] !== 'off';
402         }
403     }
404 }
405
406 class NoConfigException extends Exception
407 {
408     public $configFiles;
409
410     function __construct($msg, $configFiles) {
411         parent::__construct($msg);
412         $this->configFiles = $configFiles;
413     }
414 }