Source of file ManagerAbstract.php
Size: 5,068 Bytes - Last Modified: 2015-02-05T12:57:19+01:00
/www-data/git/ricardo/src/Diglin/Ricardo/Managers/ManagerAbstract.php
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168 | <?php /** * Diglin GmbH - Switzerland * * This file is part of a Diglin GmbH module. * * This Diglin GmbH module is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License version 3 as * published by the Free Software Foundation. * * This script is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. * * @author Sylvain Rayé <support at diglin.com> * @category Diglin * @package Diglin_Ricardo * @copyright Copyright (c) 2011-2015 Diglin (http://www.diglin.com) * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3) */ namespace Diglin\Ricardo\Managers; use Diglin\Ricardo\Core\Helper; use Diglin\Ricardo\Service; use Diglin\Ricardo\Exceptions\ExceptionAbstract; use Diglin\Ricardo\Exceptions\SecurityException; use Diglin\Ricardo\Enums\SecurityErrors as SecurityErrorsEnum; /** * Class ManagerAbstract * * @package Diglin\Ricardo\Managers */ abstract class ManagerAbstract { /** * @var string */ protected $_serviceName; /** * @var Service */ protected $_serviceManager; /** * @var Helper */ protected $_helper; /** * @param Service $serviceManager */ public function __construct(Service $serviceManager) { $this->_serviceManager = $serviceManager; } /** * @return Helper */ public function getHelper() { if (!$this->_helper) { $this->_helper = new Helper(); } return $this->_helper; } /** * @param string $method * @param mixed $parameters * @return array * @throws \Exception * @throws SecurityException */ protected function _proceed($method, $parameters = null) { if (!$this->_serviceName) { throw new ExceptionAbstract('Service Name missing to proceed from Manager'); } $result = $this->_serviceManager->proceed($this->_serviceName, $method, $parameters); if (is_null($result)) { throw new \Exception($this->_serviceManager->getApi()->getLastDebug()); } try { $this->extractError((array) $result); } catch (SecurityException $e) { switch ($e->getCode()) { case SecurityErrorsEnum::SESSIONEXPIRED: $this->_serviceManager->getSecurityManager()->refreshToken(); $result = self::_proceed($method, $parameters); break; case SecurityErrorsEnum::TOKENERROR: case SecurityErrorsEnum::TOKENEXPIRED: case SecurityErrorsEnum::TEMPORAYCREDENTIALUNVALIDATED: // We init the validation url to be used later in any process (e.g. re-authorization) $this->_serviceManager->getSecurityManager()->getValidationUrl(true); throw new SecurityException('Token Credential must be recreated! Please, authorize again the access to the Ricardo API. Original Error Code: '. $e->getCode(), SecurityErrorsEnum::TOKEN_AUTHORIZATION); break; case SecurityErrorsEnum::TEMPORAYCREDENTIALEXPIRED: $this->_serviceManager->getSecurityManager()->getTemporaryToken(true); $result = self::_proceed($method, $parameters); break; default: throw $e; break; } } return $result; } /** * Extract code error and type from API call * * @param array $result * @throw \Exception */ protected function extractError(array $result) { if (isset($result['ErrorCodesType'])) { if (count($result['ErrorCodes']) > 1) { //@todo handle when several errors code are returned e.g. by inserting an article } $errorCodeType = $result['ErrorCodesType']; $errorType = $result['ErrorType']; if (isset($result['ErrorCodes'])) { $errorCode = array_shift($result['ErrorCodes']); } if (empty($errorCode)) { $errorCode = array('Key' => null); $errorCodeType .= ' ' . $errorType; } $classname = '\Diglin\Ricardo\Exceptions\\' . $errorType; if (!class_exists($classname)) { $classname = '\Exception'; } throw new $classname($errorCodeType, $errorCode['Key']); } } /** * @return Service */ public function getServiceManager() { return $this->_serviceManager; } /** * @return string */ public function getTypeOfToken() { return $this->_serviceManager->get($this->_serviceName)->getTypeOfToken(); } } |