]>
git.immae.eu Git - github/shaarli/Shaarli.git/blob - application/Utils.php
7 * Logs a message to a text file
9 * The log format is compatible with fail2ban.
11 * @param string $logFile where to write the logs
12 * @param string $clientIp the client's remote IPv4/IPv6 address
13 * @param string $message the message to log
15 function logm($logFile, $clientIp, $message)
19 date('Y/m/d H:i:s').' - '.$clientIp.' - '.strval($message).PHP_EOL
,
25 * Returns the small hash of a string, using RFC 4648 base64url format
28 * - are unique (well, as unique as crc32, at last)
29 * - are always 6 characters long.
30 * - only use the following characters: a-z A-Z 0-9 - _ @
31 * - are NOT cryptographically secure (they CAN be forged)
33 * In Shaarli, they are used as a tinyurl-like link to individual entries,
34 * built once with the combination of the date and item ID.
35 * e.g. smallHash('20111006_131924' . 142) --> eaWxtQ
37 * @warning before v0.8.1, smallhashes were built only with the date,
38 * and their value has been preserved.
40 * @param string $text Create a hash from this text.
42 * @return string generated small hash.
44 function smallHash($text)
46 $t = rtrim(base64_encode(hash('crc32', $text, true)), '=');
47 return strtr($t, '+/', '-_');
51 * Tells if a string start with a substring
53 * @param string $haystack Given string.
54 * @param string $needle String to search at the beginning of $haystack.
55 * @param bool $case Case sensitive.
57 * @return bool True if $haystack starts with $needle.
59 function startsWith($haystack, $needle, $case = true)
62 return (strcmp(substr($haystack, 0, strlen($needle)), $needle) === 0);
64 return (strcasecmp(substr($haystack, 0, strlen($needle)), $needle) === 0);
68 * Tells if a string ends with a substring
70 * @param string $haystack Given string.
71 * @param string $needle String to search at the end of $haystack.
72 * @param bool $case Case sensitive.
74 * @return bool True if $haystack ends with $needle.
76 function endsWith($haystack, $needle, $case = true)
79 return (strcmp(substr($haystack, strlen($haystack) - strlen($needle)), $needle) === 0);
81 return (strcasecmp(substr($haystack, strlen($haystack) - strlen($needle)), $needle) === 0);
85 * Htmlspecialchars wrapper
86 * Support multidimensional array of strings.
88 * @param mixed $input Data to escape: a single string or an array of strings.
90 * @return string escaped.
92 function escape($input)
94 if (is_bool($input)) {
98 if (is_array($input)) {
100 foreach($input as $key => $value) {
101 $out[$key] = escape($value);
105 return htmlspecialchars($input, ENT_COMPAT
, 'UTF-8', false);
109 * Reverse the escape function.
111 * @param string $str the string to unescape.
113 * @return string unescaped string.
115 function unescape($str)
117 return htmlspecialchars_decode($str);
121 * Sanitize link before rendering.
123 * @param array $link Link to escape.
125 function sanitizeLink(&$link)
127 $link['url'] = escape($link['url']); // useful?
128 $link['title'] = escape($link['title']);
129 $link['description'] = escape($link['description']);
130 $link['tags'] = escape($link['tags']);
134 * Checks if a string represents a valid date
136 * @param string $format The expected DateTime format of the string
137 * @param string $string A string-formatted date
139 * @return bool whether the string is a valid date
141 * @see http://php.net/manual/en/class.datetime.php
142 * @see http://php.net/manual/en/datetime.createfromformat.php
144 function checkDateFormat($format, $string)
146 $date = DateTime
::createFromFormat($format, $string);
147 return $date && $date->format($string) == $string;
151 * Generate a header location from HTTP_REFERER.
152 * Make sure the referer is Shaarli itself and prevent redirection loop.
154 * @param string $referer - HTTP_REFERER.
155 * @param string $host - Server HOST.
156 * @param array $loopTerms - Contains list of term to prevent redirection loop.
158 * @return string $referer - final referer.
160 function generateLocation($referer, $host, $loopTerms = array())
164 // No referer if it contains any value in $loopCriteria.
165 foreach ($loopTerms as $value) {
166 if (strpos($referer, $value) !== false) {
167 return $finalReferer;
171 // Remove port from HTTP_HOST
172 if ($pos = strpos($host, ':')) {
173 $host = substr($host, 0, $pos);
176 $refererHost = parse_url($referer, PHP_URL_HOST
);
177 if (!empty($referer) && (strpos($refererHost, $host) !== false || startsWith('?', $refererHost))) {
178 $finalReferer = $referer;
181 return $finalReferer;
185 * Validate session ID to prevent Full Path Disclosure.
188 * The session ID's format depends on the hash algorithm set in PHP settings
190 * @param string $sessionId Session ID
192 * @return true if valid, false otherwise.
194 * @see http://php.net/manual/en/function.hash-algos.php
195 * @see http://php.net/manual/en/session.configuration.php
197 function is_session_id_valid($sessionId)
199 if (empty($sessionId)) {
207 if (!preg_match('/^[a-zA-Z0-9,-]{2,128}$/', $sessionId)) {
215 * Sniff browser language to set the locale automatically.
216 * Note that is may not work on your server if the corresponding locale is not installed.
218 * @param string $headerLocale Locale send in HTTP headers (e.g. "fr,fr-fr;q=0.8,en;q=0.5,en-us;q=0.3").
220 function autoLocale($headerLocale)
222 // Default if browser does not send HTTP_ACCEPT_LANGUAGE
223 $locales = array('en_US', 'en_US.utf8', 'en_US.UTF-8');
224 if (! empty($headerLocale)) {
225 if (preg_match_all('/([a-z]{2,3})[-_]?([a-z]{2})?,?/i', $headerLocale, $matches, PREG_SET_ORDER
)) {
227 foreach ($matches as $match) {
228 $first = [strtolower($match[1]), strtoupper($match[1])];
229 $separators = ['_', '-'];
230 $encodings = ['utf8', 'UTF-8'];
231 if (!empty($match[2])) {
232 $second = [strtoupper($match[2]), strtolower($match[2])];
233 $items = [$first, $separators, $second, ['.'], $encodings];
235 $items = [$first, $separators, $first, ['.'], $encodings];
237 $attempts = array_merge($attempts, iterator_to_array(cartesian_product_generator($items)));
240 if (! empty($attempts)) {
241 $locales = array_merge(array_map('implode', $attempts), $locales);
246 setlocale(LC_ALL
, $locales);
250 * Build a Generator object representing the cartesian product from given $items.
253 * [['a'], ['b', 'c']]
260 * @param array $items array of array of string
262 * @return Generator representing the cartesian product of given array.
264 * @see https://en.wikipedia.org/wiki/Cartesian_product
266 function cartesian_product_generator($items)
271 $subArray = array_pop($items);
272 if (empty($subArray)) {
275 foreach (cartesian_product_generator($items) as $item) {
276 foreach ($subArray as $value) {
277 yield
$item +
[count($item) => $value];
283 * Generates a default API secret.
285 * Note that the random-ish methods used in this function are predictable,
286 * which makes them NOT suitable for crypto.
287 * BUT the random string is salted with the salt and hashed with the username.
288 * It makes the generated API secret secured enough for Shaarli.
290 * PHP 7 provides random_int(), designed for cryptography.
291 * More info: http://stackoverflow.com/questions/4356289/php-random-string-generator
293 * @param string $username Shaarli login username
294 * @param string $salt Shaarli password hash salt
296 * @return string|bool Generated API secret, 12 char length.
297 * Or false if invalid parameters are provided (which will make the API unusable).
299 function generate_api_secret($username, $salt)
301 if (empty($username) || empty($salt)) {
305 return str_shuffle(substr(hash_hmac('sha512', uniqid($salt), $username), 10, 12));
309 * Trim string, replace sequences of whitespaces by a single space.
310 * PHP equivalent to `normalize-space` XSLT function.
312 * @param string $string Input string.
314 * @return mixed Normalized string.
316 function normalize_spaces($string)
318 return preg_replace('/\s{2,}/', ' ', trim($string));
322 * Format the date according to the locale.
324 * Requires php-intl to display international datetimes,
325 * otherwise default format '%c' will be returned.
327 * @param DateTime $date to format.
328 * @param bool $time Displays time if true.
329 * @param bool $intl Use international format if true.
331 * @return bool|string Formatted date, or false if the input is invalid.
333 function format_date($date, $time = true, $intl = true)
335 if (! $date instanceof DateTime
) {
339 if (! $intl || ! class_exists('IntlDateFormatter')) {
340 $format = $time ? '%c' : '%x';
341 return strftime($format, $date->getTimestamp());
344 $formatter = new IntlDateFormatter(
345 setlocale(LC_TIME
, 0),
346 IntlDateFormatter
::LONG
,
347 $time ? IntlDateFormatter
::LONG
: IntlDateFormatter
::NONE
350 return $formatter->format($date);
354 * Check if the input is an integer, no matter its real type.
356 * PHP is a bit messy regarding this:
357 * - is_int returns false if the input is a string
358 * - ctype_digit returns false if the input is an integer or negative
360 * @param mixed $input value
362 * @return bool true if the input is an integer, false otherwise
364 function is_integer_mixed($input)
366 if (is_array($input) || is_bool($input) || is_object($input)) {
369 $input = strval($input);
370 return ctype_digit($input) || (startsWith($input, '-') && ctype_digit(substr($input, 1)));
374 * Convert post_max_size/upload_max_filesize (e.g. '16M') parameters to bytes.
376 * @param string $val Size expressed in string.
378 * @return int Size expressed in bytes.
380 function return_bytes($val)
382 if (is_integer_mixed($val) || $val === '0' || empty($val)) {
386 $last = strtolower($val[strlen($val)-1]);
387 $val = intval(substr($val, 0, -1));
389 case 'g': $val *= 1024;
390 case 'm': $val *= 1024;
391 case 'k': $val *= 1024;
397 * Return a human readable size from bytes.
399 * @param int $bytes value
401 * @return string Human readable size
403 function human_bytes($bytes)
406 return t('Setting not set');
408 if (! is_integer_mixed($bytes)) {
411 $bytes = intval($bytes);
413 return t('Unlimited');
416 $units = [t('B'), t('kiB'), t('MiB'), t('GiB')];
417 for ($i = 0; $i < count($units) && $bytes >= 1024; ++
$i) {
421 return round($bytes) . $units[$i];
425 * Try to determine max file size for uploads (POST).
426 * Returns an integer (in bytes) or formatted depending on $format.
428 * @param mixed $limitPost post_max_size PHP setting
429 * @param mixed $limitUpload upload_max_filesize PHP setting
430 * @param bool $format Format max upload size to human readable size
432 * @return int|string max upload file size
434 function get_max_upload_size($limitPost, $limitUpload, $format = true)
436 $size1 = return_bytes($limitPost);
437 $size2 = return_bytes($limitUpload);
438 // Return the smaller of two:
439 $maxsize = min($size1, $size2);
440 return $format ? human_bytes($maxsize) : $maxsize;
444 * Sort the given array alphabetically using php-intl if available.
447 * Note: doesn't support multidimensional arrays
449 * @param array $data Input array, passed by reference
450 * @param bool $reverse Reverse sort if set to true
451 * @param bool $byKeys Sort the array by keys if set to true, by value otherwise.
453 function alphabetical_sort(&$data, $reverse = false, $byKeys = false)
455 $callback = function($a, $b) use ($reverse) {
456 // Collator is part of PHP intl.
457 if (class_exists('Collator')) {
458 $collator = new Collator(setlocale(LC_COLLATE
, 0));
459 if (!intl_is_failure(intl_get_error_code())) {
460 return $collator->compare($a, $b) * ($reverse ? -1 : 1);
464 return strcasecmp($a, $b) * ($reverse ? -1 : 1);
468 uksort($data, $callback);
470 usort($data, $callback);