30require_once DOL_DOCUMENT_ROOT.
'/core/class/commonobject.class.php';
43 public $element =
'website';
48 public $table_element =
'website';
53 protected $childtablesoncascade = array();
58 public $picto =
'globe';
88 public $fk_default_home;
93 public $fk_user_creat;
98 public $fk_user_modif;
108 public $use_manifest;
118 public $name_template;
120 const STATUS_DRAFT = 0;
121 const STATUS_VALIDATED = 1;
133 $this->ismultientitymanaged = 1;
145 global $conf, $langs;
153 if (isset($this->entity)) {
154 $this->entity = (int) $this->entity;
156 if (isset($this->
ref)) {
157 $this->
ref = trim($this->
ref);
162 if (isset($this->
status)) {
165 if (empty($this->date_creation)) {
166 $this->date_creation = $now;
168 if (empty($this->date_modification)) {
169 $this->date_modification = $now;
172 $this->lang = preg_replace(
'/[_-].*$/',
'', trim($this->lang));
173 $tmparray = explode(
',', $this->otherlang);
174 if (is_array($tmparray)) {
175 foreach ($tmparray as $key => $val) {
177 if (empty(trim($val))) {
178 unset($tmparray[$key]);
181 $tmparray[$key] = preg_replace(
'/[_-].*$/',
'', trim($val));
183 $this->otherlang = implode(
',', $tmparray);
187 if (empty($this->entity)) {
188 $this->entity = $conf->entity;
190 if (empty($this->lang)) {
191 $this->error = $langs->trans(
"ErrorFieldRequired", $langs->transnoentitiesnoconv(
"MainLanguage"));
195 $pathofwebsite = $conf->website->dir_output.
'/'.$this->ref;
198 $sql =
'INSERT INTO '.MAIN_DB_PREFIX.$this->table_element.
'(';
201 $sql .=
'description,';
203 $sql .=
'otherlang,';
205 $sql .=
'fk_default_home,';
206 $sql .=
'virtualhost,';
207 $sql .=
'fk_user_creat,';
208 $sql .=
'date_creation,';
211 $sql .=
') VALUES (';
212 $sql .=
' '.((empty($this->entity) && $this->entity !=
'0') ?
'NULL' : $this->entity).
',';
213 $sql .=
' '.(!isset($this->
ref) ?
'NULL' :
"'".$this->db->escape($this->
ref).
"'").
',';
215 $sql .=
' '.(!isset($this->lang) ?
'NULL' :
"'".$this->db->escape($this->lang).
"'").
',';
216 $sql .=
' '.(!isset($this->otherlang) ?
'NULL' :
"'".$this->db->escape($this->otherlang).
"'").
',';
217 $sql .=
' '.(!isset($this->
status) ?
'1' : $this->status).
',';
218 $sql .=
' '.(!isset($this->fk_default_home) ?
'NULL' : $this->fk_default_home).
',';
219 $sql .=
' '.(!isset($this->virtualhost) ?
'NULL' :
"'".$this->db->escape($this->virtualhost).
"'").
",";
220 $sql .=
' '.(!isset($this->fk_user_creat) ? $user->id : $this->fk_user_creat).
',';
221 $sql .=
' '.(!isset($this->date_creation) ||
dol_strlen((
string) $this->date_creation) == 0 ?
'NULL' :
"'".$this->db->idate($this->date_creation).
"'").
",";
222 $sql .=
' '.((int) $this->
position).
",";
223 $sql .=
' '.(!isset($this->date_modification) ||
dol_strlen((
string) $this->date_modification) == 0 ?
'NULL' :
"'".$this->db->idate($this->date_modification).
"'");
228 $resql = $this->db->query($sql);
231 $this->errors[] =
'Error '.$this->db->lasterror();
232 dol_syslog(__METHOD__.
' '.implode(
',', $this->errors), LOG_ERR);
236 $this->
id = $this->db->last_insert_id(MAIN_DB_PREFIX.$this->table_element);
239 $tmplangarray = explode(
',', $this->otherlang);
240 if (is_array($tmplangarray)) {
241 dol_mkdir($conf->website->dir_output.
'/'.$this->ref);
242 foreach ($tmplangarray as $val) {
243 if (trim($val) == $this->lang) {
246 dol_mkdir($conf->website->dir_output.
'/'.$this->ref.
'/'.trim($val), DOL_DATA_ROOT);
251 dol_mkdir($conf->medias->multidir_output[$conf->entity].
'/image/'.$this->ref, DOL_DATA_ROOT);
252 dol_mkdir($conf->medias->multidir_output[$conf->entity].
'/js/'.$this->ref, DOL_DATA_ROOT);
256 $pathtomedias = DOL_DATA_ROOT.
'/medias';
257 $pathtomediasinwebsite = $pathofwebsite.
'/medias';
259 dol_syslog(
"Create symlink for ".$pathtomedias.
" into name ".$pathtomediasinwebsite);
260 dol_mkdir(dirname($pathtomediasinwebsite));
261 $result = symlink($pathtomedias, $pathtomediasinwebsite);
263 $langs->load(
"errors");
278 $stringtodolibarrfile =
"# Some properties for Dolibarr web site CMS\n";
279 $stringtodolibarrfile .=
"param=value\n";
281 file_put_contents($pathofwebsite.
'/.dolibarr', $stringtodolibarrfile);
282 dolChmod($pathofwebsite.
'/.dolibarr');
284 $filelicense = $pathofwebsite.
'/LICENSE';
286 $licensecontent =
"LICENSE\n-------\nThis website template content (HTML and PHP code) is published under the license CC-BY-SA - https://creativecommons.org/licenses/by/4.0/";
293 $this->db->rollback();
294 if ($this->db->lasterrno() ==
'DB_ERROR_RECORD_ALREADY_EXISTS') {
313 public function fetch($id, $ref =
null)
319 $sql .=
" t.entity,";
321 $sql .=
" t.position,";
322 $sql .=
" t.description,";
324 $sql .=
" t.otherlang,";
325 $sql .=
" t.status,";
326 $sql .=
" t.fk_default_home,";
327 $sql .=
" t.use_manifest,";
328 $sql .=
" t.virtualhost,";
329 $sql .=
" t.fk_user_creat,";
330 $sql .=
" t.fk_user_modif,";
331 $sql .=
" t.date_creation,";
332 $sql .=
" t.tms as date_modification,";
333 $sql .=
" t.name_template";
334 $sql .=
" FROM ".MAIN_DB_PREFIX.$this->table_element.
" as t";
335 $sql .=
" WHERE t.entity IN (".getEntity(
'website').
")";
337 $sql .=
" AND t.ref = '".$this->db->escape($ref).
"'";
339 $sql .=
" AND t.rowid = ".(int) $id;
342 $resql = $this->db->query($sql);
344 $numrows = $this->db->num_rows($resql);
346 $obj = $this->db->fetch_object($resql);
348 $this->
id = $obj->rowid;
350 $this->entity = $obj->entity;
351 $this->
ref = $obj->ref;
354 $this->lang = $obj->lang;
355 $this->otherlang = $obj->otherlang;
356 $this->
status = $obj->status;
357 $this->fk_default_home = $obj->fk_default_home;
358 $this->virtualhost = $obj->virtualhost;
359 $this->use_manifest = $obj->use_manifest;
360 $this->fk_user_creat = $obj->fk_user_creat;
361 $this->fk_user_modif = $obj->fk_user_modif;
362 $this->date_creation = $this->db->jdate($obj->date_creation);
363 $this->date_modification = $this->db->jdate($obj->date_modification);
364 $this->name_template = $obj->name_template;
366 $this->db->free($resql);
374 $this->errors[] =
'Error '.$this->db->lasterror();
375 dol_syslog(__METHOD__.
' '.implode(
',', $this->errors), LOG_ERR);
393 public function fetchAll($sortorder =
'', $sortfield =
'', $limit = 0, $offset = 0, $filter =
'', $filtermode =
'AND')
401 $sql .=
" t.entity,";
403 $sql .=
" t.description,";
405 $sql .=
" t.otherlang,";
406 $sql .=
" t.status,";
407 $sql .=
" t.fk_default_home,";
408 $sql .=
" t.virtualhost,";
409 $sql .=
" t.fk_user_creat,";
410 $sql .=
" t.fk_user_modif,";
411 $sql .=
" t.date_creation,";
412 $sql .=
" t.tms as date_modification";
413 $sql .=
" FROM ".MAIN_DB_PREFIX.$this->table_element.
" as t";
414 $sql .=
" WHERE t.entity IN (".getEntity(
'website').
")";
417 if (is_array($filter)) {
419 if (count($filter) > 0) {
420 foreach ($filter as $key => $value) {
421 $sqlwhere[] = $this->db->sanitize($key).
" LIKE '%".$this->db->escape($value).
"%'";
424 if (count($sqlwhere) > 0) {
425 $sql .=
' AND '.implode(
' '.$this->db->escape($filtermode).
' ', $sqlwhere);
435 $this->errors[] = $errormessage;
436 dol_syslog(__METHOD__.
' '.implode(
',', $this->errors), LOG_ERR);
440 if (!empty($sortfield)) {
441 $sql .= $this->db->order($sortfield, $sortorder);
443 if (!empty($limit)) {
444 $sql .= $this->db->plimit($limit, $offset);
447 $resql = $this->db->query($sql);
449 $num = $this->db->num_rows($resql);
451 while ($obj = $this->db->fetch_object($resql)) {
452 $record =
new self($this->db);
454 $record->id = $obj->rowid;
456 $record->entity = $obj->entity;
457 $record->ref = $obj->ref;
458 $record->description = $obj->description;
459 $record->lang = $obj->lang;
460 $record->otherlang = $obj->otherlang;
461 $record->status = $obj->status;
462 $record->fk_default_home = $obj->fk_default_home;
463 $record->virtualhost = $obj->virtualhost;
464 $record->fk_user_creat = $obj->fk_user_creat;
465 $record->fk_user_modif = $obj->fk_user_modif;
466 $record->date_creation = $this->db->jdate($obj->date_creation);
467 $record->date_modification = $this->db->jdate($obj->date_modification);
469 $records[$record->id] = $record;
471 $this->db->free($resql);
475 $this->errors[] =
'Error '.$this->db->lasterror();
476 dol_syslog(__METHOD__.
' '.implode(
',', $this->errors), LOG_ERR);
491 global $conf, $langs;
499 if (isset($this->entity)) {
500 $this->entity = (int) $this->entity;
502 if (isset($this->
ref)) {
503 $this->
ref = trim($this->
ref);
508 if (isset($this->
status)) {
513 $this->lang = preg_replace(
'/[_-].*$/',
'', trim($this->lang));
514 $tmparray = explode(
',', $this->otherlang);
515 if (is_array($tmparray)) {
516 foreach ($tmparray as $key => $val) {
518 if (empty(trim($val))) {
519 unset($tmparray[$key]);
522 $tmparray[$key] = preg_replace(
'/[_-].*$/',
'', trim($val));
524 $this->otherlang = implode(
',', $tmparray);
526 if (empty($this->lang)) {
527 $this->error = $langs->trans(
"ErrorFieldRequired", $langs->transnoentitiesnoconv(
"MainLanguage"));
535 $sql =
'UPDATE '.MAIN_DB_PREFIX.$this->table_element.
' SET';
536 $sql .=
' entity = '.(isset($this->entity) ? $this->entity :
"null").
',';
537 $sql .=
' ref = '.(isset($this->
ref) ?
"'".$this->db->escape($this->
ref).
"'" :
"null").
',';
538 $sql .=
' description = '.(isset($this->
description) ?
"'".$this->db->escape($this->
description).
"'" :
"null").
',';
539 $sql .=
' lang = '.(isset($this->lang) ?
"'".$this->db->escape($this->lang).
"'" :
"null").
',';
540 $sql .=
' otherlang = '.(isset($this->otherlang) ?
"'".$this->db->escape($this->otherlang).
"'" :
"null").
',';
541 $sql .=
' status = '.(isset($this->
status) ? $this->
status :
"null").
',';
542 $sql .=
' fk_default_home = '.(($this->fk_default_home > 0) ? $this->fk_default_home :
"null").
',';
543 $sql .=
' use_manifest = '.((int) $this->use_manifest).
',';
544 $sql .=
' virtualhost = '.(($this->virtualhost !=
'') ?
"'".$this->db->escape($this->virtualhost).
"'" :
"null").
',';
545 $sql .=
' fk_user_modif = '.(!isset($this->fk_user_modif) ? $user->id : $this->fk_user_modif).
',';
546 $sql .=
' date_creation = '.(!isset($this->date_creation) ||
dol_strlen($this->date_creation) != 0 ?
"'".$this->db->idate($this->date_creation).
"'" :
'null').
',';
547 $sql .=
' tms = '.(dol_strlen($this->date_modification) != 0 ?
"'".$this->db->idate($this->date_modification).
"'" :
"'".$this->db->idate(
dol_now()).
"'");
548 $sql .=
' WHERE rowid='.((int) $this->
id);
552 $resql = $this->db->query($sql);
555 $this->errors[] =
'Error '.$this->db->lasterror();
556 dol_syslog(__METHOD__.
' '.implode(
',', $this->errors), LOG_ERR);
559 if (!$error && !$notrigger) {
564 $tmplangarray = explode(
',', $this->otherlang);
565 if (is_array($tmplangarray)) {
566 dol_mkdir($conf->website->dir_output.
'/'.$this->ref);
567 foreach ($tmplangarray as $val) {
568 if (trim($val) == $this->lang) {
571 dol_mkdir($conf->website->dir_output.
'/'.$this->ref.
'/'.trim($val));
583 $this->db->rollback();
600 public function delete(
User $user, $notrigger = 0)
611 $sql =
'DELETE FROM '.MAIN_DB_PREFIX.
'categorie_website_page';
612 $sql .=
' WHERE fk_website_page IN (SELECT rowid FROM '.MAIN_DB_PREFIX.
'website_page WHERE fk_website = '.((int) $this->
id).
')';
614 $resql = $this->db->query($sql);
617 $this->errors[] =
'Error '.$this->db->lasterror();
618 dol_syslog(__METHOD__.
' '.implode(
',', $this->errors), LOG_ERR);
623 $sql =
'DELETE FROM '.MAIN_DB_PREFIX.
'website_page';
624 $sql .=
' WHERE fk_website = '.((int) $this->
id);
626 $resql = $this->db->query($sql);
629 $this->errors[] =
'Error '.$this->db->lasterror();
630 dol_syslog(__METHOD__.
' '.implode(
',', $this->errors), LOG_ERR);
640 if (!$error && !empty($this->
ref)) {
641 $pathofwebsite = DOL_DATA_ROOT.($conf->entity > 1 ?
'/'.$conf->entity :
'').
'/website/'.$this->
ref;
648 $this->db->rollback();
667 global $conf, $langs;
676 $sql =
'DELETE FROM '.MAIN_DB_PREFIX.
'website_page';
677 $sql .=
' WHERE fk_website = '.((int) $this->
id);
679 $resql = $this->db->query($sql);
682 $this->errors[] =
'Error '.$this->db->lasterror();
683 dol_syslog(__METHOD__.
' '.implode(
',', $this->errors), LOG_ERR);
687 if (!$error && !empty($this->
ref)) {
688 $pathofwebsite = DOL_DATA_ROOT.($conf->entity > 1 ?
'/'.$conf->entity :
'').
'/website/'.$this->
ref;
694 $pathtomedias = DOL_DATA_ROOT.
'/medias';
695 $pathtomediasinwebsite = $pathofwebsite.
'/medias';
697 dol_syslog(
"Create symlink for ".$pathtomedias.
" into name ".$pathtomediasinwebsite);
698 dol_mkdir(dirname($pathtomediasinwebsite));
699 $result = symlink($pathtomedias, $pathtomediasinwebsite);
701 $this->errors[] = $langs->trans(
"ErrorFailedToCreateSymLinkToMedias", $pathtomediasinwebsite, $pathtomedias);
709 $this->db->rollback();
731 global $conf, $langs;
732 global $dolibarr_main_data_root;
741 if (empty($newref)) {
742 $this->error =
'ErrorBadParameter newref';
749 if (
$object->fetch(0, $newref) > 0) {
750 $this->error =
'ErrorNewRefIsAlreadyUsed';
759 $oldidforhome =
$object->fk_default_home;
762 $pathofwebsiteold = $dolibarr_main_data_root.($conf->entity > 1 ?
'/'.$conf->entity :
'').
'/website/'.
dol_sanitizeFileName($oldref);
763 $pathofwebsitenew = $dolibarr_main_data_root.($conf->entity > 1 ?
'/'.$conf->entity :
'').
'/website/'.
dol_sanitizeFileName($newref);
766 $fileindex = $pathofwebsitenew.
'/index.php';
778 $object->fk_user_creat = $user->id;
780 $object->status = self::STATUS_DRAFT;
782 $object->lang = substr($langs->defaultlang, 0, 2);
786 $object->context[
'createfromclone'] =
'createfromclone';
787 $result =
$object->create($user);
791 dol_syslog(__METHOD__.
' '.implode(
',', $this->errors), LOG_ERR);
801 $pathtomedias = DOL_DATA_ROOT.
'/medias';
802 $pathtomediasinwebsite = $pathofwebsitenew.
'/medias';
804 dol_syslog(
"Create symlink for ".$pathtomedias.
" into name ".$pathtomediasinwebsite);
805 dol_mkdir(dirname($pathtomediasinwebsite));
806 $result = symlink($pathtomedias, $pathtomediasinwebsite);
810 $pathofmediasjsold = DOL_DATA_ROOT.
'/medias/js/'.$oldref;
811 $pathofmediasjsnew = DOL_DATA_ROOT.
'/medias/js/'.$newref;
814 $pathofmediasimageold = DOL_DATA_ROOT.
'/medias/image/'.$oldref;
815 $pathofmediasimagenew = DOL_DATA_ROOT.
'/medias/image/'.$newref;
819 $objectpages =
new WebsitePage($this->db);
820 $listofpages = $objectpages->fetchAll($fromid);
821 foreach ($listofpages as $pageid => $objectpageold) {
823 $filetplold = $pathofwebsitenew.
'/page'.$pageid.
'.tpl.php';
827 $objectpagenew = $objectpageold->createFromClone($user, $pageid, $objectpageold->pageurl,
'', 0,
$object->id,
'1');
830 if (is_object($objectpagenew) && $objectpagenew->pageurl) {
831 $filealias = $pathofwebsitenew.
'/'.$objectpagenew->pageurl.
'.php';
832 $filetplnew = $pathofwebsitenew.
'/page'.$objectpagenew->id.
'.tpl.php';
845 if ($pageid == $oldidforhome) {
846 $newidforhome = $objectpagenew->id;
857 $object->fk_default_home = $newidforhome;
865 $filetpl = $pathofwebsitenew.
'/page'.$newidforhome.
'.tpl.php';
866 $filewrapper = $pathofwebsitenew.
'/wrapper.php';
874 unset(
$object->context[
'createfromclone']);
882 $this->db->rollback();
899 public function getNomUrl($withpicto = 0, $option =
'', $notooltip = 0, $maxlen = 24, $morecss =
'')
905 $label =
'<u>'.img_picto(
'',
'website',
'class="pictofixedwidth"').$langs->trans(
"WebSite").
'</u>';
907 $label .=
'<b>'.$langs->trans(
'Ref').
':</b> '.$this->
ref.
'<br>';
908 $label .=
'<b>'.$langs->trans(
'MainLanguage').
':</b> '.$this->lang;
916 if (!empty($this->virtualhost)) {
917 $linkstart =
'<a target="_blank" rel="noopener" href="'.$this->virtualhost.
'">';
920 $linkstart = $linkend =
'';
923 $result .= $linkstart;
925 $result .=
img_object(($notooltip ?
'' : $label), ($this->picto ? $this->picto :
'generic'),
'class="pictofixedwidth'.($notooltip ?
'' :
' classfortooltip').
'"');
927 $result .= $this->ref;
957 if (empty($this->labelStatus) || empty($this->labelStatusShort)) {
960 $this->labelStatus[self::STATUS_DRAFT] = $langs->transnoentitiesnoconv(
'Offline');
961 $this->labelStatus[self::STATUS_VALIDATED] = $langs->transnoentitiesnoconv(
'Online');
962 $this->labelStatusShort[self::STATUS_DRAFT] = $langs->transnoentitiesnoconv(
'Offline');
963 $this->labelStatusShort[self::STATUS_VALIDATED] = $langs->transnoentitiesnoconv(
'Online');
966 $statusType =
'status5';
967 if ($status == self::STATUS_VALIDATED) {
968 $statusType =
'status4';
971 return dolGetStatus($this->labelStatus[$status], $this->labelStatusShort[$status],
'', $statusType, $mode);
988 $this->
ref =
'myspecimenwebsite';
991 $this->otherlang =
'fr,es';
993 $this->fk_default_home = 0;
994 $this->virtualhost =
'http://myvirtualhost';
995 $this->fk_user_creat = $user->id;
996 $this->fk_user_modif = $user->id;
997 $this->date_creation =
dol_now();
1015 if (empty($website->id) || empty($website->ref)) {
1020 dol_syslog(
"Create temp dir ".$conf->website->dir_temp);
1022 if (!is_writable($conf->website->dir_temp)) {
1023 setEventMessages(
"Temporary dir ".$conf->website->dir_temp.
" is not writable",
null,
'errors');
1027 $destdir = $conf->website->dir_temp.
'/'.$website->ref;
1030 $countreallydeleted = 0;
1032 if ($counttodelete != $countreallydeleted) {
1033 setEventMessages(
"Failed to clean temp directory ".$destdir,
null,
'errors');
1037 $arrayreplacementinfilename = array();
1038 $arrayreplacementincss = array();
1039 $arrayreplacementincss[
'file=image/'.$website->ref.
'/'] =
"file=image/__WEBSITE_KEY__/";
1040 $arrayreplacementincss[
'file=js/'.$website->ref.
'/'] =
"file=js/__WEBSITE_KEY__/";
1041 $arrayreplacementincss[
'medias/image/'.$website->ref.
'/'] =
"medias/image/__WEBSITE_KEY__/";
1042 $arrayreplacementincss[
'medias/js/'.$website->ref.
'/'] =
"medias/js/__WEBSITE_KEY__/";
1043 if (
$mysoc->logo_small) {
1044 $arrayreplacementincss[
'file=logos%2Fthumbs%2F'.$mysoc->logo_small] =
"file=logos%2Fthumbs%2F__LOGO_SMALL_KEY__";
1047 $arrayreplacementincss[
'file=logos%2Fthumbs%2F'.$mysoc->logo_mini] =
"file=logos%2Fthumbs%2F__LOGO_MINI_KEY__";
1050 $arrayreplacementincss[
'file=logos%2Fthumbs%2F'.$mysoc->logo] =
"file=logos%2Fthumbs%2F__LOGO_KEY__";
1055 dol_mkdir($conf->website->dir_temp.
'/'.$website->ref.
'/containers');
1056 dol_mkdir($conf->website->dir_temp.
'/'.$website->ref.
'/medias/image/websitekey');
1057 dol_mkdir($conf->website->dir_temp.
'/'.$website->ref.
'/medias/js/websitekey');
1060 $srcdir = $conf->website->dir_output.
'/'.$website->ref;
1061 $destdir = $conf->website->dir_temp.
'/'.$website->ref.
'/containers';
1063 dol_syslog(
"Copy pages from ".$srcdir.
" into ".$destdir);
1064 dolCopyDir($srcdir, $destdir,
'0', 1, $arrayreplacementinfilename, 2, array(
'old',
'back'), 1);
1067 dol_delete_file($conf->website->dir_temp.
'/'.$website->ref.
'/containers/master.inc.php');
1070 if (
dol_is_file($conf->website->dir_temp.
'/'.$website->ref.
'/containers/README.md')) {
1071 dol_copy($conf->website->dir_temp.
'/'.$website->ref.
'/containers/README.md', $conf->website->dir_temp.
'/'.$website->ref.
'/README.md');
1073 if (
dol_is_file($conf->website->dir_temp.
'/'.$website->ref.
'/containers/LICENSE')) {
1074 dol_copy($conf->website->dir_temp.
'/'.$website->ref.
'/containers/LICENSE', $conf->website->dir_temp.
'/'.$website->ref.
'/LICENSE');
1078 $srcdir = DOL_DATA_ROOT.
'/medias/image/'.$website->ref;
1079 $destdir = $conf->website->dir_temp.
'/'.$website->ref.
'/medias/image/websitekey';
1081 dol_syslog(
"Copy content from ".$srcdir.
" into ".$destdir);
1082 dolCopyDir($srcdir, $destdir,
'0', 1, $arrayreplacementinfilename);
1085 $srcdir = DOL_DATA_ROOT.
'/medias/js/'.$website->ref;
1086 $destdir = $conf->website->dir_temp.
'/'.$website->ref.
'/medias/js/websitekey';
1088 dol_syslog(
"Copy content from ".$srcdir.
" into ".$destdir);
1089 dolCopyDir($srcdir, $destdir,
'0', 1, $arrayreplacementinfilename);
1092 $cssindestdir = $conf->website->dir_temp.
'/'.$website->ref.
'/containers/styles.css.php';
1097 $htmldeaderindestdir = $conf->website->dir_temp.
'/'.$website->ref.
'/containers/htmlheader.html';
1103 $filesql = $conf->website->dir_temp.
'/'.$website->ref.
'/website_pages.sql';
1104 $fp = fopen($filesql,
"w");
1110 $objectpages =
new WebsitePage($this->db);
1111 $listofpages = $objectpages->fetchAll($website->id);
1116 foreach ($listofpages as $pageid => $objectpageold) {
1117 $objectpageold->newid = $i;
1121 foreach ($listofpages as $pageid => $objectpageold) {
1124 foreach ($listofpages as $pageid2 => $objectpageold2) {
1125 if ($pageid2 == $objectpageold->fk_page) {
1126 $newfk_page = $objectpageold2->newid;
1130 $objectpageold->newfk_page = $newfk_page;
1134 $line =
'-- File generated by Dolibarr '.DOL_VERSION.
' --;'.
"\n";
1138 foreach ($listofpages as $pageid => $objectpageold) {
1139 $oldpageid = $objectpageold->id;
1141 $allaliases = $objectpageold->pageurl;
1142 $allaliases .= ($objectpageold->aliasalt ?
','.$objectpageold->aliasalt :
'');
1147 dol_delete_file($conf->website->dir_temp.
'/'.$website->ref.
'/containers/page'.$objectpageold->id.
'.tpl.php', 0, 0, 0,
null,
false, 0);
1149 dol_delete_file($conf->website->dir_temp.
'/'.$website->ref.
'/containers/'.$objectpageold->pageurl.
'.php', 0, 0, 0,
null,
false, 0);
1150 dol_delete_file($conf->website->dir_temp.
'/'.$website->ref.
'/containers/*/'.$objectpageold->pageurl.
'.php', 0, 0, 0,
null,
false, 0);
1152 $arrayofaliases = explode(
',', $objectpageold->aliasalt);
1153 foreach ($arrayofaliases as $tmpaliasalt) {
1154 dol_delete_file($conf->website->dir_temp.
'/'.$website->ref.
'/containers/'.trim($tmpaliasalt).
'.php', 0, 0, 0,
null,
false, 0);
1155 dol_delete_file($conf->website->dir_temp.
'/'.$website->ref.
'/containers/*/'.trim($tmpaliasalt).
'.php', 0, 0, 0,
null,
false, 0);
1160 $line =
'-- Page ID '.$objectpageold->newid.
'__+MAX_llx_website_page__ - Aliases '.$allaliases.
' --;';
1165 $line =
'INSERT INTO llx_website_page(rowid, fk_page, fk_website, pageurl, aliasalt, title, description, lang, image, keywords, status, date_creation, tms, import_key, grabbed_from, type_container, htmlheader, content, author_alias, allowed_in_frames)';
1166 $line .=
" VALUES(";
1167 $line .= $objectpageold->newid.
"__+MAX_llx_website_page__, ";
1168 $line .= ($objectpageold->newfk_page ? $this->db->escape($objectpageold->newfk_page).
"__+MAX_llx_website_page__" :
"null").
", ";
1169 $line .=
"__WEBSITE_ID__, ";
1170 $line .=
"'".$this->db->escape($objectpageold->pageurl).
"', ";
1171 $line .=
"'".$this->db->escape($objectpageold->aliasalt).
"', ";
1172 $line .=
"'".$this->db->escape($objectpageold->title).
"', ";
1173 $line .=
"'".$this->db->escape($objectpageold->description).
"', ";
1174 $line .=
"'".$this->db->escape($objectpageold->lang).
"', ";
1175 $line .=
"'".$this->db->escape($objectpageold->image).
"', ";
1176 $line .=
"'".$this->db->escape($objectpageold->keywords).
"', ";
1177 $line .=
"'".$this->db->escape((
string) $objectpageold->status).
"', ";
1178 $line .=
"'".$this->db->idate($objectpageold->date_creation).
"', ";
1179 $line .=
"'".$this->db->idate($objectpageold->date_modification).
"', ";
1180 $line .= ($objectpageold->import_key ?
"'".$this->db->escape((
string) $objectpageold->import_key).
"'" :
"null").
", ";
1181 $line .=
"'".$this->db->escape($objectpageold->grabbed_from).
"', ";
1182 $line .=
"'".$this->db->escape($objectpageold->type_container).
"', ";
1185 $stringtoexport = $objectpageold->htmlheader;
1186 $stringtoexport = str_replace(array(
"\r\n",
"\r",
"\n"),
"__N__", $stringtoexport);
1187 $stringtoexport = str_replace(
'file=image/'.$website->ref.
'/',
"file=image/__WEBSITE_KEY__/", $stringtoexport);
1188 $stringtoexport = str_replace(
'file=js/'.$website->ref.
'/',
"file=js/__WEBSITE_KEY__/", $stringtoexport);
1189 $stringtoexport = str_replace(
'medias/image/'.$website->ref.
'/',
"medias/image/__WEBSITE_KEY__/", $stringtoexport);
1190 $stringtoexport = str_replace(
'medias/js/'.$website->ref.
'/',
"medias/js/__WEBSITE_KEY__/", $stringtoexport);
1192 $stringtoexport = str_replace(
'file=logos%2Fthumbs%2F'.
$mysoc->logo_small,
"file=logos%2Fthumbs%2F__LOGO_SMALL_KEY__", $stringtoexport);
1193 $stringtoexport = str_replace(
'file=logos%2Fthumbs%2F'.
$mysoc->logo_mini,
"file=logos%2Fthumbs%2F__LOGO_MINI_KEY__", $stringtoexport);
1194 $stringtoexport = str_replace(
'file=logos%2Fthumbs%2F'.
$mysoc->logo,
"file=logos%2Fthumbs%2F__LOGO_KEY__", $stringtoexport);
1197 $line .=
"/* new line */\n";
1199 $line .=
"'".$this->db->escape($stringtoexport).
"', ";
1202 $stringtoexport = $objectpageold->content;
1203 $stringtoexport = str_replace(array(
"\r\n",
"\r",
"\n"),
"__N__", $stringtoexport);
1204 $stringtoexport = str_replace(
'file=image/'.$website->ref.
'/',
"file=image/__WEBSITE_KEY__/", $stringtoexport);
1205 $stringtoexport = str_replace(
'file=js/'.$website->ref.
'/',
"file=js/__WEBSITE_KEY__/", $stringtoexport);
1206 $stringtoexport = str_replace(
'medias/image/'.$website->ref.
'/',
"medias/image/__WEBSITE_KEY__/", $stringtoexport);
1207 $stringtoexport = str_replace(
'medias/js/'.$website->ref.
'/',
"medias/js/__WEBSITE_KEY__/", $stringtoexport);
1208 $stringtoexport = str_replace(
'"image/'.$website->ref.
'/',
'"image/__WEBSITE_KEY__/', $stringtoexport);
1209 $stringtoexport = str_replace(
'"/image/'.$website->ref.
'/',
'"/image/__WEBSITE_KEY__/', $stringtoexport);
1210 $stringtoexport = str_replace(
'"js/'.$website->ref.
'/',
'"js/__WEBSITE_KEY__/', $stringtoexport);
1211 $stringtoexport = str_replace(
'"/js/'.$website->ref.
'/',
'"/js/__WEBSITE_KEY__/', $stringtoexport);
1213 $stringtoexport = str_replace(
'file=logos%2Fthumbs%2F'.
$mysoc->logo_small,
"file=logos%2Fthumbs%2F__LOGO_SMALL_KEY__", $stringtoexport);
1214 $stringtoexport = str_replace(
'file=logos%2Fthumbs%2F'.
$mysoc->logo_mini,
"file=logos%2Fthumbs%2F__LOGO_MINI_KEY__", $stringtoexport);
1215 $stringtoexport = str_replace(
'file=logos%2Fthumbs%2F'.
$mysoc->logo,
"file=logos%2Fthumbs%2F__LOGO_KEY__", $stringtoexport);
1218 $line .=
"/* new line */\n";
1220 $line .=
"'".$this->db->escape($stringtoexport).
"', ";
1222 $line .=
"'".$this->db->escape($objectpageold->author_alias).
"', ";
1223 $line .= (int) $objectpageold->allowed_in_frames;
1231 if ($this->fk_default_home > 0 && ($objectpageold->id == $this->fk_default_home) && ($objectpageold->newid > 0)) {
1233 $line =
"UPDATE llx_website SET fk_default_home = ".($objectpageold->newid > 0 ? $this->db->escape((
string) $objectpageold->newid).
"__+MAX_llx_website_page__" :
"null").
" WHERE rowid = __WEBSITE_ID__;";
1241 $line =
"\n-- For Dolibarr v14+ --;\n";
1242 $line .=
"UPDATE llx_website SET lang = '".$this->db->escape($this->lang).
"' WHERE rowid = __WEBSITE_ID__;\n";
1243 $line .=
"UPDATE llx_website SET otherlang = '".$this->db->escape($this->otherlang).
"' WHERE rowid = __WEBSITE_ID__;\n";
1252 $filedir = $conf->website->dir_temp.
'/'.$website->ref.
'/.';
1253 $fileglob = $conf->website->dir_temp.
'/'.$website->ref.
'/website_'.$website->ref.
'-*.zip';
1254 $filename = $conf->website->dir_temp.
'/'.$website->ref.
'/website_'.$website->ref.
'-'.
dol_print_date(
dol_now(),
'dayhourlog').
'-V'.((float) DOL_VERSION).
'.zip';
1258 $result = dol_compress_dir($filedir, $filename,
'zip');
1264 $this->error = $errormsg;
1276 public function importWebSite($pathtofile)
1283 if (!file_exists($pathtofile)) {
1284 $this->error =
'The zip file "'.$pathtofile.
'" is not found';
1290 $this->error =
'Function importWebSite called on object not loaded (object->ref is empty)';
1297 $filename = basename($pathtofile);
1299 if (!preg_match(
'/^website_(.*)-(.*)$/', $filename, $reg)) {
1300 $this->errors[] =
'Bad format for filename '.$filename.
'. Must be website_XXX-VERSION.';
1307 if (!empty($result[
'error'])) {
1308 $this->errors[] =
'Failed to unzip file '.$pathtofile;
1312 $arrayreplacement = array();
1313 $arrayreplacement[
'__WEBSITE_ID__'] =
$object->id;
1314 $arrayreplacement[
'__WEBSITE_KEY__'] =
$object->ref;
1315 $arrayreplacement[
'__N__'] = $this->db->escape(
"\n");
1316 $arrayreplacement[
'__LOGO_SMALL_KEY__'] = $this->db->escape(
$mysoc->logo_small);
1317 $arrayreplacement[
'__LOGO_MINI_KEY__'] = $this->db->escape(
$mysoc->logo_mini);
1318 $arrayreplacement[
'__LOGO_KEY__'] = $this->db->escape(
$mysoc->logo);
1322 dolCopyDir($conf->website->dir_temp.
'/'.
$object->ref.
'/containers', $conf->website->dir_output.
'/'.
$object->ref,
'0', 1);
1325 $cssindestdir = $conf->website->dir_output.
'/'.
$object->ref.
'/styles.css.php';
1328 $htmldeaderindestdir = $conf->website->dir_output.
'/'.
$object->ref.
'/htmlheader.html';
1332 $filemaster = $conf->website->dir_output.
'/'.
$object->ref.
'/master.inc.php';
1335 $this->errors[] =
'Failed to write file '.$filemaster;
1340 if (
dol_is_dir($conf->website->dir_temp.
'/'.
$object->ref.
'/medias/image/websitekey')) {
1341 $result =
dolCopyDir($conf->website->dir_temp.
'/'.
$object->ref.
'/medias/image/websitekey', $conf->website->dir_output.
'/'.
$object->ref.
'/medias/image/'.
$object->ref,
'0', 1);
1343 $this->error =
'Failed to copy files into '.$conf->website->dir_output.
'/'.
$object->ref.
'/medias/image/'.
$object->ref.
'.';
1345 $this->errors[] = $this->error;
1351 if (
dol_is_dir($conf->website->dir_temp.
'/'.
$object->ref.
'/medias/js/websitekey')) {
1352 $result =
dolCopyDir($conf->website->dir_temp.
'/'.
$object->ref.
'/medias/js/websitekey', $conf->website->dir_output.
'/'.
$object->ref.
'/medias/js/'.
$object->ref,
'0', 1);
1354 $this->error =
'Failed to copy files into '.$conf->website->dir_output.
'/'.
$object->ref.
'/medias/js/'.
$object->ref.
'.';
1356 $this->errors[] = $this->error;
1361 $sqlfile = $conf->website->dir_temp.
"/".
$object->ref.
'/website_pages.sql';
1368 $sqlgetrowid =
'SELECT MAX(rowid) as max from '.MAIN_DB_PREFIX.
'website_page';
1370 $resql = $this->db->query($sqlgetrowid);
1372 $obj = $this->db->fetch_object($resql);
1373 $maxrowid = $obj->max;
1377 $runsql =
run_sql($sqlfile, 1, 0, 0,
'',
'none', 0, 1, 0, 0, 1,
'');
1379 $this->errors[] =
'Failed to load sql file '.$sqlfile.
' (ret='.((int) $runsql).
')';
1383 $objectpagestatic =
new WebsitePage($this->db);
1384 $aliasesarray =
null;
1387 $fp = fopen($sqlfile,
"r");
1389 while (!feof($fp)) {
1393 $buf = fgets($fp, 65000);
1397 if (preg_match(
'/^-- Page ID (\d+)\s[^\s]+\s(\d+).*Aliases\s(.+)\s--;/i', $buf, $reg)) {
1399 $oldid = (int) $reg[1];
1400 $newid = ((int) $reg[2] + $maxrowid);
1401 $aliasesarray = explode(
',', $reg[3]);
1403 dol_syslog(
"In sql source file, we have the page ID ".$oldid.
" to replace with the new ID ".$newid.
", and we must create the shortcut aliases: ".$reg[3]);
1406 } elseif (preg_match(
'/^-- Page ID (\d+).*Aliases\s(.*)\s--;/i', $buf, $reg)) {
1408 $newid = ((int) $reg[1] + $maxrowid);
1409 $aliasesarray = explode(
',', $reg[2]);
1411 dol_syslog(
"In sql source file, we have the page with the new ID ".$newid.
", and we must create the shortcut aliases: ".$reg[2]);
1415 $objectpagestatic->fetch($newid);
1418 $filetpl = $conf->website->dir_output.
'/'.
$object->ref.
'/page'.$newid.
'.tpl.php';
1421 $this->errors[] =
'Failed to write file '.basename($filetpl);
1426 if (is_array($aliasesarray)) {
1427 foreach ($aliasesarray as $aliasshortcuttocreate) {
1428 if (trim($aliasshortcuttocreate)) {
1429 $filealias = $conf->website->dir_output.
'/'.
$object->ref.
'/'.trim($aliasshortcuttocreate).
'.php';
1432 $this->errors[] =
'Failed to write file '.basename($filealias);
1444 $sql =
"SELECT fk_default_home FROM ".MAIN_DB_PREFIX.
"website WHERE rowid = ".((int)
$object->id);
1445 $resql = $this->db->query($sql);
1447 $obj = $this->db->fetch_object($resql);
1449 $object->fk_default_home = $obj->fk_default_home;
1457 $pathofwebsite = $conf->website->dir_output.
'/'.
$object->ref;
1458 dolSaveIndexPage($pathofwebsite, $pathofwebsite.
'/index.php', $pathofwebsite.
'/page'.
$object->fk_default_home.
'.tpl.php', $pathofwebsite.
'/wrapper.php',
$object);
1463 $this->db->rollback();
1466 $this->db->commit();
1485 $this->error =
'Function rebuildWebSiteFiles called on object not loaded (object->ref is empty)';
1489 $objectpagestatic =
new WebsitePage($this->db);
1491 $sql =
"SELECT rowid FROM ".MAIN_DB_PREFIX.
"website_page WHERE fk_website = ".((int) $this->
id);
1493 $resql = $this->db->query($sql);
1495 $this->error = $this->db->lasterror();
1499 $num = $this->db->num_rows($resql);
1504 $obj = $this->db->fetch_object($resql);
1506 $newid = $obj->rowid;
1508 $objectpagestatic->fetch($newid);
1510 $aliasesarray = explode(
',', $objectpagestatic->aliasalt);
1512 $filetpl = $conf->website->dir_output.
'/'.
$object->ref.
'/page'.$newid.
'.tpl.php';
1515 $this->errors[] =
'Failed to write file '.basename($filetpl);
1520 if (!empty($objectpagestatic->pageurl) && !in_array($objectpagestatic->pageurl, $aliasesarray)) {
1521 $aliasesarray[] = $objectpagestatic->pageurl;
1525 if (is_array($aliasesarray)) {
1526 foreach ($aliasesarray as $aliasshortcuttocreate) {
1527 if (trim($aliasshortcuttocreate)) {
1528 $filealias = $conf->website->dir_output.
'/'.
$object->ref.
'/'.trim($aliasshortcuttocreate).
'.php';
1531 $this->errors[] =
'Failed to write file '.basename($filealias);
1543 $pathofwebsite = $conf->website->dir_output.
'/'.
$object->ref;
1544 $fileindex = $pathofwebsite.
'/index.php';
1546 if (
$object->fk_default_home > 0) {
1547 $filetpl = $pathofwebsite.
'/page'.
$object->fk_default_home.
'.tpl.php';
1549 $filewrapper = $pathofwebsite.
'/wrapper.php';
1554 $filecacheglob = $conf->website->dir_output.
'/temp/'.
$object->ref.
'-*.php.cache';
1571 return !empty($this->otherlang);
1585 global $websitepagefile, $website;
1586 '@phan-var-force Website $website';
1588 if (!is_object($weblangs)) {
1589 return 'ERROR componentSelectLang called with parameter $weblangs not defined';
1592 $arrayofspecialmainlanguages = array(
1620 $tmppage =
new WebsitePage($this->db);
1623 if (!empty($websitepagefile)) {
1624 $websitepagefileshort = basename($websitepagefile);
1625 if ($websitepagefileshort ==
'index.php') {
1626 $pageid = $website->fk_default_home;
1628 $pageid = str_replace(array(
'.tpl.php',
'page'), array(
'',
''), $websitepagefileshort);
1631 $tmppage->fetch($pageid);
1636 if (!is_array($languagecodes) && $pageid > 0) {
1637 $languagecodes = array();
1639 $sql =
"SELECT wp.rowid, wp.lang, wp.pageurl, wp.fk_page";
1640 $sql .=
" FROM ".MAIN_DB_PREFIX.
"website_page as wp";
1641 $sql .=
" WHERE wp.fk_website = ".((int) $website->id);
1642 $sql .=
" AND (wp.fk_page = ".((int) $pageid).
" OR wp.rowid = ".((int) $pageid);
1643 if ($tmppage->fk_page > 0) {
1644 $sql .=
" OR wp.fk_page = ".((int) $tmppage->fk_page).
" OR wp.rowid = ".((int) $tmppage->fk_page);
1648 $resql = $this->db->query($sql);
1650 while ($obj = $this->db->fetch_object($resql)) {
1651 $newlang = $obj->lang;
1652 if ($obj->rowid == $pageid) {
1653 $newlang = $obj->lang;
1655 if (!in_array($newlang, $languagecodes)) {
1656 $languagecodes[] = $newlang;
1663 $languagecodeselected = substr($weblangs->defaultlang, 0, 2);
1664 if (!empty($websitepagefile)) {
1665 $pageid = str_replace(array(
'.tpl.php',
'page'), array(
'',
''), basename($websitepagefile));
1667 $pagelang = substr($tmppage->lang, 0, 2);
1668 $languagecodeselected = substr($pagelang, 0, 2);
1669 if (!in_array($pagelang, $languagecodes)) {
1670 $languagecodes[] = $pagelang;
1675 $weblangs->load(
'languages');
1678 $url = $_SERVER[
"REQUEST_URI"];
1679 $url = preg_replace(
'/(\?|&)l=([a-zA-Z_]*)/',
'', $url);
1681 $url .= (preg_match(
'/\?/', $url) ?
'&' :
'?').
'l=';
1682 if (!preg_match(
'/^\//', $url)) {
1687 $MAXHEIGHT = 4 * $HEIGHTOPTION;
1688 $nboflanguage = count($languagecodes);
1690 $out =
'<!-- componentSelectLang'.$htmlname.
' -->'.
"\n";
1693 $out .=
'.componentSelectLang'.$htmlname.
':hover { height: '.min($MAXHEIGHT, ($HEIGHTOPTION * $nboflanguage)).
'px; overflow-x: hidden; overflow-y: '.((($HEIGHTOPTION * $nboflanguage) > $MAXHEIGHT) ?
' scroll' :
'hidden').
'; }'.
"\n";
1694 $out .=
'.componentSelectLang'.$htmlname.
' li { line-height: '.$HEIGHTOPTION.
'px; }'.
"\n";
1695 $out .=
'.componentSelectLang'.$htmlname.
' {
1696 display: inline-block;
1698 height: '.$HEIGHTOPTION.
'px;
1700 transition: all .3s ease;
1702 vertical-align: top;
1704 .componentSelectLang'.$htmlname.
':hover, .componentSelectLang'.$htmlname.
':hover a { background-color: #fff; color: #000 !important; }
1705 ul.componentSelectLang'.$htmlname.
' { width: 150px; }
1706 ul.componentSelectLang'.$htmlname.
':hover .fa { visibility: hidden; }
1707 .componentSelectLang'.$htmlname.
' a { text-decoration: none; width: 100%; }
1708 .componentSelectLang'.$htmlname.
' li { display: block; padding: 0px 15px; margin-left: 0; margin-right: 0; }
1709 .componentSelectLang'.$htmlname.
' li:hover { background-color: #EEE; }
1712 $out .=
'<ul class="componentSelectLang'.$htmlname.($morecss ?
' '.$morecss :
'').
'">';
1714 if ($languagecodeselected) {
1716 if (strlen($languagecodeselected) == 2) {
1717 $languagecodeselected = (string) (empty($arrayofspecialmainlanguages[$languagecodeselected]) ? $languagecodeselected.
'_'.strtoupper($languagecodeselected) : $arrayofspecialmainlanguages[$languagecodeselected]);
1720 $countrycode = strtolower(substr($languagecodeselected, -2));
1721 $label = $weblangs->trans(
"Language_".$languagecodeselected);
1722 if ($countrycode ==
'us') {
1723 $label = preg_replace(
'/\s*\(.*\)/',
'', $label);
1725 $out .=
'<li><a href="'.$url.substr($languagecodeselected, 0, 2).
'"><img height="12px" src="/medias/image/common/flags/'.$countrycode.
'.png" style="margin-right: 5px;"/><span class="websitecomponentlilang">'.$label.
'</span>';
1726 $out .=
'<span class="fa fa-caret-down" style="padding-left: 5px;" />';
1727 $out .=
'</a></li>';
1730 if (is_array($languagecodes)) {
1731 foreach ($languagecodes as $languagecode) {
1733 if (strlen($languagecode) == 2) {
1734 $languagecode = (empty($arrayofspecialmainlanguages[$languagecode]) ? $languagecode.
'_'.strtoupper($languagecode) : $arrayofspecialmainlanguages[$languagecode]);
1737 if ($languagecode == $languagecodeselected) {
1741 $countrycode = strtolower(substr($languagecode, -2));
1742 $label = $weblangs->trans(
"Language_".$languagecode);
1743 if ($countrycode ==
'us') {
1744 $label = preg_replace(
'/\s*\(.*\)/',
'', $label);
1746 $out .=
'<li><a href="'.$url.substr($languagecode, 0, 2).
'"><img height="12px" src="/medias/image/common/flags/'.$countrycode.
'.png" style="margin-right: 5px;"/><span class="websitecomponentlilang">'.$label.
'</span>';
1747 if (empty($i) && empty($languagecodeselected)) {
1748 $out .=
'<span class="fa fa-caret-down" style="padding-left: 5px;" />';
1750 $out .=
'</a></li>';
1771 if (empty($website->id) || empty($website->ref)) {
1775 if (empty($website->name_template) && empty($exportPath)) {
1776 setEventMessages(
"To export the website template into a directory of the server, the name of the directory/template must be provided.",
null,
'errors');
1779 if (!is_writable($conf->website->dir_temp)) {
1780 setEventMessages(
"Temporary dir ".$conf->website->dir_temp.
" is not writable",
null,
'errors');
1789 if (empty($exportPath)) {
1790 $destdirrel =
'install/doctemplates/websites/'.$website->name_template;
1791 $destdir = DOL_DOCUMENT_ROOT.
'/'.$destdirrel;
1793 $exportPath = rtrim($exportPath,
'/');
1794 if (strpos($exportPath,
'..') !==
false) {
1799 if (strpos($exportPath,
'/') === 0 || preg_match(
'/^[a-zA-Z]:/', $exportPath)) {
1800 if (!is_dir($exportPath)) {
1801 setEventMessages(
"The specified absolute path does not exist.",
null,
'errors');
1805 if (!is_writable($exportPath)) {
1806 setEventMessages(
"The specified absolute path is not writable.",
null,
'errors');
1809 $destdirrel = $exportPath;
1810 $destdir = $exportPath;
1813 $destdirrel =
'install/doctemplates/websites/'.$exportPath;
1814 $destdir = DOL_DOCUMENT_ROOT.
'/'.$destdirrel;
1819 if ($destdir ===
null) {
1820 setEventMessages(
"The destination path is not determined.",
null,
'errors');
1826 if (!is_writable($destdir)) {
1827 setEventMessages(
"The specified path ".$destdir.
" is not writable.",
null,
'errors');
1835 if (
dol_is_file($destdir.
'/containers/README.md')) {
1836 dol_move($destdir.
'/containers/README.md', $destdir.
'/README.md',
'0', 1, 0, 0);
1838 if (
dol_is_file($destdir.
'/containers/LICENSE')) {
1839 dol_move($destdir.
'/containers/LICENSE', $destdir.
'/LICENSE',
'0', 1, 0, 0);
1855 if (!empty($resultarray)) {
1856 setEventMessages(
"Error, failed to unzip the export into target dir ".$destdir.
": ".implode(
',', $resultarray),
null,
'errors');
1858 setEventMessages(
"Website content written into ".$destdirrel,
null,
'mesgs');
1861 header(
"Location: ".$_SERVER[
"PHP_SELF"].
'?website='.$website->ref);
1873 if (preg_match(
'/page(\d+)\.tpl\.php/', $filename, $matches)) {
1874 return (
int) $matches[1];
1888 $sql =
"UPDATE ".$this->db->prefix().
"website SET";
1889 $sql .=
" name_template = '".$this->db->escape($name_template).
"'";
1890 $sql .=
" WHERE rowid = ".(int) $this->
id;
1891 $result = $this->db->query($sql);
1894 $this->db->commit();
1897 $this->db->rollback();
1912 $fichiersSource = [];
1913 $fichiersDestination = [];
1915 $fichierWithNoPage = [];
1916 $fichierWithNoPageInDest = [];
1919 foreach (
dol_dir_list($dossierSource,
"files") as $file) {
1920 if (preg_match(
'/^page\d+/', $file[
'name']) && !str_contains($file[
'name'],
'.old')) {
1921 $fichiersSource[] = $file;
1923 $fichierWithNoPage[] = $file;
1928 foreach (
dol_dir_list($dossierDestination,
"all", 1) as $file) {
1929 if (preg_match(
'/^page\d+/', $file[
'name']) && !str_contains($file[
'name'],
'.old')) {
1930 $fichiersDestination[] = $file;
1932 $fichierWithNoPageInDest[] = $file;
1937 $numOfPageSource = 0;
1938 foreach ($fichiersSource as $index => $file) {
1939 if ($file[
'name'] == basename($fichierModifie[
'fullname'])) {
1946 $filesFound = array();
1947 foreach ($fichierWithNoPage as $filesource) {
1948 $fileContent = file_get_contents($filesource[
'fullname']);
1949 if (strpos($fileContent,
"require './page".$numOfPageSource.
".tpl.php'") !==
false) {
1950 $filesFound = $filesource;
1955 $numPagesFound =
'';
1956 foreach ($fichierWithNoPageInDest as $filedest) {
1957 if ($filedest[
'name'] === $filesFound[
'name']) {
1958 $fileContent = file_get_contents($filedest[
'fullname']);
1959 if (preg_match(
"/page\d+\.tpl\.php/", $fileContent, $matches)) {
1960 $numPagesFound = $matches[0];
1966 $fileNeeded = array();
1967 foreach ($fichiersDestination as $index => $file) {
1968 if ($file[
'name'] == $numPagesFound) {
1969 $fileNeeded = $file;
1974 if (isset($fileNeeded)) {
1975 $sourceContent = file_get_contents($fichierModifie[
'fullname']);
1976 if (file_exists($fileNeeded[
'fullname'])) {
1977 $destContent = file_get_contents($fileNeeded[
'fullname']);
1980 $differences = $this->
showDifferences($destContent, $sourceContent, array($numOfPageDest,$numOfPageSource));
1981 $differences[
'file_destination'] = $fileNeeded;
1983 $differences = array();
1985 return $differences;
1997 $str = str_replace(
"\r\n",
"\n", $str);
1998 $str = str_replace(
"\r",
"\n", $str);
2015 $lines1 = explode(
"\n", $str1);
2016 $lines2 = explode(
"\n", $str2);
2018 $linesShouldChange = array();
2019 $linesShouldNotChange = array();
2020 $linefound = array();
2021 $countNumPage = count($exceptNumPge);
2023 for ($i = 0;$i < $countNumPage; $i++) {
2024 $linefound[$i] = array();
2025 $linefound[$i][
'meta'] =
'/content="' . preg_quote((
string) $exceptNumPge[$i],
'/') .
'" \/>/';
2026 $linefound[$i][
'output'] =
'/dolWebsiteOutput\(\$tmp, "html", ' . preg_quote((
string) $exceptNumPge[$i],
'/') .
'\);/';
2029 if (isset($linefound[1])) {
2030 $maxLines = max(count($lines1), count($lines2));
2031 for ($lineNum = 0; $lineNum < $maxLines; $lineNum++) {
2032 $lineContent1 = $lines1[$lineNum] ??
'';
2033 $lineContent2 = $lines2[$lineNum] ??
'';
2034 if (preg_match($linefound[0][
'output'], $lineContent1)) {
2035 $linesShouldChange[] = $lineContent1;
2037 if (preg_match($linefound[0][
'meta'], $lineContent1)) {
2038 $linesShouldChange[] = $lineContent1;
2040 if (preg_match($linefound[1][
'output'], $lineContent2)) {
2041 $linesShouldNotChange[] = $lineContent2;
2043 if (preg_match($linefound[1][
'meta'], $lineContent2)) {
2044 $linesShouldNotChange[] = $lineContent2;
2046 if ($lineContent1 !== $lineContent2) {
2047 if (isset($lines1[$lineNum]) && !isset($lines2[$lineNum])) {
2049 $diff[
"Supprimée à la ligne " . ($lineNum + 1)] = $lineContent1;
2050 } elseif (!isset($lines1[$lineNum]) && isset($lines2[$lineNum])) {
2052 $diff[
"Ajoutée à la ligne " . ($lineNum + 1)] = $lineContent2;
2055 $diff[
"Modifiée à la ligne " . ($lineNum + 1)] = $lineContent2;
2062 if (empty($linesShouldChange)) {
2063 $linesShouldChange[0] =
'<meta name="dolibarr:pageid" content="'.$exceptNumPge[0].
'" />';
2064 $linesShouldChange[1] =
'$tmp = ob_get_contents(); ob_end_clean(); dolWebsiteOutput($tmp, "html", '.$exceptNumPge[0].
');';
2067 $replacementMapping = array();
2068 if (!empty($linesShouldNotChange)) {
2070 foreach ($linesShouldNotChange as $numLigne => $ligneRemplacement) {
2071 if (isset($linesShouldChange[$numLigne])) {
2072 $replacementMapping[$ligneRemplacement] = $linesShouldChange[$numLigne];
2074 $replacementMapping[$ligneRemplacement] = $linesShouldChange[$i];
2078 $diff[
'lignes_dont_change'] = $replacementMapping;
2081 $pattern =
'/medias\/image\/'.preg_quote($this->
ref,
'/').
'\/([^\'"\s]+)/';
2083 foreach ($diff as $key => $value) {
2085 if (is_string($value)) {
2086 if (preg_match($pattern, $value)) {
2087 $newValue = preg_replace($pattern,
'medias/image/'.$this->name_template.
'/$1', $value);
2088 $diff[$key] = $newValue;
2104 if (file_exists($inplaceFile)) {
2107 if (!is_writable($inplaceFile)) {
2111 unset($differences[
'file_destination']);
2112 $contentDest = file($inplaceFile, FILE_IGNORE_NEW_LINES);
2113 foreach ($differences as $key => $ligneSource) {
2115 if (preg_match(
'/(Ajoutée|Modifiée) à la ligne (\d+)/', $key, $matches)) {
2116 $typeModification = $matches[1];
2117 $numLigne = (int) $matches[2] - 1;
2119 if ($typeModification ===
'Ajoutée') {
2120 array_splice($contentDest, $numLigne, 0, $ligneSource);
2121 } elseif ($typeModification ===
'Modifiée') {
2122 $contentDest[$numLigne] = $ligneSource;
2124 } elseif (preg_match(
'/Supprimée à la ligne (\d+)/', $key, $matches)) {
2125 $numLigne = (int) $matches[1] - 1;
2126 unset($contentDest[$numLigne]);
2130 $contentDest = array_values($contentDest);
2131 $stringreplacement = implode(
"\n", $contentDest);
2133 file_put_contents($inplaceFile, $stringreplacement);
2136 foreach ($differences[
'lignes_dont_change'] as $linechanged => $line) {
2137 if (in_array($linechanged, $contentDest)) {
if(! $sortfield) if(! $sortorder) $object
run_sql($sqlfile, $silent=1, $entity=0, $usesavepoint=1, $handler='', $okerror='default', $linelengthlimit=32768, $nocommentremoval=0, $offsetforchartofaccount=0, $colspan=0, $onlysqltoimportwebsite=0, $database='')
Launch a sql file.
Parent class of all other business classes (invoices, contracts, proposals, orders,...
setErrorsFromObject($object)
setErrorsFromObject
deleteCommon(User $user, $notrigger=0, $forcechilddeletion=0)
Delete object in database.
Class to manage Dolibarr database access.
Class to manage Dolibarr users.
isMultiLang()
Return if web site is a multilanguage web site.
setTemplateName($name_template)
update name_template in table after import template
create(User $user, $notrigger=0)
Create object into database.
rebuildWebSiteFiles()
Rebuild all files of all the pages/containers of a website.
exportWebSite()
Generate a zip with all data of web site.
replaceLineUsingNum($inplaceFile, $differences)
Replace line by line in file using numbers of the lines.
initAsSpecimen()
Initialise object with example values Id must be 0 if object instance is a specimen.
componentSelectLang($languagecodes, $weblangs, $morecss='', $htmlname='')
Component to select language inside a container (Full CSS Only)
extractNumberFromFilename($filename)
extract num of page
createFromClone($user, $fromid, $newref, $newlang='')
Load a website its id and create a new one in database.
fetchAll($sortorder='', $sortfield='', $limit=0, $offset=0, $filter='', $filtermode='AND')
Load all object in memory ($this->records) from the database.
overwriteTemplate(string $pathtotmpzip, $exportPath='')
Overite template by copying all files.
__construct(DoliDB $db)
Constructor.
getLibStatut($mode=0)
Return the label of the status.
LibStatut($status, $mode=0)
Return the label of a given status.
purge(User $user)
Purge website Delete website directory content and all pages and medias.
getNomUrl($withpicto=0, $option='', $notooltip=0, $maxlen=24, $morecss='')
Return a link to the user card (with optionally the picto) Use this->id,this->lastname,...
normalizeString($str)
Remove spaces in string.
update(User $user, $notrigger=0)
Update object into database.
fetch($id, $ref=null)
Load object in memory from the database.
compareFichierModifie($dossierSource, $dossierDestination, $fichierModifie)
Compare two files has not same name but same content.
showDifferences($str1, $str2, $exceptNumPge=array())
show difference between to string
print $langs trans("Ref").' m titre as m m statut as status
Or an array listing all the potential status of the object: array: int of the status => translated la...
print $script_file $mode $langs defaultlang(is_numeric($duration_value) ? " delay=". $duration_value :"").(is_numeric($duration_value2) ? " after cd cd cd description as description
Only used if Module[ID]Desc translation string is not found.
dol_move($srcfile, $destfile, $newmask='0', $overwriteifexists=1, $testvirus=0, $indexdatabase=1, $moreinfo=array(), $entity=null)
Move a file into another name.
dol_copy($srcfile, $destfile, $newmask='0', $overwriteifexists=1, $testvirus=0, $indexdatabase=0)
Copy a file to another file.
dol_delete_file($file, $disableglob=0, $nophperrors=0, $nohook=0, $object=null, $allowdotdot=false, $indexdatabase=1, $nolog=0)
Remove a file or several files with a mask.
dol_delete_dir_recursive($dir, $count=0, $nophperrors=0, $onlysub=0, &$countdeleted=0, $indexdatabase=1, $nolog=0, $level=0)
Remove a directory $dir and its subdirectories (or only files and subdirectories)
dol_uncompress($inputfile, $outputdir)
Uncompress a file.
dolCopyDir($srcfile, $destfile, $newmask, $overwriteifexists, $arrayreplacement=null, $excludesubdir=0, $excludefileext=null, $excludearchivefiles=0)
Copy a dir to another dir.
dol_is_file($pathoffile)
Return if path is a file.
dol_dir_list($utf8_path, $types="all", $recursive=0, $filter="", $excludefilter=null, $sortcriteria="name", $sortorder=SORT_ASC, $mode=0, $nohook=0, $relativename="", $donotfollowsymlinks=0, $nbsecondsold=0)
Scan a directory and return a list of files/directories.
dol_is_dir($folder)
Test if filename is a directory.
dolReplaceInFile($srcfile, $arrayreplacement, $destfile='', $newmask='0', $indexdatabase=0, $arrayreplacementisregex=0)
Make replacement of strings into a file.
dol_now($mode='gmt')
Return date for now.
setEventMessages($mesg, $mesgs, $style='mesgs', $messagekey='', $noduplicate=0, $attop=0)
Set event messages in dol_events session object.
dol_osencode($str)
Return a string encoded into OS filesystem encoding.
img_object($titlealt, $picto, $moreatt='', $pictoisfullpath=0, $srconly=0, $notitle=0, $allowothertags=array())
Show a picto called object_picto (generic function)
dol_sanitizePathName($str, $newstr='_', $unaccent=0, $allowdash=0)
Clean a string to use it as a path name.
dol_sanitizeFileName($str, $newstr='_', $unaccent=1, $includequotes=0, $allowdash=0)
Clean a string to use it as a file name.
dol_strlen($string, $stringencoding='UTF-8')
Make a strlen call.
forgeSQLFromUniversalSearchCriteria($filter, &$errorstr='', $noand=0, $nopar=0, $noerror=0)
forgeSQLFromUniversalSearchCriteria
dolChmod($filepath, $newmask='')
Change mod of a file.
getDolGlobalInt($key, $default=0)
Return a Dolibarr global constant int value.
dolGetStatus($statusLabel='', $statusLabelShort='', $html='', $statusType='status0', $displayMode=0, $url='', $params=array())
Output the badge of a status.
dol_print_date($time, $format='', $tzoutput='auto', $outputlangs=null, $encodetooutput=false, $decorate=0)
Output date in a string format according to outputlangs (or langs if not defined).
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_mkdir($dir, $dataroot='', $newmask='')
Creation of a directory (this can create recursive subdir)
dolSaveMasterFile($filemaster)
Save content of a page on disk.
dolSaveLicense($file, $content)
Save content of a page on disk.
dolSaveIndexPage($pathofwebsite, $fileindex, $filetpl, $filewrapper, $object=null)
Save content of the index.php and/or the wrapper.php page.
dolSavePageAlias($filealias, $object, $objectpage)
Save an alias page on disk (A page that include the reference page).
dolSavePageContent($filetpl, Website $object, WebsitePage $objectpage, $backupold=0)
Save content of a page on disk (page name is generally ID_of_page.php).