Merge pull request #6574 from eileenmcnaughton/CRM-17070
[civicrm-core.git] / api / v3 / ReportTemplate.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.7 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2015 |
7 +--------------------------------------------------------------------+
8 | This file is a part of CiviCRM. |
9 | |
10 | CiviCRM is free software; you can copy, modify, and distribute it |
11 | under the terms of the GNU Affero General Public License |
12 | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
13 | |
14 | CiviCRM is distributed in the hope that it will be useful, but |
15 | WITHOUT ANY WARRANTY; without even the implied warranty of |
16 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
17 | See the GNU Affero General Public License for more details. |
18 | |
19 | You should have received a copy of the GNU Affero General Public |
20 | License and the CiviCRM Licensing Exception along |
21 | with this program; if not, contact CiviCRM LLC |
22 | at info[AT]civicrm[DOT]org. If you have questions about the |
23 | GNU Affero General Public License or the licensing of CiviCRM, |
24 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
25 +--------------------------------------------------------------------+
26 */
27
28 /**
29 * This api exposes CiviCRM report templates.
30 *
31 * @package CiviCRM_APIv3
32 */
33
34 /**
35 * Retrieve a report template.
36 *
37 * @param array $params
38 *
39 * @return array
40 * API result array
41 */
42 function civicrm_api3_report_template_get($params) {
43 require_once 'api/v3/OptionValue.php';
44 $params['option_group_id'] = CRM_Core_DAO::getFieldValue(
45 'CRM_Core_DAO_OptionGroup', 'report_template', 'id', 'name'
46 );
47 return civicrm_api3_option_value_get($params);
48 }
49
50 /**
51 * Add an OptionValue.
52 *
53 * OptionValues are used to classify CRM entities (including Contacts, Groups and Actions).
54 *
55 * @param array $params
56 *
57 * @return array
58 * API result array
59 */
60 function civicrm_api3_report_template_create($params) {
61 require_once 'api/v3/OptionValue.php';
62 $params['option_group_id'] = CRM_Core_DAO::getFieldValue(
63 'CRM_Core_DAO_OptionGroup', 'report_template', 'id', 'name'
64 );
65 if (!empty($params['component_id']) && !is_numeric($params['component_id'])) {
66 $components = CRM_Core_PseudoConstant::get('CRM_Core_DAO_OptionValue', 'component_id', array('onlyActive' => FALSE, 'labelColumn' => 'name'));
67 $params['component_id'] = array_search($params['component_id'], $components);
68 }
69 return civicrm_api3_option_value_create($params);
70 }
71
72 /**
73 * Adjust Metadata for Create action.
74 *
75 * The metadata is used for setting defaults, documentation & validation.
76 *
77 * @param array $params
78 * Array of parameters determined by getfields.
79 */
80 function _civicrm_api3_report_template_create_spec(&$params) {
81 require_once 'api/v3/OptionValue.php';
82 _civicrm_api3_option_value_create_spec($params);
83 $params['value']['api.aliases'] = array('report_url');
84 $params['name']['api.aliases'] = array('class_name');
85 $params['option_group_id']['api.default'] = CRM_Core_DAO::getFieldValue(
86 'CRM_Core_DAO_OptionGroup', 'report_template', 'id', 'name'
87 );
88 // $params['component']['api.required'] = TRUE;
89 }
90
91 /**
92 * Deletes an existing ReportTemplate.
93 *
94 * @param array $params
95 *
96 * @return array
97 * API result array
98 */
99 function civicrm_api3_report_template_delete($params) {
100 require_once 'api/v3/OptionValue.php';
101 return civicrm_api3_option_value_delete($params);
102 }
103
104 /**
105 * Retrieve rows from a report template.
106 *
107 * @param array $params
108 * Input parameters.
109 *
110 * @return array
111 * API result array
112 */
113 function civicrm_api3_report_template_getrows($params) {
114 civicrm_api3_verify_one_mandatory($params, NULL, array('report_id', 'instance_id'));
115 list($rows, $instance, $metadata) = _civicrm_api3_report_template_getrows($params);
116 return civicrm_api3_create_success($rows, $params, 'ReportTemplate', 'getrows', CRM_Core_DAO::$_nullObject, $metadata);
117 }
118
119 /**
120 * Get report template rows.
121 *
122 * @param array $params
123 *
124 * @return array
125 * @throws API_Exception
126 * @throws CiviCRM_API3_Exception
127 */
128 function _civicrm_api3_report_template_getrows($params) {
129 if (empty($params['report_id'])) {
130 $params['report_id'] = civicrm_api3('report_instance', 'getvalue', array('id' => $params['instance_id'], 'return' => 'report_id'));
131 }
132
133 $class = civicrm_api3('option_value', 'getvalue', array(
134 'option_group_name' => 'report_template',
135 'return' => 'name',
136 'value' => $params['report_id'],
137 )
138 );
139
140 $reportInstance = new $class();
141 if (!empty($params['instance_id'])) {
142 $reportInstance->setID($params['instance_id']);
143 }
144 $reportInstance->setParams($params);
145 $reportInstance->noController = TRUE;
146 $reportInstance->preProcess();
147 $reportInstance->setDefaultValues(FALSE);
148 $reportInstance->setParams(array_merge($reportInstance->getDefaultValues(), $params));
149 $options = _civicrm_api3_get_options_from_params($params, TRUE, 'ReportTemplate', 'get');
150 $reportInstance->setLimitValue($options['limit']);
151 $reportInstance->setOffsetValue($options['offset']);
152 $reportInstance->beginPostProcessCommon();
153 $sql = $reportInstance->buildQuery();
154 $rows = $metadata = $requiredMetadata = array();
155 $reportInstance->buildRows($sql, $rows);
156 $requiredMetadata = array();
157 if (isset($params['options']) && !empty($params['options']['metadata'])) {
158 $requiredMetadata = $params['options']['metadata'];
159 if (in_array('title', $requiredMetadata)) {
160 $metadata['metadata']['title'] = $reportInstance->getTitle();
161 }
162 if (in_array('labels', $requiredMetadata)) {
163 foreach ($reportInstance->_columnHeaders as $key => $header) {
164 //would be better just to expect reports to provide titles but reports are not consistent so we anticipate empty
165 //NB I think these are already translated
166 $metadata['metadata']['labels'][$key] = !empty($header['title']) ? $header['title'] : '';
167 }
168 }
169 }
170 return array($rows, $reportInstance, $metadata);
171 }
172
173 /**
174 * Get statistics from a given report.
175 *
176 * @param array $params
177 *
178 * @return array
179 * API result array
180 */
181 function civicrm_api3_report_template_getstatistics($params) {
182 list($rows, $reportInstance, $metadata) = _civicrm_api3_report_template_getrows($params);
183 $stats = $reportInstance->statistics($rows);
184 return civicrm_api3_create_success($stats, $params, 'ReportTemplate', 'getstatistics', CRM_Core_DAO::$_nullObject, $metadata);
185 }
186 /**
187 * Adjust metadata for template getrows action.
188 *
189 * @param array $params
190 * Input parameters.
191 */
192 function _civicrm_api3_report_template_getrows_spec(&$params) {
193 $params['report_id'] = array(
194 'title' => 'Report ID - eg. member/lapse',
195 );
196 }
197
198 /* @codingStandardsIgnoreStart
199 function civicrm_api3_report_template_getfields($params) {
200 return civicrm_api3_create_success(array(
201 'id' => array(
202 'name' => 'id',
203 'type' => 1,
204 'required' => 1,
205 ),
206 'option_group_id' => array(
207 'name' => 'option_group_id',
208 'type' => 1,
209 'required' => 1,
210 'FKClassName' => 'CRM_Core_DAO_OptionGroup',
211 ),
212 'label' => array(
213 'name' => 'label',
214 'type' => 2,
215 'title' => 'Option Label',
216 'required' => 1,
217 'maxlength' => 255,
218 'size' => 45,
219 ),
220 'value' => array(
221 'name' => 'value',
222 'type' => 2,
223 'title' => 'Option Value',
224 'required' => 1,
225 'maxlength' => 512,
226 'size' => 45,
227 ),
228 'name' => array(
229 'name' => 'name',
230 'type' => 2,
231 'title' => 'Option Name',
232 'maxlength' => 255,
233 'size' => 45,
234 'import' => 1,
235 'where' => 'civicrm_option_value.name',
236 'export' => 1,
237 ),
238 'grouping' => array(
239 'name' => 'grouping',
240 'type' => 2,
241 'title' => 'Option Grouping Name',
242 'maxlength' => 255,
243 'size' => 45,
244 ),
245 'filter' => array(
246 'name' => 'filter',
247 'type' => 1,
248 'title' => 'Filter',
249 ),
250 'is_default' => array(
251 'name' => 'is_default',
252 'type' => 16,
253 ),
254 'weight' => array(
255 'name' => 'weight',
256 'type' => 1,
257 'title' => 'Weight',
258 'required' => 1,
259 ),
260 'description' => array(
261 'name' => 'description',
262 'type' => 32,
263 'title' => 'Description',
264 'rows' => 8,
265 'cols' => 60,
266 ),
267 'is_optgroup' => array(
268 'name' => 'is_optgroup',
269 'type' => 16,
270 ),
271 'is_reserved' => array(
272 'name' => 'is_reserved',
273 'type' => 16,
274 ),
275 'is_active' => array(
276 'name' => 'is_active',
277 'type' => 16,
278 ),
279 'component_id' => array(
280 'name' => 'component_id',
281 'type' => 1,
282 'FKClassName' => 'CRM_Core_DAO_Component',
283 ),
284 'domain_id' => array(
285 'name' => 'domain_id',
286 'type' => 1,
287 'FKClassName' => 'CRM_Core_DAO_Domain',
288 ),
289 'visibility_id' => array(
290 'name' => 'visibility_id',
291 'type' => 1,
292 'default' => 'UL',
293 ),
294 ));
295 }
296 @codingStandardsIgnoreEnd */