First commit
This commit is contained in:
commit
c6e2478c40
13918 changed files with 2303184 additions and 0 deletions
132
sites/all/modules/civicrm/api/v3/Logging.php
Normal file
132
sites/all/modules/civicrm/api/v3/Logging.php
Normal file
|
@ -0,0 +1,132 @@
|
|||
<?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 |
|
||||
+--------------------------------------------------------------------+
|
||||
*/
|
||||
|
||||
/**
|
||||
* This api exposes functionality for interacting with the logging functionality.
|
||||
*
|
||||
* @package CiviCRM_APIv3
|
||||
*/
|
||||
|
||||
/**
|
||||
* Revert a log change.
|
||||
*
|
||||
* @param array $params
|
||||
*
|
||||
* @return array
|
||||
* API Success Array
|
||||
* @throws \API_Exception
|
||||
* @throws \Civi\API\Exception\UnauthorizedException
|
||||
*/
|
||||
function civicrm_api3_logging_revert($params) {
|
||||
$schema = new CRM_Logging_Schema();
|
||||
$reverter = new CRM_Logging_Reverter($params['log_conn_id'], CRM_Utils_Array::value('log_date', $params));
|
||||
$tables = !empty($params['tables']) ? (array) $params['tables'] : $schema->getLogTablesForContact();
|
||||
$reverter->calculateDiffsFromLogConnAndDate($tables);
|
||||
$reverter->revert();
|
||||
return civicrm_api3_create_success(1);
|
||||
}
|
||||
|
||||
/**
|
||||
* Get a log change.
|
||||
*
|
||||
* @param array $params
|
||||
*
|
||||
* @throws \API_Exception
|
||||
* @throws \Civi\API\Exception\UnauthorizedException
|
||||
*/
|
||||
function _civicrm_api3_logging_revert_spec(&$params) {
|
||||
$params['log_conn_id'] = array(
|
||||
'title' => 'Logging Connection ID',
|
||||
'type' => CRM_Utils_Type::T_STRING,
|
||||
'api.required' => TRUE,
|
||||
);
|
||||
$params['log_date'] = array(
|
||||
'title' => 'Logging Timestamp',
|
||||
'type' => CRM_Utils_Type::T_DATE + CRM_Utils_Type::T_TIME,
|
||||
);
|
||||
$params['interval'] = array(
|
||||
'title' => ts('Interval (required if date is included)'),
|
||||
'type' => CRM_Utils_Type::T_STRING,
|
||||
'api.default' => '10 SECOND',
|
||||
'description' => ts('Used when log_date is passed in'),
|
||||
);
|
||||
|
||||
$params['tables'] = array(
|
||||
'title' => ts('Tables to revert'),
|
||||
'type' => CRM_Utils_Type::T_STRING,
|
||||
'description' => ts('Tables to revert, if not set all contact-referring entities will be reverted'),
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* Get a log change.
|
||||
*
|
||||
* @param array $params
|
||||
*
|
||||
* @return array
|
||||
* API Success Array
|
||||
* @throws \API_Exception
|
||||
* @throws \Civi\API\Exception\UnauthorizedException
|
||||
*/
|
||||
function civicrm_api3_logging_get($params) {
|
||||
$schema = new CRM_Logging_Schema();
|
||||
$interval = (empty($params['log_date'])) ? NULL : $params['interval'];
|
||||
$differ = new CRM_Logging_Differ($params['log_conn_id'], CRM_Utils_Array::value('log_date', $params), $interval);
|
||||
$tables = !empty($params['tables']) ? (array) $params['tables'] : $schema->getLogTablesForContact();
|
||||
return civicrm_api3_create_success($differ->getAllChangesForConnection($tables));
|
||||
}
|
||||
|
||||
/**
|
||||
* Get a log change.
|
||||
*
|
||||
* @param array $params
|
||||
*
|
||||
* @throws \API_Exception
|
||||
* @throws \Civi\API\Exception\UnauthorizedException
|
||||
*/
|
||||
function _civicrm_api3_logging_get_spec(&$params) {
|
||||
$params['log_conn_id'] = array(
|
||||
'title' => 'Logging Connection ID',
|
||||
'type' => CRM_Utils_Type::T_STRING,
|
||||
'api.required' => TRUE,
|
||||
);
|
||||
$params['log_date'] = array(
|
||||
'title' => 'Logging Timestamp',
|
||||
'type' => CRM_Utils_Type::T_DATE + CRM_Utils_Type::T_TIME,
|
||||
);
|
||||
$params['interval'] = array(
|
||||
'title' => ts('Interval (required if date is included)'),
|
||||
'type' => CRM_Utils_Type::T_STRING,
|
||||
'api.default' => '10 SECOND',
|
||||
'description' => ts('Used when log_date is passed in'),
|
||||
);
|
||||
$params['tables'] = array(
|
||||
'title' => ts('Tables to query'),
|
||||
'type' => CRM_Utils_Type::T_STRING,
|
||||
'description' => ts('Tables to query, if not set all contact-referring entities will be queried'),
|
||||
);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue