2009-03-25 22:26:15 +01:00
< ? php
/* Copyright ( C ) 2006 - 2009 Laurent Destailleur < eldy @ 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 , write to the Free Software
* Foundation , Inc . , 59 Temple Place - Suite 330 , Boston , MA 02111 - 1307 , USA .
* or see http :// www . gnu . org /
*/
/**
* \file htdocs / includes / modules / export / export_csv . modules . php
* \ingroup export
* \brief File to build exports with CSV format
* \author Laurent Destailleur
* \version $Id $
*/
require_once ( DOL_DOCUMENT_ROOT . " /includes/modules/import/modules_import.php " );
/**
* \class ImportCsv
* \brief Classe permettant de lire les fichiers imports CSV
*/
class ImportCsv extends ModeleImports
{
var $id ;
var $label ;
var $extension ;
var $version ;
var $label_lib ;
var $version_lib ;
var $separator ;
2009-05-19 02:14:27 +02:00
2009-03-25 22:26:15 +01:00
var $handle ; // Handle fichier
2009-05-19 02:14:27 +02:00
2009-03-25 22:26:15 +01:00
/**
* \brief Constructeur
* \param db Handler acces base de donnee
*/
function ImportCsv ( $db )
{
global $conf ;
$this -> db = $db ;
2009-09-27 23:28:52 +02:00
$this -> separator = ',' ;
if ( ! empty ( $conf -> global -> EXPORT_CSV_SEPARATOR_TO_USE )) $this -> separator = $conf -> global -> EXPORT_CSV_SEPARATOR_TO_USE ;
2009-09-28 22:06:15 +02:00
$this -> escape = '"' ;
2009-09-27 23:28:52 +02:00
$this -> string = '"' ;
2009-03-25 22:26:15 +01:00
$this -> id = 'csv' ; // Same value then xxx in file name export_xxx.modules.php
2009-09-28 22:06:15 +02:00
$this -> label = 'Csv' ; // Label of driver
$this -> desc = '<b>Comma Separated Value</b> file format (.csv). This is a text file format.<br>Fields are separated by separator [ ' . $this -> separator . ' ]. If separator is found inside a field content, field is rounded by round character [ ' . $this -> string . ' ]. Escape character to escape round character is [ ' . $this -> escape . ' ].' ;
2009-03-25 22:26:15 +01:00
$this -> extension = 'csv' ; // Extension for generated file by this driver
2009-05-19 02:14:27 +02:00
$this -> picto = 'mime/other' ; // Picto
2009-03-25 22:26:15 +01:00
$ver = split ( ' ' , '$Revision$' );
$this -> version = $ver [ 2 ]; // Driver version
// If driver use an external library, put its name here
2009-05-19 02:14:27 +02:00
$this -> label_lib = 'Dolibarr' ;
2009-03-25 22:26:15 +01:00
$this -> version_lib = DOL_VERSION ;
}
function getDriverId ()
{
return $this -> id ;
}
function getDriverLabel ()
{
return $this -> label ;
}
2009-09-28 22:06:15 +02:00
function getDriverDesc ()
{
return $this -> desc ;
}
2009-03-25 22:26:15 +01:00
function getDriverExtension ()
{
return $this -> extension ;
}
function getDriverVersion ()
{
return $this -> version ;
}
function getLibLabel ()
{
return $this -> label_lib ;
}
function getLibVersion ()
{
return $this -> version_lib ;
}
2009-09-08 01:49:16 +02:00
/**
* \brief Output header of an example file for this format
* \param langs Output language
*/
function write_header_example ( $outputlangs )
{
return '' ;
}
/**
* \brief Output title line of an example file for this format
* \param langs Output language
*/
function write_title_example ( $outputlangs , $headerlinefields )
{
$s = '' ;
$s .= join ( $this -> separator , $headerlinefields );
return $s . " \n " ;
}
/**
* \brief Output record of an example file for this format
* \param langs Output language
*/
function write_record_example ( $outputlangs , $contentlinevalues )
{
$s = '' ;
$s .= join ( $this -> separator , $contentlinevalues );
return $s . " \n " ;
}
/**
* \brief Output footer of an example file for this format
* \param langs Output language
*/
function write_footer_example ( $outputlangs )
{
return '' ;
}
2009-03-25 22:26:15 +01:00
/**
* \brief Open output file
* \param file Path of filename
* \return int < 0 if KO , >= 0 if OK
*/
function open_file ( $file , $outputlangs )
{
global $langs ;
2009-05-19 02:14:27 +02:00
2009-03-25 22:26:15 +01:00
dol_syslog ( " ImportCsv::open_file file= " . $file );
$ret = 1 ;
2009-05-19 02:14:27 +02:00
2009-03-25 22:26:15 +01:00
$outputlangs -> load ( " exports " );
$this -> handle = fread ( $file , " wt " );
if ( ! $this -> handle )
{
$langs -> load ( " errors " );
$this -> error = $langs -> trans ( " ErrorFailToOpenFile " , $file );
$ret =- 1 ;
}
2009-05-19 02:14:27 +02:00
2009-03-25 22:26:15 +01:00
return $ret ;
}
/**
* \brief Output header into file
* \param langs Output language
*/
function read_header ( $outputlangs )
{
return 0 ;
}
/**
* \brief Output record line into file
*/
function read_record ( $array_alias , $array_selected_sorted , $objp , $outputlangs )
{
global $conf ;
if ( ! empty ( $conf -> global -> EXPORT_CSV_FORCE_CHARSET )) $outputlangs -> charset_output = $conf -> global -> EXPORT_CSV_FORCE_CHARSET ;
$this -> col = 0 ;
foreach ( $array_selected_sorted as $code => $value )
{
$alias = $array_alias [ $code ];
if ( empty ( $alias )) dol_print_error ( '' , 'Bad value for field with code=' . $code . '. Try to redefine export.' );
$newvalue = $outputlangs -> convToOutputCharset ( $objp -> $alias );
// Translation newvalue
if ( eregi ( '^\((.*)\)$' , $newvalue , $reg ))
{
$newvalue = $outputlangs -> transnoentities ( $reg [ 1 ]);
}
2009-05-19 02:14:27 +02:00
2009-03-25 22:26:15 +01:00
$newvalue = $this -> csv_clean ( $newvalue );
2009-05-19 02:14:27 +02:00
2009-03-25 22:26:15 +01:00
fwrite ( $this -> handle , $newvalue . $this -> separator );
$this -> col ++ ;
}
fwrite ( $this -> handle , " \n " );
return 0 ;
}
/**
* \brief Close file handle
*/
function close_file ()
{
fclose ( $this -> handle );
return 0 ;
}
/**
* Clean a cell to respect rules of CSV file cells
* @ param newvalue String to clean
* @ return string Value cleaned
*/
function csv_clean ( $newvalue )
{
$addquote = 0 ;
2009-05-19 02:14:27 +02:00
2009-03-25 22:26:15 +01:00
// Rule Dolibarr: No HTML
$newvalue = dol_string_nohtmltag ( $newvalue );
// Rule 1 CSV: No CR, LF in cells
$newvalue = ereg_replace ( " \r " , '' , $newvalue );
$newvalue = ereg_replace ( " \n " , '\n' , $newvalue );
2009-05-19 02:14:27 +02:00
2009-03-25 22:26:15 +01:00
// Rule 2 CSV: If value contains ", we must duplicate ", and add "
if ( ereg ( '"' , $newvalue ))
{
$addquote = 1 ;
$newvalue = ereg_replace ( '"' , '""' , $newvalue );
}
// Rule 3 CSV: If value contains separator, we must add "
if ( ereg ( $this -> separator , $newvalue ))
{
$addquote = 1 ;
}
2009-05-19 02:14:27 +02:00
2009-03-25 22:26:15 +01:00
return ( $addquote ? '"' : '' ) . $newvalue . ( $addquote ? '"' : '' );
}
2009-05-19 02:14:27 +02:00
2009-03-25 22:26:15 +01:00
}
?>