2017-08-26 02:04:21 -04:00
|
|
|
<?php
|
2017-11-19 14:15:25 -05:00
|
|
|
/**
|
|
|
|
* @file src/Core/System.php
|
|
|
|
*/
|
2017-08-26 02:04:21 -04:00
|
|
|
namespace Friendica\Core;
|
|
|
|
|
2017-12-17 11:35:06 -05:00
|
|
|
use Friendica\BaseObject;
|
2018-01-27 11:59:10 -05:00
|
|
|
use Friendica\Util\XML;
|
2017-08-26 02:04:21 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @file include/Core/System.php
|
|
|
|
*
|
|
|
|
* @brief Contains the class with system relevant stuff
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief System methods
|
|
|
|
*/
|
2017-12-17 11:35:06 -05:00
|
|
|
class System extends BaseObject
|
2017-11-19 14:15:25 -05:00
|
|
|
{
|
2017-08-26 02:04:21 -04:00
|
|
|
/**
|
|
|
|
* @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 14:15:25 -05:00
|
|
|
public static function baseUrl($ssl = false)
|
|
|
|
{
|
2017-12-17 11:35:06 -05:00
|
|
|
return self::getApp()->get_baseurl($ssl);
|
2017-08-26 02:04:21 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Removes the baseurl from an url. This avoids some mixed content problems.
|
|
|
|
*
|
2017-11-19 14:15:25 -05:00
|
|
|
* @param string $orig_url The url to be cleaned
|
2017-08-26 02:04:21 -04:00
|
|
|
*
|
|
|
|
* @return string The cleaned url
|
|
|
|
*/
|
2017-11-19 14:15:25 -05:00
|
|
|
public static function removedBaseUrl($orig_url)
|
|
|
|
{
|
2017-12-17 11:35:06 -05:00
|
|
|
return self::getApp()->remove_baseurl($orig_url);
|
2017-08-26 02:04:21 -04:00
|
|
|
}
|
|
|
|
|
2017-08-26 06:01:50 -04:00
|
|
|
/**
|
|
|
|
* @brief Returns a string with a callstack. Can be used for logging.
|
2017-11-19 14:15:25 -05:00
|
|
|
* @param integer $depth optional, default 4
|
2017-08-26 06:01:50 -04:00
|
|
|
* @return string
|
|
|
|
*/
|
2017-11-19 14:15:25 -05:00
|
|
|
public static function callstack($depth = 4)
|
|
|
|
{
|
2017-10-17 16:51:46 -04:00
|
|
|
$trace = debug_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS);
|
2017-08-26 06:01:50 -04: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);
|
|
|
|
|
2018-01-15 08:05:12 -05:00
|
|
|
$callstack = [];
|
2017-10-17 16:51:46 -04:00
|
|
|
$counter = 0;
|
2018-01-15 08:05:12 -05:00
|
|
|
$previous = ['class' => '', 'function' => ''];
|
2017-10-17 16:51:46 -04:00
|
|
|
|
|
|
|
// The ignore list contains all functions that are only wrapper functions
|
2018-04-10 01:55:36 -04:00
|
|
|
$ignore = ['fetchUrl', 'call_user_func_array'];
|
2017-10-17 16:51:46 -04:00
|
|
|
|
|
|
|
while ($func = array_pop($trace)) {
|
2017-08-26 06:01:50 -04:00
|
|
|
if (!empty($func['class'])) {
|
2018-04-13 16:09:12 -04:00
|
|
|
// Don't show multiple calls from the "dba" class to show the essential parts of the callstack
|
2018-08-23 09:51:58 -04:00
|
|
|
if ((($previous['class'] != $func['class']) || ($func['class'] != 'Friendica\Database\DBA')) && ($previous['function'] != 'q')) {
|
2017-10-17 16:51:46 -04:00
|
|
|
$classparts = explode("\\", $func['class']);
|
|
|
|
$callstack[] = array_pop($classparts).'::'.$func['function'];
|
|
|
|
$previous = $func;
|
|
|
|
}
|
|
|
|
} elseif (!in_array($func['function'], $ignore)) {
|
2017-08-26 06:01:50 -04:00
|
|
|
$callstack[] = $func['function'];
|
2018-07-01 00:15:11 -04:00
|
|
|
$func['class'] = '';
|
2017-10-17 16:51:46 -04:00
|
|
|
$previous = $func;
|
2017-08-26 06:01:50 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-15 08:05:12 -05:00
|
|
|
$callstack2 = [];
|
2017-10-17 16:51:46 -04:00
|
|
|
while ((count($callstack2) < $depth) && (count($callstack) > 0)) {
|
|
|
|
$callstack2[] = array_pop($callstack);
|
|
|
|
}
|
|
|
|
|
|
|
|
return implode(', ', $callstack2);
|
2017-08-26 06:01:50 -04:00
|
|
|
}
|
|
|
|
|
2018-01-27 11:59:10 -05:00
|
|
|
/**
|
|
|
|
* Generic XML return
|
|
|
|
* Outputs a basic dfrn XML status structure to STDOUT, with a <status> variable
|
|
|
|
* of $st and an optional text <message> of $message and terminates the current process.
|
|
|
|
*/
|
|
|
|
public static function xmlExit($st, $message = '')
|
|
|
|
{
|
|
|
|
$result = ['status' => $st];
|
|
|
|
|
|
|
|
if ($message != '') {
|
|
|
|
$result['message'] = $message;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($st) {
|
|
|
|
logger('xml_status returning non_zero: ' . $st . " message=" . $message);
|
|
|
|
}
|
|
|
|
|
|
|
|
header("Content-type: text/xml");
|
|
|
|
|
|
|
|
$xmldata = ["result" => $result];
|
|
|
|
|
|
|
|
echo XML::fromArray($xmldata, $xml);
|
|
|
|
|
|
|
|
killme();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Send HTTP status header and exit.
|
|
|
|
*
|
|
|
|
* @param integer $val HTTP status result value
|
|
|
|
* @param array $description optional message
|
|
|
|
* 'title' => header title
|
|
|
|
* 'description' => optional message
|
|
|
|
*/
|
|
|
|
public static function httpExit($val, $description = [])
|
|
|
|
{
|
|
|
|
$err = '';
|
|
|
|
if ($val >= 400) {
|
|
|
|
$err = 'Error';
|
|
|
|
if (!isset($description["title"])) {
|
|
|
|
$description["title"] = $err." ".$val;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($val >= 200 && $val < 300) {
|
|
|
|
$err = 'OK';
|
|
|
|
}
|
|
|
|
|
|
|
|
logger('http_status_exit ' . $val);
|
|
|
|
header($_SERVER["SERVER_PROTOCOL"] . ' ' . $val . ' ' . $err);
|
|
|
|
|
|
|
|
if (isset($description["title"])) {
|
|
|
|
$tpl = get_markup_template('http_status.tpl');
|
2018-07-08 05:37:05 -04:00
|
|
|
echo replace_macros($tpl, ['$title' => $description["title"],
|
|
|
|
'$description' => defaults($description, 'description', '')]);
|
2018-01-27 11:59:10 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
killme();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2018-06-18 17:05:44 -04:00
|
|
|
* @brief Encodes content to json.
|
2018-01-27 11:59:10 -05:00
|
|
|
*
|
|
|
|
* This function encodes an array to json format
|
|
|
|
* and adds an application/json HTTP header to the output.
|
|
|
|
* After finishing the process is getting killed.
|
|
|
|
*
|
2018-06-18 17:05:44 -04:00
|
|
|
* @param array $x The input content.
|
|
|
|
* @param string $content_type Type of the input (Default: 'application/json').
|
2018-01-27 11:59:10 -05:00
|
|
|
*/
|
2018-06-18 17:05:44 -04:00
|
|
|
public static function jsonExit($x, $content_type = 'application/json') {
|
|
|
|
header("Content-type: $content_type");
|
2018-01-27 11:59:10 -05:00
|
|
|
echo json_encode($x);
|
|
|
|
killme();
|
|
|
|
}
|
|
|
|
|
2018-07-09 15:38:16 -04:00
|
|
|
/**
|
|
|
|
* Generates a GUID with the given parameters
|
|
|
|
*
|
|
|
|
* @param int $size The size of the GUID (default is 16)
|
|
|
|
* @param bool|string $prefix A given prefix (default is empty)
|
|
|
|
* @return string a generated GUID
|
|
|
|
*/
|
|
|
|
public static function createGUID($size = 16, $prefix = '')
|
|
|
|
{
|
|
|
|
if (is_bool($prefix) && !$prefix) {
|
|
|
|
$prefix = '';
|
2018-07-09 16:10:35 -04:00
|
|
|
} elseif (empty($prefix)) {
|
2018-07-09 15:38:16 -04:00
|
|
|
$prefix = hash('crc32', self::getApp()->get_hostname());
|
|
|
|
}
|
|
|
|
|
|
|
|
while (strlen($prefix) < ($size - 13)) {
|
|
|
|
$prefix .= mt_rand();
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($size >= 24) {
|
|
|
|
$prefix = substr($prefix, 0, $size - 22);
|
|
|
|
return str_replace('.', '', uniqid($prefix, true));
|
|
|
|
} else {
|
|
|
|
$prefix = substr($prefix, 0, max($size - 13, 0));
|
|
|
|
return uniqid($prefix);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-10 18:32:47 -04:00
|
|
|
/**
|
|
|
|
* Generates a process identifier for the logging
|
|
|
|
*
|
|
|
|
* @param string $prefix A given prefix
|
|
|
|
*
|
|
|
|
* @return string a generated process identifier
|
|
|
|
*/
|
|
|
|
public static function processID($prefix)
|
|
|
|
{
|
2018-07-15 14:36:20 -04:00
|
|
|
// We aren't calling any other function here.
|
|
|
|
// Doing so could easily create an endless loop
|
|
|
|
$trailer = $prefix . ':' . getmypid() . ':';
|
|
|
|
return substr($trailer . uniqid('') . mt_rand(), 0, 26);
|
2018-07-10 18:32:47 -04:00
|
|
|
}
|
|
|
|
|
2017-08-26 02:04:21 -04:00
|
|
|
/// @todo Move the following functions from boot.php
|
|
|
|
/*
|
|
|
|
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()
|
|
|
|
*/
|
|
|
|
}
|