forked from Wavyzz/dolibarr
322 lines
10 KiB
PHP
322 lines
10 KiB
PHP
<?php
|
|
/* Copyright (C) 2010-2011 Laurent Destailleur <ely@users.sourceforge.net>
|
|
|
|
* 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 2 of the License, or
|
|
* (at your option) 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 <http://www.gnu.org/licenses/>.
|
|
* or see http://www.gnu.org/
|
|
*/
|
|
|
|
/**
|
|
* \file htdocs/includes/modules/societe/doc/doc_generic_odt.modules.php
|
|
* \ingroup societe
|
|
* \brief File of class to build ODT documents for third parties
|
|
* \author Laurent Destailleur
|
|
* \version $Id: doc_generic_odt.modules.php,v 1.33 2011/07/31 23:28:18 eldy Exp $
|
|
*/
|
|
|
|
require_once(DOL_DOCUMENT_ROOT."/includes/modules/societe/modules_societe.class.php");
|
|
require_once(DOL_DOCUMENT_ROOT."/societe/class/societe.class.php");
|
|
require_once(DOL_DOCUMENT_ROOT."/lib/company.lib.php");
|
|
require_once(DOL_DOCUMENT_ROOT."/lib/files.lib.php");
|
|
|
|
|
|
/**
|
|
* \class doc_generic_odt
|
|
* \brief Class to build documents using ODF templates generator
|
|
*/
|
|
class doc_generic_odt extends ModeleThirdPartyDoc
|
|
{
|
|
var $emetteur; // Objet societe qui emet
|
|
|
|
var $phpmin = array(5,2,0); // Minimum version of PHP required by module
|
|
|
|
|
|
/**
|
|
* \brief Constructor
|
|
* \param db Database handler
|
|
*/
|
|
function doc_generic_odt($db)
|
|
{
|
|
global $conf,$langs,$mysoc;
|
|
|
|
$langs->load("main");
|
|
$langs->load("companies");
|
|
|
|
$this->db = $db;
|
|
$this->name = "ODT templates";
|
|
$this->description = $langs->trans("DocumentModelOdt");
|
|
$this->scandir = 'COMPANY_ADDON_PDF_ODT_PATH'; // Name of constant that is used to save list of directories to scan
|
|
|
|
// Dimension page pour format A4
|
|
$this->type = 'odt';
|
|
$this->page_largeur = 0;
|
|
$this->page_hauteur = 0;
|
|
$this->format = array($this->page_largeur,$this->page_hauteur);
|
|
$this->marge_gauche=0;
|
|
$this->marge_droite=0;
|
|
$this->marge_haute=0;
|
|
$this->marge_basse=0;
|
|
|
|
$this->option_logo = 1; // Affiche logo
|
|
|
|
// Recupere emmetteur
|
|
$this->emetteur=$mysoc;
|
|
if (! $this->emetteur->pays_code) $this->emetteur->pays_code=substr($langs->defaultlang,-2); // Par defaut, si n'etait pas defini
|
|
}
|
|
|
|
|
|
/** \brief Return description of a module
|
|
* \return string Description
|
|
*/
|
|
function info($langs)
|
|
{
|
|
global $conf,$langs;
|
|
|
|
$langs->load("companies");
|
|
$langs->load("errors");
|
|
|
|
$form = new Form($db);
|
|
|
|
$texte = $this->description.".<br>\n";
|
|
$texte.= '<form action="'.$_SERVER["PHP_SELF"].'" method="POST">';
|
|
$texte.= '<input type="hidden" name="token" value="'.$_SESSION['newtoken'].'">';
|
|
$texte.= '<input type="hidden" name="action" value="setModuleOptions">';
|
|
$texte.= '<input type="hidden" name="param1" value="COMPANY_ADDON_PDF_ODT_PATH">';
|
|
$texte.= '<table class="nobordernopadding" width="100%">';
|
|
|
|
// List of directories area
|
|
$texte.= '<tr><td>';
|
|
$texttitle=$langs->trans("ListOfDirectories");
|
|
$listofdir=explode(',',preg_replace('/[\r\n]+/',',',trim($conf->global->COMPANY_ADDON_PDF_ODT_PATH)));
|
|
$listoffiles=array();
|
|
foreach($listofdir as $key=>$tmpdir)
|
|
{
|
|
$tmpdir=trim($tmpdir);
|
|
$tmpdir=preg_replace('/DOL_DATA_ROOT/',DOL_DATA_ROOT,$tmpdir);
|
|
if (! $tmpdir) { unset($listofdir[$key]); continue; }
|
|
if (! is_dir($tmpdir)) $texttitle.=img_warning($langs->trans("ErrorDirNotFound",$tmpdir),0);
|
|
else
|
|
{
|
|
$tmpfiles=dol_dir_list($tmpdir,'files',0,'\.odt');
|
|
if (sizeof($tmpfiles)) $listoffiles=array_merge($listoffiles,$tmpfiles);
|
|
}
|
|
}
|
|
$texthelp=$langs->trans("ListOfDirectoriesForModelGenODT");
|
|
// Add list of substitution keys
|
|
$texthelp.='<br>'.$langs->trans("FollowingSubstitutionKeysCanBeUsed").'<br>';
|
|
$texthelp.=$langs->transnoentitiesnoconv("FullListOnOnlineDocumentation"); // This contains an url, we don't modify it
|
|
|
|
$texte.= $form->textwithpicto($texttitle,$texthelp,1,'help','',1);
|
|
$texte.= '<table><tr><td>';
|
|
$texte.= '<textarea class="flat" cols="60" name="value1">';
|
|
$texte.=$conf->global->COMPANY_ADDON_PDF_ODT_PATH;
|
|
$texte.= '</textarea>';
|
|
$texte.= '</td>';
|
|
$texte.= '<td align="center"> ';
|
|
$texte.= '<input type="submit" class="button" value="'.$langs->trans("Modify").'" name="Button">';
|
|
$texte.= '</td>';
|
|
$texte.= '</tr>';
|
|
$texte.= '</table>';
|
|
|
|
// Scan directories
|
|
if (sizeof($listofdir)) $texte.=$langs->trans("NumberOfModelFilesFound").': <b>'.sizeof($listoffiles).'</b>';
|
|
|
|
$texte.= '</td>';
|
|
|
|
|
|
$texte.= '<td valign="top" rowspan="2">';
|
|
$texte.= $langs->trans("ExampleOfDirectoriesForModelGen");
|
|
$texte.= '</td>';
|
|
$texte.= '</tr>';
|
|
|
|
/*$texte.= '<tr><td align="center">';
|
|
$texte.= '<input type="submit" class="button" value="'.$langs->trans("Modify").'" name="Button">';
|
|
$texte.= '</td>';
|
|
$texte.= '</tr>';*/
|
|
|
|
$texte.= '</table>';
|
|
$texte.= '</form>';
|
|
|
|
return $texte;
|
|
}
|
|
|
|
/**
|
|
* Function to build a document on disk using the generic odt module.
|
|
* @param object Object source to build document
|
|
* @param outputlangs Lang output object
|
|
* @param srctemplatepath Full path of source filename for generator using a template file
|
|
* @return int 1 if OK, <=0 if KO
|
|
*/
|
|
function write_file($object,$outputlangs,$srctemplatepath)
|
|
{
|
|
global $user,$langs,$conf,$mysoc;
|
|
|
|
if (empty($srctemplatepath))
|
|
{
|
|
dol_syslog("doc_generic_odt::write_file parameter srctemplatepath empty", LOG_WARNING);
|
|
return -1;
|
|
}
|
|
|
|
if (! is_object($outputlangs)) $outputlangs=$langs;
|
|
$sav_charset_output=$outputlangs->charset_output;
|
|
$outputlangs->charset_output='UTF-8';
|
|
|
|
$outputlangs->load("main");
|
|
$outputlangs->load("dict");
|
|
$outputlangs->load("companies");
|
|
$outputlangs->load("projects");
|
|
|
|
if ($conf->societe->dir_output)
|
|
{
|
|
// If $object is id instead of object
|
|
if (! is_object($object))
|
|
{
|
|
$id = $object;
|
|
$object = new Societe($this->db);
|
|
$object->fetch($id);
|
|
|
|
if ($result < 0)
|
|
{
|
|
dol_print_error($db,$object->error);
|
|
return -1;
|
|
}
|
|
}
|
|
|
|
$objectref = dol_sanitizeFileName($object->id);
|
|
$dir = $conf->societe->dir_output;
|
|
if (! preg_match('/specimen/i',$objectref)) $dir.= "/" . $objectref;
|
|
$file = $dir . "/" . $objectref . ".odt";
|
|
|
|
if (! file_exists($dir))
|
|
{
|
|
if (create_exdir($dir) < 0)
|
|
{
|
|
$this->error=$langs->transnoentities("ErrorCanNotCreateDir",$dir);
|
|
return -1;
|
|
}
|
|
}
|
|
|
|
if (file_exists($dir))
|
|
{
|
|
//print "srctemplatepath=".$srctemplatepath; // Src filename
|
|
$newfile=basename($srctemplatepath);
|
|
$newfiletmp=preg_replace('/\.odt/i','',$newfile);
|
|
$file=$dir.'/'.$newfiletmp.'.'.dol_print_date(dol_now(),'%Y%m%d%H%M%S').'.odt';
|
|
//print "newdir=".$dir;
|
|
//print "newfile=".$newfile;
|
|
//print "file=".$file;
|
|
//print "conf->societe->dir_temp=".$conf->societe->dir_temp;
|
|
|
|
create_exdir($conf->societe->dir_temp);
|
|
|
|
// Open and load template
|
|
require_once(DOL_DOCUMENT_ROOT.'/includes/odtphp/odf.php');
|
|
$odfHandler = new odf($srctemplatepath, array(
|
|
'PATH_TO_TMP' => $conf->societe->dir_temp,
|
|
'ZIP_PROXY' => 'PclZipProxy', // PhpZipProxy or PclZipProxy. Got "bad compression method" error when using PhpZipProxy.
|
|
'DELIMITER_LEFT' => '{',
|
|
'DELIMITER_RIGHT' => '}')
|
|
);
|
|
|
|
//print $odfHandler->__toString()."\n";
|
|
|
|
// Make substitutions into odt of user info
|
|
$tmparray=$this->get_substitutionarray_user($user,$outputlangs);
|
|
//var_dump($tmparray); exit;
|
|
foreach($tmparray as $key=>$value)
|
|
{
|
|
try {
|
|
if (preg_match('/logo$/',$key)) // Image
|
|
{
|
|
//var_dump($value);exit;
|
|
if (file_exists($value)) $odfHandler->setImage($key, $value);
|
|
else $odfHandler->setVars($key, 'ErrorFileNotFound', true, 'UTF-8');
|
|
}
|
|
else // Text
|
|
{
|
|
//print $key.' '.$value;exit;
|
|
$odfHandler->setVars($key, $value, true, 'UTF-8');
|
|
}
|
|
}
|
|
catch(OdfException $e)
|
|
{
|
|
}
|
|
}
|
|
// Make substitutions into odt of mysoc info
|
|
$tmparray=$this->get_substitutionarray_mysoc($mysoc,$outputlangs);
|
|
//var_dump($tmparray); exit;
|
|
foreach($tmparray as $key=>$value)
|
|
{
|
|
try {
|
|
if (preg_match('/logo$/',$key)) // Image
|
|
{
|
|
//var_dump($value);exit;
|
|
if (file_exists($value)) $odfHandler->setImage($key, $value);
|
|
else $odfHandler->setVars($key, 'ErrorFileNotFound', true, 'UTF-8');
|
|
}
|
|
else // Text
|
|
{
|
|
$odfHandler->setVars($key, $value, true, 'UTF-8');
|
|
}
|
|
}
|
|
catch(OdfException $e)
|
|
{
|
|
}
|
|
}
|
|
// Make substitutions into odt of thirdparty + external modules
|
|
$tmparray=$this->get_substitutionarray_thirdparty($object,$outputlangs);
|
|
complete_substitutions_array($tmparray, $langs, $object);
|
|
//var_dump($object->id); exit;
|
|
foreach($tmparray as $key=>$value)
|
|
{
|
|
try {
|
|
if (preg_match('/logo$/',$key)) // Image
|
|
{
|
|
if (file_exists($value)) $odfHandler->setImage($key, $value);
|
|
else $odfHandler->setVars($key, 'ErrorFileNotFound', true, 'UTF-8');
|
|
}
|
|
else // Text
|
|
{
|
|
$odfHandler->setVars($key, $value, true, 'UTF-8');
|
|
}
|
|
}
|
|
catch(OdfException $e)
|
|
{
|
|
}
|
|
}
|
|
|
|
// Write new file
|
|
//$result=$odfHandler->exportAsAttachedFile('toto');
|
|
$odfHandler->saveToDisk($file);
|
|
|
|
if (! empty($conf->global->MAIN_UMASK))
|
|
@chmod($file, octdec($conf->global->MAIN_UMASK));
|
|
|
|
$odfHandler=null; // Destroy object
|
|
|
|
return 1; // Success
|
|
}
|
|
else
|
|
{
|
|
$this->error=$langs->transnoentities("ErrorCanNotCreateDir",$dir);
|
|
return -1;
|
|
}
|
|
}
|
|
|
|
return -1;
|
|
}
|
|
|
|
}
|
|
|
|
?>
|