dolibarr  17.0.4
website.lib.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (C) 2017 Laurent Destailleur <eldy@users.sourceforge.net>
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; either version 3 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program. If not, see <https://www.gnu.org/licenses/>.
16  */
17 
32 function dolStripPhpCode($str, $replacewith = '')
33 {
34  $str = str_replace('<?=', '<?php', $str);
35 
36  $newstr = '';
37 
38  // Split on each opening tag
39  //$parts = explode('<?php', $str);
40  $parts = preg_split('/'.preg_quote('<?php', '/').'/i', $str);
41 
42  if (!empty($parts)) {
43  $i = 0;
44  foreach ($parts as $part) {
45  if ($i == 0) { // The first part is never php code
46  $i++;
47  $newstr .= $part;
48  continue;
49  }
50  // The second part is the php code. We split on closing tag
51  $partlings = explode('?>', $part);
52  if (!empty($partlings)) {
53  //$phppart = $partlings[0];
54  //remove content before closing tag
55  if (count($partlings) > 1) {
56  $partlings[0] = ''; // Todo why a count > 1 and not >= 1 ?
57  }
58  //append to out string
59  //$newstr .= '<span class="phptag" class="tooltip" title="'.dol_escape_htmltag(dolGetFirstLineOfText($phppart).'...').'">'.$replacewith.'<!-- '.$phppart.' --></span>'.implode('', $partlings);
60  //$newstr .= '<span>'.$replacewith.'<!-- '.$phppart.' --></span>'.implode('', $partlings);
61  $newstr .= '<span phptag>'.$replacewith.'</span>'.implode('', $partlings);
62  //$newstr .= $replacewith.implode('', $partlings);
63  }
64  }
65  }
66  return $newstr;
67 }
68 
76 function dolKeepOnlyPhpCode($str)
77 {
78  $str = str_replace('<?=', '<?php', $str);
79 
80  $newstr = '';
81 
82  // Split on each opening tag
83  //$parts = explode('<?php', $str);
84  $parts = preg_split('/'.preg_quote('<?php', '/').'/i', $str);
85 
86  if (!empty($parts)) {
87  $i = 0;
88  foreach ($parts as $part) {
89  if ($i == 0) { // The first part is never php code
90  $i++;
91  continue;
92  }
93  $newstr .= '<?php';
94  //split on closing tag
95  $partlings = explode('?>', $part, 2);
96  if (!empty($partlings)) {
97  $newstr .= $partlings[0].'?>';
98  } else {
99  $newstr .= $part.'?>';
100  }
101  }
102  }
103  return $newstr;
104 }
105 
118 function dolWebsiteReplacementOfLinks($website, $content, $removephppart = 0, $contenttype = 'html', $containerid = '')
119 {
120  $nbrep = 0;
121 
122  dol_syslog('dolWebsiteReplacementOfLinks start (contenttype='.$contenttype." containerid=".$containerid." USEDOLIBARREDITOR=".(defined('USEDOLIBARREDITOR') ? '1' : '')." USEDOLIBARRSERVER=".(defined('USEDOLIBARRSERVER') ? '1' : '').')', LOG_DEBUG);
123  //if ($contenttype == 'html') { print $content;exit; }
124 
125  // Replace php code. Note $content may come from database and does not contains body tags.
126  $replacewith = '...php...';
127  if ($removephppart) {
128  $replacewith = '';
129  }
130  $content = preg_replace('/value="<\?php((?!\?>).)*\?>\n*/ims', 'value="'.$replacewith.'"', $content);
131 
132  $replacewith = '"callto=#';
133  if ($removephppart) {
134  $replacewith = '';
135  }
136  $content = preg_replace('/"callto:<\?php((?!\?>).)*\?>\n*/ims', $replacewith, $content);
137 
138  $replacewith = '"mailto=#';
139  if ($removephppart) {
140  $replacewith = '';
141  }
142  $content = preg_replace('/"mailto:<\?php((?!\?>).)*\?>\n*/ims', $replacewith, $content);
143 
144  $replacewith = 'src="php';
145  if ($removephppart) {
146  $replacewith = '';
147  }
148  $content = preg_replace('/src="<\?php((?!\?>).)*\?>\n*/ims', $replacewith, $content);
149 
150  $replacewith = 'href="php';
151  if ($removephppart) {
152  $replacewith = '';
153  }
154  $content = preg_replace('/href="<\?php((?!\?>).)*\?>\n*/ims', $replacewith, $content);
155 
156  //$replacewith='<span class="phptag">...php...</span>';
157  $replacewith = '...php...';
158  if ($removephppart) {
159  $replacewith = '';
160  }
161  //$content = preg_replace('/<\?php((?!\?toremove>).)*\?toremove>\n*/ims', $replacewith, $content);
162  /*if ($content === null) {
163  if (preg_last_error() == PREG_JIT_STACKLIMIT_ERROR) $content = 'preg_replace error (when removing php tags) PREG_JIT_STACKLIMIT_ERROR';
164  }*/
165  $content = dolStripPhpCode($content, $replacewith);
166  //var_dump($content);
167 
168  // Protect the link styles.css.php to any replacement that we make after.
169  $content = str_replace('href="styles.css.php', 'href="!~!~!~styles.css.php', $content);
170  $content = str_replace('href="http', 'href="!~!~!~http', $content);
171  $content = str_replace('href="//', 'href="!~!~!~//', $content);
172  $content = str_replace('src="viewimage.php', 'src="!~!~!~/viewimage.php', $content);
173  $content = str_replace('src="/viewimage.php', 'src="!~!~!~/viewimage.php', $content);
174  $content = str_replace('src="'.DOL_URL_ROOT.'/viewimage.php', 'src="!~!~!~'.DOL_URL_ROOT.'/viewimage.php', $content);
175  $content = str_replace('href="document.php', 'href="!~!~!~/document.php', $content);
176  $content = str_replace('href="/document.php', 'href="!~!~!~/document.php', $content);
177  $content = str_replace('href="'.DOL_URL_ROOT.'/document.php', 'href="!~!~!~'.DOL_URL_ROOT.'/document.php', $content);
178 
179  // Replace relative link '/' with dolibarr URL
180  $content = preg_replace('/(href=")\/(#[^\"<>]*)?\"/', '\1!~!~!~'.DOL_URL_ROOT.'/website/index.php?website='.$website->ref.'&pageid='.$website->fk_default_home.'\2"', $content, -1, $nbrep);
181  // Replace relative link /xxx.php#aaa or /xxx.php with dolibarr URL (we discard param ?...)
182  $content = preg_replace('/(href=")\/?([^:\"\!]*)\.php(#[^\"<>]*)?\"/', '\1!~!~!~'.DOL_URL_ROOT.'/website/index.php?website='.$website->ref.'&pageref=\2\3"', $content, -1, $nbrep);
183  // Replace relative link /xxx.php?a=b&c=d#aaa or /xxx.php?a=b&c=d with dolibarr URL
184  $content = preg_replace('/(href=")\/?([^:\"\!]*)\.php\?([^#\"<>]*)(#[^\"<>]*)?\"/', '\1!~!~!~'.DOL_URL_ROOT.'/website/index.php?website='.$website->ref.'&pageref=\2&\3\4"', $content, -1, $nbrep);
185 
186  // Fix relative link into medias with correct URL after the DOL_URL_ROOT: ../url("medias/
187  $content = preg_replace('/url\‍((["\']?)\/?medias\//', 'url(\1!~!~!~'.DOL_URL_ROOT.'/viewimage.php?modulepart=medias&file=', $content, -1, $nbrep);
188  $content = preg_replace('/data-slide-bg=(["\']?)\/?medias\//', 'data-slide-bg=\1!~!~!~'.DOL_URL_ROOT.'/viewimage.php?modulepart=medias&file=', $content, -1, $nbrep);
189 
190  // <img src="medias/...image.png... => <img src="dolibarr/viewimage.php/modulepart=medias&file=image.png...
191  // <img src="...image.png... => <img src="dolibarr/viewimage.php/modulepart=medias&file=image.png...
192  $content = preg_replace('/(<img[^>]*src=")\/?medias\//', '\1!~!~!~'.DOL_URL_ROOT.'/viewimage.php?modulepart=medias&file=', $content, -1, $nbrep);
193  // <img src="image.png... => <img src="dolibarr/viewimage.php/modulepart=medias&file=image.png...
194  $content = preg_replace('/(<img[^>]*src=")\/?([^:\"\!]+)\"/', '\1!~!~!~'.DOL_URL_ROOT.'/viewimage.php?modulepart=medias&file=\2"', $content, -1, $nbrep);
195  // <img src="viewimage.php/modulepart=medias&file=image.png" => <img src="dolibarr/viewimage.php/modulepart=medias&file=image.png"
196  $content = preg_replace('/(<img[^>]*src=")(\/?viewimage\.php)/', '\1!~!~!~'.DOL_URL_ROOT.'/viewimage.php', $content, -1, $nbrep);
197 
198  // action="newpage.php" => action="dolibarr/website/index.php?website=...&pageref=newpage
199  $content = preg_replace('/(action=")\/?([^:\"]*)(\.php\")/', '\1!~!~!~'.DOL_URL_ROOT.'/website/index.php?website='.$website->ref.'&pageref=\2"', $content, -1, $nbrep);
200 
201  // Fix relative link /document.php with correct URL after the DOL_URL_ROOT: ...href="/document.php?modulepart="
202  $content = preg_replace('/(href=")(\/?document\.php\?[^\"]*modulepart=[^\"]*)(\")/', '\1!~!~!~'.DOL_URL_ROOT.'\2\3', $content, -1, $nbrep);
203  $content = preg_replace('/(src=")(\/?document\.php\?[^\"]*modulepart=[^\"]*)(\")/', '\1!~!~!~'.DOL_URL_ROOT.'\2\3', $content, -1, $nbrep);
204 
205  // Fix relative link /viewimage.php with correct URL after the DOL_URL_ROOT: ...href="/viewimage.php?modulepart="
206  $content = preg_replace('/(url\‍(")(\/?viewimage\.php\?[^\"]*modulepart=[^\"]*)(\")/', '\1!~!~!~'.DOL_URL_ROOT.'\2\3', $content, -1, $nbrep);
207 
208  // Fix relative URL
209  $content = str_replace('src="!~!~!~/viewimage.php', 'src="!~!~!~'.DOL_URL_ROOT.'/viewimage.php', $content);
210  $content = str_replace('href="!~!~!~/document.php', 'href="!~!~!~'.DOL_URL_ROOT.'/document.php', $content);
211  // Remove the protection tag !~!~!~
212  $content = str_replace('!~!~!~', '', $content);
213 
214  dol_syslog('dolWebsiteReplacementOfLinks end', LOG_DEBUG);
215  //if ($contenttype == 'html') { print $content;exit; }
216 
217  return $content;
218 }
219 
227 {
228  $map = array(
229  ":face_with_tears_of_joy:" => "\xF0\x9F\x98\x82",
230  ":grinning_face_with_smiling_eyes:" => "\xF0\x9F\x98\x81",
231  ":smiling_face_with_open_mouth:" => "\xF0\x9F\x98\x83",
232  ":smiling_face_with_open_mouth_and_cold_sweat:" => "\xF0\x9F\x98\x85",
233  ":smiling_face_with_open_mouth_and_tightly_closed_eyes:" => "\xF0\x9F\x98\x86",
234  ":winking_face:" => "\xF0\x9F\x98\x89",
235  ":smiling_face_with_smiling_eyes:" => "\xF0\x9F\x98\x8A",
236  ":face_savouring_delicious_food:" => "\xF0\x9F\x98\x8B",
237  ":relieved_face:" => "\xF0\x9F\x98\x8C",
238  ":smiling_face_with_heart_shaped_eyes:" => "\xF0\x9F\x98\x8D",
239  ":smiling_face_with_sunglasses:" => "\xF0\x9F\x98\x8E",
240  ":smirking_face:" => "\xF0\x9F\x98\x8F",
241  ":neutral_face:" => "\xF0\x9F\x98\x90",
242  ":expressionless_face:" => "\xF0\x9F\x98\x91",
243  ":unamused_face:" => "\xF0\x9F\x98\x92",
244  ":face_with_cold_sweat:" => "\xF0\x9F\x98\x93",
245  ":pensive_face:" => "\xF0\x9F\x98\x94",
246  ":confused_face:" => "\xF0\x9F\x98\x95",
247  ":confounded_face:" => "\xF0\x9F\x98\x96",
248  ":kissing_face:" => "\xF0\x9F\x98\x97",
249  ":face_throwing_a_kiss:" => "\xF0\x9F\x98\x98",
250  ":kissing_face_with_smiling_eyes:" => "\xF0\x9F\x98\x99",
251  ":kissing_face_with_closed_eyes:" => "\xF0\x9F\x98\x9A",
252  ":face_with_stuck_out_tongue:" => "\xF0\x9F\x98\x9B",
253  ":face_with_stuck_out_tongue_and_winking_eye:" => "\xF0\x9F\x98\x9C",
254  ":face_with_stuck_out_tongue_and_tightly_closed_eyes:" => "\xF0\x9F\x98\x9D",
255  ":disappointed_face:" => "\xF0\x9F\x98\x9E",
256  ":worried_face:" => "\xF0\x9F\x98\x9F",
257  ":angry_face:" => "\xF0\x9F\x98\xA0",
258  ":face_with_symbols_on_mouth:" => "\xF0\x9F\x98\xA1",
259  );
260  foreach ($map as $key => $value) {
261  $content = str_replace($key, $value, $content);
262  }
263  return $content;
264 }
265 
266 
277 function dolWebsiteOutput($content, $contenttype = 'html', $containerid = '')
278 {
279  global $db, $langs, $conf, $user;
280  global $dolibarr_main_url_root, $dolibarr_main_data_root;
281  global $website;
282  global $includehtmlcontentopened;
283 
284  $nbrep = 0;
285 
286  dol_syslog("dolWebsiteOutput start - contenttype=".$contenttype." containerid=".$containerid." USEDOLIBARREDITOR=".(defined('USEDOLIBARREDITOR') ? '1' : '')." USEDOLIBARRSERVER=".(defined('USEDOLIBARRSERVER') ? '1' : '').' includehtmlcontentopened='.$includehtmlcontentopened);
287 
288  //print $containerid.' '.$content;
289 
290  // Define $urlwithroot
291  $urlwithouturlroot = preg_replace('/'.preg_quote(DOL_URL_ROOT, '/').'$/i', '', trim($dolibarr_main_url_root));
292  $urlwithroot = $urlwithouturlroot.DOL_URL_ROOT; // This is to use external domain name found into config file
293  //$urlwithroot=DOL_MAIN_URL_ROOT; // This is to use same domain name than current
294 
295  if (defined('USEDOLIBARREDITOR')) { // REPLACEMENT OF LINKS When page called from Dolibarr editor
296  // We remove the <head> part of content
297  if ($contenttype == 'html') {
298  $content = preg_replace('/<head>.*<\/head>/ims', '', $content);
299  $content = preg_replace('/^.*<body(\s[^>]*)*>/ims', '', $content);
300  $content = preg_replace('/<\/body(\s[^>]*)*>.*$/ims', '', $content);
301  }
302  } elseif (defined('USEDOLIBARRSERVER')) { // REPLACEMENT OF LINKS When page called from Dolibarr server
303  $content = str_replace('<link rel="stylesheet" href="/styles.css', '<link rel="stylesheet" href="styles.css', $content);
304 
305  // Protect the link styles.css.php to any replacement that we make after.
306  $content = str_replace('href="styles.css.php', 'href="!~!~!~styles.css.php', $content);
307  $content = str_replace('href="http', 'href="!~!~!~http', $content);
308  $content = str_replace('href="//', 'href="!~!~!~//', $content);
309  $content = str_replace(array('src="viewimage.php', 'src="/viewimage.php'), 'src="!~!~!~/viewimage.php', $content);
310  $content = str_replace('src="'.DOL_URL_ROOT.'/viewimage.php', 'src="!~!~!~'.DOL_URL_ROOT.'/viewimage.php', $content);
311  $content = str_replace(array('href="document.php', 'href="/document.php'), 'href="!~!~!~/document.php', $content);
312  $content = str_replace('href="'.DOL_URL_ROOT.'/document.php', 'href="!~!~!~'.DOL_URL_ROOT.'/document.php', $content);
313 
314  // Replace relative link / with dolibarr URL: ...href="/"...
315  $content = preg_replace('/(href=")\/\"/', '\1!~!~!~'.DOL_URL_ROOT.'/public/website/index.php?website='.$website->ref.'"', $content, -1, $nbrep);
316  // Replace relative link /xxx.php#aaa or /xxx.php with dolibarr URL: ...href="....php" (we discard param ?...)
317  $content = preg_replace('/(href=")\/?([^:\"\!]*)\.php(#[^\"<>]*)?\"/', '\1!~!~!~'.DOL_URL_ROOT.'/public/website/index.php?website='.$website->ref.'&pageref=\2\3"', $content, -1, $nbrep);
318  // Replace relative link /xxx.php?a=b&c=d#aaa or /xxx.php?a=b&c=d with dolibarr URL
319  // Warning: we may replace twice if href="..." was inside an include (dolWebsiteOutput called by include and the by final page), that's why
320  // at end we replace the '!~!~!~' only if we are in final parent page.
321  $content = preg_replace('/(href=")\/?([^:\"\!]*)\.php\?([^#\"<>]*)(#[^\"<>]*)?\"/', '\1!~!~!~'.DOL_URL_ROOT.'/public/website/index.php?website='.$website->ref.'&pageref=\2&\3\4"', $content, -1, $nbrep);
322  // Replace relative link without .php like /xxx#aaa or /xxx with dolibarr URL: ...href="....php"
323  $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);
324 
325  // Fix relative link /document.php with correct URL after the DOL_URL_ROOT: href="/document.php?modulepart=" => href="/dolibarr/document.php?modulepart="
326  $content = preg_replace('/(href=")(\/?document\.php\?[^\"]*modulepart=[^\"]*)(\")/', '\1!~!~!~'.DOL_URL_ROOT.'\2\3', $content, -1, $nbrep);
327  $content = preg_replace('/(src=")(\/?document\.php\?[^\"]*modulepart=[^\"]*)(\")/', '\1!~!~!~'.DOL_URL_ROOT.'\2\3', $content, -1, $nbrep);
328 
329  // Fix relative link /viewimage.php with correct URL after the DOL_URL_ROOT: href="/viewimage.php?modulepart=" => href="/dolibarr/viewimage.php?modulepart="
330  $content = preg_replace('/(href=")(\/?viewimage\.php\?[^\"]*modulepart=[^\"]*)(\")/', '\1!~!~!~'.DOL_URL_ROOT.'\2\3', $content, -1, $nbrep);
331  $content = preg_replace('/(src=")(\/?viewimage\.php\?[^\"]*modulepart=[^\"]*)(\")/', '\1!~!~!~'.DOL_URL_ROOT.'\2\3', $content, -1, $nbrep);
332  $content = preg_replace('/(url\‍(")(\/?viewimage\.php\?[^\"]*modulepart=[^\"]*)(\")/', '\1!~!~!~'.DOL_URL_ROOT.'\2\3', $content, -1, $nbrep);
333 
334  // Fix relative link into medias with correct URL after the DOL_URL_ROOT: ../url("medias/
335  $content = preg_replace('/url\‍((["\']?)\/?medias\//', 'url(\1!~!~!~'.DOL_URL_ROOT.'/viewimage.php?modulepart=medias&file=', $content, -1, $nbrep);
336  $content = preg_replace('/data-slide-bg=(["\']?)\/?medias\//', 'data-slide-bg=\1!~!~!~'.DOL_URL_ROOT.'/viewimage.php?modulepart=medias&file=', $content, -1, $nbrep);
337 
338  // <img src="medias/...image.png... => <img src="dolibarr/viewimage.php/modulepart=medias&file=image.png...
339  // <img src="...image.png... => <img src="dolibarr/viewimage.php/modulepart=medias&file=image.png...
340  $content = preg_replace('/(<img[^>]*src=")\/?medias\//', '\1!~!~!~'.DOL_URL_ROOT.'/viewimage.php?modulepart=medias&file=', $content, -1, $nbrep);
341  // <img src="image.png... => <img src="dolibarr/viewimage.php/modulepart=medias&file=image.png...
342  $content = preg_replace('/(<img[^>]*src=")\/?([^:\"\!]+)\"/', '\1!~!~!~'.DOL_URL_ROOT.'/viewimage.php?modulepart=medias&file=\2"', $content, -1, $nbrep);
343  // <img src="viewimage.php/modulepart=medias&file=image.png" => <img src="dolibarr/viewimage.php/modulepart=medias&file=image.png"
344  $content = preg_replace('/(<img[^>]*src=")(\/?viewimage\.php)/', '\1!~!~!~'.DOL_URL_ROOT.'/viewimage.php', $content, -1, $nbrep);
345 
346  // action="newpage.php" => action="dolibarr/website/index.php?website=...&pageref=newpage
347  $content = preg_replace('/(action=")\/?([^:\"]*)(\.php\")/', '\1!~!~!~'.DOL_URL_ROOT.'/public/website/index.php?website='.$website->ref.'&pageref=\2"', $content, -1, $nbrep);
348 
349  // Fix relative URL
350  $content = str_replace('src="!~!~!~/viewimage.php', 'src="!~!~!~'.DOL_URL_ROOT.'/viewimage.php', $content);
351  $content = str_replace('href="!~!~!~/document.php', 'href="!~!~!~'.DOL_URL_ROOT.'/document.php', $content);
352 
353  // Remove the protection tag !~!~!~, but only if this is the parent page and not an include
354  if (empty($includehtmlcontentopened)) {
355  $content = str_replace('!~!~!~', '', $content);
356  }
357  } else // REPLACEMENT OF LINKS When page called from virtual host web server
358  {
359  $symlinktomediaexists = 1;
360  if ($website->virtualhost) {
361  $content = preg_replace('/^(<link[^>]*rel="canonical" href=")\//m', '\1'.$website->virtualhost.'/', $content, -1, $nbrep);
362  }
363  //print 'rrrrrrrrr'.$website->virtualhost.$content;
364 
365 
366  // Make a change into HTML code to allow to include images from medias directory correct with direct link for virtual server
367  // <img alt="" src="/dolibarr_dev/htdocs/viewimage.php?modulepart=medias&amp;entity=1&amp;file=image/ldestailleur_166x166.jpg" style="height:166px; width:166px" />
368  // become
369  // <img alt="" src="'.$urlwithroot.'/medias/image/ldestailleur_166x166.jpg" style="height:166px; width:166px" />
370  if (!$symlinktomediaexists) {
371  // <img src="image.png... => <img src="medias/image.png...
372  $content = preg_replace('/(<img[^>]*src=")\/?image\//', '\1/wrapper.php?modulepart=medias&file=medias/image/', $content, -1, $nbrep);
373  $content = preg_replace('/(url\‍(["\']?)\/?image\//', '\1/wrapper.php?modulepart=medias&file=medias/image/', $content, -1, $nbrep);
374 
375  $content = preg_replace('/(<script[^>]*src=")[^\"]*document\.php([^\"]*)modulepart=medias([^\"]*)file=([^\"]*)("[^>]*>)/', '\1/wrapper.php\2modulepart=medias\3file=\4\5', $content, -1, $nbrep);
376  $content = preg_replace('/(<a[^>]*href=")[^\"]*document\.php([^\"]*)modulepart=medias([^\"]*)file=([^\"]*)("[^>]*>)/', '\1/wrapper.php\2modulepart=medias\3file=\4\5', $content, -1, $nbrep);
377 
378  $content = preg_replace('/(<a[^>]*href=")[^\"]*viewimage\.php([^\"]*)modulepart=medias([^\"]*)file=([^\"]*)("[^>]*>)/', '\1/wrapper.php\2modulepart=medias\3file=\4\5', $content, -1, $nbrep);
379  $content = preg_replace('/(<img[^>]*src=")[^\"]*viewimage\.php([^\"]*)modulepart=medias([^\"]*)file=([^\"]*)("[^>]*>)/', '\1/wrapper.php\2modulepart=medias\3file=\4\5', $content, -1, $nbrep);
380  $content = preg_replace('/(url\‍(["\']?)[^\‍)]*viewimage\.php([^\‍)]*)modulepart=medias([^\‍)]*)file=([^\‍)]*)(["\']?\‍))/', '\1/wrapper.php\2modulepart=medias\3file=\4\5', $content, -1, $nbrep);
381 
382  $content = preg_replace('/(<a[^>]*href=")[^\"]*viewimage\.php([^\"]*)hashp=([^\"]*)("[^>]*>)/', '\1/wrapper.php\2hashp=\3\4', $content, -1, $nbrep);
383  $content = preg_replace('/(<img[^>]*src=")[^\"]*viewimage\.php([^\"]*)hashp=([^\"]*)("[^>]*>)/', '\1/wrapper.php\2hashp=\3\4', $content, -1, $nbrep);
384  $content = preg_replace('/(url\‍(["\']?)[^\‍)]*viewimage\.php([^\‍)]*)hashp=([^\‍)]*)(["\']?\‍))/', '\1/wrapper.php\2hashp\3\4', $content, -1, $nbrep);
385 
386  $content = preg_replace('/(<img[^>]*src=")[^\"]*viewimage\.php([^\"]*)modulepart=mycompany([^\"]*)file=([^\"]*)("[^>]*>)/', '\1/wrapper.php\2modulepart=mycompany\3file=\4\5', $content, -1, $nbrep);
387 
388  // If some links to documents or viewimage remains, we replace with wrapper
389  $content = preg_replace('/(<img[^>]*src=")\/?viewimage\.php/', '\1/wrapper.php', $content, -1, $nbrep);
390  $content = preg_replace('/(<a[^>]*href=")\/?documents\.php/', '\1/wrapper.php', $content, -1, $nbrep);
391  } else {
392  // <img src="image.png... => <img src="medias/image.png...
393  $content = preg_replace('/(<img[^>]*src=")\/?image\//', '\1/medias/image/', $content, -1, $nbrep);
394  $content = preg_replace('/(url\‍(["\']?)\/?image\//', '\1/medias/image/', $content, -1, $nbrep);
395 
396  $content = preg_replace('/(<script[^>]*src=")[^\"]*document\.php([^\"]*)modulepart=medias([^\"]*)file=([^\"]*)("[^>]*>)/', '\1/medias/\4\5', $content, -1, $nbrep);
397  $content = preg_replace('/(<a[^>]*href=")[^\"]*document\.php([^\"]*)modulepart=medias([^\"]*)file=([^\"]*)("[^>]*>)/', '\1/medias/\4\5', $content, -1, $nbrep);
398 
399  $content = preg_replace('/(<a[^>]*href=")[^\"]*viewimage\.php([^\"]*)modulepart=medias([^\"]*)file=([^\"]*)("[^>]*>)/', '\1/medias/\4\5', $content, -1, $nbrep);
400  $content = preg_replace('/(<img[^>]*src=")[^\"]*viewimage\.php([^\"]*)modulepart=medias([^\"]*)file=([^\"]*)("[^>]*>)/', '\1/medias/\4\5', $content, -1, $nbrep);
401  $content = preg_replace('/(url\‍(["\']?)[^\‍)]*viewimage\.php([^\‍)]*)modulepart=medias([^\‍)]*)file=([^\‍)]*)(["\']?\‍))/', '\1/medias/\4\5', $content, -1, $nbrep);
402 
403  $content = preg_replace('/(<a[^>]*href=")[^\"]*viewimage\.php([^\"]*)hashp=([^\"]*)("[^>]*>)/', '\1/wrapper.php\2hashp=\3\4', $content, -1, $nbrep);
404  $content = preg_replace('/(<img[^>]*src=")[^\"]*viewimage\.php([^\"]*)hashp=([^\"]*)("[^>]*>)/', '\1/wrapper.php\2hashp=\3\4', $content, -1, $nbrep);
405  $content = preg_replace('/(url\‍(["\']?)[^\‍)]*viewimage\.php([^\‍)]*)hashp=([^\‍)]*)(["\']?\‍))/', '\1/wrapper.php\2hashp=\3\4', $content, -1, $nbrep);
406 
407  $content = preg_replace('/(<img[^>]*src=")[^\"]*viewimage\.php([^\"]*)modulepart=mycompany([^\"]*)file=([^\"]*)("[^>]*>)/', '\1/wrapper.php\2modulepart=mycompany\3file=\4\5', $content, -1, $nbrep);
408 
409  // If some links to documents or viewimage remains, we replace with wrapper
410  $content = preg_replace('/(<img[^>]*src=")\/?viewimage\.php/', '\1/wrapper.php', $content, -1, $nbrep);
411  $content = preg_replace('/(<a[^>]*href=")\/?document\.php/', '\1/wrapper.php', $content, -1, $nbrep);
412  }
413  }
414 
415  if (!defined('USEDOLIBARREDITOR')) {
416  $content = str_replace(' contenteditable="true"', ' contenteditable="false"', $content);
417  }
418 
419  if (!empty($conf->global->WEBSITE_ADD_CSS_TO_BODY)) {
420  $content = str_replace('<body id="bodywebsite" class="bodywebsite', '<body id="bodywebsite" class="bodywebsite '.$conf->global->WEBSITE_ADD_CSS_TO_BODY, $content);
421  }
422 
423  $content = dolReplaceSmileyCodeWithUTF8($content);
424 
425  dol_syslog("dolWebsiteOutput end");
426 
427  print $content;
428 }
429 
430 
438 /*
439 function dolWebsiteSaveContent($content)
440 {
441  global $db, $langs, $conf, $user;
442  global $dolibarr_main_url_root, $dolibarr_main_data_root;
443 
444  //dol_syslog("dolWebsiteSaveContent start (mode=".(defined('USEDOLIBARRSERVER')?'USEDOLIBARRSERVER':'').')');
445 
446  // Define $urlwithroot
447  $urlwithouturlroot=preg_replace('/'.preg_quote(DOL_URL_ROOT,'/').'$/i','',trim($dolibarr_main_url_root));
448  $urlwithroot=$urlwithouturlroot.DOL_URL_ROOT; // This is to use external domain name found into config file
449  //$urlwithroot=DOL_MAIN_URL_ROOT; // This is to use same domain name than current
450 
451  //$content = preg_replace('/(<img.*src=")(?!(http|'.preg_quote(DOL_URL_ROOT,'/').'\/viewimage))/', '\1'.DOL_URL_ROOT.'/viewimage.php?modulepart=medias&file=', $content, -1, $nbrep);
452 
453  return $content;
454 }
455 */
456 
457 
467 function redirectToContainer($containerref, $containeraliasalt = '', $containerid = 0, $permanent = 0)
468 {
469  global $db, $website;
470 
471  $newurl = '';
472  $result = 0;
473 
474  // We make redirect using the alternative alias, we must find the real $containerref
475  if ($containeraliasalt) {
476  include_once DOL_DOCUMENT_ROOT.'/website/class/websitepage.class.php';
477  $tmpwebsitepage = new WebsitePage($db);
478  $result = $tmpwebsitepage->fetch(0, $website->id, '', $containeraliasalt);
479  if ($result > 0) {
480  $containerref = $tmpwebsitepage->pageurl;
481  } else {
482  print "Error, page contains a redirect to the alternative alias '".$containeraliasalt."' that does not exists in web site (".$website->id." / ".$website->ref.")";
483  exit;
484  }
485  }
486 
487  if (defined('USEDOLIBARREDITOR')) {
488  /*print '<div class="margintoponly marginleftonly">';
489  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.";
490  print '</div>';*/
491  $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.";
492  setEventMessages($text, null, 'warnings', 'WEBSITEREDIRECTDISABLED'.$containerref);
493  return;
494  }
495 
496  if (defined('USEDOLIBARRSERVER')) { // When page called from Dolibarr server
497  // Check new container exists
498  if (!$containeraliasalt) { // If containeraliasalt set, we already did the test
499  include_once DOL_DOCUMENT_ROOT.'/website/class/websitepage.class.php';
500  $tmpwebsitepage = new WebsitePage($db);
501  $result = $tmpwebsitepage->fetch(0, $website->id, $containerref);
502  unset($tmpwebsitepage);
503  }
504  if ($result > 0) {
505  $currenturi = $_SERVER["REQUEST_URI"];
506  $regtmp = array();
507  if (preg_match('/&pageref=([^&]+)/', $currenturi, $regtmp)) {
508  if ($regtmp[0] == $containerref) {
509  print "Error, page with uri '.$currenturi.' try a redirect to the same alias page '".$containerref."' in web site '".$website->ref."'";
510  exit;
511  } else {
512  $newurl = preg_replace('/&pageref=([^&]+)/', '&pageref='.$containerref, $currenturi);
513  }
514  } else {
515  $newurl = $currenturi.'&pageref='.urlencode($containerref);
516  }
517  }
518  } else // When page called from virtual host server
519  {
520  $newurl = '/'.$containerref.'.php';
521  }
522 
523  if ($newurl) {
524  if ($permanent) {
525  header("Status: 301 Moved Permanently", false, 301);
526  }
527  header("Location: ".$newurl.(empty($_SERVER["QUERY_STRING"]) ? '' : '?'.$_SERVER["QUERY_STRING"]));
528  exit;
529  } else {
530  print "Error, page contains a redirect to the alias page '".$containerref."' that does not exists in web site (".$website->id." / ".$website->ref.")";
531  exit;
532  }
533 }
534 
535 
543 function includeContainer($containerref)
544 {
545  global $conf, $db, $hookmanager, $langs, $mysoc, $user, $website, $websitepage, $weblangs; // Very important. Required to have var available when running included containers.
546  global $includehtmlcontentopened;
547  global $websitekey, $websitepagefile;
548 
549  $MAXLEVEL = 20;
550 
551  if (!preg_match('/\.php$/i', $containerref)) {
552  $containerref .= '.php';
553  }
554 
555  $fullpathfile = DOL_DATA_ROOT.($conf->entity > 1 ? '/'.$conf->entity : '').'/website/'.$websitekey.'/'.$containerref;
556 
557  if (empty($includehtmlcontentopened)) {
558  $includehtmlcontentopened = 0;
559  }
560  $includehtmlcontentopened++;
561  if ($includehtmlcontentopened > $MAXLEVEL) {
562  print 'ERROR: RECURSIVE CONTENT LEVEL. Depth of recursive call is more than the limit of '.((int) $MAXLEVEL).".\n";
563  return;
564  }
565 
566  //dol_syslog("Include container ".$containerref.' includehtmlcontentopened='.$includehtmlcontentopened);
567 
568  // file_get_contents is not possible. We must execute code with include
569  //$content = file_get_contents($fullpathfile);
570  //print preg_replace(array('/^.*<body[^>]*>/ims','/<\/body>.*$/ims'), array('', ''), $content);*/
571 
572  ob_start();
573  $res = include $fullpathfile; // Include because we want to execute code content
574  $tmpoutput = ob_get_contents();
575  ob_end_clean();
576 
577  print "\n".'<!-- include '.$websitekey.'/'.$containerref.(is_object($websitepage) ? ' parent id='.$websitepage->id : '').' level = '.$includehtmlcontentopened.' -->'."\n";
578  print preg_replace(array('/^.*<body[^>]*>/ims', '/<\/body>.*$/ims'), array('', ''), $tmpoutput);
579 
580  if (!$res) {
581  print 'ERROR: FAILED TO INCLUDE PAGE '.$containerref.".\n";
582  }
583 
584  $includehtmlcontentopened--;
585 }
586 
597 function getStructuredData($type, $data = array())
598 {
599  global $conf, $db, $hookmanager, $langs, $mysoc, $user, $website, $websitepage, $weblangs, $pagelangs; // Very important. Required to have var available when running inluded containers.
600 
601  $type = strtolower($type);
602 
603  if ($type == 'software') {
604  $ret = '<!-- Add structured data for entry in a software annuary -->'."\n";
605  $ret .= '<script type="application/ld+json">'."\n";
606  $ret .= '{
607  "@context": "https://schema.org",
608  "@type": "SoftwareApplication",
609  "name": "'.dol_escape_json($data['name']).'",
610  "operatingSystem": "'.dol_escape_json($data['os']).'",
611  "applicationCategory": "https://schema.org/'.dol_escape_json($data['applicationCategory']).'",';
612  if (!empty($data['ratingcount'])) {
613  $ret .= '
614  "aggregateRating": {
615  "@type": "AggregateRating",
616  "ratingValue": "'.dol_escape_json($data['ratingvalue']).'",
617  "ratingCount": "'.dol_escape_json($data['ratingcount']).'"
618  },';
619  }
620  $ret .= '
621  "offers": {
622  "@type": "Offer",
623  "price": "'.dol_escape_json($data['price']).'",
624  "priceCurrency": "'.dol_escape_json($data['currency'] ? $data['currency'] : $conf->currency).'"
625  }
626  }'."\n";
627  $ret .= '</script>'."\n";
628  } elseif ($type == 'organization') {
629  $companyname = $mysoc->name;
630  $url = $mysoc->url;
631 
632  $ret = '<!-- Add structured data for organization -->'."\n";
633  $ret .= '<script type="application/ld+json">'."\n";
634  $ret .= '{
635  "@context": "https://schema.org",
636  "@type": "Organization",
637  "name": "'.dol_escape_json($data['name'] ? $data['name'] : $companyname).'",
638  "url": "'.dol_escape_json($data['url'] ? $data['url'] : $url).'",
639  "logo": "'.($data['logo'] ? dol_escape_json($data['logo']) : '/wrapper.php?modulepart=mycompany&file=logos%2F'.urlencode($mysoc->logo)).'",
640  "contactPoint": {
641  "@type": "ContactPoint",
642  "contactType": "Contact",
643  "email": "'.dol_escape_json($data['email'] ? $data['email'] : $mysoc->email).'"
644  }'."\n";
645  if (is_array($mysoc->socialnetworks) && count($mysoc->socialnetworks) > 0) {
646  $ret .= ",\n";
647  $ret .= '"sameAs": [';
648  $i = 0;
649  foreach ($mysoc->socialnetworks as $key => $value) {
650  if ($key == 'linkedin') {
651  $ret .= '"https://www.'.$key.'.com/company/'.dol_escape_json($value).'"';
652  } elseif ($key == 'youtube') {
653  $ret .= '"https://www.'.$key.'.com/user/'.dol_escape_json($value).'"';
654  } else {
655  $ret .= '"https://www.'.$key.'.com/'.dol_escape_json($value).'"';
656  }
657  $i++;
658  if ($i < count($mysoc->socialnetworks)) {
659  $ret .= ', ';
660  }
661  }
662  $ret .= ']'."\n";
663  }
664  $ret .= '}'."\n";
665  $ret .= '</script>'."\n";
666  } elseif ($type == 'blogpost') {
667  if (!empty($websitepage->author_alias)) {
668  //include_once DOL_DOCUMENT_ROOT.'/user/class/user.class.php';
669  //$tmpuser = new User($db);
670  //$restmpuser = $tmpuser->fetch($websitepage->fk_user_creat);
671 
672  $pageurl = $websitepage->pageurl;
673  $title = $websitepage->title;
674  $image = $websitepage->image;
675  $companyname = $mysoc->name;
676  $description = $websitepage->description;
677 
678  $pageurl = str_replace('__WEBSITE_KEY__', $website->ref, $pageurl);
679  $title = str_replace('__WEBSITE_KEY__', $website->ref, $title);
680  $image = '/medias'.(preg_match('/^\//', $image) ? '' : '/').str_replace('__WEBSITE_KEY__', $website->ref, $image);
681  $companyname = str_replace('__WEBSITE_KEY__', $website->ref, $companyname);
682  $description = str_replace('__WEBSITE_KEY__', $website->ref, $description);
683 
684  $ret = '<!-- Add structured data for blog post -->'."\n";
685  $ret .= '<script type="application/ld+json">'."\n";
686  $ret .= '{
687  "@context": "https://schema.org",
688  "@type": "NewsArticle",
689  "mainEntityOfPage": {
690  "@type": "WebPage",
691  "@id": "'.dol_escape_json($pageurl).'"
692  },
693  "headline": "'.dol_escape_json($title).'",
694  "image": [
695  "'.dol_escape_json($image).'"
696  ],
697  "dateCreated": "'.dol_print_date($websitepage->date_creation, 'dayhourrfc').'",
698  "datePublished": "'.dol_print_date($websitepage->date_creation, 'dayhourrfc').'",
699  "dateModified": "'.dol_print_date($websitepage->date_modification, 'dayhourrfc').'",
700  "author": {
701  "@type": "Person",
702  "name": "'.dol_escape_json($websitepage->author_alias).'"
703  },
704  "publisher": {
705  "@type": "Organization",
706  "name": "'.dol_escape_json($companyname).'",
707  "logo": {
708  "@type": "ImageObject",
709  "url": "/wrapper.php?modulepart=mycompany&file=logos%2F'.urlencode($mysoc->logo).'"
710  }
711  },'."\n";
712  if ($websitepage->keywords) {
713  $ret .= '"keywords": [';
714  $i = 0;
715  $arrayofkeywords = explode(',', $websitepage->keywords);
716  foreach ($arrayofkeywords as $keyword) {
717  $ret .= '"'.dol_escape_json($keyword).'"';
718  $i++;
719  if ($i < count($arrayofkeywords)) {
720  $ret .= ', ';
721  }
722  }
723  $ret .= '],'."\n";
724  }
725  $ret .= '"description": "'.dol_escape_json($description).'"';
726  $ret .= "\n".'}'."\n";
727  $ret .= '</script>'."\n";
728  } else {
729  $ret .= '<!-- no structured data inserted inline inside blogpost because no author_alias defined -->'."\n";
730  }
731  } elseif ($type == 'product') {
732  $ret = '<!-- Add structured data for product -->'."\n";
733  $ret .= '<script type="application/ld+json">'."\n";
734  $ret .= '{
735  "@context": "https://schema.org/",
736  "@type": "Product",
737  "name": "'.dol_escape_json($data['label']).'",
738  "image": [
739  "'.dol_escape_json($data['image']).'",
740  ],
741  "description": "'.dol_escape_json($data['description']).'",
742  "sku": "'.dol_escape_json($data['ref']).'",
743  "brand": {
744  "@type": "Thing",
745  "name": "'.dol_escape_json($data['brand']).'"
746  },
747  "author": {
748  "@type": "Person",
749  "name": "'.dol_escape_json($data['author']).'"
750  }
751  },
752  "offers": {
753  "@type": "Offer",
754  "url": "https://example.com/anvil",
755  "priceCurrency": "'.dol_escape_json($data['currency'] ? $data['currency'] : $conf->currency).'",
756  "price": "'.dol_escape_json($data['price']).'",
757  "itemCondition": "https://schema.org/UsedCondition",
758  "availability": "https://schema.org/InStock",
759  "seller": {
760  "@type": "Organization",
761  "name": "'.dol_escape_json($mysoc->name).'"
762  }
763  }
764  }'."\n";
765  $ret .= '</script>'."\n";
766  } elseif ($type == 'qa') {
767  $ret = '<!-- Add structured data for QA -->'."\n";
768  $ret .= '<script type="application/ld+json">'."\n";
769  $ret .= '{
770  "@context": "https://schema.org/",
771  "@type": "QAPage",
772  "mainEntity": {
773  "@type": "Question",
774  "name": "'.dol_escape_json($data['name']).'",
775  "text": "'.dol_escape_json($data['name']).'",
776  "answerCount": 1,
777  "author": {
778  "@type": "Person",
779  "name": "'.dol_escape_json($data['author']).'"
780  }
781  "acceptedAnswer": {
782  "@type": "Answer",
783  "text": "'.dol_escape_json(dol_string_nohtmltag(dolStripPhpCode($data['description']))).'",
784  "author": {
785  "@type": "Person",
786  "name": "'.dol_escape_json($data['author']).'"
787  }
788  }
789  }
790  }'."\n";
791  $ret .= '</script>'."\n";
792  }
793  return $ret;
794 }
795 
802 function getSocialNetworkHeaderCards($params = null)
803 {
804  global $conf, $db, $hookmanager, $langs, $mysoc, $user, $website, $websitepage, $weblangs; // Very important. Required to have var available when running inluded containers.
805 
806  $out = '';
807 
808  if ($website->virtualhost) {
809  $pageurl = $websitepage->pageurl;
810  $title = $websitepage->title;
811  $image = $websitepage->image;
812  $companyname = $mysoc->name;
813  $description = $websitepage->description;
814 
815  $pageurl = str_replace('__WEBSITE_KEY__', $website->ref, $pageurl);
816  $title = str_replace('__WEBSITE_KEY__', $website->ref, $title);
817  $image = '/medias'.(preg_match('/^\//', $image) ? '' : '/').str_replace('__WEBSITE_KEY__', $website->ref, $image);
818  $companyname = str_replace('__WEBSITE_KEY__', $website->ref, $companyname);
819  $description = str_replace('__WEBSITE_KEY__', $website->ref, $description);
820 
821  $shortlangcode = '';
822  if ($websitepage->lang) {
823  $shortlangcode = substr($websitepage->lang, 0, 2); // en_US or en-US -> en
824  }
825  if (empty($shortlangcode)) {
826  $shortlangcode = substr($website->lang, 0, 2); // en_US or en-US -> en
827  }
828 
829  $fullurl = $website->virtualhost.'/'.$websitepage->pageurl.'.php';
830  $canonicalurl = $website->virtualhost.(($websitepage->id == $website->fk_default_home) ? '/' : (($shortlangcode != substr($website->lang, 0, 2) ? '/'.$shortlangcode : '').'/'.$websitepage->pageurl.'.php'));
831  $hashtags = trim(join(' #', array_map('trim', explode(',', $websitepage->keywords))));
832 
833  // Open Graph
834  $out .= '<meta name="og:type" content="website">'."\n"; // TODO If blogpost, use type article
835  $out .= '<meta name="og:title" content="'.$websitepage->title.'">'."\n";
836  if ($websitepage->image) {
837  $out .= '<meta name="og:image" content="'.$website->virtualhost.$image.'">'."\n";
838  }
839  $out .= '<meta name="og:url" content="'.$canonicalurl.'">'."\n";
840 
841  // Twitter
842  $out .= '<meta name="twitter:card" content="summary">'."\n";
843  if (!empty($params) && !empty($params['twitter_account'])) {
844  $out .= '<meta name="twitter:site" content="@'.$params['twitter_account'].'">'."\n";
845  $out .= '<meta name="twitter:creator" content="@'.$params['twitter_account'].'">'."\n";
846  }
847  $out .= '<meta name="twitter:title" content="'.$websitepage->title.'">'."\n";
848  if ($websitepage->description) {
849  $out .= '<meta name="twitter:description" content="'.$websitepage->description.'">'."\n";
850  }
851  if ($websitepage->image) {
852  $out .= '<meta name="twitter:image" content="'.$website->virtualhost.$image.'">'."\n";
853  }
854  //$out .= '<meta name="twitter:domain" content="'.getDomainFromURL($website->virtualhost, 1).'">';
855  /*
856  $out .= '<meta name="twitter:app:name:iphone" content="">';
857  $out .= '<meta name="twitter:app:name:ipad" content="">';
858  $out .= '<meta name="twitter:app:name:googleplay" content="">';
859  $out .= '<meta name="twitter:app:url:iphone" content="">';
860  $out .= '<meta name="twitter:app:url:ipad" content="">';
861  $out .= '<meta name="twitter:app:url:googleplay" content="">';
862  $out .= '<meta name="twitter:app:id:iphone" content="">';
863  $out .= '<meta name="twitter:app:id:ipad" content="">';
864  $out .= '<meta name="twitter:app:id:googleplay" content="">';
865  */
866  }
867 
868  return $out;
869 }
870 
877 {
878  global $conf, $db, $hookmanager, $langs, $mysoc, $user, $website, $websitepage, $weblangs; // Very important. Required to have var available when running inluded containers.
879 
880  $out = '<!-- section for social network sharing of page -->'."\n";
881 
882  if ($website->virtualhost) {
883  $fullurl = $website->virtualhost.'/'.$websitepage->pageurl.'.php';
884  $hashtags = trim(join(' #', array_map('trim', explode(',', $websitepage->keywords))));
885 
886  $out .= '<div class="dol-social-share">'."\n";
887 
888  // Twitter
889  $out .= '<div class="dol-social-share-tw">'."\n";
890  $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>';
891  $out .= '<script>!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>';
892  $out .= '</div>'."\n";
893 
894  // Reddit
895  $out .= '<div class="dol-social-share-reddit">'."\n";
896  $out .= '<a href="https://www.reddit.com/submit" target="_blank" rel="noopener noreferrer external" onclick="window.location = \'https://www.reddit.com/submit?url='.$fullurl.'\'; return false">';
897  $out .= '<span class="dol-social-share-reddit-span">Reddit</span>';
898  $out .= '</a>';
899  $out .= '</div>'."\n";
900 
901  // Facebook
902  $out .= '<div class="dol-social-share-fbl">'."\n";
903  $out .= '<div id="fb-root"></div>'."\n";
904  $out .= '<script>(function(d, s, id) {
905  var js, fjs = d.getElementsByTagName(s)[0];
906  if (d.getElementById(id)) return;
907  js = d.createElement(s); js.id = id;
908  js.src = "//connect.facebook.net/en_US/sdk.js#xfbml=1&version=v2.0&amp;appId=dolibarr.org";
909  fjs.parentNode.insertBefore(js, fjs);
910  }(document, \'script\', \'facebook-jssdk\'));</script>
911  <fb:like
912  href="'.$fullurl.'"
913  layout="button_count"
914  show_faces="false"
915  width="90"
916  colorscheme="light"
917  share="1"
918  action="like" ></fb:like>'."\n";
919  $out .= '</div>'."\n";
920 
921  $out .= "\n</div>\n";
922  } else {
923  $out .= '<!-- virtual host not defined in CMS. No way to add sharing buttons -->'."\n";
924  }
925  $out .= '<!-- section end for social network sharing of page -->'."\n";
926 
927  return $out;
928 }
929 
945 function getPagesFromSearchCriterias($type, $algo, $searchstring, $max = 25, $sortfield = 'date_creation', $sortorder = 'DESC', $langcode = '', $otherfilters = 'null', $status = 1)
946 {
947  global $conf, $db, $hookmanager, $langs, $mysoc, $user, $website, $websitepage, $weblangs; // Very important. Required to have var available when running inluded containers.
948 
949  $error = 0;
950  $arrayresult = array('code'=>'', 'list'=>array());
951 
952  if (!is_object($weblangs)) {
953  $weblangs = $langs;
954  }
955 
956  if (empty($searchstring) && empty($type) && empty($langcode) && empty($otherfilters)) {
957  $error++;
958  $arrayresult['code'] = 'KO';
959  $arrayresult['message'] = $weblangs->trans("EmptySearchString");
960  } elseif ($searchstring && dol_strlen($searchstring) < 2) {
961  $weblangs->load("errors");
962  $error++;
963  $arrayresult['code'] = 'KO';
964  $arrayresult['message'] = $weblangs->trans("ErrorSearchCriteriaTooSmall");
965  } else {
966  $tmparrayoftype = explode(',', $type);
967  /*foreach ($tmparrayoftype as $tmptype) {
968  if (!in_array($tmptype, array('', 'page', 'blogpost'))) {
969  $error++;
970  $arrayresult['code'] = 'KO';
971  $arrayresult['message'] = 'Bad value for parameter type';
972  break;
973  }
974  }*/
975  }
976 
977  $searchdone = 0;
978  $found = 0;
979 
980  if (!$error && (empty($max) || ($found < $max)) && (preg_match('/meta/', $algo) || preg_match('/content/', $algo))) {
981  include_once DOL_DOCUMENT_ROOT.'/website/class/websitepage.class.php';
982 
983  $sql = 'SELECT wp.rowid FROM '.MAIN_DB_PREFIX.'website_page as wp';
984  if (is_array($otherfilters) && !empty($otherfilters['category'])) {
985  $sql .= ', '.MAIN_DB_PREFIX.'categorie_website_page as cwp';
986  }
987  $sql .= " WHERE wp.fk_website = ".((int) $website->id);
988  if ($status >= 0) {
989  $sql .= " AND wp.status = ".((int) $status);
990  }
991  if ($langcode) {
992  $sql .= " AND wp.lang = '".$db->escape($langcode)."'";
993  }
994  if ($type) {
995  $tmparrayoftype = explode(',', $type);
996  $typestring = '';
997  foreach ($tmparrayoftype as $tmptype) {
998  $typestring .= ($typestring ? ", " : "")."'".$db->escape(trim($tmptype))."'";
999  }
1000  $sql .= " AND wp.type_container IN (".$db->sanitize($typestring, 1).")";
1001  }
1002  $sql .= " AND (";
1003  $searchalgo = '';
1004  if (preg_match('/meta/', $algo)) {
1005  $searchalgo .= ($searchalgo ? ' OR ' : '')."wp.title LIKE '%".$db->escape($db->escapeforlike($searchstring))."%' OR wp.description LIKE '%".$db->escape($db->escapeforlike($searchstring))."%'";
1006  $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
1007  }
1008  if (preg_match('/content/', $algo)) {
1009  $searchalgo .= ($searchalgo ? ' OR ' : '')."wp.content LIKE '%".$db->escape($db->escapeforlike($searchstring))."%'";
1010  }
1011  $sql .= $searchalgo;
1012  if (is_array($otherfilters) && !empty($otherfilters['category'])) {
1013  $sql .= ' AND cwp.fk_website_page = wp.rowid AND cwp.fk_categorie = '.((int) $otherfilters['category']);
1014  }
1015  $sql .= ")";
1016  $sql .= $db->order($sortfield, $sortorder);
1017  $sql .= $db->plimit($max);
1018  //print $sql;
1019 
1020  $resql = $db->query($sql);
1021 
1022  if ($resql) {
1023  $i = 0;
1024  while (($obj = $db->fetch_object($resql)) && ($i < $max || $max == 0)) {
1025  if ($obj->rowid > 0) {
1026  $tmpwebsitepage = new WebsitePage($db);
1027  $tmpwebsitepage->fetch($obj->rowid);
1028  if ($tmpwebsitepage->id > 0) {
1029  $arrayresult['list'][$obj->rowid] = $tmpwebsitepage;
1030  }
1031  $found++;
1032  }
1033  $i++;
1034  }
1035  } else {
1036  $error++;
1037  $arrayresult['code'] = $db->lasterrno();
1038  $arrayresult['message'] = $db->lasterror();
1039  }
1040 
1041  $searchdone = 1;
1042  }
1043 
1044  if (!$error && (empty($max) || ($found < $max)) && (preg_match('/sitefiles/', $algo))) {
1045  global $dolibarr_main_data_root;
1046 
1047  $pathofwebsite = $dolibarr_main_data_root.($conf->entity > 1 ? '/'.$conf->entity : '').'/website/'.$website->ref;
1048  $filehtmlheader = $pathofwebsite.'/htmlheader.html';
1049  $filecss = $pathofwebsite.'/styles.css.php';
1050  $filejs = $pathofwebsite.'/javascript.js.php';
1051  $filerobot = $pathofwebsite.'/robots.txt';
1052  $filehtaccess = $pathofwebsite.'/.htaccess';
1053  $filemanifestjson = $pathofwebsite.'/manifest.json.php';
1054  $filereadme = $pathofwebsite.'/README.md';
1055 
1056  $filecontent = file_get_contents($filehtmlheader);
1057  if ((empty($max) || ($found < $max)) && preg_match('/'.preg_quote($searchstring, '/').'/', $filecontent)) {
1058  $arrayresult['list'][] = array('type'=>'website_htmlheadercontent');
1059  }
1060 
1061  $filecontent = file_get_contents($filecss);
1062  if ((empty($max) || ($found < $max)) && preg_match('/'.preg_quote($searchstring, '/').'/', $filecontent)) {
1063  $arrayresult['list'][] = array('type'=>'website_csscontent');
1064  }
1065 
1066  $filecontent = file_get_contents($filejs);
1067  if ((empty($max) || ($found < $max)) && preg_match('/'.preg_quote($searchstring, '/').'/', $filecontent)) {
1068  $arrayresult['list'][] = array('type'=>'website_jscontent');
1069  }
1070 
1071  $filerobot = file_get_contents($filerobot);
1072  if ((empty($max) || ($found < $max)) && preg_match('/'.preg_quote($searchstring, '/').'/', $filecontent)) {
1073  $arrayresult['list'][] = array('type'=>'website_robotcontent');
1074  }
1075 
1076  $searchdone = 1;
1077  }
1078 
1079  if (!$error) {
1080  if ($searchdone) {
1081  $arrayresult['code'] = 'OK';
1082  if (empty($arrayresult['list'])) {
1083  $arrayresult['code'] = 'KO';
1084  $arrayresult['message'] = $weblangs->trans("NoRecordFound");
1085  }
1086  } else {
1087  $error++;
1088  $arrayresult['code'] = 'KO';
1089  $arrayresult['message'] = 'No supported algorithm found';
1090  }
1091  }
1092 
1093  return $arrayresult;
1094 }
1095 
1110 function getAllImages($object, $objectpage, $urltograb, &$tmp, &$action, $modifylinks = 0, $grabimages = 1, $grabimagesinto = 'subpage')
1111 {
1112  global $conf;
1113 
1114  $error = 0;
1115 
1116  dol_syslog("Call getAllImages with grabimagesinto=".$grabimagesinto);
1117 
1118  $alreadygrabbed = array();
1119 
1120  if (preg_match('/\/$/', $urltograb)) {
1121  $urltograb .= '.';
1122  }
1123  $urltograb = dirname($urltograb); // So urltograb is now http://www.nltechno.com or http://www.nltechno.com/dir1
1124 
1125  // Search X in "img...src=X"
1126  $regs = array();
1127  preg_match_all('/<img([^\.\/]+)src="([^>"]+)"([^>]*)>/i', $tmp, $regs);
1128 
1129  foreach ($regs[0] as $key => $val) {
1130  if (preg_match('/^data:image/i', $regs[2][$key])) {
1131  continue; // We do nothing for such images
1132  }
1133 
1134  if (preg_match('/^\//', $regs[2][$key])) {
1135  $urltograbdirrootwithoutslash = getRootURLFromURL($urltograb);
1136  $urltograbbis = $urltograbdirrootwithoutslash.$regs[2][$key]; // We use dirroot
1137  } else {
1138  $urltograbbis = $urltograb.'/'.$regs[2][$key]; // We use dir of grabbed file
1139  }
1140 
1141  $linkwithoutdomain = $regs[2][$key];
1142  $dirforimages = '/'.$objectpage->pageurl;
1143  if ($grabimagesinto == 'root') {
1144  $dirforimages = '';
1145  }
1146 
1147  // Define $filetosave and $filename
1148  $filetosave = $conf->medias->multidir_output[$conf->entity].'/image/'.$object->ref.$dirforimages.(preg_match('/^\//', $regs[2][$key]) ? '' : '/').$regs[2][$key];
1149  if (preg_match('/^http/', $regs[2][$key])) {
1150  $urltograbbis = $regs[2][$key];
1151  $linkwithoutdomain = preg_replace('/^https?:\/\/[^\/]+\//i', '', $regs[2][$key]);
1152  $filetosave = $conf->medias->multidir_output[$conf->entity].'/image/'.$object->ref.$dirforimages.(preg_match('/^\//', $linkwithoutdomain) ? '' : '/').$linkwithoutdomain;
1153  }
1154  $filename = 'image/'.$object->ref.$dirforimages.(preg_match('/^\//', $linkwithoutdomain) ? '' : '/').$linkwithoutdomain;
1155 
1156  // Clean the aa/bb/../cc into aa/cc
1157  $filetosave = preg_replace('/\/[^\/]+\/\.\./', '', $filetosave);
1158  $filename = preg_replace('/\/[^\/]+\/\.\./', '', $filename);
1159 
1160  //var_dump($filetosave);
1161  //var_dump($filename);
1162  //exit;
1163 
1164  if (empty($alreadygrabbed[$urltograbbis])) {
1165  if ($grabimages) {
1166  $tmpgeturl = getURLContent($urltograbbis, 'GET', '', 1, array(), array('http', 'https'), 0);
1167  if ($tmpgeturl['curl_error_no']) {
1168  $error++;
1169  setEventMessages('Error getting '.$urltograbbis.': '.$tmpgeturl['curl_error_msg'], null, 'errors');
1170  $action = 'create';
1171  } elseif ($tmpgeturl['http_code'] != '200') {
1172  $error++;
1173  setEventMessages('Error getting '.$urltograbbis.': '.$tmpgeturl['http_code'], null, 'errors');
1174  $action = 'create';
1175  } else {
1176  $alreadygrabbed[$urltograbbis] = 1; // Track that file was alreay grabbed.
1177 
1178  dol_mkdir(dirname($filetosave));
1179 
1180  $fp = fopen($filetosave, "w");
1181  fputs($fp, $tmpgeturl['content']);
1182  fclose($fp);
1183  if (!empty($conf->global->MAIN_UMASK)) {
1184  @chmod($filetosave, octdec($conf->global->MAIN_UMASK));
1185  }
1186  }
1187  }
1188  }
1189 
1190  if ($modifylinks) {
1191  $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);
1192  }
1193  }
1194 
1195  // Search X in "background...url(X)"
1196  preg_match_all('/background([^\.\/\‍(;]+)url\‍([\"\']?([^\‍)\"\']*)[\"\']?\‍)/i', $tmp, $regs);
1197 
1198  foreach ($regs[0] as $key => $val) {
1199  if (preg_match('/^data:image/i', $regs[2][$key])) {
1200  continue; // We do nothing for such images
1201  }
1202 
1203  if (preg_match('/^\//', $regs[2][$key])) {
1204  $urltograbdirrootwithoutslash = getRootURLFromURL($urltograb);
1205  $urltograbbis = $urltograbdirrootwithoutslash.$regs[2][$key]; // We use dirroot
1206  } else {
1207  $urltograbbis = $urltograb.'/'.$regs[2][$key]; // We use dir of grabbed file
1208  }
1209 
1210  $linkwithoutdomain = $regs[2][$key];
1211 
1212  $dirforimages = '/'.$objectpage->pageurl;
1213  if ($grabimagesinto == 'root') {
1214  $dirforimages = '';
1215  }
1216 
1217  $filetosave = $conf->medias->multidir_output[$conf->entity].'/image/'.$object->ref.$dirforimages.(preg_match('/^\//', $regs[2][$key]) ? '' : '/').$regs[2][$key];
1218 
1219  if (preg_match('/^http/', $regs[2][$key])) {
1220  $urltograbbis = $regs[2][$key];
1221  $linkwithoutdomain = preg_replace('/^https?:\/\/[^\/]+\//i', '', $regs[2][$key]);
1222  $filetosave = $conf->medias->multidir_output[$conf->entity].'/image/'.$object->ref.$dirforimages.(preg_match('/^\//', $linkwithoutdomain) ? '' : '/').$linkwithoutdomain;
1223  }
1224 
1225  $filename = 'image/'.$object->ref.$dirforimages.(preg_match('/^\//', $linkwithoutdomain) ? '' : '/').$linkwithoutdomain;
1226 
1227  // Clean the aa/bb/../cc into aa/cc
1228  $filetosave = preg_replace('/\/[^\/]+\/\.\./', '', $filetosave);
1229  $filename = preg_replace('/\/[^\/]+\/\.\./', '', $filename);
1230 
1231  //var_dump($filetosave);
1232  //var_dump($filename);
1233  //exit;
1234 
1235  if (empty($alreadygrabbed[$urltograbbis])) {
1236  if ($grabimages) {
1237  $tmpgeturl = getURLContent($urltograbbis, 'GET', '', 1, array(), array('http', 'https'), 0);
1238  if ($tmpgeturl['curl_error_no']) {
1239  $error++;
1240  setEventMessages('Error getting '.$urltograbbis.': '.$tmpgeturl['curl_error_msg'], null, 'errors');
1241  $action = 'create';
1242  } elseif ($tmpgeturl['http_code'] != '200') {
1243  $error++;
1244  setEventMessages('Error getting '.$urltograbbis.': '.$tmpgeturl['http_code'], null, 'errors');
1245  $action = 'create';
1246  } else {
1247  $alreadygrabbed[$urltograbbis] = 1; // Track that file was alreay grabbed.
1248 
1249  dol_mkdir(dirname($filetosave));
1250 
1251  $fp = fopen($filetosave, "w");
1252  fputs($fp, $tmpgeturl['content']);
1253  fclose($fp);
1254  if (!empty($conf->global->MAIN_UMASK)) {
1255  @chmod($filetosave, octdec($conf->global->MAIN_UMASK));
1256  }
1257  }
1258  }
1259  }
1260 
1261  if ($modifylinks) {
1262  $tmp = preg_replace('/'.preg_quote($regs[0][$key], '/').'/i', 'background'.$regs[1][$key].'url("'.DOL_URL_ROOT.'/viewimage.php?modulepart=medias&file='.$filename.'")', $tmp);
1263  }
1264  }
1265 }
Class Websitepage.
if(isModEnabled('facture') &&!empty($user->rights->facture->lire)) if((isModEnabled('fournisseur') &&empty($conf->global->MAIN_USE_NEW_SUPPLIERMOD) && $user->hasRight("fournisseur", "facture", "lire"))||(isModEnabled('supplier_invoice') && $user->hasRight("supplier_invoice", "lire"))) if(isModEnabled('don') &&!empty($user->rights->don->lire)) if(isModEnabled('tax') &&!empty($user->rights->tax->charges->lire)) if(isModEnabled('facture') &&isModEnabled('commande') && $user->hasRight("commande", "lire") &&empty($conf->global->WORKFLOW_DISABLE_CREATE_INVOICE_FROM_ORDER)) $resql
Social contributions to pay.
Definition: index.php:745
dol_escape_htmltag($stringtoescape, $keepb=0, $keepn=0, $noescapetags='', $escapeonlyhtmltags=0)
Returns text escaped for inclusion in HTML alt or title tags, or into values of HTML input fields.
dol_string_nohtmltag($stringtoclean, $removelinefeed=1, $pagecodeto='UTF-8', $strip_tags=0, $removedoublespaces=1)
Clean a string from all HTML tags and entities.
setEventMessages($mesg, $mesgs, $style='mesgs', $messagekey='')
Set event messages in dol_events session object.
dol_strlen($string, $stringencoding='UTF-8')
Make a strlen call.
dol_print_date($time, $format='', $tzoutput='auto', $outputlangs='', $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.
dol_syslog($message, $level=LOG_INFO, $ident=0, $suffixinfilename='', $restricttologhandler='', $logcontext=null)
Write log message into outputs.
dol_mkdir($dir, $dataroot='', $newmask='')
Creation of a directory (this can create recursive subdir)
getRootURLFromURL($url)
Function root url from a long url For example: https://www.abc.mydomain.com/dir/page....
Definition: geturl.lib.php:349
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).
Definition: geturl.lib.php:41
if(!defined( 'CSRFCHECK_WITH_TOKEN'))
getAllImages($object, $objectpage, $urltograb, &$tmp, &$action, $modifylinks=0, $grabimages=1, $grabimagesinto='subpage')
Download all images found into page content $tmp.
getPagesFromSearchCriterias($type, $algo, $searchstring, $max=25, $sortfield='date_creation', $sortorder='DESC', $langcode='', $otherfilters='null', $status=1)
Return list of containers object that match a criteria.
dolWebsiteReplacementOfLinks($website, $content, $removephppart=0, $contenttype='html', $containerid='')
Convert a page content to have correct links (based on DOL_URL_ROOT) into an html content.
dolStripPhpCode($str, $replacewith='')
Remove PHP code part from a string.
Definition: website.lib.php:32
getStructuredData($type, $data=array())
Return HTML content to add structured data for an article, news or Blog Post.
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.
Definition: website.lib.php:76
getSocialNetworkSharingLinks()
Return HTML content to add structured data for an article, news or Blog Post.
redirectToContainer($containerref, $containeraliasalt='', $containerid=0, $permanent=0)
Format img tags to introduce viewimage on img src.
dolWebsiteOutput($content, $contenttype='html', $containerid='')
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.