2017-08-26 08:04:21 +02:00
|
|
|
<?php
|
2017-11-19 20:15:25 +01:00
|
|
|
/**
|
|
|
|
* @file src/Core/System.php
|
|
|
|
*/
|
2017-08-26 08:04:21 +02:00
|
|
|
namespace Friendica\Core;
|
|
|
|
|
|
|
|
use Friendica\App;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @file include/Core/System.php
|
|
|
|
*
|
|
|
|
* @brief Contains the class with system relevant stuff
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief System methods
|
|
|
|
*/
|
2017-11-19 20:15:25 +01:00
|
|
|
class System
|
|
|
|
{
|
2017-08-26 08:04:21 +02:00
|
|
|
private static $a;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Initializes the static class variable
|
2017-11-19 20:15:25 +01:00
|
|
|
* @return void
|
2017-08-26 08:04:21 +02:00
|
|
|
*/
|
2017-11-19 20:15:25 +01:00
|
|
|
private static function init()
|
|
|
|
{
|
2017-08-26 08:04:21 +02:00
|
|
|
global $a;
|
|
|
|
|
|
|
|
if (!is_object(self::$a)) {
|
|
|
|
self::$a = $a;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Retrieves the Friendica instance base URL
|
|
|
|
*
|
|
|
|
* @param bool $ssl Whether to append http or https under SSL_POLICY_SELFSIGN
|
|
|
|
* @return string Friendica server base URL
|
|
|
|
*/
|
2017-11-19 20:15:25 +01:00
|
|
|
public static function baseUrl($ssl = false)
|
|
|
|
{
|
2017-08-26 08:04:21 +02:00
|
|
|
self::init();
|
|
|
|
return self::$a->get_baseurl($ssl);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Removes the baseurl from an url. This avoids some mixed content problems.
|
|
|
|
*
|
2017-11-19 20:15:25 +01:00
|
|
|
* @param string $orig_url The url to be cleaned
|
2017-08-26 08:04:21 +02:00
|
|
|
*
|
|
|
|
* @return string The cleaned url
|
|
|
|
*/
|
2017-11-19 20:15:25 +01:00
|
|
|
public static function removedBaseUrl($orig_url)
|
|
|
|
{
|
2017-08-26 08:04:21 +02:00
|
|
|
self::init();
|
|
|
|
return self::$a->remove_baseurl($orig_url);
|
|
|
|
}
|
|
|
|
|
2017-08-26 12:01:50 +02:00
|
|
|
/**
|
|
|
|
* @brief Returns a string with a callstack. Can be used for logging.
|
2017-11-19 20:15:25 +01:00
|
|
|
* @param integer $depth optional, default 4
|
2017-08-26 12:01:50 +02:00
|
|
|
* @return string
|
|
|
|
*/
|
2017-11-19 20:15:25 +01:00
|
|
|
public static function callstack($depth = 4)
|
|
|
|
{
|
2017-10-17 22:51:46 +02:00
|
|
|
$trace = debug_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS);
|
2017-08-26 12:01:50 +02:00
|
|
|
|
|
|
|
// We remove the first two items from the list since they contain data that we don't need.
|
|
|
|
array_shift($trace);
|
|
|
|
array_shift($trace);
|
|
|
|
|
|
|
|
$callstack = array();
|
2017-10-17 22:51:46 +02:00
|
|
|
$counter = 0;
|
|
|
|
$previous = array('class' => '', 'function' => '');
|
|
|
|
|
|
|
|
// The ignore list contains all functions that are only wrapper functions
|
|
|
|
$ignore = array('get_config', 'get_pconfig', 'set_config', 'set_pconfig', 'fetch_url', 'probe_url');
|
|
|
|
|
|
|
|
while ($func = array_pop($trace)) {
|
2017-08-26 12:01:50 +02:00
|
|
|
if (!empty($func['class'])) {
|
2017-10-17 22:51:46 +02:00
|
|
|
// Don't show multiple calls from the same function (mostly used for "dba" class)
|
|
|
|
if (($previous['class'] != $func['class']) && ($previous['function'] != 'q')) {
|
|
|
|
$classparts = explode("\\", $func['class']);
|
|
|
|
$callstack[] = array_pop($classparts).'::'.$func['function'];
|
|
|
|
$previous = $func;
|
|
|
|
}
|
|
|
|
} elseif (!in_array($func['function'], $ignore)) {
|
2017-08-26 12:01:50 +02:00
|
|
|
$callstack[] = $func['function'];
|
2017-10-17 22:51:46 +02:00
|
|
|
$previous = $func;
|
2017-08-26 12:01:50 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-10-17 22:51:46 +02:00
|
|
|
$callstack2 = array();
|
|
|
|
while ((count($callstack2) < $depth) && (count($callstack) > 0)) {
|
|
|
|
$callstack2[] = array_pop($callstack);
|
|
|
|
}
|
|
|
|
|
|
|
|
return implode(', ', $callstack2);
|
2017-08-26 12:01:50 +02:00
|
|
|
}
|
|
|
|
|
2017-12-13 22:55:19 +01:00
|
|
|
/**
|
|
|
|
* @brief Called from db initialisation when db is dead.
|
|
|
|
*/
|
|
|
|
static public function unavailable() {
|
|
|
|
echo <<< EOT
|
|
|
|
<html>
|
|
|
|
<head><title>System Unavailable</title></head>
|
|
|
|
<body>Apologies but this site is unavailable at the moment. Please try again later.</body>
|
|
|
|
</html>
|
|
|
|
EOT;
|
|
|
|
|
|
|
|
killme();
|
|
|
|
}
|
|
|
|
|
2017-08-26 08:04:21 +02:00
|
|
|
/// @todo Move the following functions from boot.php
|
|
|
|
/*
|
|
|
|
function get_guid($size = 16, $prefix = "")
|
|
|
|
function killme()
|
|
|
|
function goaway($s)
|
|
|
|
function local_user()
|
|
|
|
function public_contact()
|
|
|
|
function remote_user()
|
|
|
|
function notice($s)
|
|
|
|
function info($s)
|
|
|
|
function is_site_admin()
|
|
|
|
function random_digits($digits)
|
|
|
|
function get_server()
|
|
|
|
function get_temppath()
|
|
|
|
function get_cachefile($file, $writemode = true)
|
|
|
|
function get_itemcachepath()
|
|
|
|
function get_spoolpath()
|
|
|
|
function current_load()
|
|
|
|
*/
|
|
|
|
}
|