Merge pull request #9664 from konadave/CRM-19853
[civicrm-core.git] / api / v3 / ReportTemplate.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.7 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2017 |
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 = (string) 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->setAddPaging(FALSE);
152 $reportInstance->setOffsetValue($options['offset']);
153 $reportInstance->beginPostProcessCommon();
154 $sql = $reportInstance->buildQuery();
155 $rows = $metadata = $requiredMetadata = array();
156 $reportInstance->buildRows($sql, $rows);
157 $reportInstance->formatDisplay($rows);
158
159 if (isset($params['options']) && !empty($params['options']['metadata'])) {
160 $requiredMetadata = $params['options']['metadata'];
161 if (in_array('title', $requiredMetadata)) {
162 $metadata['metadata']['title'] = $reportInstance->getTitle();
163 }
164 if (in_array('labels', $requiredMetadata)) {
165 foreach ($reportInstance->_columnHeaders as $key => $header) {
166 // Would be better just to expect reports to provide titles but reports are not consistent so we anticipate empty
167 //NB I think these are already translated
168 $metadata['metadata']['labels'][$key] = !empty($header['title']) ? $header['title'] : '';
169 }
170 }
171 if (in_array('sql', $requiredMetadata)) {
172 $metadata['metadata']['sql'] = $reportInstance->getReportSql();
173 }
174 }
175 return array($rows, $reportInstance, $metadata);
176 }
177
178 /**
179 * Get statistics from a given report.
180 *
181 * @param array $params
182 *
183 * @return array
184 * API result array
185 */
186 function civicrm_api3_report_template_getstatistics($params) {
187 list($rows, $reportInstance, $metadata) = _civicrm_api3_report_template_getrows($params);
188 $stats = $reportInstance->statistics($rows);
189 return civicrm_api3_create_success($stats, $params, 'ReportTemplate', 'getstatistics', CRM_Core_DAO::$_nullObject, $metadata);
190 }
191 /**
192 * Adjust metadata for template getrows action.
193 *
194 * @param array $params
195 * Input parameters.
196 */
197 function _civicrm_api3_report_template_getrows_spec(&$params) {
198 $params['report_id'] = array(
199 'title' => 'Report ID - eg. member/lapse',
200 );
201 }
202
203 /* @codingStandardsIgnoreStart
204 function civicrm_api3_report_template_getfields($params) {
205 return civicrm_api3_create_success(array(
206 'id' => array(
207 'name' => 'id',
208 'type' => 1,
209 'required' => 1,
210 ),
211 'option_group_id' => array(
212 'name' => 'option_group_id',
213 'type' => 1,
214 'required' => 1,
215 'FKClassName' => 'CRM_Core_DAO_OptionGroup',
216 ),
217 'label' => array(
218 'name' => 'label',
219 'type' => 2,
220 'title' => 'Option Label',
221 'required' => 1,
222 'maxlength' => 255,
223 'size' => 45,
224 ),
225 'value' => array(
226 'name' => 'value',
227 'type' => 2,
228 'title' => 'Option Value',
229 'required' => 1,
230 'maxlength' => 512,
231 'size' => 45,
232 ),
233 'name' => array(
234 'name' => 'name',
235 'type' => 2,
236 'title' => 'Option Name',
237 'maxlength' => 255,
238 'size' => 45,
239 'import' => 1,
240 'where' => 'civicrm_option_value.name',
241 'export' => 1,
242 ),
243 'grouping' => array(
244 'name' => 'grouping',
245 'type' => 2,
246 'title' => 'Option Grouping Name',
247 'maxlength' => 255,
248 'size' => 45,
249 ),
250 'filter' => array(
251 'name' => 'filter',
252 'type' => 1,
253 'title' => 'Filter',
254 ),
255 'is_default' => array(
256 'name' => 'is_default',
257 'type' => 16,
258 ),
259 'weight' => array(
260 'name' => 'weight',
261 'type' => 1,
262 'title' => 'Weight',
263 'required' => 1,
264 ),
265 'description' => array(
266 'name' => 'description',
267 'type' => 32,
268 'title' => 'Description',
269 'rows' => 8,
270 'cols' => 60,
271 ),
272 'is_optgroup' => array(
273 'name' => 'is_optgroup',
274 'type' => 16,
275 ),
276 'is_reserved' => array(
277 'name' => 'is_reserved',
278 'type' => 16,
279 ),
280 'is_active' => array(
281 'name' => 'is_active',
282 'type' => 16,
283 ),
284 'component_id' => array(
285 'name' => 'component_id',
286 'type' => 1,
287 'FKClassName' => 'CRM_Core_DAO_Component',
288 ),
289 'domain_id' => array(
290 'name' => 'domain_id',
291 'type' => 1,
292 'FKClassName' => 'CRM_Core_DAO_Domain',
293 ),
294 'visibility_id' => array(
295 'name' => 'visibility_id',
296 'type' => 1,
297 'default' => 'UL',
298 ),
299 ));
300 }
301 @codingStandardsIgnoreEnd */