X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=lib%2Fframework.php;h=c534bebd04d4d90928b184a950aea8ee2bc7487d;hb=200721a2f45dbfa5463ba32165c7f60e517f0622;hp=e7a1829bc697065d4ad56ea0feb21609fa0934f3;hpb=7af29bf0d28d363ff199e1aea199531d9881bc60;p=quix0rs-gnu-social.git diff --git a/lib/framework.php b/lib/framework.php index e7a1829bc6..c534bebd04 100644 --- a/lib/framework.php +++ b/lib/framework.php @@ -17,15 +17,17 @@ * along with this program. If not, see . */ -if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); } +if (!defined('GNUSOCIAL')) { exit(1); } -define('STATUSNET_BASE_VERSION', '1.0.1'); -define('STATUSNET_LIFECYCLE', ''); // 'dev', 'alpha[0-9]+', 'beta[0-9]+', 'rc[0-9]+', 'release' -define('STATUSNET_VERSION', STATUSNET_BASE_VERSION . STATUSNET_LIFECYCLE); +define('GNUSOCIAL_ENGINE', 'GNU social'); +define('GNUSOCIAL_ENGINE_URL', 'https://www.gnu.org/software/social/'); -define('LACONICA_VERSION', STATUSNET_VERSION); // compatibility +define('GNUSOCIAL_BASE_VERSION', '1.2.0'); +define('GNUSOCIAL_LIFECYCLE', 'dev'); // 'dev', 'alpha[0-9]+', 'beta[0-9]+', 'rc[0-9]+', 'release' -define('STATUSNET_CODENAME', 'Get It Together'); +define('GNUSOCIAL_VERSION', GNUSOCIAL_BASE_VERSION . '-' . GNUSOCIAL_LIFECYCLE); + +define('GNUSOCIAL_CODENAME', 'Only a fixed bug is a good bug.'); define('AVATAR_PROFILE_SIZE', 96); define('AVATAR_STREAM_SIZE', 48); @@ -73,10 +75,17 @@ if (!function_exists('dl')) { // global configuration object -require_once('PEAR.php'); -require_once('PEAR/Exception.php'); -require_once('DB/DataObject.php'); -require_once('DB/DataObject/Cast.php'); # for dates +require_once 'PEAR.php'; +require_once 'PEAR/Exception.php'; +global $_PEAR; +$_PEAR = new PEAR; +$_PEAR->setErrorHandling(PEAR_ERROR_CALLBACK, 'PEAR_ErrorToPEAR_Exception'); + +require_once 'DB.php'; +require_once 'DB/DataObject.php'; +require_once 'DB/DataObject/Cast.php'; # for dates +global $_DB; +$_DB = new DB; require_once(INSTALLDIR.'/lib/language.php'); @@ -86,17 +95,39 @@ require_once(INSTALLDIR.'/lib/language.php'); require_once(INSTALLDIR.'/lib/event.php'); require_once(INSTALLDIR.'/lib/plugin.php'); -function addPlugin($name, $attrs = null) +function addPlugin($name, array $attrs=array()) { - return StatusNet::addPlugin($name, $attrs); + return GNUsocial::addPlugin($name, $attrs); } function _have_config() { - return StatusNet::haveConfig(); + return GNUsocial::haveConfig(); } -function __autoload($cls) +function common_get_temp_dir() +{ + // Try to get it from php.ini first + $temp_path = trim(ini_get('upload_tmp_dir')); + + // Is it empty? + if (strlen($temp_path) == 0) { + // Then try sys_get_temp_dir() + $temp_path = trim(sys_get_temp_dir()); + + // Still empty? + if (strlen($temp_path) == 0) { + // Then set it to /tmp (ugly) + // @TODO Hard-coded non-Windows stuff! + $temp_path = '/tmp'; + } + } + + // Return found path + return $temp_path; +} + +function GNUsocial_class_autoload($cls) { if (file_exists(INSTALLDIR.'/classes/' . $cls . '.php')) { require_once(INSTALLDIR.'/classes/' . $cls . '.php'); @@ -105,43 +136,35 @@ function __autoload($cls) } else if (mb_substr($cls, -6) == 'Action' && file_exists(INSTALLDIR.'/actions/' . strtolower(mb_substr($cls, 0, -6)) . '.php')) { require_once(INSTALLDIR.'/actions/' . strtolower(mb_substr($cls, 0, -6)) . '.php'); - } else if ($cls == 'OAuthRequest') { + } else if ($cls === 'OAuthRequest' || $cls === 'OAuthException') { require_once('OAuth.php'); } else { Event::handle('Autoload', array(&$cls)); } } -// XXX: how many of these could be auto-loaded on use? -// XXX: note that these files should not use config options -// at compile time since DB config options are not yet loaded. - -require_once 'Validate.php'; -require_once 'markdown.php'; -// XXX: other formats here +// Autoload function queue, starting with our own discovery method +spl_autoload_register('GNUsocial_class_autoload'); /** - * Avoid the NICKNAME_FMT constant; use the Nickname class instead. + * Extlibs with namespaces (or directly in extlib/) + * This covers libraries such as: Validate and \Michelf\Markdown * - * Nickname::DISPLAY_FMT is more suitable for inserting into regexes; - * note that it includes the [] and repeating bits, so should be wrapped - * directly in a capture paren usually. - * - * For validation, use Nickname::normalize(), Nickname::isValid() etc. - * - * @deprecated - */ -define('NICKNAME_FMT', VALIDATE_NUM.VALIDATE_ALPHA_LOWER); + * The namespaced based structure is called "PSR-0 autoloading standard": + * \\(\)* + * and is available here: http://www.php-fig.org/psr/psr-0/ +*/ +spl_autoload_register(function($class){ + $file = INSTALLDIR.'/extlib/'.preg_replace('{\\\\|_(?!.*\\\\)}', DIRECTORY_SEPARATOR, ltrim($class, '\\')).'.php'; + if (file_exists($file)) { + require_once $file; + } +}); require_once INSTALLDIR.'/lib/util.php'; require_once INSTALLDIR.'/lib/action.php'; require_once INSTALLDIR.'/lib/mail.php'; -require_once INSTALLDIR.'/lib/subs.php'; - -require_once INSTALLDIR.'/lib/clientexception.php'; -require_once INSTALLDIR.'/lib/serverexception.php'; - //set PEAR error handling to use regular PHP exceptions function PEAR_ErrorToPEAR_Exception($err) @@ -170,10 +193,7 @@ function PEAR_ErrorToPEAR_Exception($err) } if ($err->getCode()) { - throw new PEAR_Exception($msg, $err, $err->getCode()); - } else { - throw new PEAR_Exception($msg, $err); + throw new PEAR_Exception($err->getMessage(), $err->getCode()); } + throw new PEAR_Exception($err->getMessage()); } - -PEAR::setErrorHandling(PEAR_ERROR_CALLBACK, 'PEAR_ErrorToPEAR_Exception');