dolibarr 21.0.0-alpha
website.lib.php
Go to the documentation of this file.
1<?php
2/* Copyright (C) 2017 Laurent Destailleur <eldy@users.sourceforge.net>
3 * Copyright (C) 2024 Frédéric France <frederic.france@free.fr>
4 * Copyright (C) 2024 MDW <mdeweerd@users.noreply.github.com>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 3 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program. If not, see <https://www.gnu.org/licenses/>.
18 */
19
34function dolStripPhpCode($str, $replacewith = '')
35{
36 $str = str_replace('<?=', '<?php', $str);
37
38 $newstr = '';
39
40 // Split on each opening tag
41 //$parts = explode('<?php', $str);
42 $parts = preg_split('/'.preg_quote('<?php', '/').'/i', $str);
43
44 if (!empty($parts)) {
45 $i = 0;
46 foreach ($parts as $part) {
47 if ($i == 0) { // The first part is never php code
48 $i++;
49 $newstr .= $part;
50 continue;
51 }
52 // The second part is the php code. We split on closing tag
53 $partlings = explode('?>', $part);
54 if (!empty($partlings)) {
55 //$phppart = $partlings[0];
56 //remove content before closing tag
57 if (count($partlings) > 1) {
58 $partlings[0] = ''; // Todo why a count > 1 and not >= 1 ?
59 }
60 //append to out string
61 //$newstr .= '<span class="phptag" class="tooltip" title="'.dol_escape_htmltag(dolGetFirstLineOfText($phppart).'...').'">'.$replacewith.'<!-- '.$phppart.' --></span>'.implode('', $partlings);
62 //$newstr .= '<span>'.$replacewith.'<!-- '.$phppart.' --></span>'.implode('', $partlings);
63 $newstr .= '<span phptag>'.$replacewith.'</span>'.implode('', $partlings);
64 //$newstr .= $replacewith.implode('', $partlings);
65 }
66 }
67 }
68 return $newstr;
69}
70
78function dolKeepOnlyPhpCode($str)
79{
80 $str = str_replace('<?=', '<?php', $str);
81 $str = str_replace('<?php', '__LTINTPHP__', $str);
82 $str = str_replace('<?', '<?php', $str); // replace the short_open_tag. It is recommended to set this is Off in php.ini
83 $str = str_replace('__LTINTPHP__', '<?php', $str);
84
85 $newstr = '';
86
87 // Split on each opening tag
88 //$parts = explode('<?php', $str);
89 $parts = preg_split('/'.preg_quote('<?php', '/').'/i', $str);
90
91 if (!empty($parts)) {
92 $i = 0;
93 foreach ($parts as $part) {
94 if ($i == 0) { // The first part is never php code
95 $i++;
96 continue;
97 }
98 $newstr .= '<?php';
99 //split on closing tag
100 $partlings = explode('?>', $part, 2);
101 if (!empty($partlings)) {
102 $newstr .= $partlings[0].'?>';
103 } else {
104 $newstr .= $part.'?>';
105 }
106 }
107 }
108 return $newstr;
109}
110
123function dolWebsiteReplacementOfLinks($website, $content, $removephppart = 0, $contenttype = 'html', $containerid = 0)
124{
125 $nbrep = 0;
126
127 dol_syslog('dolWebsiteReplacementOfLinks start (contenttype='.$contenttype." containerid=".$containerid." USEDOLIBARREDITOR=".(defined('USEDOLIBARREDITOR') ? '1' : '')." USEDOLIBARRSERVER=".(defined('USEDOLIBARRSERVER') ? '1' : '').')', LOG_DEBUG);
128 //if ($contenttype == 'html') { print $content;exit; }
129
130 // Replace php code. Note $content may come from database and does not contain body tags.
131 $replacewith = '...php...';
132 if ($removephppart) {
133 $replacewith = '';
134 }
135 $content = preg_replace('/value="<\?php((?!\?>).)*\?>\n*/ims', 'value="'.$replacewith.'"', $content);
136
137 $replacewith = '"callto=#';
138 if ($removephppart) {
139 $replacewith = '';
140 }
141 $content = preg_replace('/"callto:<\?php((?!\?>).)*\?>\n*/ims', $replacewith, $content);
142
143 $replacewith = '"mailto=#';
144 if ($removephppart) {
145 $replacewith = '';
146 }
147 $content = preg_replace('/"mailto:<\?php((?!\?>).)*\?>\n*/ims', $replacewith, $content);
148
149 $replacewith = 'src="php';
150 if ($removephppart) {
151 $replacewith = '';
152 }
153 $content = preg_replace('/src="<\?php((?!\?>).)*\?>\n*/ims', $replacewith, $content);
154
155 $replacewith = 'href="php';
156 if ($removephppart) {
157 $replacewith = '';
158 }
159 $content = preg_replace('/href="<\?php((?!\?>).)*\?>\n*/ims', $replacewith, $content);
160
161 //$replacewith='<span class="phptag">...php...</span>';
162 $replacewith = '...php...';
163 if ($removephppart) {
164 $replacewith = '';
165 }
166 //$content = preg_replace('/<\?php((?!\?toremove>).)*\?toremove>\n*/ims', $replacewith, $content);
167 /*if ($content === null) {
168 if (preg_last_error() == PREG_JIT_STACKLIMIT_ERROR) $content = 'preg_replace error (when removing php tags) PREG_JIT_STACKLIMIT_ERROR';
169 }*/
170 $content = dolStripPhpCode($content, $replacewith);
171
172 // Protect the link styles.css.php to any replacement that we make after.
173 $content = str_replace('href="styles.css.php', 'href="!~!~!~styles.css.php', $content);
174 $content = str_replace('src="javascript.js.php', 'src="!~!~!~javascript.js.php', $content);
175 $content = str_replace('href="http', 'href="!~!~!~http', $content);
176 $content = str_replace('xlink:href="', 'xlink:href="!~!~!~', $content);
177 $content = str_replace('href="//', 'href="!~!~!~//', $content);
178 $content = str_replace('src="//', 'src="!~!~!~//', $content);
179 $content = str_replace('src="viewimage.php', 'src="!~!~!~/viewimage.php', $content);
180 $content = str_replace('src="/viewimage.php', 'src="!~!~!~/viewimage.php', $content);
181 $content = str_replace('src="'.DOL_URL_ROOT.'/viewimage.php', 'src="!~!~!~'.DOL_URL_ROOT.'/viewimage.php', $content);
182 $content = str_replace('href="document.php', 'href="!~!~!~/document.php', $content);
183 $content = str_replace('href="/document.php', 'href="!~!~!~/document.php', $content);
184 $content = str_replace('href="'.DOL_URL_ROOT.'/document.php', 'href="!~!~!~'.DOL_URL_ROOT.'/document.php', $content);
185
186 // Replace relative link '/' with dolibarr URL
187 $content = preg_replace('/(href=")\/(#[^\"<>]*)?\"/', '\1!~!~!~'.DOL_URL_ROOT.'/website/index.php?website='.$website->ref.'&pageid='.$website->fk_default_home.'\2"', $content, -1, $nbrep);
188 // Replace relative link /xxx.php#aaa or /xxx.php with dolibarr URL (we discard param ?...)
189 $content = preg_replace('/(href=")\/?([^:\"\!]*)\.php(#[^\"<>]*)?\"/', '\1!~!~!~'.DOL_URL_ROOT.'/website/index.php?website='.$website->ref.'&pageref=\2\3"', $content, -1, $nbrep);
190 // Replace relative link /xxx.php?a=b&c=d#aaa or /xxx.php?a=b&c=d with dolibarr URL
191 $content = preg_replace('/(href=")\/?([^:\"\!]*)\.php\?([^#\"<>]*)(#[^\"<>]*)?\"/', '\1!~!~!~'.DOL_URL_ROOT.'/website/index.php?website='.$website->ref.'&pageref=\2&\3\4"', $content, -1, $nbrep);
192
193 // Fix relative link into medias with correct URL after the DOL_URL_ROOT: ../url("medias/
194 $content = preg_replace('/url\‍((["\']?)\/?medias\//', 'url(\1!~!~!~'.DOL_URL_ROOT.'/viewimage.php?modulepart=medias&file=', $content, -1, $nbrep);
195 $content = preg_replace('/data-slide-bg=(["\']?)\/?medias\//', 'data-slide-bg=\1!~!~!~'.DOL_URL_ROOT.'/viewimage.php?modulepart=medias&file=', $content, -1, $nbrep);
196
197 // <img src="medias/...image.png... => <img src="dolibarr/viewimage.php/modulepart=medias&file=image.png...
198 // <img src="...image.png... => <img src="dolibarr/viewimage.php/modulepart=medias&file=image.png...
199 $content = preg_replace('/(<img[^>]*src=")\/?medias\//', '\1!~!~!~'.DOL_URL_ROOT.'/viewimage.php?modulepart=medias&file=', $content, -1, $nbrep);
200 // <img src="image.png... => <img src="dolibarr/viewimage.php/modulepart=medias&file=image.png...
201 $content = preg_replace('/(<img[^>]*src=")\/?([^:\"\!]+)\"/', '\1!~!~!~'.DOL_URL_ROOT.'/viewimage.php?modulepart=medias&file=\2"', $content, -1, $nbrep);
202 // <img src="viewimage.php/modulepart=medias&file=image.png" => <img src="dolibarr/viewimage.php/modulepart=medias&file=image.png"
203 $content = preg_replace('/(<img[^>]*src=")(\/?viewimage\.php)/', '\1!~!~!~'.DOL_URL_ROOT.'/viewimage.php', $content, -1, $nbrep);
204
205 // action="newpage.php" => action="dolibarr/website/index.php?website=...&pageref=newpage
206 $content = preg_replace('/(action=")\/?([^:\"]*)(\.php\")/', '\1!~!~!~'.DOL_URL_ROOT.'/website/index.php?website='.$website->ref.'&pageref=\2"', $content, -1, $nbrep);
207
208 // Fix relative link /document.php with correct URL after the DOL_URL_ROOT: ...href="/document.php?modulepart="
209 $content = preg_replace('/(href=")(\/?document\.php\?[^\"]*modulepart=[^\"]*)(\")/', '\1!~!~!~'.DOL_URL_ROOT.'\2\3', $content, -1, $nbrep);
210 $content = preg_replace('/(src=")(\/?document\.php\?[^\"]*modulepart=[^\"]*)(\")/', '\1!~!~!~'.DOL_URL_ROOT.'\2\3', $content, -1, $nbrep);
211
212 // Fix relative link /viewimage.php with correct URL after the DOL_URL_ROOT: ...href="/viewimage.php?modulepart="
213 $content = preg_replace('/(url\‍(")(\/?viewimage\.php\?[^\"]*modulepart=[^\"]*)(\")/', '\1!~!~!~'.DOL_URL_ROOT.'\2\3', $content, -1, $nbrep);
214
215 // Fix relative URL
216 $content = str_replace('src="!~!~!~/viewimage.php', 'src="!~!~!~'.DOL_URL_ROOT.'/viewimage.php', $content);
217 $content = str_replace('href="!~!~!~/document.php', 'href="!~!~!~'.DOL_URL_ROOT.'/document.php', $content);
218 // Remove the protection tag !~!~!~
219 $content = str_replace('!~!~!~', '', $content);
220
221 dol_syslog('dolWebsiteReplacementOfLinks end', LOG_DEBUG);
222 //if ($contenttype == 'html') { print $content;exit; }
223
224 return $content;
225}
226
234{
235 $map = array(
236 ":face_with_tears_of_joy:" => "\xF0\x9F\x98\x82",
237 ":grinning_face_with_smiling_eyes:" => "\xF0\x9F\x98\x81",
238 ":smiling_face_with_open_mouth:" => "\xF0\x9F\x98\x83",
239 ":smiling_face_with_open_mouth_and_cold_sweat:" => "\xF0\x9F\x98\x85",
240 ":smiling_face_with_open_mouth_and_tightly_closed_eyes:" => "\xF0\x9F\x98\x86",
241 ":winking_face:" => "\xF0\x9F\x98\x89",
242 ":smiling_face_with_smiling_eyes:" => "\xF0\x9F\x98\x8A",
243 ":face_savouring_delicious_food:" => "\xF0\x9F\x98\x8B",
244 ":relieved_face:" => "\xF0\x9F\x98\x8C",
245 ":smiling_face_with_heart_shaped_eyes:" => "\xF0\x9F\x98\x8D",
246 ":smiling_face_with_sunglasses:" => "\xF0\x9F\x98\x8E",
247 ":smirking_face:" => "\xF0\x9F\x98\x8F",
248 ":neutral_face:" => "\xF0\x9F\x98\x90",
249 ":expressionless_face:" => "\xF0\x9F\x98\x91",
250 ":unamused_face:" => "\xF0\x9F\x98\x92",
251 ":face_with_cold_sweat:" => "\xF0\x9F\x98\x93",
252 ":pensive_face:" => "\xF0\x9F\x98\x94",
253 ":confused_face:" => "\xF0\x9F\x98\x95",
254 ":confounded_face:" => "\xF0\x9F\x98\x96",
255 ":kissing_face:" => "\xF0\x9F\x98\x97",
256 ":face_throwing_a_kiss:" => "\xF0\x9F\x98\x98",
257 ":kissing_face_with_smiling_eyes:" => "\xF0\x9F\x98\x99",
258 ":kissing_face_with_closed_eyes:" => "\xF0\x9F\x98\x9A",
259 ":face_with_stuck_out_tongue:" => "\xF0\x9F\x98\x9B",
260 ":face_with_stuck_out_tongue_and_winking_eye:" => "\xF0\x9F\x98\x9C",
261 ":face_with_stuck_out_tongue_and_tightly_closed_eyes:" => "\xF0\x9F\x98\x9D",
262 ":disappointed_face:" => "\xF0\x9F\x98\x9E",
263 ":worried_face:" => "\xF0\x9F\x98\x9F",
264 ":angry_face:" => "\xF0\x9F\x98\xA0",
265 ":face_with_symbols_on_mouth:" => "\xF0\x9F\x98\xA1",
266 );
267 foreach ($map as $key => $value) {
268 $content = str_replace($key, $value, $content);
269 }
270 return $content;
271}
272
273
284function dolWebsiteOutput($content, $contenttype = 'html', $containerid = 0)
285{
286 global $db, $langs, $conf, $user;
287 global $dolibarr_main_url_root, $dolibarr_main_data_root;
288 global $website;
289 global $includehtmlcontentopened;
290 '@phan-var-force WebSite $website';
291
292 $nbrep = 0;
293
294 dol_syslog("dolWebsiteOutput start - contenttype=".$contenttype." containerid=".$containerid." USEDOLIBARREDITOR=".(defined('USEDOLIBARREDITOR') ? '1' : '')." USEDOLIBARRSERVER=".(defined('USEDOLIBARRSERVER') ? '1' : '').' includehtmlcontentopened='.$includehtmlcontentopened);
295
296 //print $containerid.' '.$content;
297
298 // Define $urlwithroot
299 $urlwithouturlroot = preg_replace('/'.preg_quote(DOL_URL_ROOT, '/').'$/i', '', trim($dolibarr_main_url_root));
300 $urlwithroot = $urlwithouturlroot.DOL_URL_ROOT; // This is to use external domain name found into config file
301 //$urlwithroot=DOL_MAIN_URL_ROOT; // This is to use same domain name than current
302
303 if (defined('USEDOLIBARREDITOR')) { // REPLACEMENT OF LINKS When page called from Dolibarr editor
304 // We remove the <head> part of content
305 if ($contenttype == 'html') {
306 $content = preg_replace('/<head>.*<\/head>/ims', '', $content);
307 $content = preg_replace('/^.*<body(\s[^>]*)*>/ims', '', $content);
308 $content = preg_replace('/<\/body(\s[^>]*)*>.*$/ims', '', $content);
309 }
310 } elseif (defined('USEDOLIBARRSERVER')) { // REPLACEMENT OF LINKS When page called from Dolibarr server
311 $content = str_replace('<link rel="stylesheet" href="/styles.css', '<link rel="stylesheet" href="styles.css', $content);
312 $content = str_replace(' async src="/javascript.js', ' async src="javascript.js', $content);
313
314 // Protect the link styles.css.php to any replacement that we make after.
315 $content = str_replace('href="styles.css.php', 'href="!~!~!~styles.css.php', $content);
316 $content = str_replace('src="javascript.css.php', 'src="!~!~!~javascript.css.php', $content);
317 $content = str_replace('href="http', 'href="!~!~!~http', $content);
318 $content = str_replace('xlink:href="', 'xlink:href="!~!~!~', $content);
319 $content = str_replace('href="//', 'href="!~!~!~//', $content);
320 $content = str_replace('src="//', 'src="!~!~!~//', $content);
321 $content = str_replace(array('src="viewimage.php', 'src="/viewimage.php'), 'src="!~!~!~/viewimage.php', $content);
322 $content = str_replace('src="'.DOL_URL_ROOT.'/viewimage.php', 'src="!~!~!~'.DOL_URL_ROOT.'/viewimage.php', $content);
323 $content = str_replace(array('href="document.php', 'href="/document.php'), 'href="!~!~!~/document.php', $content);
324 $content = str_replace('href="'.DOL_URL_ROOT.'/document.php', 'href="!~!~!~'.DOL_URL_ROOT.'/document.php', $content);
325
326 // Replace relative link / with dolibarr URL: ...href="/"...
327 $content = preg_replace('/(href=")\/\"/', '\1!~!~!~'.DOL_URL_ROOT.'/public/website/index.php?website='.$website->ref.'"', $content, -1, $nbrep);
328 // Replace relative link /xxx.php#aaa or /xxx.php with dolibarr URL: ...href="....php" (we discard param ?...)
329 $content = preg_replace('/(href=")\/?([^:\"\!]*)\.php(#[^\"<>]*)?\"/', '\1!~!~!~'.DOL_URL_ROOT.'/public/website/index.php?website='.$website->ref.'&pageref=\2\3"', $content, -1, $nbrep);
330 // Replace relative link /xxx.php?a=b&c=d#aaa or /xxx.php?a=b&c=d with dolibarr URL
331 // Warning: we may replace twice if href="..." was inside an include (dolWebsiteOutput called by include and the by final page), that's why
332 // at end we replace the '!~!~!~' only if we are in final parent page.
333 $content = preg_replace('/(href=")\/?([^:\"\!]*)\.php\?([^#\"<>]*)(#[^\"<>]*)?\"/', '\1!~!~!~'.DOL_URL_ROOT.'/public/website/index.php?website='.$website->ref.'&pageref=\2&\3\4"', $content, -1, $nbrep);
334 // Replace occurrence like _service_XXX.php with dolibarr URL
335 $content = preg_replace('/([\'"])_service_([^\'"]+)\.php\1/', '\1!~!~!~' . DOL_URL_ROOT . '/public/website/index.php?website=' . $website->ref . '&pageref=_service_\2\1', $content, -1, $nbrep);
336 // Replace occurrence like _library_XXX.php with dolibarr URL
337 $content = preg_replace('/([\'"])_library_([^\'"]+)\.php\1/', '\1!~!~!~' . DOL_URL_ROOT . '/public/website/index.php?website=' . $website->ref . '&pageref=_library_\2\1', $content, -1, $nbrep);
338 // Replace relative link without .php like /xxx#aaa or /xxx with dolibarr URL: ...href="....php"
339 $content = preg_replace('/(href=")\/?([a-zA-Z0-9\-_#]+)(\"|\?)/', '\1!~!~!~'.DOL_URL_ROOT.'/public/website/index.php?website='.$website->ref.'&pageref=\2\3', $content, -1, $nbrep);
340
341 // Fix relative link /document.php with correct URL after the DOL_URL_ROOT: href="/document.php?modulepart=" => href="/dolibarr/document.php?modulepart="
342 $content = preg_replace('/(href=")(\/?document\.php\?[^\"]*modulepart=[^\"]*)(\")/', '\1!~!~!~'.DOL_URL_ROOT.'\2\3', $content, -1, $nbrep);
343 $content = preg_replace('/(src=")(\/?document\.php\?[^\"]*modulepart=[^\"]*)(\")/', '\1!~!~!~'.DOL_URL_ROOT.'\2\3', $content, -1, $nbrep);
344
345 // Fix relative link /viewimage.php with correct URL after the DOL_URL_ROOT: href="/viewimage.php?modulepart=" => href="/dolibarr/viewimage.php?modulepart="
346 $content = preg_replace('/(href=")(\/?viewimage\.php\?[^\"]*modulepart=[^\"]*)(\")/', '\1!~!~!~'.DOL_URL_ROOT.'\2\3', $content, -1, $nbrep);
347 $content = preg_replace('/(src=")(\/?viewimage\.php\?[^\"]*modulepart=[^\"]*)(\")/', '\1!~!~!~'.DOL_URL_ROOT.'\2\3', $content, -1, $nbrep);
348 $content = preg_replace('/(url\‍(")(\/?viewimage\.php\?[^\"]*modulepart=[^\"]*)(\")/', '\1!~!~!~'.DOL_URL_ROOT.'\2\3', $content, -1, $nbrep);
349
350 // Fix relative link into medias with correct URL after the DOL_URL_ROOT: ../url("medias/
351 $content = preg_replace('/url\‍((["\']?)\/?medias\//', 'url(\1!~!~!~'.DOL_URL_ROOT.'/viewimage.php?modulepart=medias&file=', $content, -1, $nbrep);
352 $content = preg_replace('/data-slide-bg=(["\']?)\/?medias\//', 'data-slide-bg=\1!~!~!~'.DOL_URL_ROOT.'/viewimage.php?modulepart=medias&file=', $content, -1, $nbrep);
353
354 // <img src="medias/...image.png... => <img src="dolibarr/viewimage.php/modulepart=medias&file=image.png...
355 // <img src="...image.png... => <img src="dolibarr/viewimage.php/modulepart=medias&file=image.png...
356 $content = preg_replace('/(<img[^>]*src=")\/?medias\//', '\1!~!~!~'.DOL_URL_ROOT.'/viewimage.php?modulepart=medias&file=', $content, -1, $nbrep);
357 // <img src="image.png... => <img src="dolibarr/viewimage.php/modulepart=medias&file=image.png...
358 $content = preg_replace('/(<img[^>]*src=")\/?([^:\"\!]+)\"/', '\1!~!~!~'.DOL_URL_ROOT.'/viewimage.php?modulepart=medias&file=\2"', $content, -1, $nbrep);
359 // <img src="viewimage.php/modulepart=medias&file=image.png" => <img src="dolibarr/viewimage.php/modulepart=medias&file=image.png"
360 $content = preg_replace('/(<img[^>]*src=")(\/?viewimage\.php)/', '\1!~!~!~'.DOL_URL_ROOT.'/viewimage.php', $content, -1, $nbrep);
361
362 // action="newpage.php" => action="dolibarr/website/index.php?website=...&pageref=newpage
363 $content = preg_replace('/(action=")\/?([^:\"]*)(\.php\")/', '\1!~!~!~'.DOL_URL_ROOT.'/public/website/index.php?website='.$website->ref.'&pageref=\2"', $content, -1, $nbrep);
364
365 // Fix relative URL
366 $content = str_replace('src="!~!~!~/viewimage.php', 'src="!~!~!~'.DOL_URL_ROOT.'/viewimage.php', $content);
367 $content = str_replace('href="!~!~!~/document.php', 'href="!~!~!~'.DOL_URL_ROOT.'/document.php', $content);
368
369 // Remove the protection tag !~!~!~, but only if this is the parent page and not an include
370 if (empty($includehtmlcontentopened)) {
371 $content = str_replace('!~!~!~', '', $content);
372 }
373 } else { // REPLACEMENT OF LINKS When page called from virtual host web server
374 $symlinktomediaexists = 1;
375 if ($website->virtualhost) {
376 $content = preg_replace('/^(<link[^>]*rel="canonical" href=")\//m', '\1'.$website->virtualhost.'/', $content, -1, $nbrep);
377 }
378 //print 'rrrrrrrrr'.$website->virtualhost.$content;
379
380
381 // Make a change into HTML code to allow to include images from medias directory correct with direct link for virtual server
382 // <img alt="" src="/dolibarr_dev/htdocs/viewimage.php?modulepart=medias&amp;entity=1&amp;file=image/ldestailleur_166x166.jpg" style="height:166px; width:166px" />
383 // become
384 // <img alt="" src="'.$urlwithroot.'/medias/image/ldestailleur_166x166.jpg" style="height:166px; width:166px" />
385 if (!$symlinktomediaexists) {
386 // <img src="image.png... => <img src="medias/image.png...
387 $content = preg_replace('/(<img[^>]*src=")\/?image\//', '\1/wrapper.php?modulepart=medias&file=medias/image/', $content, -1, $nbrep);
388 $content = preg_replace('/(url\‍(["\']?)\/?image\//', '\1/wrapper.php?modulepart=medias&file=medias/image/', $content, -1, $nbrep);
389
390 $content = preg_replace('/(<script[^>]*src=")[^\"]*document\.php([^\"]*)modulepart=medias([^\"]*)file=([^\"]*)("[^>]*>)/', '\1/wrapper.php\2modulepart=medias\3file=\4\5', $content, -1, $nbrep);
391 $content = preg_replace('/(<a[^>]*href=")[^\"]*document\.php([^\"]*)modulepart=medias([^\"]*)file=([^\"]*)("[^>]*>)/', '\1/wrapper.php\2modulepart=medias\3file=\4\5', $content, -1, $nbrep);
392
393 $content = preg_replace('/(<a[^>]*href=")[^\"]*viewimage\.php([^\"]*)modulepart=medias([^\"]*)file=([^\"]*)("[^>]*>)/', '\1/wrapper.php\2modulepart=medias\3file=\4\5', $content, -1, $nbrep);
394 $content = preg_replace('/(<img[^>]*src=")[^\"]*viewimage\.php([^\"]*)modulepart=medias([^\"]*)file=([^\"]*)("[^>]*>)/', '\1/wrapper.php\2modulepart=medias\3file=\4\5', $content, -1, $nbrep);
395 $content = preg_replace('/(url\‍(["\']?)[^\‍)]*viewimage\.php([^\‍)]*)modulepart=medias([^\‍)]*)file=([^\‍)]*)(["\']?\‍))/', '\1/wrapper.php\2modulepart=medias\3file=\4\5', $content, -1, $nbrep);
396
397 $content = preg_replace('/(<a[^>]*href=")[^\"]*viewimage\.php([^\"]*)hashp=([^\"]*)("[^>]*>)/', '\1/wrapper.php\2hashp=\3\4', $content, -1, $nbrep);
398 $content = preg_replace('/(<img[^>]*src=")[^\"]*viewimage\.php([^\"]*)hashp=([^\"]*)("[^>]*>)/', '\1/wrapper.php\2hashp=\3\4', $content, -1, $nbrep);
399 $content = preg_replace('/(url\‍(["\']?)[^\‍)]*viewimage\.php([^\‍)]*)hashp=([^\‍)]*)(["\']?\‍))/', '\1/wrapper.php\2hashp\3\4', $content, -1, $nbrep);
400
401 $content = preg_replace('/(<img[^>]*src=")[^\"]*viewimage\.php([^\"]*)modulepart=mycompany([^\"]*)file=([^\"]*)("[^>]*>)/', '\1/wrapper.php\2modulepart=mycompany\3file=\4\5', $content, -1, $nbrep);
402
403 // If some links to documents or viewimage remains, we replace with wrapper
404 $content = preg_replace('/(<img[^>]*src=")\/?viewimage\.php/', '\1/wrapper.php', $content, -1, $nbrep);
405 $content = preg_replace('/(<a[^>]*href=")\/?documents\.php/', '\1/wrapper.php', $content, -1, $nbrep);
406 } else {
407 // <img src="image.png... => <img src="medias/image.png...
408 $content = preg_replace('/(<img[^>]*src=")\/?image\//', '\1/medias/image/', $content, -1, $nbrep);
409 $content = preg_replace('/(url\‍(["\']?)\/?image\//', '\1/medias/image/', $content, -1, $nbrep);
410
411 $content = preg_replace('/(<script[^>]*src=")[^\"]*document\.php([^\"]*)modulepart=medias([^\"]*)file=([^\"]*)("[^>]*>)/', '\1/medias/\4\5', $content, -1, $nbrep);
412 $content = preg_replace('/(<a[^>]*href=")[^\"]*document\.php([^\"]*)modulepart=medias([^\"]*)file=([^\"]*)("[^>]*>)/', '\1/medias/\4\5', $content, -1, $nbrep);
413
414 $content = preg_replace('/(<a[^>]*href=")[^\"]*viewimage\.php([^\"]*)modulepart=medias([^\"]*)file=([^\"]*)("[^>]*>)/', '\1/medias/\4\5', $content, -1, $nbrep);
415 $content = preg_replace('/(<img[^>]*src=")[^\"]*viewimage\.php([^\"]*)modulepart=medias([^\"]*)file=([^\"]*)("[^>]*>)/', '\1/medias/\4\5', $content, -1, $nbrep);
416 $content = preg_replace('/(url\‍(["\']?)[^\‍)]*viewimage\.php([^\‍)]*)modulepart=medias([^\‍)]*)file=([^\‍)]*)(["\']?\‍))/', '\1/medias/\4\5', $content, -1, $nbrep);
417
418 $content = preg_replace('/(<a[^>]*href=")[^\"]*viewimage\.php([^\"]*)hashp=([^\"]*)("[^>]*>)/', '\1/wrapper.php\2hashp=\3\4', $content, -1, $nbrep);
419 $content = preg_replace('/(<img[^>]*src=")[^\"]*viewimage\.php([^\"]*)hashp=([^\"]*)("[^>]*>)/', '\1/wrapper.php\2hashp=\3\4', $content, -1, $nbrep);
420 $content = preg_replace('/(url\‍(["\']?)[^\‍)]*viewimage\.php([^\‍)]*)hashp=([^\‍)]*)(["\']?\‍))/', '\1/wrapper.php\2hashp=\3\4', $content, -1, $nbrep);
421
422 $content = preg_replace('/(<img[^>]*src=")[^\"]*viewimage\.php([^\"]*)modulepart=mycompany([^\"]*)file=([^\"]*)("[^>]*>)/', '\1/wrapper.php\2modulepart=mycompany\3file=\4\5', $content, -1, $nbrep);
423
424 // If some links to documents or viewimage remains, we replace with wrapper
425 $content = preg_replace('/(<img[^>]*src=")\/?viewimage\.php/', '\1/wrapper.php', $content, -1, $nbrep);
426 $content = preg_replace('/(<a[^>]*href=")\/?document\.php/', '\1/wrapper.php', $content, -1, $nbrep);
427 }
428 }
429
430 if (!defined('USEDOLIBARREDITOR')) {
431 $content = str_replace(' contenteditable="true"', ' contenteditable="false"', $content);
432 }
433
434 if (getDolGlobalString('WEBSITE_ADD_CSS_TO_BODY')) {
435 $content = str_replace('<body id="bodywebsite" class="bodywebsite', '<body id="bodywebsite" class="bodywebsite ' . getDolGlobalString('WEBSITE_ADD_CSS_TO_BODY'), $content);
436 }
437
438 $content = dolReplaceSmileyCodeWithUTF8($content);
439
440 dol_syslog("dolWebsiteOutput end");
441
442 print $content;
443}
444
453function dolWebsiteIncrementCounter($websiteid, $websitepagetype, $websitepageid)
454{
455 if (!getDolGlobalInt('WEBSITE_PERF_DISABLE_COUNTERS')) {
456 //dol_syslog("dolWebsiteIncrementCounter websiteid=".$websiteid." websitepagetype=".$websitepagetype." websitepageid=".$websitepageid);
457 if (in_array($websitepagetype, array('blogpost', 'page'))) {
458 global $db;
459
460 $tmpnow = dol_getdate(dol_now('gmt'), true, 'gmt');
461
462 $sql = "UPDATE ".$db->prefix()."website SET ";
463 $sql .= " pageviews_total = pageviews_total + 1,";
464 $sql .= " pageviews_month = pageviews_month + 1,";
465 // if last access was done during previous month, we save pageview_month into pageviews_previous_month
466 $sql .= " pageviews_previous_month = ".$db->ifsql("lastaccess < '".$db->idate(dol_mktime(0, 0, 0, $tmpnow['mon'], 1, $tmpnow['year'], 'gmt', 0), 'gmt')."'", 'pageviews_month', 'pageviews_previous_month').",";
467 $sql .= " lastaccess = '".$db->idate(dol_now('gmt'), 'gmt')."',";
468 $sql .= " lastpageid = ".((int) $websitepageid);
469 $sql .= " WHERE rowid = ".((int) $websiteid);
470
471 $resql = $db->query($sql);
472 if (! $resql) {
473 return -1;
474 }
475 }
476 }
477
478 return 1;
479}
480
481
489/*
490function dolWebsiteSaveContent($content)
491{
492 global $db, $langs, $conf, $user;
493 global $dolibarr_main_url_root, $dolibarr_main_data_root;
494
495 //dol_syslog("dolWebsiteSaveContent start (mode=".(defined('USEDOLIBARRSERVER')?'USEDOLIBARRSERVER':'').')');
496
497 // Define $urlwithroot
498 $urlwithouturlroot=preg_replace('/'.preg_quote(DOL_URL_ROOT,'/').'$/i','',trim($dolibarr_main_url_root));
499 $urlwithroot=$urlwithouturlroot.DOL_URL_ROOT; // This is to use external domain name found into config file
500 //$urlwithroot=DOL_MAIN_URL_ROOT; // This is to use same domain name than current
501
502 //$content = preg_replace('/(<img.*src=")(?!(http|'.preg_quote(DOL_URL_ROOT,'/').'\/viewimage))/', '\1'.DOL_URL_ROOT.'/viewimage.php?modulepart=medias&file=', $content, -1, $nbrep);
503
504 return $content;
505}
506*/
507
508
519function redirectToContainer($containerref, $containeraliasalt = '', $containerid = 0, $permanent = 0, $parameters = array())
520{
521 global $db, $website;
522 '@phan-var-force WebSite $website';
523
524 $newurl = '';
525 $result = 0;
526
527 // We make redirect using the alternative alias, we must find the real $containerref
528 if ($containeraliasalt) {
529 include_once DOL_DOCUMENT_ROOT.'/website/class/websitepage.class.php';
530 $tmpwebsitepage = new WebsitePage($db);
531 // @phan-suppress-next-line PhanPluginSuspiciousParamPosition
532 $result = $tmpwebsitepage->fetch(0, $website->id, '', $containeraliasalt);
533 if ($result > 0) {
534 $containerref = $tmpwebsitepage->pageurl;
535 } else {
536 print "Error, page contains a redirect to the alternative alias '".$containeraliasalt."' that does not exists in web site (".$website->id." / ".$website->ref.")";
537 exit;
538 }
539 }
540
541 if (defined('USEDOLIBARREDITOR')) {
542 /*print '<div class="margintoponly marginleftonly">';
543 print "This page contains dynamic code that make a redirect to '".$containerref."' in your current context. Redirect has been canceled as it is not supported in edition mode.";
544 print '</div>';*/
545 $text = "This page contains dynamic code that make a redirect to '".$containerref."' in your current context. Redirect has been canceled as it is not supported in edition mode.";
546 setEventMessages($text, null, 'warnings', 'WEBSITEREDIRECTDISABLED'.$containerref);
547 return;
548 }
549
550 if (defined('USEDOLIBARRSERVER')) { // When page called from Dolibarr server
551 // Check new container exists
552 if (!$containeraliasalt) { // If containeraliasalt set, we already did the test
553 include_once DOL_DOCUMENT_ROOT.'/website/class/websitepage.class.php';
554 $tmpwebsitepage = new WebsitePage($db);
555 // @phan-suppress-next-line PhanPluginSuspiciousParamPosition
556 $result = $tmpwebsitepage->fetch(0, $website->id, $containerref);
557 unset($tmpwebsitepage);
558 }
559 if ($result > 0) {
560 $currenturi = $_SERVER["REQUEST_URI"]; // Example: /public/website/index.php?website=mywebsite.com&pageref=mywebsite-home&nocache=1708177483
561 $regtmp = array();
562 if (preg_match('/&pageref=([^&]+)/', $currenturi, $regtmp)) {
563 if ($regtmp[0] == $containerref) {
564 print "Error, page with uri '.$currenturi.' try a redirect to the same alias page '".$containerref."' in web site '".$website->ref."'";
565 exit;
566 } else {
567 $newurl = preg_replace('/&pageref=([^&]+)/', '&pageref='.$containerref, $currenturi);
568 }
569 } else {
570 $newurl = $currenturi.'&pageref='.urlencode($containerref);
571 }
572 }
573 } else { // When page called from virtual host server
574 $newurl = '/'.$containerref.'.php';
575 $newurl .= (empty($_SERVER["QUERY_STRING"]) ? '' : '?'.$_SERVER["QUERY_STRING"]);
576 }
577
578 if ($newurl) {
579 if (!empty($parameters)) {
580 $separator = (parse_url($newurl, PHP_URL_QUERY) == null) ? '?' : '&';
581 $newurl = $newurl . $separator . http_build_query($parameters);
582 }
583 if ($permanent) {
584 header("Status: 301 Moved Permanently", false, 301);
585 }
586 header("Location: ".$newurl);
587 exit;
588 } else {
589 print "Error, page contains a redirect to the alias page '".$containerref."' that does not exists in web site (".$website->id." / ".$website->ref.")";
590 exit;
591 }
592}
593
594
602function includeContainer($containerref)
603{
604 global $conf, $db, $hookmanager, $langs, $mysoc, $user, $website, $websitepage, $weblangs; // Very important. Required to have var available when running included containers.
605 global $includehtmlcontentopened;
606 global $websitekey, $websitepagefile;
607 '@phan-var-force WebSite $website';
608
609 $MAXLEVEL = 20;
610
611 if (!preg_match('/\.php$/i', $containerref)) {
612 $containerref .= '.php';
613 }
614
615 $fullpathfile = DOL_DATA_ROOT.($conf->entity > 1 ? '/'.$conf->entity : '').'/website/'.$websitekey.'/'.$containerref;
616
617 if (empty($includehtmlcontentopened)) {
618 $includehtmlcontentopened = 0;
619 }
620 $includehtmlcontentopened++;
621 if ($includehtmlcontentopened > $MAXLEVEL) {
622 print 'ERROR: RECURSIVE CONTENT LEVEL. Depth of recursive call is more than the limit of '.((int) $MAXLEVEL).".\n";
623 return;
624 }
625
626 //dol_syslog("Include container ".$containerref.' includehtmlcontentopened='.$includehtmlcontentopened);
627
628 // file_get_contents is not possible. We must execute code with include
629 //$content = file_get_contents($fullpathfile);
630 //print preg_replace(array('/^.*<body[^>]*>/ims','/<\/body>.*$/ims'), array('', ''), $content);*/
631
632 ob_start();
633 $res = @include $fullpathfile; // Include because we want to execute code content
634 $tmpoutput = ob_get_contents();
635 ob_end_clean();
636
637 // We don't print info messages for pages of type library or service
638 if (!empty($websitepage->type_container) && !in_array($websitepage->type_container, array('library', 'service'))) {
639 print "\n".'<!-- include '.$websitekey.'/'.$containerref.(is_object($websitepage) ? ' parent id='.$websitepage->id : '').' level = '.$includehtmlcontentopened.' -->'."\n";
640 }
641 print preg_replace(array('/^.*<body[^>]*>/ims', '/<\/body>.*$/ims'), array('', ''), $tmpoutput);
642
643 if (!$res) {
644 print 'ERROR: FAILED TO INCLUDE PAGE '.$containerref.".\n";
645 }
646
647 $includehtmlcontentopened--;
648}
649
660function getStructuredData($type, $data = array())
661{
662 global $conf, $db, $hookmanager, $langs, $mysoc, $user, $website, $websitepage, $weblangs, $pagelangs; // Very important. Required to have var available when running included containers.
663 '@phan-var-force WebSite $website';
664
665 $type = strtolower($type);
666
667 if ($type == 'software') {
668 $ret = '<!-- Add structured data for entry in a software annuary -->'."\n";
669 $ret .= '<script nonce="'.getNonce().'" type="application/ld+json">'."\n";
670 $ret .= '{
671 "@context": "https://schema.org",
672 "@type": "SoftwareApplication",
673 "name": "'.dol_escape_json($data['name']).'",
674 "operatingSystem": "'.dol_escape_json($data['os']).'",
675 "applicationCategory": "https://schema.org/'.dol_escape_json($data['applicationCategory']).'",';
676 if (!empty($data['ratingcount'])) {
677 $ret .= '
678 "aggregateRating": {
679 "@type": "AggregateRating",
680 "ratingValue": "'.dol_escape_json($data['ratingvalue']).'",
681 "ratingCount": "'.dol_escape_json($data['ratingcount']).'"
682 },';
683 }
684 $ret .= '
685 "offers": {
686 "@type": "Offer",
687 "price": "'.dol_escape_json($data['price']).'",
688 "priceCurrency": "'.dol_escape_json($data['currency'] ? $data['currency'] : $conf->currency).'"
689 }
690 }'."\n";
691 $ret .= '</script>'."\n";
692 } elseif ($type == 'organization') {
693 $companyname = $mysoc->name;
694 $url = $mysoc->url;
695
696 $ret = '<!-- Add structured data for organization -->'."\n";
697 $ret .= '<script nonce="'.getNonce().'" type="application/ld+json">'."\n";
698 $ret .= '{
699 "@context": "https://schema.org",
700 "@type": "Organization",
701 "name": "'.dol_escape_json(!empty($data['name']) ? $data['name'] : $companyname).'",
702 "url": "'.dol_escape_json(!empty($data['url']) ? $data['url'] : $url).'",
703 "logo": "'.($data['logo'] ? dol_escape_json($data['logo']) : '/wrapper.php?modulepart=mycompany&file=logos%2F'.urlencode($mysoc->logo)).'",
704 "contactPoint": {
705 "@type": "ContactPoint",
706 "contactType": "Contact",
707 "email": "'.dol_escape_json(!empty($data['email']) ? $data['email'] : $mysoc->email).'"
708 }'."\n";
709 if (is_array($mysoc->socialnetworks) && count($mysoc->socialnetworks) > 0) {
710 $ret .= ",\n";
711 $ret .= '"sameAs": [';
712 $i = 0;
713 foreach ($mysoc->socialnetworks as $key => $value) {
714 if ($key == 'linkedin') {
715 $ret .= '"https://www.'.$key.'.com/company/'.dol_escape_json($value).'"';
716 } elseif ($key == 'youtube') {
717 $ret .= '"https://www.'.$key.'.com/user/'.dol_escape_json($value).'"';
718 } else {
719 $ret .= '"https://www.'.$key.'.com/'.dol_escape_json($value).'"';
720 }
721 $i++;
722 if ($i < count($mysoc->socialnetworks)) {
723 $ret .= ', ';
724 }
725 }
726 $ret .= ']'."\n";
727 }
728 $ret .= '}'."\n";
729 $ret .= '</script>'."\n";
730 } elseif ($type == 'blogpost') {
731 if (!empty($websitepage->author_alias)) {
732 //include_once DOL_DOCUMENT_ROOT.'/user/class/user.class.php';
733 //$tmpuser = new User($db);
734 //$restmpuser = $tmpuser->fetch($websitepage->fk_user_creat);
735
736 $pageurl = $websitepage->pageurl;
737 $title = $websitepage->title;
738 $image = $websitepage->image;
739 $companyname = $mysoc->name;
740 $description = $websitepage->description;
741
742 $pageurl = str_replace('__WEBSITE_KEY__', $website->ref, $pageurl);
743 $title = str_replace('__WEBSITE_KEY__', $website->ref, $title);
744 $image = '/medias'.(preg_match('/^\//', $image) ? '' : '/').str_replace('__WEBSITE_KEY__', $website->ref, $image);
745 $companyname = str_replace('__WEBSITE_KEY__', $website->ref, $companyname);
746 $description = str_replace('__WEBSITE_KEY__', $website->ref, $description);
747
748 $ret = '<!-- Add structured data for blog post -->'."\n";
749 $ret .= '<script nonce="'.getNonce().'" type="application/ld+json">'."\n";
750 $ret .= '{
751 "@context": "https://schema.org",
752 "@type": "NewsArticle",
753 "mainEntityOfPage": {
754 "@type": "WebPage",
755 "@id": "'.dol_escape_json($pageurl).'"
756 },
757 "headline": "'.dol_escape_json($title).'",
758 "image": [
759 "'.dol_escape_json($image).'"
760 ],
761 "dateCreated": "'.dol_print_date($websitepage->date_creation, 'dayhourrfc').'",
762 "datePublished": "'.dol_print_date($websitepage->date_creation, 'dayhourrfc').'",
763 "dateModified": "'.dol_print_date($websitepage->date_modification, 'dayhourrfc').'",
764 "author": {
765 "@type": "Person",
766 "name": "'.dol_escape_json($websitepage->author_alias).'"
767 },
768 "publisher": {
769 "@type": "Organization",
770 "name": "'.dol_escape_json($companyname).'",
771 "logo": {
772 "@type": "ImageObject",
773 "url": "/wrapper.php?modulepart=mycompany&file=logos%2F'.urlencode($mysoc->logo).'"
774 }
775 },'."\n";
776 if ($websitepage->keywords) {
777 $ret .= '"keywords": [';
778 $i = 0;
779 $arrayofkeywords = explode(',', $websitepage->keywords);
780 foreach ($arrayofkeywords as $keyword) {
781 $ret .= '"'.dol_escape_json($keyword).'"';
782 $i++;
783 if ($i < count($arrayofkeywords)) {
784 $ret .= ', ';
785 }
786 }
787 $ret .= '],'."\n";
788 }
789 $ret .= '"description": "'.dol_escape_json($description).'"';
790 $ret .= "\n".'}'."\n";
791 $ret .= '</script>'."\n";
792 } else {
793 $ret = '<!-- no structured data inserted inline inside blogpost because no author_alias defined -->'."\n";
794 }
795 } elseif ($type == 'product') {
796 $ret = '<!-- Add structured data for product -->'."\n";
797 $ret .= '<script nonce="'.getNonce().'" type="application/ld+json">'."\n";
798 $ret .= '{
799 "@context": "https://schema.org/",
800 "@type": "Product",
801 "name": "'.dol_escape_json($data['label']).'",
802 "image": [
803 "'.dol_escape_json($data['image']).'",
804 ],
805 "description": "'.dol_escape_json($data['description']).'",
806 "sku": "'.dol_escape_json($data['ref']).'",
807 "brand": {
808 "@type": "Thing",
809 "name": "'.dol_escape_json($data['brand']).'"
810 },
811 "author": {
812 "@type": "Person",
813 "name": "'.dol_escape_json($data['author']).'"
814 }
815 },
816 "offers": {
817 "@type": "Offer",
818 "url": "https://example.com/anvil",
819 "priceCurrency": "'.dol_escape_json($data['currency'] ? $data['currency'] : $conf->currency).'",
820 "price": "'.dol_escape_json($data['price']).'",
821 "itemCondition": "https://schema.org/UsedCondition",
822 "availability": "https://schema.org/InStock",
823 "seller": {
824 "@type": "Organization",
825 "name": "'.dol_escape_json($mysoc->name).'"
826 }
827 }
828 }'."\n";
829 $ret .= '</script>'."\n";
830 } elseif ($type == 'qa') {
831 $ret = '<!-- Add structured data for QA -->'."\n";
832 $ret .= '<script nonce="'.getNonce().'" type="application/ld+json">'."\n";
833 $ret .= '{
834 "@context": "https://schema.org/",
835 "@type": "QAPage",
836 "mainEntity": {
837 "@type": "Question",
838 "name": "'.dol_escape_json($data['name']).'",
839 "text": "'.dol_escape_json($data['name']).'",
840 "answerCount": 1,
841 "author": {
842 "@type": "Person",
843 "name": "'.dol_escape_json($data['author']).'"
844 }
845 "acceptedAnswer": {
846 "@type": "Answer",
847 "text": "'.dol_escape_json(dol_string_nohtmltag(dolStripPhpCode($data['description']))).'",
848 "author": {
849 "@type": "Person",
850 "name": "'.dol_escape_json($data['author']).'"
851 }
852 }
853 }
854 }'."\n";
855 $ret .= '</script>'."\n";
856 } else {
857 $ret = '';
858 }
859 return $ret;
860}
861
868function getSocialNetworkHeaderCards($params = null)
869{
870 global $conf, $db, $hookmanager, $langs, $mysoc, $user, $website, $websitepage, $weblangs; // Very important. Required to have var available when running included containers.
871 '@phan-var-force WebSite $website';
872
873 $out = '';
874
875 if ($website->virtualhost) {
876 $pageurl = $websitepage->pageurl;
877 $title = $websitepage->title;
878 $image = $websitepage->image;
879 $companyname = $mysoc->name;
880 $description = $websitepage->description;
881
882 $pageurl = str_replace('__WEBSITE_KEY__', $website->ref, $pageurl);
883 $title = str_replace('__WEBSITE_KEY__', $website->ref, $title);
884 $image = '/medias'.(preg_match('/^\//', $image) ? '' : '/').str_replace('__WEBSITE_KEY__', $website->ref, $image);
885 $companyname = str_replace('__WEBSITE_KEY__', $website->ref, $companyname);
886 $description = str_replace('__WEBSITE_KEY__', $website->ref, $description);
887
888 $shortlangcode = '';
889 if ($websitepage->lang) {
890 $shortlangcode = substr($websitepage->lang, 0, 2); // en_US or en-US -> en
891 }
892 if (empty($shortlangcode)) {
893 $shortlangcode = substr($website->lang, 0, 2); // en_US or en-US -> en
894 }
895
896 $fullurl = $website->virtualhost.'/'.$websitepage->pageurl.'.php';
897 $canonicalurl = $website->virtualhost.(($websitepage->id == $website->fk_default_home) ? '/' : (($shortlangcode != substr($website->lang, 0, 2) ? '/'.$shortlangcode : '').'/'.$websitepage->pageurl.'.php'));
898 $hashtags = trim(implode(' #', array_map('trim', explode(',', $websitepage->keywords))));
899
900 // Open Graph
901 $out .= '<meta name="og:type" content="website">'."\n"; // TODO If blogpost, use type article
902 $out .= '<meta name="og:title" content="'.$websitepage->title.'">'."\n";
903 if ($websitepage->image) {
904 $out .= '<meta name="og:image" content="'.$website->virtualhost.$image.'">'."\n";
905 }
906 $out .= '<meta name="og:url" content="'.$canonicalurl.'">'."\n";
907
908 // Twitter
909 $out .= '<meta name="twitter:card" content="summary">'."\n";
910 if (!empty($params) && !empty($params['twitter_account'])) {
911 $out .= '<meta name="twitter:site" content="@'.$params['twitter_account'].'">'."\n";
912 $out .= '<meta name="twitter:creator" content="@'.$params['twitter_account'].'">'."\n";
913 }
914 $out .= '<meta name="twitter:title" content="'.$websitepage->title.'">'."\n";
915 if ($websitepage->description) {
916 $out .= '<meta name="twitter:description" content="'.$websitepage->description.'">'."\n";
917 }
918 if ($websitepage->image) {
919 $out .= '<meta name="twitter:image" content="'.$website->virtualhost.$image.'">'."\n";
920 }
921 //$out .= '<meta name="twitter:domain" content="'.getDomainFromURL($website->virtualhost, 1).'">';
922 /*
923 $out .= '<meta name="twitter:app:name:iphone" content="">';
924 $out .= '<meta name="twitter:app:name:ipad" content="">';
925 $out .= '<meta name="twitter:app:name:googleplay" content="">';
926 $out .= '<meta name="twitter:app:url:iphone" content="">';
927 $out .= '<meta name="twitter:app:url:ipad" content="">';
928 $out .= '<meta name="twitter:app:url:googleplay" content="">';
929 $out .= '<meta name="twitter:app:id:iphone" content="">';
930 $out .= '<meta name="twitter:app:id:ipad" content="">';
931 $out .= '<meta name="twitter:app:id:googleplay" content="">';
932 */
933 }
934
935 return $out;
936}
937
944function getSocialNetworkSharingLinks($socialnetworks = '')
945{
946 global $website, $websitepage; // Very important. Required to have var available when running included containers.
947 '@phan-var-force WebSite $website';
948
949 $out = '<!-- section for social network sharing of page -->'."\n";
950
951 if ($website->virtualhost) {
952 $fullurl = $website->virtualhost.'/'.$websitepage->pageurl.'.php';
953 $hashtags = trim(implode(' #', array_map('trim', explode(',', $websitepage->keywords))));
954
955 $out .= '<div class="dol-social-share">'."\n";
956
957 // Twitter
958 if (empty($socialnetworks) || preg_match('/twitter/', $socialnetworks)) {
959 $out .= '<div class="dol-social-share-tw">'."\n";
960 $out .= '<a href="https://twitter.com/share" class="twitter-share-button" data-url="'.$fullurl.'" data-text="'.dol_escape_htmltag($websitepage->description).'" data-lang="'.$websitepage->lang.'" data-size="small" data-related="" data-hashtags="'.preg_replace('/^#/', '', $hashtags).'" data-count="horizontal">Tweet</a>';
961 $out .= '<script nonce="'.getNonce().'">!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?\'http\':\'https\';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+\'://platform.twitter.com/widgets.js\';fjs.parentNode.insertBefore(js,fjs);}}(document, \'script\', \'twitter-wjs\');</script>';
962 $out .= '</div>'."\n";
963 }
964
965 // Reddit
966 if (empty($socialnetworks) || preg_match('/reddit/', $socialnetworks)) {
967 $out .= '<div class="dol-social-share-reddit">'."\n";
968 $out .= '<a href="https://www.reddit.com/submit" target="_blank" rel="noopener noreferrer external" onclick="window.location = \'https://www.reddit.com/submit?url='.urlencode($fullurl).'\'; return false">';
969 $out .= '<span class="dol-social-share-reddit-span">Reddit</span>';
970 $out .= '</a>';
971 $out .= '</div>'."\n";
972 }
973
974 // Facebook
975 if (empty($socialnetworks) || preg_match('/facebook/', $socialnetworks)) {
976 $out .= '<div class="dol-social-share-fbl">'."\n";
977 $out .= '<a href="https://www.facebook.com/sharer/sharer.php?u='.urlencode($fullurl).'">';
978 $out .= '<span class="dol-social-share-fbl-span">Facebook</span>';
979 $out .= '</a>';
980 $out .= '</div>';
981 }
982
983 $out .= "\n</div>\n";
984 } else {
985 $out .= '<!-- virtual host not defined in CMS. No way to add sharing buttons -->'."\n";
986 }
987 $out .= '<!-- section end for social network sharing of page -->'."\n";
988
989 return $out;
990}
991
992
1001{
1002 global $db;
1003
1004 $nb = 0;
1005
1006 include_once DOL_DOCUMENT_ROOT.'/core/lib/images.lib.php';
1007 $regexforimg = getListOfPossibleImageExt(0);
1008 $regexforimg = '('.$regexforimg.')$';
1009
1010 $sql = "SELECT COUNT(rowid) as nb";
1011 $sql .= " FROM ".MAIN_DB_PREFIX."ecm_files";
1012 $sql .= " WHERE entity IN (".getEntity($object->element).")";
1013 $sql .= " AND src_object_type = '".$db->escape($object->element)."' AND src_object_id = ".((int) $object->id); // Filter on object
1014 $sql .= " AND ".$db->regexpsql('filename', $regexforimg, 1);
1015 $sql .= " AND share IS NOT NULL"; // Only image that are public
1016
1017 $resql = $db->query($sql);
1018 if ($resql) {
1019 $obj = $db->fetch_object($resql);
1020 if ($obj) {
1021 $nb = $obj->nb;
1022 }
1023 }
1024
1025 return $nb;
1026}
1027
1038function getImagePublicURLOfObject($object, $no = 1, $extName = '')
1039{
1040 global $db;
1041
1042 $image_path = '';
1043
1044 include_once DOL_DOCUMENT_ROOT.'/core/lib/images.lib.php';
1045 $regexforimg = getListOfPossibleImageExt(0);
1046 $regexforimg = '('.$regexforimg.')$';
1047
1048 $sql = "SELECT rowid, ref, share, filename, cover, position";
1049 $sql .= " FROM ".MAIN_DB_PREFIX."ecm_files";
1050 $sql .= " WHERE entity IN (".getEntity($object->element).")";
1051 $sql .= " AND src_object_type = '".$db->escape($object->element)."' AND src_object_id = ".((int) $object->id); // Filter on object
1052 $sql .= " AND ".$db->regexpsql('filename', $regexforimg, 1);
1053 $sql .= $db->order("cover,position,rowid", "ASC,ASC,ASC");
1054
1055 $resql = $db->query($sql);
1056 if ($resql) {
1057 $num = $db->num_rows($resql);
1058 $i = 0;
1059 $found = 0;
1060 $foundnotshared = 0;
1061 while ($i < $num) {
1062 $obj = $db->fetch_object($resql);
1063 if ($obj) {
1064 if (empty($obj->share)) {
1065 $foundnotshared++;
1066 } else {
1067 $found++;
1068
1069 if (defined('USEDOLIBARRSERVER') || defined('USEDOLIBARREDITOR')) {
1070 $image_path = DOL_URL_ROOT.'/viewimage.php?hashp='.urlencode($obj->share);
1071 } else {
1072 $image_path = '/wrapper.php?hashp='.urlencode($obj->share);
1073 }
1074
1075 if ($extName) {
1076 $image_path .= '&extname='.urlencode($extName);
1077 }
1078 }
1079 }
1080 if ($found >= $no) {
1081 break;
1082 }
1083 $i++;
1084 }
1085 if (!$found && $foundnotshared) {
1086 if (defined('USEDOLIBARRSERVER') || defined('USEDOLIBARREDITOR')) {
1087 $image_path = DOL_URL_ROOT.'/viewimage.php?modulepart=common&file=nophotopublic.png';
1088 } else {
1089 $image_path = '/wrapper.php?modulepart=common&file=nophotopublic.png';
1090 }
1091 }
1092 }
1093
1094 if (empty($image_path)) {
1095 if (defined('USEDOLIBARRSERVER') || defined('USEDOLIBARREDITOR')) {
1096 $image_path = DOL_URL_ROOT.'/viewimage.php?modulepart=common&file=nophoto.png';
1097 } else {
1098 $image_path = '/wrapper.php?modulepart=common&file=nophoto.png';
1099 }
1100 }
1101
1102 return $image_path;
1103}
1104
1113{
1114 global $db;
1115
1116 $files = array();
1117
1118 include_once DOL_DOCUMENT_ROOT.'/core/lib/images.lib.php';
1119 $regexforimg = getListOfPossibleImageExt(0);
1120 $regexforimg = '/('.$regexforimg.')$/i';
1121
1122 $sql = "SELECT rowid, ref, share, filename, cover, position";
1123 $sql .= " FROM ".MAIN_DB_PREFIX."ecm_files";
1124 $sql .= " WHERE entity IN (".getEntity($object->element).")";
1125 $sql .= " AND src_object_type = '".$db->escape($object->element)."' AND src_object_id = ".((int) $object->id);
1126 $sql .= $db->order("cover,position,rowid", "ASC,ASC,ASC");
1127
1128 $resql = $db->query($sql);
1129 if ($resql) {
1130 $num = $db->num_rows($resql);
1131 $i = 0;
1132 while ($i < $num) {
1133 $obj = $db->fetch_object($resql);
1134 if ($obj) {
1135 if (!empty($obj->share)) {
1136 $files[$obj->rowid]['filename'] = $obj->filename;
1137 $files[$obj->rowid]['position'] = $obj->position;
1138 if (defined('USEDOLIBARRSERVER') || defined('USEDOLIBARREDITOR')) {
1139 if (preg_match($regexforimg, $obj->filename)) {
1140 $files[$obj->rowid]['url'] = DOL_URL_ROOT.'/viewimage.php?hashp='.urlencode($obj->share);
1141 } else {
1142 $files[$obj->rowid]['url'] = DOL_URL_ROOT.'/document.php?hashp='.urlencode($obj->share);
1143 }
1144 } else {
1145 $files[$obj->rowid]['url'] = '/wrapper.php?hashp='.urlencode($obj->share);
1146 }
1147 }
1148 }
1149 $i++;
1150 }
1151 }
1152
1153 return $files;
1154}
1155
1156
1172function getPagesFromSearchCriterias($type, $algo, $searchstring, $max = 25, $sortfield = 'date_creation', $sortorder = 'DESC', $langcode = '', $otherfilters = [], $status = 1)
1173{
1174 global $conf, $db, $hookmanager, $langs, $mysoc, $user, $website, $websitepage, $weblangs; // Very important. Required to have var available when running included containers.
1175 '@phan-var-force WebSite $website';
1176
1177 $error = 0;
1178 $arrayresult = array('code' => '', 'list' => array());
1179
1180 // Clean parameters
1181 if (!is_object($weblangs)) {
1182 $weblangs = $langs;
1183 }
1184 if (empty($algo)) {
1185 $algo = 'content';
1186 }
1187
1188 /*
1189 if (empty($searchstring) && empty($type) && empty($langcode) && empty($otherfilters)) {
1190 $error++;
1191 $arrayresult['code'] = 'KO';
1192 $arrayresult['message'] = $weblangs->trans("EmptySearchString");
1193 } elseif ($searchstring && dol_strlen($searchstring) < 2) {
1194 $weblangs->load("errors");
1195 $error++;
1196 $arrayresult['code'] = 'KO';
1197 $arrayresult['message'] = $weblangs->trans("ErrorSearchCriteriaTooSmall");
1198 } else {
1199 */
1200 $tmparrayoftype = explode(',', $type);
1201 /*foreach ($tmparrayoftype as $tmptype) {
1202 if (!in_array($tmptype, array('', 'page', 'blogpost'))) {
1203 $error++;
1204 $arrayresult['code'] = 'KO';
1205 $arrayresult['message'] = 'Bad value for parameter type';
1206 break;
1207 }
1208 }*/
1209 //}
1210
1211 $searchdone = 0;
1212 $found = 0;
1213
1214 if (!$error && (empty($max) || ($found < $max)) && (preg_match('/meta/', $algo) || preg_match('/content/', $algo))) {
1215 include_once DOL_DOCUMENT_ROOT.'/website/class/websitepage.class.php';
1216
1217 $sql = 'SELECT wp.rowid FROM '.MAIN_DB_PREFIX.'website_page as wp';
1218 if (is_array($otherfilters) && !empty($otherfilters['category'])) {
1219 $sql .= ', '.MAIN_DB_PREFIX.'categorie_website_page as cwp';
1220 }
1221 $sql .= " WHERE wp.fk_website = ".((int) $website->id);
1222 if ($status >= 0) {
1223 $sql .= " AND wp.status = ".((int) $status);
1224 }
1225 if ($langcode) {
1226 $sql .= " AND wp.lang = '".$db->escape($langcode)."'";
1227 }
1228 if ($type) {
1229 $tmparrayoftype = explode(',', $type);
1230 $typestring = '';
1231 foreach ($tmparrayoftype as $tmptype) {
1232 $typestring .= ($typestring ? ", " : "")."'".$db->escape(trim($tmptype))."'";
1233 }
1234 $sql .= " AND wp.type_container IN (".$db->sanitize($typestring, 1).")";
1235 }
1236 $sql .= " AND (";
1237 $searchalgo = '';
1238 if (preg_match('/meta/', $algo)) {
1239 $searchalgo .= ($searchalgo ? ' OR ' : '')."wp.title LIKE '%".$db->escape($db->escapeforlike($searchstring))."%' OR wp.description LIKE '%".$db->escape($db->escapeforlike($searchstring))."%'";
1240 $searchalgo .= ($searchalgo ? ' OR ' : '')."wp.keywords LIKE '".$db->escape($db->escapeforlike($searchstring)).",%' OR wp.keywords LIKE '% ".$db->escape($db->escapeforlike($searchstring))."%'"; // TODO Use a better way to scan keywords
1241 }
1242 if (preg_match('/content/', $algo)) {
1243 $searchalgo .= ($searchalgo ? ' OR ' : '')."wp.content LIKE '%".$db->escape($db->escapeforlike($searchstring))."%'";
1244 }
1245 $sql .= $searchalgo;
1246 if (is_array($otherfilters) && !empty($otherfilters['category'])) {
1247 $sql .= ' AND cwp.fk_website_page = wp.rowid AND cwp.fk_categorie = '.((int) $otherfilters['category']);
1248 }
1249 $sql .= ")";
1250 $sql .= $db->order($sortfield, $sortorder);
1251 $sql .= $db->plimit($max);
1252 //print $sql;
1253
1254 $resql = $db->query($sql);
1255
1256 if ($resql) {
1257 $i = 0;
1258 while (($obj = $db->fetch_object($resql)) && ($i < $max || $max == 0)) {
1259 if ($obj->rowid > 0) {
1260 $tmpwebsitepage = new WebsitePage($db);
1261 $tmpwebsitepage->fetch($obj->rowid);
1262 if ($tmpwebsitepage->id > 0) {
1263 $arrayresult['list'][$obj->rowid] = $tmpwebsitepage;
1264 }
1265 $found++;
1266 }
1267 $i++;
1268 }
1269 } else {
1270 $error++;
1271 $arrayresult['code'] = $db->lasterrno();
1272 $arrayresult['message'] = $db->lasterror();
1273 }
1274
1275 $searchdone = 1;
1276 }
1277
1278 if (!$error && (empty($max) || ($found < $max)) && (preg_match('/sitefiles/', $algo))) {
1279 global $dolibarr_main_data_root;
1280
1281 $pathofwebsite = $dolibarr_main_data_root.($conf->entity > 1 ? '/'.$conf->entity : '').'/website/'.$website->ref;
1282 $filehtmlheader = $pathofwebsite.'/htmlheader.html';
1283 $filecss = $pathofwebsite.'/styles.css.php';
1284 $filejs = $pathofwebsite.'/javascript.js.php';
1285 $filerobot = $pathofwebsite.'/robots.txt';
1286 $filehtaccess = $pathofwebsite.'/.htaccess';
1287 $filemanifestjson = $pathofwebsite.'/manifest.json.php';
1288 $filereadme = $pathofwebsite.'/README.md';
1289
1290 $filecontent = file_get_contents($filehtmlheader);
1291 if ((empty($max) || ($found < $max)) && preg_match('/'.preg_quote($searchstring, '/').'/', $filecontent)) {
1292 $arrayresult['list'][] = array('type' => 'website_htmlheadercontent');
1293 }
1294
1295 $filecontent = file_get_contents($filecss);
1296 if ((empty($max) || ($found < $max)) && preg_match('/'.preg_quote($searchstring, '/').'/', $filecontent)) {
1297 $arrayresult['list'][] = array('type' => 'website_csscontent');
1298 }
1299
1300 $filecontent = file_get_contents($filejs);
1301 if ((empty($max) || ($found < $max)) && preg_match('/'.preg_quote($searchstring, '/').'/', $filecontent)) {
1302 $arrayresult['list'][] = array('type' => 'website_jscontent');
1303 }
1304
1305 $filerobot = file_get_contents($filerobot);
1306 if ((empty($max) || ($found < $max)) && preg_match('/'.preg_quote($searchstring, '/').'/', $filecontent)) {
1307 $arrayresult['list'][] = array('type' => 'website_robotcontent');
1308 }
1309
1310 $searchdone = 1;
1311 }
1312
1313 if (!$error) {
1314 if ($searchdone) {
1315 $arrayresult['code'] = 'OK';
1316 if (empty($arrayresult['list'])) {
1317 $arrayresult['code'] = 'KO';
1318 $arrayresult['message'] = $weblangs->trans("NoRecordFound");
1319 }
1320 } else {
1321 $error++;
1322 $arrayresult['code'] = 'KO';
1323 $arrayresult['message'] = 'No supported algorithm found';
1324 }
1325 }
1326
1327 return $arrayresult;
1328}
1329
1339function getImageFromHtmlContent($htmlContent, $imageNumber = 1)
1340{
1341 $dom = new DOMDocument();
1342
1343 libxml_use_internal_errors(false); // Avoid to fill memory with xml errors
1344 if (LIBXML_VERSION < 20900) {
1345 // Avoid load of external entities (security problem).
1346 // Required only if LIBXML_VERSION < 20900
1347 // @phan-suppress-next-line PhanDeprecatedFunctionInternal
1348 libxml_disable_entity_loader(true);
1349 }
1350
1351 // Load HTML content into object
1352 $dom->loadHTML($htmlContent);
1353
1354 // Re-enable HTML load errors
1355 libxml_clear_errors();
1356
1357 // Load all img tags
1358 $images = $dom->getElementsByTagName('img');
1359
1360 // Check if nb of image is valid
1361 if ($imageNumber > 0 && $imageNumber <= $images->length) {
1362 // Récupère l'image correspondante (index - 1 car $imageNumber est 1-based)
1363 $img = $images->item($imageNumber - 1);
1364 if ($img instanceof DOMElement) {
1365 return $img->getAttribute('src');
1366 }
1367 }
1368
1369 return '';
1370}
1371
1388function getAllImages($object, $objectpage, $urltograb, &$tmp, &$action, $modifylinks = 0, $grabimages = 1, $grabimagesinto = 'subpage')
1389{
1390 global $conf;
1391
1392 $error = 0;
1393
1394 dol_syslog("Call getAllImages with grabimagesinto=".$grabimagesinto);
1395
1396 $alreadygrabbed = array();
1397
1398 if (preg_match('/\/$/', $urltograb)) {
1399 $urltograb .= '.';
1400 }
1401 $urltograb = dirname($urltograb); // So urltograb is now http://www.nltechno.com or http://www.nltechno.com/dir1
1402
1403 // Search X in "img...src=X"
1404 $regs = array();
1405 preg_match_all('/<img([^\.\/]+)src="([^>"]+)"([^>]*)>/i', $tmp, $regs);
1406
1407 foreach ($regs[0] as $key => $val) {
1408 if (preg_match('/^data:image/i', $regs[2][$key])) {
1409 continue; // We do nothing for such images
1410 }
1411
1412 if (preg_match('/^\//', $regs[2][$key])) {
1413 $urltograbdirrootwithoutslash = getRootURLFromURL($urltograb);
1414 $urltograbbis = $urltograbdirrootwithoutslash.$regs[2][$key]; // We use dirroot
1415 } else {
1416 $urltograbbis = $urltograb.'/'.$regs[2][$key]; // We use dir of grabbed file
1417 }
1418
1419 $linkwithoutdomain = $regs[2][$key];
1420 $dirforimages = '/'.$objectpage->pageurl;
1421 if ($grabimagesinto == 'root') {
1422 $dirforimages = '';
1423 }
1424
1425 // Define $filetosave and $filename
1426 $filetosave = $conf->medias->multidir_output[$conf->entity].'/image/'.$object->ref.$dirforimages.(preg_match('/^\//', $regs[2][$key]) ? '' : '/').$regs[2][$key];
1427 if (preg_match('/^http/', $regs[2][$key])) {
1428 $urltograbbis = $regs[2][$key];
1429 $linkwithoutdomain = preg_replace('/^https?:\/\/[^\/]+\//i', '', $regs[2][$key]);
1430 $filetosave = $conf->medias->multidir_output[$conf->entity].'/image/'.$object->ref.$dirforimages.(preg_match('/^\//', $linkwithoutdomain) ? '' : '/').$linkwithoutdomain;
1431 }
1432 $filename = 'image/'.$object->ref.$dirforimages.(preg_match('/^\//', $linkwithoutdomain) ? '' : '/').$linkwithoutdomain;
1433
1434 // Clean the aa/bb/../cc into aa/cc
1435 $filetosave = preg_replace('/\/[^\/]+\/\.\./', '', $filetosave);
1436 $filename = preg_replace('/\/[^\/]+\/\.\./', '', $filename);
1437
1438 if (empty($alreadygrabbed[$urltograbbis])) {
1439 if ($grabimages) {
1440 $tmpgeturl = getURLContent($urltograbbis, 'GET', '', 1, array(), array('http', 'https'), 0);
1441 if ($tmpgeturl['curl_error_no']) {
1442 $error++;
1443 setEventMessages('Error getting '.$urltograbbis.': '.$tmpgeturl['curl_error_msg'], null, 'errors');
1444 $action = 'create';
1445 } elseif ($tmpgeturl['http_code'] != '200') {
1446 $error++;
1447 setEventMessages('Error getting '.$urltograbbis.': '.$tmpgeturl['http_code'], null, 'errors');
1448 $action = 'create';
1449 } else {
1450 $alreadygrabbed[$urltograbbis] = 1; // Track that file was already grabbed.
1451
1452 dol_mkdir(dirname($filetosave));
1453
1454 $fp = fopen($filetosave, "w");
1455 fwrite($fp, $tmpgeturl['content']);
1456 fclose($fp);
1457 dolChmod($filetosave);
1458 }
1459 }
1460 }
1461
1462 if ($modifylinks) {
1463 $tmp = preg_replace('/'.preg_quote($regs[0][$key], '/').'/i', '<img'.$regs[1][$key].'src="'.DOL_URL_ROOT.'/viewimage.php?modulepart=medias&file='.$filename.'"'.$regs[3][$key].'>', $tmp);
1464 }
1465 }
1466
1467 // Search X in "background...url(X)"
1468 preg_match_all('/background([^\.\/\‍(;]+)url\‍([\"\']?([^\‍)\"\']*)[\"\']?\‍)/i', $tmp, $regs);
1469
1470 foreach ($regs[0] as $key => $val) {
1471 if (preg_match('/^data:image/i', $regs[2][$key])) {
1472 continue; // We do nothing for such images
1473 }
1474
1475 if (preg_match('/^\//', $regs[2][$key])) {
1476 $urltograbdirrootwithoutslash = getRootURLFromURL($urltograb);
1477 $urltograbbis = $urltograbdirrootwithoutslash.$regs[2][$key]; // We use dirroot
1478 } else {
1479 $urltograbbis = $urltograb.'/'.$regs[2][$key]; // We use dir of grabbed file
1480 }
1481
1482 $linkwithoutdomain = $regs[2][$key];
1483
1484 $dirforimages = '/'.$objectpage->pageurl;
1485 if ($grabimagesinto == 'root') {
1486 $dirforimages = '';
1487 }
1488
1489 $filetosave = $conf->medias->multidir_output[$conf->entity].'/image/'.$object->ref.$dirforimages.(preg_match('/^\//', $regs[2][$key]) ? '' : '/').$regs[2][$key];
1490
1491 if (preg_match('/^http/', $regs[2][$key])) {
1492 $urltograbbis = $regs[2][$key];
1493 $linkwithoutdomain = preg_replace('/^https?:\/\/[^\/]+\//i', '', $regs[2][$key]);
1494 $filetosave = $conf->medias->multidir_output[$conf->entity].'/image/'.$object->ref.$dirforimages.(preg_match('/^\//', $linkwithoutdomain) ? '' : '/').$linkwithoutdomain;
1495 }
1496
1497 $filename = 'image/'.$object->ref.$dirforimages.(preg_match('/^\//', $linkwithoutdomain) ? '' : '/').$linkwithoutdomain;
1498
1499 // Clean the aa/bb/../cc into aa/cc
1500 $filetosave = preg_replace('/\/[^\/]+\/\.\./', '', $filetosave);
1501 $filename = preg_replace('/\/[^\/]+\/\.\./', '', $filename);
1502
1503 if (empty($alreadygrabbed[$urltograbbis])) {
1504 if ($grabimages) {
1505 $tmpgeturl = getURLContent($urltograbbis, 'GET', '', 1, array(), array('http', 'https'), 0);
1506 if ($tmpgeturl['curl_error_no']) {
1507 $error++;
1508 setEventMessages('Error getting '.$urltograbbis.': '.$tmpgeturl['curl_error_msg'], null, 'errors');
1509 $action = 'create';
1510 } elseif ($tmpgeturl['http_code'] != '200') {
1511 $error++;
1512 setEventMessages('Error getting '.$urltograbbis.': '.$tmpgeturl['http_code'], null, 'errors');
1513 $action = 'create';
1514 } else {
1515 $alreadygrabbed[$urltograbbis] = 1; // Track that file was already grabbed.
1516
1517 dol_mkdir(dirname($filetosave));
1518
1519 $fp = fopen($filetosave, "w");
1520 fwrite($fp, $tmpgeturl['content']);
1521 fclose($fp);
1522 dolChmod($filetosave);
1523 }
1524 }
1525 }
1526
1527 if ($modifylinks) {
1528 $tmp = preg_replace('/'.preg_quote($regs[0][$key], '/').'/i', 'background'.$regs[1][$key].'url("'.DOL_URL_ROOT.'/viewimage.php?modulepart=medias&file='.$filename.'")', $tmp);
1529 }
1530 }
1531}
1532
1539function getNewsDetailsById($postId)
1540{
1541 global $db;
1542
1543 if (empty($postId)) {
1544 return -1;
1545 }
1546
1547 $sql = "SELECT p.title, p.description, p.date_creation, p.image
1548 FROM ".MAIN_DB_PREFIX."website_page as p
1549 WHERE p.rowid = ".(intval($postId));
1550
1551 $resql = $db->query($sql);
1552 if ($resql) {
1553 return $db->fetch_array($resql);
1554 } else {
1555 return -1;
1556 }
1557}
if( $user->socid > 0) if(! $user->hasRight('accounting', 'chartofaccount')) $object
Definition card.php:58
Class Websitepage.
dol_mktime($hour, $minute, $second, $month, $day, $year, $gm='auto', $check=1)
Return a timestamp date built from detailed information (by default a local PHP server timestamp) Rep...
setEventMessages($mesg, $mesgs, $style='mesgs', $messagekey='', $noduplicate=0, $attop=0)
Set event messages in dol_events session object.
dol_string_nohtmltag($stringtoclean, $removelinefeed=1, $pagecodeto='UTF-8', $strip_tags=0, $removedoublespaces=1)
Clean a string from all HTML tags and entities.
dolChmod($filepath, $newmask='')
Change mod of a file.
dol_now($mode='auto')
Return date for now.
getDolGlobalInt($key, $default=0)
Return a Dolibarr global constant int value.
dol_print_date($time, $format='', $tzoutput='auto', $outputlangs=null, $encodetooutput=false)
Output date in a string format according to outputlangs (or langs if not defined).
dol_escape_json($stringtoescape)
Returns text escaped for inclusion into javascript code.
getDolGlobalString($key, $default='')
Return a Dolibarr global constant string value.
dol_syslog($message, $level=LOG_INFO, $ident=0, $suffixinfilename='', $restricttologhandler='', $logcontext=null)
Write log message into outputs.
dol_getdate($timestamp, $fast=false, $forcetimezone='')
Return an array with locale date info.
dol_mkdir($dir, $dataroot='', $newmask='')
Creation of a directory (this can create recursive subdir)
dol_escape_htmltag($stringtoescape, $keepb=0, $keepn=0, $noescapetags='', $escapeonlyhtmltags=0, $cleanalsojavascript=0)
Returns text escaped for inclusion in HTML alt or title or value tags, or into values of HTML input f...
getRootURLFromURL($url)
Function root url from a long url For example: https://www.abc.mydomain.com/dir/page....
getURLContent($url, $postorget='GET', $param='', $followlocation=1, $addheaders=array(), $allowedschemes=array('http', 'https'), $localurl=0, $ssl_verifypeer=-1)
Function to get a content from an URL (use proxy if proxy defined).
getListOfPossibleImageExt($acceptsvg=0)
Return if a filename is file name of a supported image format.
getAllImages($object, $objectpage, $urltograb, &$tmp, &$action, $modifylinks=0, $grabimages=1, $grabimagesinto='subpage')
Download all images found into an external URL.
getImagePublicURLOfObject($object, $no=1, $extName='')
Return the public image URL of an object.
redirectToContainer($containerref, $containeraliasalt='', $containerid=0, $permanent=0, $parameters=array())
Format img tags to introduce viewimage on img src.
getPublicFilesOfObject($object)
Return array with list of all public files of a given object.
getImageFromHtmlContent($htmlContent, $imageNumber=1)
Return the URL of an image found into a HTML content.
dolStripPhpCode($str, $replacewith='')
Remove PHP code part from a string.
getNbOfImagePublicURLOfObject($object)
Return nb of images known into inde files for an object;.
getStructuredData($type, $data=array())
Return HTML content to add structured data for an article, news or Blog Post.
dolWebsiteReplacementOfLinks($website, $content, $removephppart=0, $contenttype='html', $containerid=0)
Convert a page content to have correct links (based on DOL_URL_ROOT) into an html content.
getPagesFromSearchCriterias($type, $algo, $searchstring, $max=25, $sortfield='date_creation', $sortorder='DESC', $langcode='', $otherfilters=[], $status=1)
Return list of containers object that match a criteria.
dolWebsiteIncrementCounter($websiteid, $websitepagetype, $websitepageid)
Increase the website counter of page access.
getNewsDetailsById($postId)
Retrieves the details of a news post by its ID.
dolReplaceSmileyCodeWithUTF8($content)
Converts smiley string into the utf8 sequence.
includeContainer($containerref)
Clean an HTML page to report only content, so we can include it into another page.
dolKeepOnlyPhpCode($str)
Keep only PHP code part from a HTML string page.
dolWebsiteOutput($content, $contenttype='html', $containerid=0)
Render a string of an HTML content and output it.
getSocialNetworkHeaderCards($params=null)
Return HTML content to add as header card for an article, news or Blog Post or home page.
getSocialNetworkSharingLinks($socialnetworks='')
Return HTML content to add structured data for an article, news or Blog Post.