| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136 |
- <?php
- /**
- * Zend Framework
- *
- * LICENSE
- *
- * This source file is subject to the new BSD license that is bundled
- * with this package in the file LICENSE.txt.
- * It is also available through the world-wide-web at this URL:
- * http://framework.zend.com/license/new-bsd
- * If you did not receive a copy of the license and are unable to
- * obtain it through the world-wide-web, please send an email
- * to license@zend.com so we can send you a copy immediately.
- *
- * @category Zend
- * @package Zend_Service
- * @subpackage LiveDocx
- * @copyright Copyright (c) 2005-2009 Zend Technologies USA Inc. (http://www.zend.com)
- * @license http://framework.zend.com/license/new-bsd New BSD License
- * @version $Id$
- */
- /** Zend_Date **/
- require_once 'Zend/Date.php';
- /** Zend_Service_LiveDocx **/
- require_once 'Zend/Service/LiveDocx.php';
- /**
- * @category Zend
- * @package Zend_Service
- * @subpackage LiveDocx
- * @copyright Copyright (c) 2005-2009 Zend Technologies USA Inc. (http://www.zend.com)
- * @license http://framework.zend.com/license/new-bsd New BSD License
- * @since LiveDocx 1.0
- */
- class Zend_Service_LiveDocx_MailMerge extends Zend_Service_LiveDocx
- {
- /**
- * URI of LiveDocx.MailMerge WSDL
- * @since LiveDocx 1.0
- */
- const WSDL = 'https://api.livedocx.com/1.2/mailmerge.asmx?WSDL';
-
- /**
- * Document access permission: After the document has been opened no further
- * document access is restricted
- * @since LiveDocx 1.2 Premium
- */
- const DOCUMENT_ACCESS_PERMISSION_ALLOW_ALL = 'AllowAll';
- /**
- * Document access permission: Allow comments to be added and interactive
- * form fields (including signature fields) to be filled in
- * @since LiveDocx 1.2 Premium
- */
- const DOCUMENT_ACCESS_PERMISSION_ALLOW_AUTHORING = 'AllowAuthoring';
-
- /**
- * Document access permission: Allow existing interactive form fields
- * (including signature fields) to be filled in
- * @since LiveDocx 1.2 Premium
- */
- const DOCUMENT_ACCESS_PERMISSION_ALLOW_AUTHORING_FIELDS = 'AllowAuthoringFields';
-
- /**
- * Document access permission: Allow content access for the visually
- * impaired only
- * @since LiveDocx 1.2 Premium
- */
- const DOCUMENT_ACCESS_PERMISSION_ALLOW_CONTENT_ACCESSIBILITY = 'AllowContentAccessibility';
-
- /**
- * Document access permission: Allow the document to be to assembled
- * (insert, rotate or delete pages and create bookmarks or thumbnails)
- * @since LiveDocx 1.2 Premium
- */
- const DOCUMENT_ACCESS_PERMISSION_ALLOW_DOCUMENT_ASSEMBLY = 'AllowDocumentAssembly';
-
- /**
- * Document access permission: Allow text and/or graphics to be extracted
- * @since LiveDocx 1.2 Premium
- */
- const DOCUMENT_ACCESS_PERMISSION_ALLOW_EXTRACT_CONTENTS = 'AllowExtractContents';
-
- /**
- * Document access permission: Allow the document contents to be modified
- * @since LiveDocx 1.2 Premium
- */
- const DOCUMENT_ACCESS_PERMISSION_ALLOW_GENERAL_EDITING = 'AllowGeneralEditing';
-
- /**
- * Document access permission: Allow the document to be printed
- * @since LiveDocx 1.2 Premium
- */
- const DOCUMENT_ACCESS_PERMISSION_ALLOW_PRINTING_HIGH_LEVEL = 'AllowHighLevelPrinting';
-
- /**
- * Document access permission: Allow the document to be printed (low-level)
- * @since LiveDocx 1.2 Premium
- */
- const DOCUMENT_ACCESS_PERMISSION_ALLOW_PRINTING_LOW_LEVEL = 'AllowLowLevelPrinting';
- /**
- * Field values
- *
- * @var array
- * @since LiveDocx 1.0
- */
- protected $_fieldValues;
- /**
- * Block field values
- *
- * @var array
- * @since LiveDocx 1.0
- */
- protected $_blockFieldValues;
- /**
- * Document properties of PDF file (only)
- *
- * @var array
- * @since LiveDocx 1.0
- */
- protected $_documentProperties;
- /**
- * Constructor (LiveDocx.MailMerge SOAP Service)
- *
- * @return void
- * @return throws Zend_Service_LiveDocx_Exception
- * @since LiveDocx 1.0
- */
- public function __construct($options = null)
- {
- $this->_wsdl = self::WSDL;
- $this->_fieldValues = array();
- $this->_blockFieldValues = array();
-
- $this->_setDefaultDocumentProperties();
-
- parent::__construct($options);
- }
- /**
- * Set the filename of a LOCAL template
- * (i.e. a template stored locally on YOUR server)
- *
- * @param string $filename
- * @return Zend_Service_LiveDocx_MailMerge
- * @throws Zend_Service_LiveDocx_Exception
- * @since LiveDocx 1.0
- */
- public function setLocalTemplate($filename)
- {
- $this->logIn();
-
- try {
- $this->getSoapClient()->SetLocalTemplate(array(
- 'template' => base64_encode(file_get_contents($filename)),
- 'format' => self::getFormat($filename),
- ));
- } catch (Exception $e) {
- require_once 'Zend/Service/LiveDocx/Exception.php';
- throw new Zend_Service_LiveDocx_Exception(
- 'Cannot set local template', 0, $e
- );
- }
- return $this;
- }
- /**
- * Set the filename of a REMOTE template
- * (i.e. a template stored remotely on the LIVEDOCX server)
- *
- * @param string $filename
- * @return Zend_Service_LiveDocx_MailMerge
- * @throws Zend_Service_LiveDocx_Exception
- * @since LiveDocx 1.0
- */
- public function setRemoteTemplate($filename)
- {
- $this->logIn();
-
- try {
- $this->getSoapClient()->SetRemoteTemplate(array(
- 'filename' => $filename,
- ));
- } catch (Exception $e) {
- require_once 'Zend/Service/LiveDocx/Exception.php';
- throw new Zend_Service_LiveDocx_Exception(
- 'Cannot set remote template', 0, $e
- );
- }
- return $this;
- }
- /**
- * Set an associative or multi-associative array of keys and values pairs
- *
- * @param array $values
- * @return Zend_Service_LiveDocx_MailMerge
- * @throws Zend_Service_LiveDocx_Exception
- * @since LiveDocx 1.0
- */
- public function setFieldValues($values)
- {
- $this->logIn();
-
- foreach ($values as $value) {
- if (is_array($value)) {
- $method = 'multiAssocArrayToArrayOfArrayOfString';
- } else {
- $method = 'assocArrayToArrayOfArrayOfString';
- }
- break;
- }
-
- try {
- $this->getSoapClient()->SetFieldValues(array(
- 'fieldValues' => self::$method($values),
- ));
- } catch (Exception $e) {
- require_once 'Zend/Service/LiveDocx/Exception.php';
- throw new Zend_Service_LiveDocx_Exception(
- 'Cannot set field values', 0, $e
- );
- }
- return $this;
- }
- /**
- * Set an array of key and value or array of values
- *
- * @param string $field
- * @param array|string $value
- *
- * @throws Zend_Service_LiveDocx_Exception
- * @return Zend_Service_LiveDocx_MailMerge
- * @since LiveDocx 1.0
- */
- public function setFieldValue($field, $value)
- {
- $this->_fieldValues[$field] = $value;
- return $this;
- }
- /**
- * Set block field values
- *
- * @param string $blockName
- * @param array $blockFieldValues
- *
- * @return Zend_Service_LiveDocx_MailMerge
- * @throws Zend_Service_LiveDocx_Exception
- * @since LiveDocx 1.0
- */
- public function setBlockFieldValues($blockName, $blockFieldValues)
- {
- $this->logIn();
-
- try {
- $this->getSoapClient()->SetBlockFieldValues(array(
- 'blockName' => $blockName,
- 'blockFieldValues' => self::multiAssocArrayToArrayOfArrayOfString($blockFieldValues)
- ));
- } catch (Exception $e) {
- require_once 'Zend/Service/LiveDocx/Exception.php';
- throw new Zend_Service_LiveDocx_Exception(
- 'Cannot set block field values', 0, $e
- );
- }
- return $this;
- }
- /**
- * Assign values to template fields
- *
- * @param array|string $field
- * @param array|string $value
- * @return Zend_Service_LiveDocx_MailMerge
- * @throws Zend_Service_LiveDocx_Exception
- * @since LiveDocx 1.0
- */
- public function assign($field, $value = null)
- {
- try {
- if (is_array($field) && (null === $value)) {
- foreach ($field as $fieldName => $fieldValue) {
- $this->setFieldValue($fieldName, $fieldValue);
- }
- } elseif (is_array($value)) {
- $this->setBlockFieldValues($field, $value);
- } else {
- $this->setFieldValue($field, $value);
- }
- } catch (Exception $e) {
- require_once 'Zend/Service/LiveDocx/Exception.php';
- throw new Zend_Service_LiveDocx_Exception(
- 'Cannot assign data to template', 0, $e
- );
- }
- return $this;
- }
- /**
- * Set a password to open to document
- *
- * This method can only be used for PDF documents
- *
- * @param string $password
- * @return Zend_Service_LiveDocx_MailMerge
- * @throws Zend_Service_LiveDocx_Exception
- * @since LiveDocx 1.2 Premium
- */
- public function setDocumentPassword($password)
- {
- $this->logIn();
-
- try {
- $this->getSoapClient()->SetDocumentPassword(array(
- 'password' => $password
- ));
- } catch (Exception $e) {
- require_once 'Zend/Service/LiveDocx/Exception.php';
- throw new Zend_Service_LiveDocx_Exception(
- 'Cannot set document password. This method can be used on PDF files only.', 0, $e
- );
- }
-
- $this->_documentProperties['Encrypted'] = true;
-
- return $this;
- }
-
- /**
- * Set a master password for document and determine which security features
- * are accessible without using the master password.
- *
- * As default, nothing is allowed. To allow a security setting,
- * explicatively set it using one of he DOCUMENT_ACCESS_PERMISSION_* class
- * constants.
- *
- * {code}
- * $phpLiveDocx->setDocumentAccessPermissions(
- * array (
- * Zend_Service_LiveDocx_MailMerge::DOCUMENT_ACCESS_PERMISSION_ALLOW_PRINTING_HIGH_LEVEL,
- * Zend_Service_LiveDocx_MailMerge::DOCUMENT_ACCESS_PERMISSION_ALLOW_EXTRACT_CONTENTS
- * ),
- * 'myDocumentAccessPassword'
- * );
- * {code}
- *
- * This method can only be used for PDF documents
- *
- * @param array $permissions
- * @param string $password
- * @return Zend_Service_LiveDocx_MailMerge
- * @throws Zend_Service_LiveDocx_Exception
- * @since LiveDocx 1.2 Premium
- */
- public function setDocumentAccessPermissions($permissions, $password)
- {
- $validPermissions = array(
- self::DOCUMENT_ACCESS_PERMISSION_ALLOW_ALL ,
- self::DOCUMENT_ACCESS_PERMISSION_ALLOW_AUTHORING ,
- self::DOCUMENT_ACCESS_PERMISSION_ALLOW_AUTHORING_FIELDS ,
- self::DOCUMENT_ACCESS_PERMISSION_ALLOW_CONTENT_ACCESSIBILITY ,
- self::DOCUMENT_ACCESS_PERMISSION_ALLOW_DOCUMENT_ASSEMBLY ,
- self::DOCUMENT_ACCESS_PERMISSION_ALLOW_EXTRACT_CONTENTS ,
- self::DOCUMENT_ACCESS_PERMISSION_ALLOW_GENERAL_EDITING ,
- self::DOCUMENT_ACCESS_PERMISSION_ALLOW_PRINTING_HIGH_LEVEL ,
- self::DOCUMENT_ACCESS_PERMISSION_ALLOW_PRINTING_LOW_LEVEL
- );
-
- foreach ($permissions as $permission) {
- if (! in_array($permission, $validPermissions)) {
- require_once 'Zend/Service/LiveDocx/Exception.php';
- throw new Zend_Service_LiveDocx_Exception(
- 'Invalid document access permission. '
- . 'Must be one of Zend_Service_LiveDocx_MailMerge::DOCUMENT_ACCESS_PERMISSION_* class constants'
- );
- }
- }
-
- $this->logIn();
-
- try {
- $this->getSoapClient()->SetDocumentAccessPermissions(array(
- 'permissions' => $permissions,
- 'password' => $password
- ));
- } catch (Exception $e) {
- require_once 'Zend/Service/LiveDocx/Exception.php';
- throw new Zend_Service_LiveDocx_Exception(
- 'Cannot set document access permissions', 0, $e
- );
- }
-
- $this->_documentProperties['Encrypted'] = true;
-
- return $this;
- }
-
- /**
- * Merge assigned data with template to generate document
- *
- * @throws Zend_Service_LiveDocx_Excpetion
- * @return void
- * @since LiveDocx 1.0
- */
- public function createDocument()
- {
- $this->logIn();
-
- if (count($this->_fieldValues) > 0) {
- $this->setFieldValues($this->_fieldValues);
- }
- $this->_fieldValues = array();
- $this->_blockFieldValues = array();
- try {
- $this->getSoapClient()->CreateDocument();
- } catch (Exception $e) {
- require_once 'Zend/Service/LiveDocx/Exception.php';
- throw new Zend_Service_LiveDocx_Exception(
- 'Cannot create document', 0, $e
- );
- }
- }
- /**
- * Retrieve document in specified format
- *
- * @param string $format
- *
- * @throws Zend_Service_LiveDocx_Exception
- * @return binary
- * @since LiveDocx 1.0
- */
- public function retrieveDocument($format)
- {
- $this->logIn();
-
- $ret = null;
- $format = strtolower($format);
-
- try {
- $result = $this->getSoapClient()->RetrieveDocument(array(
- 'format' => $format,
- ));
- } catch (Exception $e) {
- require_once 'Zend/Service/LiveDocx/Exception.php';
- throw new Zend_Service_LiveDocx_Exception(
- 'Cannot retrieve document - call setLocalTemplate() or setRemoteTemplate() first', 0, $e
- );
- }
- $ret = base64_decode($result->RetrieveDocumentResult);
-
- // @todo: Move this logic to backend server in future version
- if ('pdf' === $format &&
- false === $this->_documentProperties['Encrypted']) {
- require_once 'Zend/Pdf.php';
- $pdf = Zend_Pdf::parse($ret);
- $pdf->properties = $this->_getDocumentProperties();
- $ret = $pdf->render();
- }
- return $ret;
- }
- /**
- * Return WMF (aka Windows metafile) data for specified page range of created document
- * Return array contains WMF data (binary) - array key is page number
- *
- * @param integer $fromPage
- * @param integer $toPage
- * @return array
- * @since LiveDocx 1.2
- */
- public function getMetafiles($fromPage, $toPage)
- {
- $this->logIn();
-
- $ret = array();
- $result = $this->getSoapClient()->GetMetafiles(array(
- 'fromPage' => (integer) $fromPage,
- 'toPage' => (integer) $toPage,
- ));
- if (isset($result->GetMetafilesResult->string)) {
- $pageCounter = (integer) $fromPage;
- if (is_array($result->GetMetafilesResult->string)) {
- foreach ($result->GetMetafilesResult->string as $string) {
- $ret[$pageCounter] = base64_decode($string);
- $pageCounter++;
- }
- } else {
- $ret[$pageCounter] = base64_decode($result->GetMetafilesResult->string);
- }
- }
- return $ret;
- }
- /**
- * Return WMF (aka Windows metafile) data for pages of created document
- * Return array contains WMF data (binary) - array key is page number
- *
- * @return array
- * @since LiveDocx 1.2
- */
- public function getAllMetafiles()
- {
- $this->logIn();
-
- $ret = array();
- $result = $this->getSoapClient()->GetAllMetafiles();
- if (isset($result->GetAllMetafilesResult->string)) {
- $pageCounter = 1;
- if (is_array($result->GetAllMetafilesResult->string)) {
- foreach ($result->GetAllMetafilesResult->string as $string) {
- $ret[$pageCounter] = base64_decode($string);
- $pageCounter++;
- }
- } else {
- $ret[$pageCounter] = base64_decode($result->GetAllMetafilesResult->string);
- }
- }
- return $ret;
- }
-
- /**
- * Return graphical bitmap data for specified page range of created document
- * Return array contains bitmap data (binary) - array key is page number
- *
- * @param integer $fromPage
- * @param integer $toPage
- * @param integer $zoomFactor
- * @param string $format
- * @return array
- * @since LiveDocx 1.2
- */
- public function getBitmaps($fromPage, $toPage, $zoomFactor, $format)
- {
- $this->logIn();
-
- $ret = array();
-
- $result = $this->getSoapClient()->GetBitmaps(array(
- 'fromPage' => (integer) $fromPage,
- 'toPage' => (integer) $toPage,
- 'zoomFactor' => (integer) $zoomFactor,
- 'format' => (string) $format,
- ));
- if (isset($result->GetBitmapsResult->string)) {
- $pageCounter = (integer) $fromPage;
- if (is_array($result->GetBitmapsResult->string)) {
- foreach ($result->GetBitmapsResult->string as $string) {
- $ret[$pageCounter] = base64_decode($string);
- $pageCounter++;
- }
- } else {
- $ret[$pageCounter] = base64_decode($result->GetBitmapsResult->string);
- }
- }
- return $ret;
- }
-
- /**
- * Return graphical bitmap data for all pages of created document
- * Return array contains bitmap data (binary) - array key is page number
- *
- * @param integer $zoomFactor
- * @param string $format
- * @return array
- * @since LiveDocx 1.2
- */
- public function getAllBitmaps($zoomFactor, $format)
- {
- $this->logIn();
-
- $ret = array();
- $result = $this->getSoapClient()->GetAllBitmaps(array(
- 'zoomFactor' => (integer) $zoomFactor,
- 'format' => (string) $format,
- ));
- if (isset($result->GetAllBitmapsResult->string)) {
- $pageCounter = 1;
- if (is_array($result->GetAllBitmapsResult->string)) {
- foreach ($result->GetAllBitmapsResult->string as $string) {
- $ret[$pageCounter] = base64_decode($string);
- $pageCounter++;
- }
- } else {
- $ret[$pageCounter] = base64_decode($result->GetAllBitmapsResult->string);
- }
- }
- return $ret;
- }
- /**
- * Return all the fields in the template
- *
- * @return array
- * @since LiveDocx 1.0
- */
- public function getFieldNames()
- {
- $this->logIn();
-
- $ret = array();
- $result = $this->getSoapClient()->GetFieldNames();
- if (isset($result->GetFieldNamesResult->string)) {
- if (is_array($result->GetFieldNamesResult->string)) {
- $ret = $result->GetFieldNamesResult->string;
- } else {
- $ret[] = $result->GetFieldNamesResult->string;
- }
- }
- return $ret;
- }
- /**
- * Return all the block fields in the template
- *
- * @param string $blockName
- * @return array
- * @since LiveDocx 1.0
- */
- public function getBlockFieldNames($blockName)
- {
- $this->logIn();
-
- $ret = array();
- $result = $this->getSoapClient()->GetBlockFieldNames(array(
- 'blockName' => $blockName
- ));
- if (isset($result->GetBlockFieldNamesResult->string)) {
- if (is_array($result->GetBlockFieldNamesResult->string)) {
- $ret = $result->GetBlockFieldNamesResult->string;
- } else {
- $ret[] = $result->GetBlockFieldNamesResult->string;
- }
- }
- return $ret;
- }
- /**
- * Return all the block fields in the template
- *
- * @return array
- * @since LiveDocx 1.0
- */
- public function getBlockNames()
- {
- $this->logIn();
-
- $ret = array();
- $result = $this->getSoapClient()->GetBlockNames();
- if (isset($result->GetBlockNamesResult->string)) {
- if (is_array($result->GetBlockNamesResult->string)) {
- $ret = $result->GetBlockNamesResult->string;
- } else {
- $ret[] = $result->GetBlockNamesResult->string;
- }
- }
- return $ret;
- }
- /**
- * Set the default document properties
- *
- * @return null
- * @since LiveDocx 1.0
- */
- protected function _setDefaultDocumentProperties()
- {
- $date = new Zend_Date();
- $this->_documentProperties = array();
- $projectName = sprintf('phpLiveDocx %s', self::getVersion());
- $projectUrl = 'http://www.phpLiveDocx.org';
- $creationDate = sprintf('D:%s', $date->toString('YYYYMMddHHmmss'));
-
- // Zend_Pdf expects keys with uppercase first letter
- $this->_documentProperties['Creator'] = $projectName;
- $this->_documentProperties['Producer'] = $projectUrl;
- $this->_documentProperties['CreationDate'] = $creationDate;
- $this->_documentProperties['ModDate'] = $creationDate;
-
- // Set to true, if contents are password protected or encrypted
- $this->_documentProperties['Encrypted'] = false;
- }
- /**
- * Set the document properties
- *
- * $properties is an assoc array with the following format:
- *
- * {code}
- * $properties = array (
- * 'title' => '', // (string)
- * 'author' => '', // (string)
- * 'subject' => '', // (string)
- * 'keywords' => '', // (string)
- * );
- * {code}
- *
- * This method can only be used for PDF documents
- *
- * @param array $properties
- * @return Zend_Service_LiveDocx_MailMerge
- * @since LiveDocx 1.0
- */
- public function setDocumentProperties($properties)
- {
- // For consistency, keys in $properties are lowercase.
- // Zend_Pdf expects keys with uppercase first letter
- $keys = array('Title', 'Author', 'Subject', 'Keywords');
- foreach ($keys as $key) {
- $lowerCaseKey = strtolower($key);
- if (isset($properties[$lowerCaseKey])) {
- $this->_documentProperties[$key] = $properties[$lowerCaseKey];
- }
- }
- return $this;
- }
- /**
- * Return currently set document properties
- *
- * @return array
- * @since LiveDocx 1.0
- */
- protected function _getDocumentProperties()
- {
- return $this->_documentProperties;
- }
- /**
- * Upload a template file to LiveDocx service
- *
- * @param string $filename
- * @return void
- * @throws Zend_Service_LiveDocx_Exception
- * @since LiveDocx 1.0
- */
- public function uploadTemplate($filename)
- {
- $this->logIn();
-
- try {
- $this->getSoapClient()->UploadTemplate(array(
- 'template' => base64_encode(file_get_contents($filename)),
- 'filename' => basename($filename),
- ));
- } catch (Exception $e) {
- require_once 'Zend/Service/LiveDocx/Exception.php';
- throw new Zend_Service_LiveDocx_Exception(
- 'Cannot upload template', 0, $e
- );
- }
- }
- /**
- * Download template file from LiveDocx service
- *
- * @param string $filename
- * @return binary
- * @throws Zend_Service_LiveDocx_Exception
- * @since LiveDocx 1.0
- */
- public function downloadTemplate($filename)
- {
- $this->logIn();
-
- try {
- $result = $this->getSoapClient()->DownloadTemplate(array(
- 'filename' => basename($filename),
- ));
- } catch (Exception $e) {
- require_once 'Zend/Service/LiveDocx/Exception.php';
- throw new Zend_Service_LiveDocx_Exception(
- 'Cannot download template', 0, $e
- );
- }
- return base64_decode($result->DownloadTemplateResult);
- }
- /**
- * Delete a template file from LiveDocx service
- *
- * @param string $filename
- * @return void
- * @throws Zend_Service_LiveDocx_Exception
- * @since LiveDocx 1.0
- */
- public function deleteTemplate($filename)
- {
- $this->logIn();
-
- $this->getSoapClient()->DeleteTemplate(array(
- 'filename' => basename($filename),
- ));
- }
- /**
- * List all templates stored on LiveDocx service
- *
- * @return array
- * @since LiveDocx 1.0
- */
- public function listTemplates()
- {
- $this->logIn();
-
- $ret = array();
- $result = $this->getSoapClient()->ListTemplates();
- if (isset($result->ListTemplatesResult)) {
- $ret = $this->_backendListArrayToMultiAssocArray($result->ListTemplatesResult);
- }
- return $ret;
- }
- /**
- * Check whether a template file is available on LiveDocx service
- *
- * @param string $filename
- * @return boolean
- * @since LiveDocx 1.0
- */
- public function templateExists($filename)
- {
- $this->logIn();
-
- $result = $this->getSoapClient()->TemplateExists(array(
- 'filename' => basename($filename),
- ));
- return (boolean) $result->TemplateExistsResult;
- }
- /**
- * Share a document - i.e. the document is available to all over the Internet
- *
- * @return string
- * @since LiveDocx 1.0
- */
- public function shareDocument()
- {
- $this->logIn();
-
- $ret = null;
- $result = $this->getSoapClient()->ShareDocument();
- if (isset($result->ShareDocumentResult)) {
- $ret = (string) $result->ShareDocumentResult;
- }
- return $ret;
- }
- /**
- * List all shared documents stored on LiveDocx service
- *
- * @return array
- * @since LiveDocx 1.0
- */
- public function listSharedDocuments()
- {
- $this->logIn();
-
- $ret = array();
- $result = $this->getSoapClient()->ListSharedDocuments();
- if (isset($result->ListSharedDocumentsResult)) {
- $ret = $this->_backendListArrayToMultiAssocArray(
- $result->ListSharedDocumentsResult
- );
- }
- return $ret;
- }
- /**
- * Delete a shared document from LiveDocx service
- *
- * @param string $filename
- * @return void
- * @since LiveDocx 1.0
- */
- public function deleteSharedDocument($filename)
- {
- $this->logIn();
-
- $this->getSoapClient()->DeleteSharedDocument(array(
- 'filename' => basename($filename),
- ));
- }
- /*
- * Download a shared document from LiveDocx service
- *
- * @param string $filename
- * @return binary
- * @throws Zend_Service_LiveDocx_Exception
- * @since LiveDocx 1.0
- */
- public function downloadSharedDocument($filename)
- {
- $this->logIn();
-
- try {
- $result = $this->getSoapClient()->DownloadSharedDocument(array(
- 'filename' => basename($filename),
- ));
- } catch (Exception $e) {
- require_once 'Zend/Service/LiveDocx/Exception.php';
- throw new Zend_Service_LiveDocx_Exception(
- 'Cannot download shared document', 0, $e
- );
- }
- return base64_decode($result->DownloadSharedDocumentResult);
- }
- /**
- * Check whether a shared document is available on LiveDocx service
- *
- * @param string $filename
- * @return boolean
- * @since LiveDocx 1.0
- */
- public function sharedDocumentExists($filename)
- {
- $this->logIn();
-
- $ret = false;
- $sharedDocuments = $this->listSharedDocuments();
- foreach ($sharedDocuments as $shareDocument) {
- if (isset($shareDocument['filename'])
- && (basename($filename) === $shareDocument['filename'])
- ) {
- $ret = true;
- break;
- }
- }
- return $ret;
- }
- /**
- * Return supported template formats (lowercase)
- *
- * @return array
- * @since LiveDocx 1.0
- */
- public function getTemplateFormats()
- {
- $this->logIn();
-
- $ret = array();
- $result = $this->getSoapClient()->GetTemplateFormats();
- if (isset($result->GetTemplateFormatsResult->string)) {
- $ret = $result->GetTemplateFormatsResult->string;
- $ret = array_map('strtolower', $ret);
- }
- return $ret;
- }
- /**
- * Return supported document formats (lowercase)
- *
- * @return array
- * @since LiveDocx 1.1
- */
- public function getDocumentFormats()
- {
- $this->logIn();
-
- $ret = array();
- $result = $this->getSoapClient()->GetDocumentFormats();
- if (isset($result->GetDocumentFormatsResult->string)) {
- $ret = $result->GetDocumentFormatsResult->string;
- $ret = array_map('strtolower', $ret);
- }
- return $ret;
- }
-
- /*
- * Return supported image formats (lowercase)
- *
- * @return array
- * @since LiveDocx 1.2
- */
- public function getImageFormats()
- {
- $this->logIn();
-
- $ret = array();
- $result = $this->getSoapClient()->GetImageFormats();
- if (isset($result->GetImageFormatsResult->string)) {
- $ret = $result->GetImageFormatsResult->string;
- $ret = array_map('strtolower', $ret);
- }
- return $ret;
- }
-
- /**
- * Return the names of all fonts that are installed on backend server
- *
- * @return array
- * @since LiveDocx 1.2
- */
- public function getFontNames()
- {
- $this->logIn();
-
- $ret = array();
- $result = $this->getSoapClient()->GetFontNames();
- if (isset($result->GetFontNamesResult->string)) {
- $ret = $result->GetFontNamesResult->string;
- }
- return $ret;
- }
- /**
- * Convert LiveDocx service return value from list methods to consistent PHP array
- *
- * @param array $list
- * @return array
- * @since LiveDocx 1.0
- */
- protected function _backendListArrayToMultiAssocArray($list)
- {
- $this->logIn();
-
- $ret = array();
- if (isset($list->ArrayOfString)) {
- foreach ($list->ArrayOfString as $a) {
- if (is_array($a)) { // 1 template only
- $o = new stdClass();
- $o->string = $a;
- } else { // 2 or more templates
- $o = $a;
- }
- unset($a);
- if (isset($o->string)) {
- $date1 = new Zend_Date($o->string[3], Zend_Date::RFC_1123);
- $date2 = new Zend_Date($o->string[1], Zend_Date::RFC_1123);
- $ret[] = array (
- 'filename' => $o->string[0],
- 'fileSize' => (integer) $o->string[2],
- 'createTime' => (integer) $date1->get(Zend_Date::TIMESTAMP),
- 'modifyTime' => (integer) $date2->get(Zend_Date::TIMESTAMP),
- );
- }
- }
- }
- return $ret;
- }
- /**
- * Convert assoc array to required SOAP type
- *
- * @param array $assoc
- *
- * @return array
- * @since LiveDocx 1.0
- */
- public static function assocArrayToArrayOfArrayOfString($assoc)
- {
- $arrayKeys = array_keys($assoc);
- $arrayValues = array_values($assoc);
-
- return array($arrayKeys, $arrayValues);
- }
- /**
- * Convert multi assoc array to required SOAP type
- *
- * @param array $multi
- * @return array
- * @since LiveDocx 1.0
- */
- public static function multiAssocArrayToArrayOfArrayOfString($multi)
- {
- $arrayKeys = array_keys($multi[0]);
- $arrayValues = array();
- foreach ($multi as $v) {
- $arrayValues[] = array_values($v);
- }
- $arrayKeys = array($arrayKeys);
- return array_merge($arrayKeys, $arrayValues);
- }
- }
|