3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.6 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2015 |
7 +--------------------------------------------------------------------+
8 | This file is a part of CiviCRM. |
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. |
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. |
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 +--------------------------------------------------------------------+
31 * @copyright CiviCRM LLC (c) 2004-2015
35 class CRM_Report_Utils_Report
{
38 * @param int $instanceID
42 public static function getValueFromUrl($instanceID = NULL) {
44 $optionVal = CRM_Core_DAO
::getFieldValue('CRM_Report_DAO_ReportInstance',
50 $config = CRM_Core_Config
::singleton();
51 $args = explode('/', $_GET[$config->userFrameworkURLVar
]);
53 // remove 'civicrm/report' from args
57 // put rest of arguement back in the form of url, which is how value
58 // is stored in option value table
59 $optionVal = implode('/', $args);
65 * @param int $instanceID
69 public static function getValueIDFromUrl($instanceID = NULL) {
70 $optionVal = self
::getValueFromUrl($instanceID);
73 $templateInfo = CRM_Core_OptionGroup
::getRowValues('report_template', "{$optionVal}", 'value');
74 return array(CRM_Utils_Array
::value('id', $templateInfo), $optionVal);
85 public static function getInstanceIDForValue($optionVal) {
86 static $valId = array();
88 if (!array_key_exists($optionVal, $valId)) {
90 SELECT MIN(id) FROM civicrm_report_instance
91 WHERE report_id = %1";
93 $params = array(1 => array($optionVal, 'String'));
94 $valId[$optionVal] = CRM_Core_DAO
::singleValueQuery($sql, $params);
96 return $valId[$optionVal];
104 public static function getInstanceIDForPath($path = NULL) {
105 static $valId = array();
107 // if $path is null, try to get it from url
108 $path = self
::getInstancePath();
110 if ($path && !array_key_exists($path, $valId)) {
112 SELECT MIN(id) FROM civicrm_report_instance
113 WHERE TRIM(BOTH '/' FROM CONCAT(report_id, '/', name)) = %1";
115 $params = array(1 => array($path, 'String'));
116 $valId[$path] = CRM_Core_DAO
::singleValueQuery($sql, $params);
118 return CRM_Utils_Array
::value($path, $valId);
123 * @param string $query
124 * @param bool $absolute
125 * @param int $instanceID
126 * @param array $drilldownReport
128 * @return bool|string
130 public static function getNextUrl($urlValue, $query = 'reset=1', $absolute = FALSE, $instanceID = NULL, $drilldownReport = array()) {
132 $drilldownInstanceID = FALSE;
133 if (array_key_exists($urlValue, $drilldownReport)) {
134 $drilldownInstanceID = CRM_Core_DAO
::getFieldValue('CRM_Report_DAO_ReportInstance', $instanceID, 'drilldown_id', 'id');
137 if (!$drilldownInstanceID) {
138 $drilldownInstanceID = self
::getInstanceIDForValue($urlValue);
141 if ($drilldownInstanceID) {
142 return CRM_Utils_System
::url("civicrm/report/instance/{$drilldownInstanceID}",
143 "{$query}", $absolute
151 return CRM_Utils_System
::url("civicrm/report/" . trim($urlValue, '/'),
158 * get instance count for a template.
161 * @return int|null|string
163 public static function getInstanceCount($optionVal) {
164 if (empty($optionVal)) {
169 SELECT count(inst.id)
170 FROM civicrm_report_instance inst
171 WHERE inst.report_id = %1";
173 $params = array(1 => array($optionVal, 'String'));
174 $count = CRM_Core_DAO
::singleValueQuery($sql, $params);
179 * @param $fileContent
180 * @param int $instanceID
181 * @param string $outputMode
182 * @param array $attachments
186 public static function mailReport($fileContent, $instanceID = NULL, $outputMode = 'html', $attachments = array()) {
191 list($domainEmailName,
193 ) = CRM_Core_BAO_Domain
::getNameAndEmail();
195 $params = array('id' => $instanceID);
196 $instanceInfo = array();
197 CRM_Core_DAO
::commonRetrieve('CRM_Report_DAO_ReportInstance',
203 $params['groupName'] = 'Report Email Sender';
204 $params['from'] = '"' . $domainEmailName . '" <' . $domainEmailAddress . '>';
206 $params['toName'] = "";
207 $params['toEmail'] = CRM_Utils_Array
::value('email_to', $instanceInfo);
208 $params['cc'] = CRM_Utils_Array
::value('email_cc', $instanceInfo);
209 $params['subject'] = CRM_Utils_Array
::value('email_subject', $instanceInfo);
210 if (empty($instanceInfo['attachments'])) {
211 $instanceInfo['attachments'] = array();
213 $params['attachments'] = array_merge(CRM_Utils_Array
::value('attachments', $instanceInfo), $attachments);
214 $params['text'] = '';
215 $params['html'] = $fileContent;
217 return CRM_Utils_Mail
::send($params);
221 * @param CRM_Core_Form $form
224 public static function export2csv(&$form, &$rows) {
225 //Mark as a CSV file.
226 header('Content-Type: text/csv');
228 //Force a download and name the file using the current timestamp.
229 $datetime = date('Ymd-Gi', $_SERVER['REQUEST_TIME']);
230 header('Content-Disposition: attachment; filename=Report_' . $datetime . '.csv');
231 echo self
::makeCsv($form, $rows);
232 CRM_Utils_System
::civiExit();
236 * Utility function for export2csv and CRM_Report_Form::endPostProcess
237 * - make CSV file content and return as string.
239 public static function makeCsv(&$form, &$rows) {
240 $config = CRM_Core_Config
::singleton();
243 // Add headers if this is the first row.
244 $columnHeaders = array_keys($form->_columnHeaders
);
246 // Replace internal header names with friendly ones, where available.
247 foreach ($columnHeaders as $header) {
248 if (isset($form->_columnHeaders
[$header])) {
249 $headers[] = '"' . html_entity_decode(strip_tags($form->_columnHeaders
[$header]['title'])) . '"';
253 $csv .= implode($config->fieldSeparator
,
257 $displayRows = array();
259 foreach ($rows as $row) {
260 foreach ($columnHeaders as $k => $v) {
261 $value = CRM_Utils_Array
::value($v, $row);
263 // Remove HTML, unencode entities, and escape quotation marks.
264 $value = str_replace('"', '""', html_entity_decode(strip_tags($value)));
266 if (CRM_Utils_Array
::value('type', $form->_columnHeaders
[$v]) & 4) {
267 if (CRM_Utils_Array
::value('group_by', $form->_columnHeaders
[$v]) == 'MONTH' ||
268 CRM_Utils_Array
::value('group_by', $form->_columnHeaders
[$v]) == 'QUARTER'
270 $value = CRM_Utils_Date
::customFormat($value, $config->dateformatPartial
);
272 elseif (CRM_Utils_Array
::value('group_by', $form->_columnHeaders
[$v]) == 'YEAR') {
273 $value = CRM_Utils_Date
::customFormat($value, $config->dateformatYear
);
275 elseif ($form->_columnHeaders
[$v]['type'] == 12) {
276 // This is a datetime format
277 $value = CRM_Utils_Date
::customFormat($value, '%Y-%m-%d %H:%i');
280 $value = CRM_Utils_Date
::customFormat($value, '%Y-%m-%d');
283 elseif (CRM_Utils_Array
::value('type', $form->_columnHeaders
[$v]) == 1024) {
284 $value = CRM_Utils_Money
::format($value, $row['civicrm_contribution_currency']);
286 $displayRows[$v] = '"' . $value . '"';
289 $displayRows[$v] = " ";
293 $csv .= implode($config->fieldSeparator
,
304 public static function getInstanceID() {
306 $config = CRM_Core_Config
::singleton();
307 $arg = explode('/', $_GET[$config->userFrameworkURLVar
]);
309 if ($arg[1] == 'report' &&
310 CRM_Utils_Array
::value(2, $arg) == 'instance'
312 if (CRM_Utils_Rule
::positiveInteger($arg[3])) {
321 public static function getInstancePath() {
322 $config = CRM_Core_Config
::singleton();
323 $arg = explode('/', $_GET[$config->userFrameworkURLVar
]);
325 if ($arg[1] == 'report' &&
326 CRM_Utils_Array
::value(2, $arg) == 'instance'
328 unset($arg[0], $arg[1], $arg[2]);
329 $path = trim(CRM_Utils_Type
::escape(implode('/', $arg), 'String'), '/');
335 * @param int $instanceId
339 public static function isInstancePermissioned($instanceId) {
344 $instanceValues = array();
345 $params = array('id' => $instanceId);
346 CRM_Core_DAO
::commonRetrieve('CRM_Report_DAO_ReportInstance',
351 if (!empty($instanceValues['permission']) &&
352 (!(CRM_Core_Permission
::check($instanceValues['permission']) ||
353 CRM_Core_Permission
::check('administer Reports')
363 * Check if the user can view a report instance based on their role(s)
365 * @instanceId string $str the report instance to check
367 * @param int $instanceId
370 * true if yes, else false
372 public static function isInstanceGroupRoleAllowed($instanceId) {
377 $instanceValues = array();
378 $params = array('id' => $instanceId);
379 CRM_Core_DAO
::commonRetrieve('CRM_Report_DAO_ReportInstance',
383 //transform grouprole to array
384 if (!empty($instanceValues['grouprole'])) {
385 $grouprole_array = explode(CRM_Core_DAO
::VALUE_SEPARATOR
,
386 $instanceValues['grouprole']
388 if (!CRM_Core_Permission
::checkGroupRole($grouprole_array) &&
389 !CRM_Core_Permission
::check('administer Reports')
398 * @param array $params
402 public static function processReport($params) {
403 $instanceId = CRM_Utils_Array
::value('instanceId', $params);
405 // hack for now, CRM-8358
406 $_REQUEST['instanceId'] = $instanceId;
407 $_REQUEST['sendmail'] = CRM_Utils_Array
::value('sendmail', $params, 1);
409 // if cron is run from terminal --output is reserved, and therefore we would provide another name 'format'
410 $_REQUEST['output'] = CRM_Utils_Array
::value('format', $params, CRM_Utils_Array
::value('output', $params, 'pdf'));
411 $_REQUEST['reset'] = CRM_Utils_Array
::value('reset', $params, 1);
413 $optionVal = self
::getValueFromUrl($instanceId);
414 $messages = array("Report Mail Triggered...");
416 $templateInfo = CRM_Core_OptionGroup
::getRowValues('report_template', $optionVal, 'value');
417 $obj = new CRM_Report_Page_Instance();
419 if (strstr(CRM_Utils_Array
::value('name', $templateInfo), '_Form')) {
420 $instanceInfo = array();
421 CRM_Report_BAO_ReportInstance
::retrieve(array('id' => $instanceId), $instanceInfo);
423 if (!empty($instanceInfo['title'])) {
424 $obj->assign('reportTitle', $instanceInfo['title']);
427 $obj->assign('reportTitle', $templateInfo['label']);
430 $wrapper = new CRM_Utils_Wrapper();
432 'urlToSession' => array(
434 'urlVar' => 'instanceId',
435 'type' => 'Positive',
436 'sessionVar' => 'instanceId',
442 $messages[] = $wrapper->run($templateInfo['name'], NULL, $arguments);
447 $messages[] = 'Required parameter missing: instanceId';
450 $messages[] = 'Did not find valid instance to execute';
455 'is_error' => $is_error,
456 'messages' => implode("\n", $messages),
462 * Build a URL query string containing all report filter criteria that are
463 * stipulated in $_GET or in a report Preview, but which haven't yet been
464 * saved in the report instance.
466 * @param array $defaults
467 * The report criteria that aren't coming in as submitted form values, as in CRM_Report_Form::_defaults.
468 * @param array $params
469 * All effective report criteria, as in CRM_Report_Form::_params.
474 public static function getPreviewCriteriaQueryParams($defaults = array(), $params = array()) {
475 static $query_string;
476 if (!isset($query_string)) {
477 if (!empty($params)) {
478 $url_params = $op_values = $string_values = $process_params = array();
480 // We'll only use $params that are different from what's in $default.
481 foreach ($params as $field_name => $field_value) {
482 if (!array_key_exists($field_name, $defaults) ||
$defaults[$field_name] != $field_value) {
483 $process_params[$field_name] = $field_value;
486 // Criteria stipulated in $_GET will be in $defaults even if they're not
487 // saved, so we can't easily tell if they're saved or not. So just include them.
488 $process_params +
= $_GET;
490 // All $process_params should be passed on if they have an effective value
491 // (in other words, there's no point in propagating blank filters).
492 foreach ($process_params as $field_name => $field_value) {
493 $suffix_position = strrpos($field_name, '_');
494 $suffix = substr($field_name, $suffix_position);
495 $basename = substr($field_name, 0, $suffix_position);
496 if ($suffix == '_min' ||
$suffix == '_max' ||
497 $suffix == '_from' ||
$suffix == '_to' ||
498 $suffix == '_relative'
500 // For these types, we only keep them if they have a value.
501 if (!empty($field_value)) {
502 $url_params[$field_name] = $field_value;
505 elseif ($suffix == '_value') {
506 // These filters can have an effect even without a value
507 // (e.g., values for 'nll' and 'nnll' ops are blank),
508 // so store them temporarily and examine below.
509 $string_values[$basename] = $field_value;
510 $op_values[$basename] = CRM_Utils_Array
::value("{$basename}_op", $params);
512 elseif ($suffix == '_op') {
513 // These filters can have an effect even without a value
514 // (e.g., values for 'nll' and 'nnll' ops are blank),
515 // so store them temporarily and examine below.
516 $op_values[$basename] = $field_value;
517 $string_values[$basename] = $params["{$basename}_value"];
521 // Check the *_value and *_op criteria and include them if
522 // they'll have an effective value.
523 foreach ($op_values as $basename => $field_value) {
524 if ($field_value == 'nll' ||
$field_value == 'nnll') {
525 // 'nll' and 'nnll' filters should be included even with empty values.
526 $url_params["{$basename}_op"] = $field_value;
528 elseif ($string_values[$basename]) {
529 // Other filters are only included if they have a value.
530 $url_params["{$basename}_op"] = $field_value;
531 $url_params["{$basename}_value"] = (is_array($string_values[$basename]) ?
implode(',', $string_values[$basename]) : $string_values[$basename]);
534 $query_string = http_build_query($url_params);
540 return $query_string;
548 public static function getInstanceList($reportUrl) {
549 static $instanceDetails = array();
551 if (!array_key_exists($reportUrl, $instanceDetails)) {
552 $instanceDetails[$reportUrl] = array();
555 SELECT id, title FROM civicrm_report_instance
556 WHERE report_id = %1";
557 $params = array(1 => array($reportUrl, 'String'));
558 $result = CRM_Core_DAO
::executeQuery($sql, $params);
559 while ($result->fetch()) {
560 $instanceDetails[$reportUrl][$result->id
] = $result->title
. " (ID: {$result->id})";
563 return $instanceDetails[$reportUrl];