123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339 |
- <?php
- require 'zip/PclZipProxy.php';
- require 'zip/PhpZipProxy.php';
- require 'Segment.php';
- class OdfException extends Exception
- {}
- /**
- * Templating class for odt file
- * You need PHP 5.2 at least
- * You need Zip Extension or PclZip library
- * Encoding : ISO-8859-1
- * Last commit by $Author: neveldo $
- * Date - $Date: 2009-06-17 11:11:57 +0200 (mer., 17 juin 2009) $
- * SVN Revision - $Rev: 42 $
- * Id : $Id: odf.php 42 2009-06-17 09:11:57Z neveldo $
- *
- * @copyright GPL License 2008 - Julien Pauli - Cyril PIERRE de GEYER - Anaska (http://www.anaska.com)
- * @license http://www.gnu.org/copyleft/gpl.html GPL License
- * @version 1.3
- */
- class Odf
- {
- protected $config = array(
- 'ZIP_PROXY' => 'PclZipProxy',
- 'DELIMITER_LEFT' => '{',
- 'DELIMITER_RIGHT' => '}',
- 'PATH_TO_TMP' => null
- );
- protected $file;
- protected $contentXml;
- protected $tmpfile;
- protected $images = array();
- protected $vars = array();
- protected $segments = array();
- // MODIF YC : fix 'corrupt odt file in OpenOffice 3.2' when inserting images.
- // http://www.odtphp.com/forum/viewtopic.php?f=5&t=147
- protected $manifestXml;
- // /MODIF
- const PIXEL_TO_CM = 0.026458333;
- /**
- * Class constructor
- *
- * @param string $filename the name of the odt file
- * @throws OdfException
- */
- public function __construct($filename, $config = array())
- {
- if (! is_array($config)) {
- throw new OdfException('Configuration data must be provided as array');
- }
- foreach ($config as $configKey => $configValue) {
- if (array_key_exists($configKey, $this->config)) {
- $this->config[$configKey] = $configValue;
- }
- }
- if (! class_exists($this->config['ZIP_PROXY'])) {
- throw new OdfException($this->config['ZIP_PROXY'] . ' class not found - check your php settings');
- }
- $zipHandler = $this->config['ZIP_PROXY'];
- $this->file = new $zipHandler();
- if ($this->file->open($filename) !== true) {
- throw new OdfException("Error while Opening the file '$filename' - Check your odt file");
- }
- if (($this->contentXml = $this->file->getFromName('content.xml')) === false) {
- throw new OdfException("Nothing to parse - check that the content.xml file is correctly formed");
- }
- // MODIF YC : fix 'corrupt odt file in OpenOffice 3.2' when inserting images
- if (($this->manifestXml = $this->file->getFromName('META-INF/manifest.xml')) === false) {
- throw new OdfException("Something is wrong with META-INF/manifest.xml");
- }
- // /MODIF
- $this->file->close();
- $tmp = tempnam($this->config['PATH_TO_TMP'], md5(uniqid()));
- copy($filename, $tmp);
- $this->tmpfile = $tmp;
- $this->_moveRowSegments();
- }
- /**
- * Assing a template variable
- *
- * @param string $key name of the variable within the template
- * @param string $value replacement value
- * @param bool $encode if true, special XML characters are encoded
- * @throws OdfException
- * @return odf
- */
- public function setVars($key, $value, $encode = true, $charset = 'ISO-8859')
- {
- if (strpos($this->contentXml, $this->config['DELIMITER_LEFT'] . $key . $this->config['DELIMITER_RIGHT']) === false) {
- throw new OdfException("var $key not found in the document");
- }
- $value = $encode ? htmlspecialchars($value) : $value;
- $value = ($charset == 'ISO-8859') ? utf8_encode($value) : $value;
- $this->vars[$this->config['DELIMITER_LEFT'] . $key . $this->config['DELIMITER_RIGHT']] = str_replace("\n", "<text:line-break/>", $value);
- return $this;
- }
- /**
- * Assign a template variable as a picture
- *
- * @param string $key name of the variable within the template
- * @param string $value path to the picture
- * @throws OdfException
- * @return odf
- */
- public function setImage($key, $value)
- {
- $filename = strtok(strrchr($value, '/'), '/.');
- $file = substr(strrchr($value, '/'), 1);
- $size = @getimagesize($value);
- if ($size === false) {
- throw new OdfException("Invalid image");
- }
- list ($width, $height) = $size;
- $width *= self::PIXEL_TO_CM;
- $height *= self::PIXEL_TO_CM;
- $xml = <<<IMG
- <draw:frame draw:style-name="fr1" draw:name="$filename" text:anchor-type="char" svg:width="{$width}cm" svg:height="{$height}cm" draw:z-index="3"><draw:image xlink:href="Pictures/$file" xlink:type="simple" xlink:show="embed" xlink:actuate="onLoad"/></draw:frame>
- IMG;
- $this->images[$value] = $file;
- $this->setVars($key, $xml, false);
- return $this;
- }
- /**
- * Move segment tags for lines of tables
- * Called automatically within the constructor
- *
- * @return void
- */
- private function _moveRowSegments()
- {
- // Search all possible rows in the document
- $reg1 = "#<table:table-row[^>]*>(.*)</table:table-row>#smU";
- preg_match_all($reg1, $this->contentXml, $matches);
- for ($i = 0, $size = count($matches[0]); $i < $size; $i++) {
- // Check if the current row contains a segment row.*
- $reg2 = '#\[!--\sBEGIN\s(row.[\S]*)\s--\](.*)\[!--\sEND\s\\1\s--\]#sm';
- if (preg_match($reg2, $matches[0][$i], $matches2)) {
- $balise = str_replace('row.', '', $matches2[1]);
- // Move segment tags around the row
- $replace = array(
- '[!-- BEGIN ' . $matches2[1] . ' --]' => '',
- '[!-- END ' . $matches2[1] . ' --]' => '',
- '<table:table-row' => '[!-- BEGIN ' . $balise . ' --]<table:table-row',
- '</table:table-row>' => '</table:table-row>[!-- END ' . $balise . ' --]'
- );
- $replacedXML = str_replace(array_keys($replace), array_values($replace), $matches[0][$i]);
- $this->contentXml = str_replace($matches[0][$i], $replacedXML, $this->contentXml);
- }
- }
- }
- /**
- * Merge template variables
- * Called automatically for a save
- *
- * @return void
- */
- private function _parse()
- {
- $this->contentXml = str_replace(array_keys($this->vars), array_values($this->vars), $this->contentXml);
- }
- /**
- * Add the merged segment to the document
- *
- * @param Segment $segment
- * @throws OdfException
- * @return odf
- */
- public function mergeSegment(Segment $segment)
- {
- if (! array_key_exists($segment->getName(), $this->segments)) {
- throw new OdfException($segment->getName() . 'cannot be parsed, has it been set yet ?');
- }
- $string = $segment->getName();
- // $reg = '@<text:p[^>]*>\[!--\sBEGIN\s' . $string . '\s--\](.*)\[!--.+END\s' . $string . '\s--\]<\/text:p>@smU';
- $reg = '@\[!--\sBEGIN\s' . $string . '\s--\](.*)\[!--.+END\s' . $string . '\s--\]@smU';
- $this->contentXml = preg_replace($reg, $segment->getXmlParsed(), $this->contentXml);
- return $this;
- }
- /**
- * Display all the current template variables
- *
- * @return string
- */
- public function printVars()
- {
- return print_r('<pre>' . print_r($this->vars, true) . '</pre>', true);
- }
- /**
- * Display the XML content of the file from odt document
- * as it is at the moment
- *
- * @return string
- */
- public function __toString()
- {
- return $this->contentXml;
- }
- /**
- * Display loop segments declared with setSegment()
- *
- * @return string
- */
- public function printDeclaredSegments()
- {
- return '<pre>' . print_r(implode(' ', array_keys($this->segments)), true) . '</pre>';
- }
- /**
- * Declare a segment in order to use it in a loop
- *
- * @param string $segment
- * @throws OdfException
- * @return Segment
- */
- public function setSegment($segment)
- {
- if (array_key_exists($segment, $this->segments)) {
- return $this->segments[$segment];
- }
- // $reg = "#\[!--\sBEGIN\s$segment\s--\]<\/text:p>(.*)<text:p\s.*>\[!--\sEND\s$segment\s--\]#sm";
- $reg = "#\[!--\sBEGIN\s$segment\s--\](.*)\[!--\sEND\s$segment\s--\]#sm";
- if (preg_match($reg, html_entity_decode($this->contentXml), $m) == 0) {
- throw new OdfException("'$segment' segment not found in the document");
- }
- $this->segments[$segment] = new Segment($segment, $m[1], $this);
- return $this->segments[$segment];
- }
- /**
- * Save the odt file on the disk
- *
- * @param string $file name of the desired file
- * @throws OdfException
- * @return void
- */
- public function saveToDisk($file = null)
- {
- if ($file !== null && is_string($file)) {
- if (file_exists($file) && !(is_file($file) && is_writable($file))) {
- throw new OdfException('Permission denied : can\'t create ' . $file);
- }
- $this->_save();
- copy($this->tmpfile, $file);
- } else {
- $this->_save();
- }
- }
- /**
- * Internal save
- *
- * @throws OdfException
- * @return void
- */
- private function _save()
- {
- $this->file->open($this->tmpfile);
- $this->_parse();
- if (! $this->file->addFromString('content.xml', $this->contentXml)) {
- throw new OdfException('Error during file export');
- }
- foreach ($this->images as $imageKey => $imageValue) {
- $this->file->addFile($imageKey, 'Pictures/' . $imageValue);
- // MODIF YC : fix 'corrupt odt file in OpenOffice 3.2' when inserting images.
- $this->addImageToManifest($imageValue);
- // /MODIF
- }
- // MODIF YC : fix 'corrupt odt file in OpenOffice 3.2' when inserting images.
- if (! $this->file->addFromString('./META-INF/manifest.xml', $this->manifestXml)) {
- throw new OdfException('Error during file export: manifest.xml');
- }
- // /MODIF
- $this->file->close(); // seems to bug on windows CLI sometimes
- }
- // MODIF YC : fix 'corrupt odt file in OpenOffice 3.2' when inserting images.
- public function addImageToManifest($file)
- {
- $extension = explode('.', $file);
- $replace = '<manifest:file-entry manifest:media-type="image/'.$extension[1].'" manifest:full-path="Pictures/'.$file.'"/></manifest:manifest>';
- $this->manifestXml = str_replace('</manifest:manifest>', $replace, $this->manifestXml);
- }
- // /MODIF
- /**
- * Export the file as attached file by HTTP
- *
- * @param string $name (optionnal)
- * @throws OdfException
- * @return void
- */
- public function exportAsAttachedFile($name="")
- {
- $this->_save();
- if (headers_sent($filename, $linenum)) {
- throw new OdfException("headers already sent ($filename at $linenum)");
- }
- if( $name == "" )
- {
- $name = md5(uniqid()) . ".odt";
- }
- header('Content-type: application/vnd.oasis.opendocument.text');
- header('Content-Disposition: attachment; filename="'.$name.'"');
- readfile($this->tmpfile);
- }
- /**
- * Returns a variable of configuration
- *
- * @return string The requested variable of configuration
- */
- public function getConfig($configKey)
- {
- if (array_key_exists($configKey, $this->config)) {
- return $this->config[$configKey];
- }
- return false;
- }
- /**
- * Returns the temporary working file
- *
- * @return string le chemin vers le fichier temporaire de travail
- */
- public function getTmpfile()
- {
- return $this->tmpfile;
- }
- /**
- * Delete the temporary file when the object is destroyed
- */
- public function __destruct() {
- if (file_exists($this->tmpfile)) {
- unlink($this->tmpfile);
- }
- }
- }
- ?>
|