177 lines
6.6 KiB
PHP
177 lines
6.6 KiB
PHP
<?php
|
|
/*
|
|
+--------------------------------------------------------------------+
|
|
| CiviCRM version 4.7 |
|
|
+--------------------------------------------------------------------+
|
|
| Copyright CiviCRM LLC (c) 2004-2017 |
|
|
+--------------------------------------------------------------------+
|
|
| This file is a part of CiviCRM. |
|
|
| |
|
|
| CiviCRM is free software; you can copy, modify, and distribute it |
|
|
| under the terms of the GNU Affero General Public License |
|
|
| Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
|
|
| |
|
|
| CiviCRM 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 Affero General Public License for more details. |
|
|
| |
|
|
| You should have received a copy of the GNU Affero General Public |
|
|
| License and the CiviCRM Licensing Exception along |
|
|
| with this program; if not, contact CiviCRM LLC |
|
|
| at info[AT]civicrm[DOT]org. If you have questions about the |
|
|
| GNU Affero General Public License or the licensing of CiviCRM, |
|
|
| see the CiviCRM license FAQ at http://civicrm.org/licensing |
|
|
+--------------------------------------------------------------------+
|
|
*/
|
|
|
|
namespace Civi\API\Subscriber;
|
|
|
|
use Civi\API\Events;
|
|
use Symfony\Component\EventDispatcher\EventSubscriberInterface;
|
|
|
|
/**
|
|
* Class TransactionSubscriber
|
|
*
|
|
* Implement transaction management for API calls. Two API options are accepted:
|
|
* - is_transactional: bool|'nest' - if true, then all work is done inside a
|
|
* transaction. By default, true for mutator actions (C-UD). 'nest' will
|
|
* force creation of a nested transaction; otherwise, the default is to
|
|
* re-use any existing transactions.
|
|
* - options.force_rollback: bool - if true, all work is done in a nested
|
|
* transaction which will be rolled back.
|
|
*
|
|
* @package Civi\API\Subscriber
|
|
*/
|
|
class TransactionSubscriber implements EventSubscriberInterface {
|
|
/**
|
|
* @return array
|
|
*/
|
|
public static function getSubscribedEvents() {
|
|
return array(
|
|
Events::PREPARE => array('onApiPrepare', Events::W_EARLY),
|
|
Events::RESPOND => array('onApiRespond', Events::W_MIDDLE),
|
|
Events::EXCEPTION => array('onApiException', Events::W_EARLY),
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @var array (scalar $apiRequestId => CRM_Core_Transaction $tx)
|
|
*/
|
|
private $transactions = array();
|
|
|
|
/**
|
|
* @var array (scalar $apiRequestId => bool)
|
|
*
|
|
* A list of requests which should be forcibly rolled back to
|
|
* their save points.
|
|
*/
|
|
private $forceRollback = array();
|
|
|
|
/**
|
|
* Determine if an API request should be treated as transactional.
|
|
*
|
|
* @param \Civi\API\Provider\ProviderInterface $apiProvider
|
|
* The API provider responsible for this request.
|
|
* @param array $apiRequest
|
|
* The full API request.
|
|
* @return bool
|
|
*/
|
|
public function isTransactional($apiProvider, $apiRequest) {
|
|
if ($this->isForceRollback($apiProvider, $apiRequest)) {
|
|
return TRUE;
|
|
}
|
|
if (isset($apiRequest['params']['is_transactional'])) {
|
|
return \CRM_Utils_String::strtobool($apiRequest['params']['is_transactional']) || $apiRequest['params']['is_transactional'] == 'nest';
|
|
}
|
|
return strtolower($apiRequest['action']) == 'create' || strtolower($apiRequest['action']) == 'delete' || strtolower($apiRequest['action']) == 'submit';
|
|
}
|
|
|
|
/**
|
|
* Determine if caller wants us to *always* rollback.
|
|
*
|
|
* @param \Civi\API\Provider\ProviderInterface $apiProvider
|
|
* The API provider responsible for this request.
|
|
* @param array $apiRequest
|
|
* The full API request.
|
|
* @return bool
|
|
*/
|
|
public function isForceRollback($apiProvider, $apiRequest) {
|
|
// FIXME: When APIv3 uses better parsing, only one check will be needed.
|
|
if (isset($apiRequest['params']['options']['force_rollback'])) {
|
|
return \CRM_Utils_String::strtobool($apiRequest['params']['options']['force_rollback']);
|
|
}
|
|
if (isset($apiRequest['options']['force_rollback'])) {
|
|
return \CRM_Utils_String::strtobool($apiRequest['options']['force_rollback']);
|
|
}
|
|
return FALSE;
|
|
}
|
|
|
|
/**
|
|
* Determine if caller wants a nested transaction or a re-used transaction.
|
|
*
|
|
* @param \Civi\API\Provider\ProviderInterface $apiProvider
|
|
* The API provider responsible for this request.
|
|
* @param array $apiRequest
|
|
* The full API request.
|
|
* @return bool
|
|
* True if a new nested transaction is required; false if active tx may be used
|
|
*/
|
|
public function isNested($apiProvider, $apiRequest) {
|
|
if ($this->isForceRollback($apiProvider, $apiRequest)) {
|
|
return TRUE;
|
|
}
|
|
if (isset($apiRequest['params']['is_transactional']) && $apiRequest['params']['is_transactional'] === 'nest') {
|
|
return TRUE;
|
|
}
|
|
return FALSE;
|
|
}
|
|
|
|
/**
|
|
* Open a new transaction instance (if appropriate in the current policy)
|
|
*
|
|
* @param \Civi\API\Event\PrepareEvent $event
|
|
* API preparation event.
|
|
*/
|
|
public function onApiPrepare(\Civi\API\Event\PrepareEvent $event) {
|
|
$apiRequest = $event->getApiRequest();
|
|
if ($this->isTransactional($event->getApiProvider(), $apiRequest)) {
|
|
$this->transactions[$apiRequest['id']] = new \CRM_Core_Transaction($this->isNested($event->getApiProvider(), $apiRequest));
|
|
}
|
|
if ($this->isForceRollback($event->getApiProvider(), $apiRequest)) {
|
|
$this->transactions[$apiRequest['id']]->rollback();
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Close any pending transactions.
|
|
*
|
|
* @param \Civi\API\Event\RespondEvent $event
|
|
* API response event.
|
|
*/
|
|
public function onApiRespond(\Civi\API\Event\RespondEvent $event) {
|
|
$apiRequest = $event->getApiRequest();
|
|
if (isset($this->transactions[$apiRequest['id']])) {
|
|
if (civicrm_error($event->getResponse())) {
|
|
$this->transactions[$apiRequest['id']]->rollback();
|
|
}
|
|
unset($this->transactions[$apiRequest['id']]);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Rollback the pending transaction.
|
|
*
|
|
* @param \Civi\API\Event\ExceptionEvent $event
|
|
* API exception event.
|
|
*/
|
|
public function onApiException(\Civi\API\Event\ExceptionEvent $event) {
|
|
$apiRequest = $event->getApiRequest();
|
|
if (isset($this->transactions[$apiRequest['id']])) {
|
|
$this->transactions[$apiRequest['id']]->rollback();
|
|
unset($this->transactions[$apiRequest['id']]);
|
|
}
|
|
}
|
|
|
|
}
|