]> git.immae.eu Git - github/shaarli/Shaarli.git/blame - application/LinkUtils.php
Fix parsing for description links with parentheses
[github/shaarli/Shaarli.git] / application / LinkUtils.php
CommitLineData
1557cefb
A
1<?php
2
3/**
4 * Extract title from an HTML document.
5 *
6 * @param string $html HTML content where to look for a title.
7 *
8 * @return bool|string Extracted title if found, false otherwise.
9 */
10function html_extract_title($html)
11{
ce7b0b64
A
12 if (preg_match('!<title.*?>(.*?)</title>!is', $html, $matches)) {
13 return trim(str_replace("\n", '', $matches[1]));
1557cefb
A
14 }
15 return false;
16}
17
18/**
19 * Determine charset from downloaded page.
20 * Priority:
21 * 1. HTTP headers (Content type).
22 * 2. HTML content page (tag <meta charset>).
23 * 3. Use a default charset (default: UTF-8).
24 *
25 * @param array $headers HTTP headers array.
26 * @param string $htmlContent HTML content where to look for charset.
27 * @param string $defaultCharset Default charset to apply if other methods failed.
28 *
29 * @return string Determined charset.
30 */
31function get_charset($headers, $htmlContent, $defaultCharset = 'utf-8')
32{
33 if ($charset = headers_extract_charset($headers)) {
34 return $charset;
35 }
36
37 if ($charset = html_extract_charset($htmlContent)) {
38 return $charset;
39 }
40
41 return $defaultCharset;
42}
43
44/**
45 * Extract charset from HTTP headers if it's defined.
46 *
47 * @param array $headers HTTP headers array.
48 *
49 * @return bool|string Charset string if found (lowercase), false otherwise.
50 */
51function headers_extract_charset($headers)
52{
53 if (! empty($headers['Content-Type']) && strpos($headers['Content-Type'], 'charset=') !== false) {
54 preg_match('/charset="?([^; ]+)/i', $headers['Content-Type'], $match);
55 if (! empty($match[1])) {
56 return strtolower(trim($match[1]));
57 }
58 }
59
60 return false;
61}
62
63/**
64 * Extract charset HTML content (tag <meta charset>).
65 *
66 * @param string $html HTML content where to look for charset.
67 *
68 * @return bool|string Charset string if found, false otherwise.
69 */
70function html_extract_charset($html)
71{
72 // Get encoding specified in HTML header.
ce7b0b64 73 preg_match('#<meta .*charset=["\']?([^";\'>/]+)["\']? */?>#Usi', $html, $enc);
1557cefb
A
74 if (!empty($enc[1])) {
75 return strtolower($enc[1]);
76 }
77
78 return false;
79}
141a86c5
A
80
81/**
82 * Count private links in given linklist.
83 *
7af9a418 84 * @param array|Countable $links Linklist.
141a86c5
A
85 *
86 * @return int Number of private links.
87 */
88function count_private($links)
89{
90 $cpt = 0;
91 foreach ($links as $link) {
ee6f4b64
V
92 if ($link['private']) {
93 $cpt += 1;
94 }
141a86c5 95 }
9ccca401 96
141a86c5
A
97 return $cpt;
98}
9ccca401
A
99
100/**
101 * In a string, converts URLs to clickable links.
102 *
103 * @param string $text input string.
104 * @param string $redirector if a redirector is set, use it to gerenate links.
105 *
106 * @return string returns $text with all links converted to HTML links.
107 *
108 * @see Function inspired from http://www.php.net/manual/en/function.preg-replace.php#85722
109 */
110function text2clickable($text, $redirector = '')
111{
601faf97 112 $regex = '!(((?:https?|ftp|file)://|apt:|magnet:)\S+[a-z0-9\(\)]/?)!si';
9ccca401
A
113
114 if (empty($redirector)) {
115 return preg_replace($regex, '<a href="$1">$1</a>', $text);
116 }
117 // Redirector is set, urlencode the final URL.
118 return preg_replace_callback(
119 $regex,
120 function ($matches) use ($redirector) {
121 return '<a href="' . $redirector . urlencode($matches[1]) .'">'. $matches[1] .'</a>';
122 },
123 $text
124 );
125}
126
127/**
128 * Auto-link hashtags.
129 *
130 * @param string $description Given description.
131 * @param string $indexUrl Root URL.
132 *
133 * @return string Description with auto-linked hashtags.
134 */
135function hashtag_autolink($description, $indexUrl = '')
136{
137 /*
138 * To support unicode: http://stackoverflow.com/a/35498078/1484919
139 * \p{Pc} - to match underscore
140 * \p{N} - numeric character in any script
141 * \p{L} - letter from any language
142 * \p{Mn} - any non marking space (accents, umlauts, etc)
143 */
144 $regex = '/(^|\s)#([\p{Pc}\p{N}\p{L}\p{Mn}]+)/mui';
145 $replacement = '$1<a href="'. $indexUrl .'?addtag=$2" title="Hashtag $2">#$2</a>';
146 return preg_replace($regex, $replacement, $description);
147}
148
149/**
150 * This function inserts &nbsp; where relevant so that multiple spaces are properly displayed in HTML
151 * even in the absence of <pre> (This is used in description to keep text formatting).
152 *
153 * @param string $text input text.
154 *
155 * @return string formatted text.
156 */
157function space2nbsp($text)
158{
159 return preg_replace('/(^| ) /m', '$1&nbsp;', $text);
160}
161
162/**
163 * Format Shaarli's description
164 *
165 * @param string $description shaare's description.
166 * @param string $redirector if a redirector is set, use it to gerenate links.
7af9a418 167 * @param string $indexUrl URL to Shaarli's index.
9ccca401
A
168 *
169 * @return string formatted description.
170 */
171function format_description($description, $redirector = '', $indexUrl = '') {
172 return nl2br(space2nbsp(hashtag_autolink(text2clickable($description, $redirector), $indexUrl)));
173}
d592daea
A
174
175/**
176 * Generate a small hash for a link.
177 *
178 * @param DateTime $date Link creation date.
179 * @param int $id Link ID.
180 *
181 * @return string the small hash generated from link data.
182 */
183function link_small_hash($date, $id)
184{
185 return smallHash($date->format(LinkDB::LINK_DATE_FORMAT) . $id);
186}