1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978
|
<?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-2010 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-2010 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';
/**
* 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)
{
$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 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;
}
/**
* 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;
}
/**
* 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);
}
}
|