| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138 |
- <?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-2015 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-2015 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';
- const WSDL = 'https://api.livedocx.com/2.0/mailmerge.asmx?WSDL';
- /**
- * Field values
- *
- * @var array
- * @since LiveDocx 1.0
- */
- protected $_fieldValues;
- /**
- * Block field values
- *
- * @var array
- * @since LiveDocx 1.0
- */
- protected $_blockFieldValues;
- /**
- * 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();
- 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)
- {
- if (!is_readable($filename)) {
- throw new Zend_Service_LiveDocx_Exception(
- 'Cannot read local template from disk.'
- );
- }
- $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
- );
- }
- 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)
- {
- $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
- );
- }
- 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();
- $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
- );
- }
- return base64_decode($result->RetrieveDocumentResult);
- }
- /**
- * 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;
- }
- /**
- * 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 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;
- }
- /**
- * Return supported document access options
- *
- * @return array
- * @since LiveDocx 1.2 Premium
- */
- public function getDocumentAccessOptions()
- {
- $this->logIn();
- $ret = array();
- $result = $this->getSoapClient()->GetDocumentAccessOptions();
- if (isset($result->GetDocumentAccessOptionsResult->string)) {
- $ret = $result->GetDocumentAccessOptionsResult->string;
- }
- return $ret;
- }
- /**
- * Return supported image formats from which can be imported (lowercase)
- *
- * @return array
- * @since LiveDocx 2.0
- */
- public function getImageImportFormats()
- {
- $this->logIn();
- $ret = array();
- $result = $this->getSoapClient()->GetImageImportFormats();
- if (isset($result->GetImageImportFormatsResult->string)) {
- $ret = $result->GetImageImportFormatsResult->string;
- $ret = array_map('strtolower', $ret);
- }
- return $ret;
- }
- /**
- * Return supported image formats to which can be exported (lowercase)
- *
- * @return array
- * @since LiveDocx 2.0
- */
- public function getImageExportFormats()
- {
- $this->logIn();
- $ret = array();
- $result = $this->getSoapClient()->GetImageExportFormats();
- if (isset($result->GetImageExportFormatsResult->string)) {
- $ret = $result->GetImageExportFormatsResult->string;
- $ret = array_map('strtolower', $ret);
- }
- return $ret;
- }
- /*
- * Return supported image formats (lowercase)
- *
- * @return array
- * @since LiveDocx 1.2
- * @deprecated since LiveDocx 2.0
- */
- public function getImageFormats()
- {
- $replacement = 'getImageExportFormats';
- /*
- $errorMessage = sprintf(
- "%s::%s is deprecated as of LiveDocx 2.0. "
- . "It has been replaced by %s::%s() (drop in replacement)",
- __CLASS__, __FUNCTION__, __CLASS__, $replacement);
- trigger_error($errorMessage, E_USER_NOTICE);
- */
- return $this->$replacement();
- }
- /**
- * Upload an image file to LiveDocx service
- *
- * @param string $filename
- * @return void
- * @throws Zend_Service_LiveDocx_Exception
- * @since LiveDocx 2.0
- */
- public function uploadImage($filename)
- {
- $this->logIn();
- try {
- $this->getSoapClient()->UploadImage(array(
- 'image' => 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 image', 0, $e
- );
- }
- }
- /**
- * Download an image file from LiveDocx service
- *
- * @param string $filename
- * @return void
- * @throws Zend_Service_LiveDocx_Exception
- * @since LiveDocx 2.0
- */
- public function downloadImage($filename)
- {
- $this->logIn();
- try {
- $result = $this->getSoapClient()->DownloadImage(array(
- 'filename' => basename($filename),
- ));
- } catch (Exception $e) {
- require_once 'Zend/Service/LiveDocx/Exception.php';
- throw new Zend_Service_LiveDocx_Exception(
- 'Cannot download image', 0, $e
- );
- }
- return base64_decode($result->DownloadImageResult);
- }
- /**
- * List all images stored on LiveDocx service
- *
- * @return array
- * @since LiveDocx 2.0
- */
- public function listImages()
- {
- $this->logIn();
- $ret = array();
- $result = $this->getSoapClient()->ListImages();
- if (isset($result->ListImagesResult)) {
- $ret = $this->_backendListArrayToMultiAssocArray($result->ListImagesResult);
- }
- return $ret;
- }
- /**
- * Delete an image file from LiveDocx service
- *
- * @param string $filename
- * @return void
- * @throws Zend_Service_LiveDocx_Exception
- * @since LiveDocx 2.0
- */
- public function deleteImage($filename)
- {
- $this->logIn();
- $this->getSoapClient()->DeleteImage(array(
- 'filename' => basename($filename),
- ));
- }
- /**
- * Check whether an image file is available on LiveDocx service
- *
- * @param string $filename
- * @return boolean
- * @since LiveDocx 2.0
- */
- public function imageExists($filename)
- {
- $this->logIn();
- $result = $this->getSoapClient()->ImageExists(array(
- 'filename' => basename($filename),
- ));
- return (boolean) $result->ImageExistsResult;
- }
- /**
- * 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);
- }
- // -------------------------------------------------------------------------
- }
|