]> git.mxchange.org Git - friendica.git/blob - src/Core/System.php
Formatting logger to new style
[friendica.git] / src / Core / System.php
1 <?php
2 /**
3  * @file src/Core/System.php
4  */
5 namespace Friendica\Core;
6
7 use Friendica\BaseObject;
8 use Friendica\Network\HTTPException\InternalServerErrorException;
9 use Friendica\Util\XML;
10
11 /**
12  * @file include/Core/System.php
13  *
14  * @brief Contains the class with system relevant stuff
15  */
16
17
18 /**
19  * @brief System methods
20  */
21 class System extends BaseObject
22 {
23         /**
24          * @brief Retrieves the Friendica instance base URL
25          *
26          * @param bool $ssl Whether to append http or https under SSL_POLICY_SELFSIGN
27          * @return string Friendica server base URL
28          * @throws InternalServerErrorException
29          */
30         public static function baseUrl($ssl = false)
31         {
32                 return self::getApp()->getBaseURL($ssl);
33         }
34
35         /**
36          * @brief Removes the baseurl from an url. This avoids some mixed content problems.
37          *
38          * @param string $orig_url The url to be cleaned
39          *
40          * @return string The cleaned url
41          * @throws \Exception
42          */
43         public static function removedBaseUrl($orig_url)
44         {
45                 return self::getApp()->removeBaseURL($orig_url);
46         }
47
48         /**
49          * @brief Returns a string with a callstack. Can be used for logging.
50          * @param integer $depth optional, default 4
51          * @return string
52          */
53         public static function callstack($depth = 4)
54         {
55                 $trace = debug_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS);
56
57                 // We remove the first two items from the list since they contain data that we don't need.
58                 array_shift($trace);
59                 array_shift($trace);
60
61                 $callstack = [];
62                 $previous = ['class' => '', 'function' => ''];
63
64                 // The ignore list contains all functions that are only wrapper functions
65                 $ignore = ['fetchUrl', 'call_user_func_array'];
66
67                 while ($func = array_pop($trace)) {
68                         if (!empty($func['class'])) {
69                                 // Don't show multiple calls from the "dba" class to show the essential parts of the callstack
70                                 if ((($previous['class'] != $func['class']) || ($func['class'] != 'Friendica\Database\DBA')) && ($previous['function'] != 'q')) {
71                                         $classparts = explode("\\", $func['class']);
72                                         $callstack[] = array_pop($classparts).'::'.$func['function'];
73                                         $previous = $func;
74                                 }
75                         } elseif (!in_array($func['function'], $ignore)) {
76                                 $callstack[] = $func['function'];
77                                 $func['class'] = '';
78                                 $previous = $func;
79                         }
80                 }
81
82                 $callstack2 = [];
83                 while ((count($callstack2) < $depth) && (count($callstack) > 0)) {
84                         $callstack2[] = array_pop($callstack);
85                 }
86
87                 return implode(', ', $callstack2);
88         }
89
90         /**
91          * Generic XML return
92          * Outputs a basic dfrn XML status structure to STDOUT, with a <status> variable
93          * of $st and an optional text <message> of $message and terminates the current process.
94          *
95          * @param        $st
96          * @param string $message
97          * @throws \Exception
98          */
99         public static function xmlExit($st, $message = '')
100         {
101                 $result = ['status' => $st];
102
103                 if ($message != '') {
104                         $result['message'] = $message;
105                 }
106
107                 if ($st) {
108                         Logger::log('xml_status returning non_zero: ' . $st . " message=" . $message);
109                 }
110
111                 header("Content-type: text/xml");
112
113                 $xmldata = ["result" => $result];
114
115                 echo XML::fromArray($xmldata, $xml);
116
117                 exit();
118         }
119
120         /**
121          * @brief Send HTTP status header and exit.
122          *
123          * @param integer $val         HTTP status result value
124          * @param array   $description optional message
125          *                             'title' => header title
126          *                             'description' => optional message
127          * @throws InternalServerErrorException
128          */
129         public static function httpExit($val, $description = [])
130         {
131                 $err = '';
132                 if ($val >= 400) {
133                         if (!empty($description['title'])) {
134                                 $err = $description['title'];
135                         } else {
136                                 $title = [
137                                         '400' => L10n::t('Error 400 - Bad Request'),
138                                         '401' => L10n::t('Error 401 - Unauthorized'),
139                                         '403' => L10n::t('Error 403 - Forbidden'),
140                                         '404' => L10n::t('Error 404 - Not Found'),
141                                         '500' => L10n::t('Error 500 - Internal Server Error'),
142                                         '503' => L10n::t('Error 503 - Service Unavailable'),
143                                         ];
144                                 $err = defaults($title, $val, 'Error ' . $val);
145                                 $description['title'] = $err;
146                         }
147                         if (empty($description['description'])) {
148                                 // Explanations are taken from https://en.wikipedia.org/wiki/List_of_HTTP_status_codes
149                                 $explanation = [
150                                         '400' => L10n::t('The server cannot or will not process the request due to an apparent client error.'),
151                                         '401' => L10n::t('Authentication is required and has failed or has not yet been provided.'),
152                                         '403' => L10n::t('The request was valid, but the server is refusing action. The user might not have the necessary permissions for a resource, or may need an account.'),
153                                         '404' => L10n::t('The requested resource could not be found but may be available in the future.'),
154                                         '500' => L10n::t('An unexpected condition was encountered and no more specific message is suitable.'),
155                                         '503' => L10n::t('The server is currently unavailable (because it is overloaded or down for maintenance). Please try again later.'),
156                                         ];
157                                 if (!empty($explanation[$val])) {
158                                         $description['description'] = $explanation[$val];
159                                 }
160                         }
161                 }
162
163                 if ($val >= 200 && $val < 300) {
164                         $err = 'OK';
165                 }
166
167                 Logger::log('http_status_exit ' . $val);
168                 header($_SERVER["SERVER_PROTOCOL"] . ' ' . $val . ' ' . $err);
169
170                 if (isset($description["title"])) {
171                         $tpl = Renderer::getMarkupTemplate('http_status.tpl');
172                         echo Renderer::replaceMacros($tpl, ['$title' => $description["title"],
173                                 '$description' => defaults($description, 'description', '')]);
174                 }
175
176                 exit();
177         }
178
179         /**
180          * @brief Encodes content to json.
181          *
182          * This function encodes an array to json format
183          * and adds an application/json HTTP header to the output.
184          * After finishing the process is getting killed.
185          *
186          * @param array  $x The input content.
187          * @param string $content_type Type of the input (Default: 'application/json').
188          */
189         public static function jsonExit($x, $content_type = 'application/json') {
190                 header("Content-type: $content_type");
191                 echo json_encode($x);
192                 exit();
193         }
194
195         /**
196          * Generates a random string in the UUID format
197          *
198          * @param bool|string $prefix A given prefix (default is empty)
199          * @return string a generated UUID
200          * @throws \Exception
201          */
202         public static function createUUID($prefix = '')
203         {
204                 $guid = System::createGUID(32, $prefix);
205                 return substr($guid, 0, 8) . '-' . substr($guid, 8, 4) . '-' . substr($guid, 12, 4) . '-' . substr($guid, 16, 4) . '-' . substr($guid, 20, 12);
206         }
207
208         /**
209          * Generates a GUID with the given parameters
210          *
211          * @param int         $size   The size of the GUID (default is 16)
212          * @param bool|string $prefix A given prefix (default is empty)
213          * @return string a generated GUID
214          * @throws \Exception
215          */
216         public static function createGUID($size = 16, $prefix = '')
217         {
218                 if (is_bool($prefix) && !$prefix) {
219                         $prefix = '';
220                 } elseif (empty($prefix)) {
221                         $prefix = hash('crc32', self::getApp()->getHostName());
222                 }
223
224                 while (strlen($prefix) < ($size - 13)) {
225                         $prefix .= mt_rand();
226                 }
227
228                 if ($size >= 24) {
229                         $prefix = substr($prefix, 0, $size - 22);
230                         return str_replace('.', '', uniqid($prefix, true));
231                 } else {
232                         $prefix = substr($prefix, 0, max($size - 13, 0));
233                         return uniqid($prefix);
234                 }
235         }
236
237         /**
238          * Returns the current Load of the System
239          *
240          * @return integer
241          */
242         public static function currentLoad()
243         {
244                 if (!function_exists('sys_getloadavg')) {
245                         return false;
246                 }
247
248                 $load_arr = sys_getloadavg();
249
250                 if (!is_array($load_arr)) {
251                         return false;
252                 }
253
254                 return max($load_arr[0], $load_arr[1]);
255         }
256
257         /**
258          * Redirects to an external URL (fully qualified URL)
259          * If you want to route relative to the current Friendica base, use App->internalRedirect()
260          *
261          * @param string $url The new Location to redirect
262          * @throws InternalServerErrorException If the URL is not fully qualified
263          */
264         public static function externalRedirect($url)
265         {
266                 if (empty(parse_url($url, PHP_URL_SCHEME))) {
267                         throw new InternalServerErrorException("'$url' is not a fully qualified URL, please use App->internalRedirect() instead");
268                 }
269
270                 header("Location: $url");
271                 exit();
272         }
273
274         /**
275          * @brief Returns the system user that is executing the script
276          *
277          * This mostly returns something like "www-data".
278          *
279          * @return string system username
280          */
281         public static function getUser()
282         {
283                 if (!function_exists('posix_getpwuid') || !function_exists('posix_geteuid')) {
284                         return '';
285                 }
286
287                 $processUser = posix_getpwuid(posix_geteuid());
288                 return $processUser['name'];
289         }
290
291         /**
292          * @brief Checks if a given directory is usable for the system
293          *
294          * @param      $directory
295          * @param bool $check_writable
296          *
297          * @return boolean the directory is usable
298          */
299         public static function isDirectoryUsable($directory, $check_writable = true)
300         {
301                 if ($directory == '') {
302                         Logger::log('Directory is empty. This shouldn\'t happen.', Logger::DEBUG);
303                         return false;
304                 }
305
306                 if (!file_exists($directory)) {
307                         Logger::log('Path "' . $directory . '" does not exist for user ' . static::getUser(), Logger::DEBUG);
308                         return false;
309                 }
310
311                 if (is_file($directory)) {
312                         Logger::log('Path "' . $directory . '" is a file for user ' . static::getUser(), Logger::DEBUG);
313                         return false;
314                 }
315
316                 if (!is_dir($directory)) {
317                         Logger::log('Path "' . $directory . '" is not a directory for user ' . static::getUser(), Logger::DEBUG);
318                         return false;
319                 }
320
321                 if ($check_writable && !is_writable($directory)) {
322                         Logger::log('Path "' . $directory . '" is not writable for user ' . static::getUser(), Logger::DEBUG);
323                         return false;
324                 }
325
326                 return true;
327         }
328
329         /// @todo Move the following functions from boot.php
330         /*
331         function killme()
332         function local_user()
333         function public_contact()
334         function remote_user()
335         function notice($s)
336         function info($s)
337         function is_site_admin()
338         function get_server()
339         function get_temppath()
340         function get_cachefile($file, $writemode = true)
341         function get_itemcachepath()
342         function get_spoolpath()
343         */
344 }