* * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 3 of the License, or * any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ /** * \file htdocs/core/class/utils.class.php * \ingroup core * \brief File for Utils class */ /** * Class to manage utility methods */ class Utils { var $db; var $output; // Used by Cron method to return message var $result; // Used by Cron method to return data /** * Constructor * * @param DoliDB $db Database handler */ function __construct($db) { $this->db = $db; } /** * Purge files into directory of data files. * CAN BE A CRON TASK * * @param string $choice Choice of purge mode ('tempfiles', 'tempfilesold' to purge temp older than 24h, 'allfiles', 'logfile') * @return int 0 if OK, < 0 if KO (this function is used also by cron so only 0 is OK) */ function purgeFiles($choice='tempfilesold') { global $conf, $langs, $dolibarr_main_data_root; $langs->load("admin"); dol_syslog("Utils::purgeFiles choice=".$choice, LOG_DEBUG); require_once DOL_DOCUMENT_ROOT.'/core/lib/files.lib.php'; $filesarray=array(); if (empty($choice)) $choice='tempfilesold'; if ($choice=='tempfiles' || $choice=='tempfilesold') { // Delete temporary files if ($dolibarr_main_data_root) { $filesarray=dol_dir_list($dolibarr_main_data_root, "directories", 1, '^temp$', '', 'name', SORT_ASC, 2, 0, '', 1); // Do not follow symlinks if ($choice == 'tempfilesold') { $now = dol_now(); foreach($filesarray as $key => $val) { if ($val['date'] > ($now - (24 * 3600))) unset($filesarray[$key]); // Discard files not older than 24h } } } } if ($choice=='allfiles') { // Delete all files (except install.lock, do not follow symbolic links) if ($dolibarr_main_data_root) { $filesarray=dol_dir_list($dolibarr_main_data_root, "all", 0, '', 'install\.lock$', 'name', SORT_ASC, 0, 0, '', 1); } } if ($choice=='logfile') { // Define files log if ($dolibarr_main_data_root) { $filesarray=dol_dir_list($dolibarr_main_data_root, "files", 0, '.*\.log[\.0-9]*$', 'install\.lock$', 'name', SORT_ASC, 0, 0, '', 1); } $filelog=''; if (! empty($conf->syslog->enabled)) { $filelog=$conf->global->SYSLOG_FILE; $filelog=preg_replace('/DOL_DATA_ROOT/i',DOL_DATA_ROOT,$filelog); $alreadyincluded=false; foreach ($filesarray as $tmpcursor) { if ($tmpcursor['fullname'] == $filelog) { $alreadyincluded=true; } } if (! $alreadyincluded) $filesarray[]=array('fullname'=>$filelog,'type'=>'file'); } } $count=0; $countdeleted=0; $counterror=0; if (count($filesarray)) { foreach($filesarray as $key => $value) { //print "x ".$filesarray[$key]['fullname']."-".$filesarray[$key]['type']."
\n"; if ($filesarray[$key]['type'] == 'dir') { $startcount=0; $tmpcountdeleted=0; $result=dol_delete_dir_recursive($filesarray[$key]['fullname'], $startcount, 1, 0, $tmpcountdeleted); $count+=$result; $countdeleted+=$tmpcountdeleted; } elseif ($filesarray[$key]['type'] == 'file') { // If (file that is not logfile) or (if logfile with option logfile) if ($filesarray[$key]['fullname'] != $filelog || $choice=='logfile') { $result=dol_delete_file($filesarray[$key]['fullname'], 1, 1); if ($result) { $count++; $countdeleted++; } else $counterror++; } } } // Update cachenbofdoc if (! empty($conf->ecm->enabled) && $choice=='allfiles') { require_once DOL_DOCUMENT_ROOT.'/ecm/class/ecmdirectory.class.php'; $ecmdirstatic = new EcmDirectory($this->db); $result = $ecmdirstatic->refreshcachenboffile(1); } } if ($count > 0) { $this->output=$langs->trans("PurgeNDirectoriesDeleted", $countdeleted); if ($count > $countdeleted) $this->output.='
'.$langs->trans("PurgeNDirectoriesFailed", ($count - $countdeleted)); } else $this->output=$langs->trans("PurgeNothingToDelete").($choice == 'tempfilesold' ? ' (older than 24h)':''); //return $count; return 0; // This function can be called by cron so must return 0 if OK } /** * Make a backup of database * CAN BE A CRON TASK * * @param string $compression 'gz' or 'bz' or 'none' * @param string $type 'mysql', 'postgresql', ... * @param int $usedefault 1=Use default backup profile (Set this to 1 when used as cron) * @param string $file 'auto' or filename to build * @param int $keeplastnfiles Keep only last n files (not used yet) * @return int 0 if OK, < 0 if KO (this function is used also by cron so only 0 is OK) */ function dumpDatabase($compression='none', $type='auto', $usedefault=1, $file='auto', $keeplastnfiles=0) { global $db, $conf, $langs, $dolibarr_main_data_root; global $dolibarr_main_db_name, $dolibarr_main_db_host, $dolibarr_main_db_user, $dolibarr_main_db_port, $dolibarr_main_db_pass; $langs->load("admin"); dol_syslog("Utils::dumpDatabase type=".$type." compression=".$compression." file=".$file, LOG_DEBUG); require_once DOL_DOCUMENT_ROOT.'/core/lib/files.lib.php'; // Check compression parameter if (! in_array($compression, array('none', 'gz', 'bz', 'zip'))) { $langs->load("errors"); $this->error=$langs->transnoentitiesnoconv("ErrorBadValueForParameter", $compression, "Compression"); return -1; } // Check type parameter if ($type == 'auto') $type = $db->type; if (! in_array($type, array('postgresql', 'pgsql', 'mysql', 'mysqli', 'mysqlnobin'))) { $langs->load("errors"); $this->error=$langs->transnoentitiesnoconv("ErrorBadValueForParameter", $type, "Basetype"); return -1; } // Check file parameter if ($file == 'auto') { $prefix='dump'; $ext='.sql'; if (in_array($type, array('mysql', 'mysqli'))) { $prefix='mysqldump'; $ext='sql'; } //if ($label == 'PostgreSQL') { $prefix='pg_dump'; $ext='dump'; } if (in_array($type, array('pgsql'))) { $prefix='pg_dump'; $ext='sql'; } $file=$prefix.'_'.$dolibarr_main_db_name.'_'.dol_sanitizeFileName(DOL_VERSION).'_'.strftime("%Y%m%d%H%M").'.'.$ext; } $outputdir = $conf->admin->dir_output.'/backup'; $result=dol_mkdir($outputdir); // MYSQL if ($type == 'mysql' || $type == 'mysqli') { $cmddump=$conf->global->SYSTEMTOOLS_MYSQLDUMP; $outputfile = $outputdir.'/'.$file; // for compression format, we add extension $compression=$compression ? $compression : 'none'; if ($compression == 'gz') $outputfile.='.gz'; if ($compression == 'bz') $outputfile.='.bz2'; $outputerror = $outputfile.'.err'; dol_mkdir($conf->admin->dir_output.'/backup'); // Parameteres execution $command=$cmddump; if (preg_match("/\s/",$command)) $command=escapeshellarg($command); // Use quotes on command //$param=escapeshellarg($dolibarr_main_db_name)." -h ".escapeshellarg($dolibarr_main_db_host)." -u ".escapeshellarg($dolibarr_main_db_user)." -p".escapeshellarg($dolibarr_main_db_pass); $param=$dolibarr_main_db_name." -h ".$dolibarr_main_db_host; $param.=" -u ".$dolibarr_main_db_user; if (! empty($dolibarr_main_db_port)) $param.=" -P ".$dolibarr_main_db_port; if (! GETPOST("use_transaction")) $param.=" -l --single-transaction"; if (GETPOST("disable_fk") || $usedefault) $param.=" -K"; if (GETPOST("sql_compat") && GETPOST("sql_compat") != 'NONE') $param.=" --compatible=".escapeshellarg(GETPOST("sql_compat","alpha")); if (GETPOST("drop_database")) $param.=" --add-drop-database"; if (GETPOST("sql_structure") || $usedefault) { if (GETPOST("drop") || $usedefault) $param.=" --add-drop-table=TRUE"; else $param.=" --add-drop-table=FALSE"; } else { $param.=" -t"; } if (GETPOST("disable-add-locks")) $param.=" --add-locks=FALSE"; if (GETPOST("sql_data") || $usedefault) { $param.=" --tables"; if (GETPOST("showcolumns") || $usedefault) $param.=" -c"; if (GETPOST("extended_ins") || $usedefault) $param.=" -e"; else $param.=" --skip-extended-insert"; if (GETPOST("delayed")) $param.=" --delayed-insert"; if (GETPOST("sql_ignore")) $param.=" --insert-ignore"; if (GETPOST("hexforbinary") || $usedefault) $param.=" --hex-blob"; } else { $param.=" -d"; // No row information (no data) } $param.=" --default-character-set=utf8"; // We always save output into utf8 charset $paramcrypted=$param; $paramclear=$param; if (! empty($dolibarr_main_db_pass)) { $paramcrypted.=' -p"'.preg_replace('/./i','*',$dolibarr_main_db_pass).'"'; $paramclear.=' -p"'.str_replace(array('"','`'),array('\"','\`'),$dolibarr_main_db_pass).'"'; } $errormsg=''; // Debut appel methode execution $fullcommandcrypted=$command." ".$paramcrypted." 2>&1"; $fullcommandclear=$command." ".$paramclear." 2>&1"; if ($compression == 'none') $handle = fopen($outputfile, 'w'); if ($compression == 'gz') $handle = gzopen($outputfile, 'w'); if ($compression == 'bz') $handle = bzopen($outputfile, 'w'); if ($handle) { $ok=0; dol_syslog("Run command ".$fullcommandcrypted); $handlein = popen($fullcommandclear, 'r'); if ($handlein) { $i=0; while (!feof($handlein)) { $i++; // output line number $read = fgets($handlein); // Exclude warning line we don't want if ($i == 1 && preg_match('/Warning.*Using a password/i', $read)) continue; fwrite($handle,$read); if (preg_match('/'.preg_quote('-- Dump completed').'/i',$read)) $ok=1; elseif (preg_match('/'.preg_quote('SET SQL_NOTES=@OLD_SQL_NOTES').'/i',$read)) $ok=1; } pclose($handlein); } if ($compression == 'none') fclose($handle); if ($compression == 'gz') gzclose($handle); if ($compression == 'bz') bzclose($handle); if (! empty($conf->global->MAIN_UMASK)) @chmod($outputfile, octdec($conf->global->MAIN_UMASK)); } else { $langs->load("errors"); dol_syslog("Failed to open file ".$outputfile,LOG_ERR); $errormsg=$langs->trans("ErrorFailedToWriteInDir"); } // Get errorstring if ($compression == 'none') $handle = fopen($outputfile, 'r'); if ($compression == 'gz') $handle = gzopen($outputfile, 'r'); if ($compression == 'bz') $handle = bzopen($outputfile, 'r'); if ($handle) { // Get 2048 first chars of error message. $errormsg = fgets($handle,2048); // Close file if ($compression == 'none') fclose($handle); if ($compression == 'gz') gzclose($handle); if ($compression == 'bz') bzclose($handle); if ($ok && preg_match('/^-- MySql/i',$errormsg)) $errormsg=''; // Pas erreur else { // Renommer fichier sortie en fichier erreur //print "$outputfile -> $outputerror"; @dol_delete_file($outputerror,1); @rename($outputfile,$outputerror); // Si safe_mode on et command hors du parametre exec, on a un fichier out vide donc errormsg vide if (! $errormsg) { $langs->load("errors"); $errormsg=$langs->trans("ErrorFailedToRunExternalCommand"); } } } // Fin execution commande $this->output = $errormsg; $this->error = $errormsg; $this->result = array("commandbackuplastdone" => $command." ".$paramcrypted, "commandbackuptorun" => ""); //if (empty($this->output)) $this->output=$this->result['commandbackuplastdone']; } // MYSQL NO BIN if ($type == 'mysqlnobin') { $outputfile = $outputdir.'/'.$file; $outputfiletemp = $outputfile.'-TMP.sql'; // for compression format, we add extension $compression=$compression ? $compression : 'none'; if ($compression == 'gz') $outputfile.='.gz'; if ($compression == 'bz') $outputfile.='.bz2'; $outputerror = $outputfile.'.err'; dol_mkdir($conf->admin->dir_output.'/backup'); if ($compression == 'gz' or $compression == 'bz') { backup_tables($outputfiletemp); dol_compress_file($outputfiletemp, $outputfile, $compression); unlink($outputfiletemp); } else { backup_tables($outputfile); } $this->output = ""; $this->result = array("commandbackuplastdone" => "", "commandbackuptorun" => ""); } // POSTGRESQL if ($type == 'postgresql' || $type == 'pgsql') { $cmddump=$conf->global->SYSTEMTOOLS_POSTGRESQLDUMP; $outputfile = $outputdir.'/'.$file; // for compression format, we add extension $compression=$compression ? $compression : 'none'; if ($compression == 'gz') $outputfile.='.gz'; if ($compression == 'bz') $outputfile.='.bz2'; $outputerror = $outputfile.'.err'; dol_mkdir($conf->admin->dir_output.'/backup'); // Parameteres execution $command=$cmddump; if (preg_match("/\s/",$command)) $command=escapeshellarg($command); // Use quotes on command //$param=escapeshellarg($dolibarr_main_db_name)." -h ".escapeshellarg($dolibarr_main_db_host)." -u ".escapeshellarg($dolibarr_main_db_user)." -p".escapeshellarg($dolibarr_main_db_pass); //$param="-F c"; $param="-F p"; $param.=" --no-tablespaces --inserts -h ".$dolibarr_main_db_host; $param.=" -U ".$dolibarr_main_db_user; if (! empty($dolibarr_main_db_port)) $param.=" -p ".$dolibarr_main_db_port; if (GETPOST("sql_compat") && GETPOST("sql_compat") == 'ANSI') $param.=" --disable-dollar-quoting"; if (GETPOST("drop_database")) $param.=" -c -C"; if (GETPOST("sql_structure")) { if (GETPOST("drop")) $param.=" --add-drop-table"; if (! GETPOST("sql_data")) $param.=" -s"; } if (GETPOST("sql_data")) { if (! GETPOST("sql_structure")) $param.=" -a"; if (GETPOST("showcolumns")) $param.=" -c"; } $param.=' -f "'.$outputfile.'"'; //if ($compression == 'none') if ($compression == 'gz') $param.=' -Z 9'; //if ($compression == 'bz') $paramcrypted=$param; $paramclear=$param; /*if (! empty($dolibarr_main_db_pass)) { $paramcrypted.=" -W".preg_replace('/./i','*',$dolibarr_main_db_pass); $paramclear.=" -W".$dolibarr_main_db_pass; }*/ $paramcrypted.=" -w ".$dolibarr_main_db_name; $paramclear.=" -w ".$dolibarr_main_db_name; $this->output = ""; $this->result = array("commandbackuplastdone" => "", "commandbackuptorun" => $command." ".$paramcrypted); } // Clean old files if ($keeplastnfiles > 0) { $tmpfiles = dol_dir_list($conf->admin->dir_output.'/backup', 'files', 0, '', '(\.err|\.old|\.sav)$', 'date', SORT_DESC); $i=0; foreach($tmpfiles as $key => $val) { $i++; if ($i <= $keeplastnfiles) continue; dol_delete_file($val['fullname']); } } return 0; } /** * Execute a CLI command. * * @param string $command Command line to execute. * @param string $outputfile Output file (used only when method is 2). For exemple $conf->admin->dir_temp.'/out.tmp'; * @param int $execmethod 0=Use default method (that is 1 by default), 1=Use the PHP 'exec', 2=Use the 'popen' method * @return array array('result'=>...,'output'=>...,'error'=>...). result = 0 means OK. */ function executeCLI($command, $outputfile, $execmethod=0) { global $conf, $langs; $result = 0; $output = ''; $error = ''; $command=escapeshellcmd($command); $command.=" 2>&1"; if (! empty($conf->global->MAIN_EXEC_USE_POPEN)) $execmethod=$conf->global->MAIN_EXEC_USE_POPEN; if (empty($execmethod)) $execmethod=1; //$execmethod=1; dol_syslog("Utils::executeCLI execmethod=".$execmethod." system:".$command, LOG_DEBUG); $output_arr=array(); if ($execmethod == 1) { exec($command, $output_arr, $retval); $result = $retval; if ($retval != 0) { $langs->load("errors"); dol_syslog("Utils::executeCLI retval after exec=".$retval, LOG_ERR); $error = 'Error '.$retval; } } if ($execmethod == 2) // With this method, there is no way to get the return code, only output { $ok=0; $handle = fopen($outputfile, 'w+b'); if ($handle) { dol_syslog("Utils::executeCLI run command ".$command); $handlein = popen($command, 'r'); while (!feof($handlein)) { $read = fgets($handlein); fwrite($handle,$read); $output_arr[]=$read; } pclose($handlein); fclose($handle); } if (! empty($conf->global->MAIN_UMASK)) @chmod($outputfile, octdec($conf->global->MAIN_UMASK)); } // Update with result if (is_array($output_arr) && count($output_arr)>0) { foreach($output_arr as $val) { $output.=$val.($execmethod == 2 ? '' : "\n"); } } dol_syslog("Utils::executeCLI result=".$result." output=".$output." error=".$error, LOG_DEBUG); return array('result'=>$result, 'output'=>$output, 'error'=>$error); } /** * Generate documentation of a Module * * @param string $module Module name * @return int <0 if KO, >0 if OK */ function generateDoc($module) { global $conf, $langs; global $dirins; $error = 0; $modulelowercase=strtolower($module); // Dir for module $dir = $dirins.'/'.$modulelowercase; // Zip file to build $FILENAMEDOC=''; // Load module dol_include_once($modulelowercase.'/core/modules/mod'.$module.'.class.php'); $class='mod'.$module; if (class_exists($class)) { try { $moduleobj = new $class($this->db); } catch(Exception $e) { $error++; dol_print_error($e->getMessage()); } } else { $error++; $langs->load("errors"); dol_print_error($langs->trans("ErrorFailedToLoadModuleDescriptorForXXX", $module)); exit; } $arrayversion=explode('.',$moduleobj->version,3); if (count($arrayversion)) { $FILENAMEASCII=strtolower($module).'.asciidoc'; $FILENAMEDOC=strtolower($module).'.html'; // TODO Use/text PDF $dirofmodule = dol_buildpath(strtolower($module), 0).'/doc'; $dirofmoduletmp = dol_buildpath(strtolower($module), 0).'/doc/temp'; $outputfiledoc = $dirofmodule.'/'.$FILENAMEDOC; if ($dirofmodule) { if (! dol_is_dir($dirofmodule)) dol_mkdir($dirofmodule); if (! dol_is_dir($dirofmoduletmp)) dol_mkdir($dirofmoduletmp); if (! is_writable($dirofmoduletmp)) { $this->error = 'Dir '.$dirofmoduletmp.' does not exists or is not writable'; return -1; } $destfile=$dirofmoduletmp.'/'.$FILENAMEASCII; $fhandle = fopen($destfile, 'w+'); if ($fhandle) { $specs=dol_dir_list(dol_buildpath(strtolower($module).'/doc', 0), 'files', 1, '(\.md|\.asciidoc)$', array('\/temp\/')); $i = 0; foreach ($specs as $spec) { if (preg_match('/notindoc/', $spec['relativename'])) continue; // Discard file if (preg_match('/disabled/', $spec['relativename'])) continue; // Discard file $pathtofile = strtolower($module).'/doc/'.$spec['relativename']; $format='asciidoc'; if (preg_match('/\.md$/i', $spec['name'])) $format='markdown'; $filecursor = @file_get_contents($spec['fullname']); if ($filecursor) { fwrite($fhandle, ($i ? "\n<<<\n\n" : "").$filecursor."\n"); } else { $this->error = 'Failed to concat content of file '.$spec['fullname']; return -1; } $i++; } fwrite($fhandle, "\n\n\n== DATA SPECIFICATIONS...\n\n"); // TODO fwrite($fhandle, "TODO..."); fclose($fhandle); } $conf->global->MODULEBUILDER_ASCIIDOCTOR='asciidoctor'; if (empty($conf->global->MODULEBUILDER_ASCIIDOCTOR)) { dol_print_error('', 'Module setup not complete'); exit; } $command=$conf->global->MODULEBUILDER_ASCIIDOCTOR.' '.$destfile.' -n -o '.$dirofmodule.'/'.$FILENAMEDOC; $outfile=$dirofmoduletmp.'/out.tmp'; require_once DOL_DOCUMENT_ROOT.'/core/class/utils.class.php'; $utils = new Utils($db); $resarray = $utils->executeCLI($command, $outfile); if ($resarray['result'] != '0') { $this->error = $resarray['error'].' '.$resarray['output']; } $result = ($resarray['result'] == 0) ? 1 : 0; } else { $result = 0; } if ($result > 0) { return 1; } else { $error++; $langs->load("errors"); $this->error = $langs->trans("ErrorFailToGenerateFile", $outputfiledoc); } } else { $error++; $langs->load("errors"); $this->error = $langs->trans("ErrorCheckVersionIsDefined"); } return -1; } }