2016-01-04 10:45:54 +01:00
|
|
|
<?php
|
|
|
|
|
2019-05-25 15:46:47 +02:00
|
|
|
use Shaarli\Bookmark\Bookmark;
|
2018-12-03 01:10:39 +01:00
|
|
|
|
2016-01-04 10:45:54 +01:00
|
|
|
/**
|
2017-09-30 11:04:13 +02:00
|
|
|
* Extract title from an HTML document.
|
2016-01-04 10:45:54 +01:00
|
|
|
*
|
2017-09-30 11:04:13 +02:00
|
|
|
* @param string $html HTML content where to look for a title.
|
2016-01-04 10:45:54 +01:00
|
|
|
*
|
2017-09-30 11:04:13 +02:00
|
|
|
* @return bool|string Extracted title if found, false otherwise.
|
2016-01-04 10:45:54 +01:00
|
|
|
*/
|
2017-09-30 11:04:13 +02:00
|
|
|
function html_extract_title($html)
|
2016-01-04 10:45:54 +01:00
|
|
|
{
|
2017-09-30 11:04:13 +02:00
|
|
|
if (preg_match('!<title.*?>(.*?)</title>!is', $html, $matches)) {
|
|
|
|
return trim(str_replace("\n", '', $matches[1]));
|
2016-01-04 10:45:54 +01:00
|
|
|
}
|
2017-09-30 11:04:13 +02:00
|
|
|
return false;
|
2016-01-04 10:45:54 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2017-09-30 11:04:13 +02:00
|
|
|
* Extract charset from HTTP header if it's defined.
|
2016-01-04 10:45:54 +01:00
|
|
|
*
|
2017-09-30 11:04:13 +02:00
|
|
|
* @param string $header HTTP header Content-Type line.
|
2016-01-04 10:45:54 +01:00
|
|
|
*
|
|
|
|
* @return bool|string Charset string if found (lowercase), false otherwise.
|
|
|
|
*/
|
2017-09-30 11:04:13 +02:00
|
|
|
function header_extract_charset($header)
|
2016-01-04 10:45:54 +01:00
|
|
|
{
|
2020-09-26 13:28:38 +02:00
|
|
|
preg_match('/charset=["\']?([^; "\']+)/i', $header, $match);
|
2017-09-30 11:04:13 +02:00
|
|
|
if (! empty($match[1])) {
|
|
|
|
return strtolower(trim($match[1]));
|
2016-01-04 10:45:54 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Extract charset HTML content (tag <meta charset>).
|
|
|
|
*
|
|
|
|
* @param string $html HTML content where to look for charset.
|
|
|
|
*
|
|
|
|
* @return bool|string Charset string if found, false otherwise.
|
|
|
|
*/
|
|
|
|
function html_extract_charset($html)
|
|
|
|
{
|
|
|
|
// Get encoding specified in HTML header.
|
2016-04-06 22:00:52 +02:00
|
|
|
preg_match('#<meta .*charset=["\']?([^";\'>/]+)["\']? */?>#Usi', $html, $enc);
|
2016-01-04 10:45:54 +01:00
|
|
|
if (!empty($enc[1])) {
|
|
|
|
return strtolower($enc[1]);
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
2016-05-11 00:05:22 +02:00
|
|
|
|
2019-06-08 13:59:19 +02:00
|
|
|
/**
|
|
|
|
* Extract meta tag from HTML content in either:
|
|
|
|
* - OpenGraph: <meta property="og:[tag]" ...>
|
|
|
|
* - Meta tag: <meta name="[tag]" ...>
|
|
|
|
*
|
|
|
|
* @param string $tag Name of the tag to retrieve.
|
|
|
|
* @param string $html HTML content where to look for charset.
|
|
|
|
*
|
|
|
|
* @return bool|string Charset string if found, false otherwise.
|
|
|
|
*/
|
|
|
|
function html_extract_tag($tag, $html)
|
|
|
|
{
|
|
|
|
$propertiesKey = ['property', 'name', 'itemprop'];
|
|
|
|
$properties = implode('|', $propertiesKey);
|
2020-09-03 17:46:26 +02:00
|
|
|
// We need a OR here to accept either 'property=og:noquote' or 'property="og:unrelated og:my-tag"'
|
|
|
|
$orCondition = '["\']?(?:og:)?'. $tag .'["\']?|["\'][^\'"]*?(?:og:)?' . $tag . '[^\'"]*?[\'"]';
|
2019-06-08 13:59:19 +02:00
|
|
|
// Try to retrieve OpenGraph image.
|
2020-09-03 17:46:26 +02:00
|
|
|
$ogRegex = '#<meta[^>]+(?:'. $properties .')=(?:'. $orCondition .')[^>]*content=["\'](.*?)["\'].*?>#';
|
2019-06-08 13:59:19 +02:00
|
|
|
// If the attributes are not in the order property => content (e.g. Github)
|
|
|
|
// New regex to keep this readable... more or less.
|
2020-09-03 17:46:26 +02:00
|
|
|
$ogRegexReverse = '#<meta[^>]+content=["\'](.*?)["\'][^>]+(?:'. $properties .')=(?:'. $orCondition .').*?>#';
|
2019-06-08 13:59:19 +02:00
|
|
|
|
|
|
|
if (preg_match($ogRegex, $html, $matches) > 0
|
|
|
|
|| preg_match($ogRegexReverse, $html, $matches) > 0
|
|
|
|
) {
|
|
|
|
return $matches[1];
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2016-05-11 00:05:22 +02:00
|
|
|
/**
|
2019-05-25 15:46:47 +02:00
|
|
|
* In a string, converts URLs to clickable bookmarks.
|
2016-05-10 23:18:04 +02:00
|
|
|
*
|
|
|
|
* @param string $text input string.
|
|
|
|
*
|
2019-05-25 15:46:47 +02:00
|
|
|
* @return string returns $text with all bookmarks converted to HTML bookmarks.
|
2016-05-10 23:18:04 +02:00
|
|
|
*
|
|
|
|
* @see Function inspired from http://www.php.net/manual/en/function.preg-replace.php#85722
|
|
|
|
*/
|
2019-02-09 13:52:12 +01:00
|
|
|
function text2clickable($text)
|
2016-05-10 23:18:04 +02:00
|
|
|
{
|
2017-09-29 18:52:38 +02:00
|
|
|
$regex = '!(((?:https?|ftp|file)://|apt:|magnet:)\S+[a-z0-9\(\)]/?)!si';
|
2019-02-09 13:52:12 +01:00
|
|
|
return preg_replace($regex, '<a href="$1">$1</a>', $text);
|
2016-05-10 23:18:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Auto-link hashtags.
|
|
|
|
*
|
|
|
|
* @param string $description Given description.
|
|
|
|
* @param string $indexUrl Root URL.
|
|
|
|
*
|
|
|
|
* @return string Description with auto-linked hashtags.
|
|
|
|
*/
|
|
|
|
function hashtag_autolink($description, $indexUrl = '')
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
* To support unicode: http://stackoverflow.com/a/35498078/1484919
|
|
|
|
* \p{Pc} - to match underscore
|
|
|
|
* \p{N} - numeric character in any script
|
|
|
|
* \p{L} - letter from any language
|
|
|
|
* \p{Mn} - any non marking space (accents, umlauts, etc)
|
|
|
|
*/
|
|
|
|
$regex = '/(^|\s)#([\p{Pc}\p{N}\p{L}\p{Mn}]+)/mui';
|
2020-05-12 12:44:48 +02:00
|
|
|
$replacement = '$1<a href="'. $indexUrl .'./add-tag/$2" title="Hashtag $2">#$2</a>';
|
2016-05-10 23:18:04 +02:00
|
|
|
return preg_replace($regex, $replacement, $description);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This function inserts where relevant so that multiple spaces are properly displayed in HTML
|
|
|
|
* even in the absence of <pre> (This is used in description to keep text formatting).
|
|
|
|
*
|
|
|
|
* @param string $text input text.
|
|
|
|
*
|
|
|
|
* @return string formatted text.
|
|
|
|
*/
|
|
|
|
function space2nbsp($text)
|
|
|
|
{
|
|
|
|
return preg_replace('/(^| ) /m', '$1 ', $text);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Format Shaarli's description
|
|
|
|
*
|
|
|
|
* @param string $description shaare's description.
|
2016-10-20 11:31:52 +02:00
|
|
|
* @param string $indexUrl URL to Shaarli's index.
|
2017-11-07 20:23:58 +01:00
|
|
|
|
2016-05-10 23:18:04 +02:00
|
|
|
* @return string formatted description.
|
|
|
|
*/
|
2019-02-09 13:52:12 +01:00
|
|
|
function format_description($description, $indexUrl = '')
|
2018-10-13 00:19:03 +02:00
|
|
|
{
|
2019-02-09 13:52:12 +01:00
|
|
|
return nl2br(space2nbsp(hashtag_autolink(text2clickable($description), $indexUrl)));
|
2016-05-10 23:18:04 +02:00
|
|
|
}
|
2016-11-28 18:24:15 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Generate a small hash for a link.
|
|
|
|
*
|
|
|
|
* @param DateTime $date Link creation date.
|
|
|
|
* @param int $id Link ID.
|
|
|
|
*
|
|
|
|
* @return string the small hash generated from link data.
|
|
|
|
*/
|
|
|
|
function link_small_hash($date, $id)
|
|
|
|
{
|
2019-05-25 15:46:47 +02:00
|
|
|
return smallHash($date->format(Bookmark::LINK_DATE_FORMAT) . $id);
|
2016-11-28 18:24:15 +01:00
|
|
|
}
|
2019-02-09 14:13:08 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns whether or not the link is an internal note.
|
|
|
|
* Its URL starts by `?` because it's actually a permalink.
|
|
|
|
*
|
|
|
|
* @param string $linkUrl
|
|
|
|
*
|
|
|
|
* @return bool true if internal note, false otherwise.
|
|
|
|
*/
|
|
|
|
function is_note($linkUrl)
|
|
|
|
{
|
|
|
|
return isset($linkUrl[0]) && $linkUrl[0] === '?';
|
|
|
|
}
|