Merge pull request #8808 from totten/master-cxn-welcome
[civicrm-core.git] / CRM / Report / Form / Contribute / PCP.php
CommitLineData
6a488035 1<?php
6a488035
TO
2/*
3 +--------------------------------------------------------------------+
7e9e8871 4 | CiviCRM version 4.7 |
6a488035 5 +--------------------------------------------------------------------+
fa938177 6 | Copyright CiviCRM LLC (c) 2004-2016 |
6a488035
TO
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 +--------------------------------------------------------------------+
d25dd0ee 26 */
6a488035
TO
27
28/**
29 *
30 * @package CRM
fa938177 31 * @copyright CiviCRM LLC (c) 2004-2016
6a488035
TO
32 * $Id$
33 *
34 */
35class CRM_Report_Form_Contribute_PCP extends CRM_Report_Form {
73b448bf 36
74cf4551 37 /**
73b448bf 38 * Class constructor.
74cf4551 39 */
00be9182 40 public function __construct() {
6a488035 41 $this->_columns = array(
9d72cede 42 'civicrm_contact' => array(
6a488035 43 'dao' => 'CRM_Contact_DAO_Contact',
9d72cede
EM
44 'fields' => array(
45 'sort_name' => array(
46 'title' => ts('Supporter'),
6a488035
TO
47 'required' => TRUE,
48 'default' => TRUE,
49 ),
9d72cede 50 'id' => array(
6a488035
TO
51 'required' => TRUE,
52 'no_display' => TRUE,
53 ),
9d72cede 54 'contact_type' => array(
30f85891
RN
55 'title' => ts('Supporter Contact Type'),
56 ),
9d72cede 57 'contact_sub_type' => array(
b8f96eb8 58 'title' => ts('Supporter Contact Subtype'),
30f85891 59 ),
6a488035 60 ),
9d72cede
EM
61 'filters' => array(
62 'sort_name' => array(
63 'title' => ts('Supporter Name'),
6a488035
TO
64 'type' => CRM_Utils_Type::T_STRING,
65 'operator' => 'like',
66 ),
9d72cede
EM
67 'id' => array(
68 'title' => ts('Contact ID'),
6a488035
TO
69 'no_display' => TRUE,
70 ),
71 ),
72 'grouping' => 'pcp-fields',
73 ),
9d72cede 74 'civicrm_contribution_page' => array(
6a488035 75 'dao' => 'CRM_Contribute_DAO_ContributionPage',
9d72cede
EM
76 'fields' => array(
77 'page_title' => array(
78 'title' => ts('Contribution Page Title'),
6a488035
TO
79 'name' => 'title',
80 'default' => TRUE,
81 ),
82 ),
9d72cede
EM
83 'filters' => array(
84 'page_title' => array(
85 'title' => ts('Contribution Page Title'),
6a488035
TO
86 'name' => 'title',
87 'type' => CRM_Utils_Type::T_STRING,
88 ),
89 ),
90 'grouping' => 'pcp-fields',
91 ),
9d72cede 92 'civicrm_pcp' => array(
6a488035 93 'dao' => 'CRM_PCP_DAO_PCP',
9d72cede
EM
94 'fields' => array(
95 'title' => array(
96 'title' => ts('Personal Campaign Title'),
6a488035
TO
97 'default' => TRUE,
98 ),
9d72cede
EM
99 'goal_amount' => array(
100 'title' => ts('Goal Amount'),
6a488035
TO
101 'type' => CRM_Utils_Type::T_MONEY,
102 'default' => TRUE,
103 ),
104 ),
9d72cede
EM
105 'filters' => array(
106 'title' => array(
107 'title' => ts('Personal Campaign Title'),
6a488035
TO
108 'type' => CRM_Utils_Type::T_STRING,
109 ),
110 ),
111 'grouping' => 'pcp-fields',
112 ),
9d72cede 113 'civicrm_contribution_soft' => array(
6a488035 114 'dao' => 'CRM_Contribute_DAO_ContributionSoft',
9d72cede
EM
115 'fields' => array(
116 'amount_1' => array(
117 'title' => ts('Committed Amount'),
6a488035
TO
118 'name' => 'amount',
119 'type' => CRM_Utils_Type::T_MONEY,
120 'default' => TRUE,
9d72cede
EM
121 'statistics' => array(
122 'sum' => ts('Committed Amount'),
6a488035
TO
123 ),
124 ),
9d72cede
EM
125 'amount_2' => array(
126 'title' => ts('Amount Received'),
6a488035
TO
127 'name' => 'amount',
128 'type' => CRM_Utils_Type::T_MONEY,
129 'default' => TRUE,
130 // nice trick with dbAlias
131 'dbAlias' => 'SUM(IF( contribution_civireport.contribution_status_id > 1, 0, contribution_soft_civireport.amount))',
132 ),
9d72cede
EM
133 'soft_id' => array(
134 'title' => ts('Number of Donors'),
6a488035
TO
135 'name' => 'id',
136 'default' => TRUE,
9d72cede
EM
137 'statistics' => array(
138 'count' => ts('Number of Donors'),
6a488035
TO
139 ),
140 ),
141 ),
9d72cede
EM
142 'filters' => array(
143 'amount_2' => array(
144 'title' => ts('Amount Received'),
6a488035
TO
145 'type' => CRM_Utils_Type::T_MONEY,
146 'dbAlias' => 'SUM(IF( contribution_civireport.contribution_status_id > 1, 0, contribution_soft_civireport.amount))',
147 ),
148 ),
149 'grouping' => 'pcp-fields',
150 ),
9d72cede 151 'civicrm_contribution' => array(
6a488035 152 'dao' => 'CRM_Contribute_DAO_Contribution',
9d72cede
EM
153 'fields' => array(
154 'contribution_id' => array(
6a488035
TO
155 'name' => 'id',
156 'no_display' => TRUE,
157 'required' => TRUE,
158 ),
9d72cede
EM
159 'receive_date' => array(
160 'title' => ts('Most Recent Contribution'),
6a488035 161 'default' => TRUE,
9d72cede
EM
162 'statistics' => array(
163 'max' => ts('Most Recent Contribution'),
6a488035
TO
164 ),
165 ),
166 ),
167 'grouping' => 'pcp-fields',
168 ),
169 );
170
171 parent::__construct();
172 }
173
00be9182 174 public function from() {
6a488035
TO
175 $this->_from = "
176FROM civicrm_pcp {$this->_aliases['civicrm_pcp']}
177
2f4c2f5d 178LEFT JOIN civicrm_contribution_soft {$this->_aliases['civicrm_contribution_soft']}
179 ON {$this->_aliases['civicrm_pcp']}.id =
6a488035
TO
180 {$this->_aliases['civicrm_contribution_soft']}.pcp_id
181
2f4c2f5d 182LEFT JOIN civicrm_contribution {$this->_aliases['civicrm_contribution']}
183 ON {$this->_aliases['civicrm_contribution_soft']}.contribution_id =
6a488035
TO
184 {$this->_aliases['civicrm_contribution']}.id
185
2f4c2f5d 186LEFT JOIN civicrm_contact {$this->_aliases['civicrm_contact']}
187 ON {$this->_aliases['civicrm_pcp']}.contact_id =
188 {$this->_aliases['civicrm_contact']}.id
6a488035
TO
189
190LEFT JOIN civicrm_contribution_page {$this->_aliases['civicrm_contribution_page']}
2f4c2f5d 191 ON {$this->_aliases['civicrm_pcp']}.page_id =
6a488035
TO
192 {$this->_aliases['civicrm_contribution_page']}.id";
193 }
194
00be9182 195 public function groupBy() {
b708c08d 196 $this->_groupBy = CRM_Contact_BAO_Query::getGroupByFromSelectColumns($this->_selectClauses, "{$this->_aliases['civicrm_pcp']}.id");
6a488035
TO
197 }
198
00be9182 199 public function orderBy() {
6a488035
TO
200 $this->_orderBy = " ORDER BY {$this->_aliases['civicrm_contact']}.sort_name ";
201 }
202
00be9182 203 public function where() {
6a488035
TO
204 $whereClauses = $havingClauses = array();
205
206 foreach ($this->_columns as $tableName => $table) {
207 if (array_key_exists('filters', $table)) {
208 foreach ($table['filters'] as $fieldName => $field) {
209 $clause = NULL;
210
211 if (CRM_Utils_Array::value('type', $field) & CRM_Utils_Type::T_DATE) {
212 $relative = CRM_Utils_Array::value("{$fieldName}_relative", $this->_params);
9d72cede
EM
213 $from = CRM_Utils_Array::value("{$fieldName}_from", $this->_params);
214 $to = CRM_Utils_Array::value("{$fieldName}_to", $this->_params);
215 $clause = $this->dateClause($field['name'], $relative, $from, $to, $field['type']);
6a488035
TO
216 }
217 else {
218 $op = CRM_Utils_Array::value("{$fieldName}_op", $this->_params);
219
220 if ($op) {
221 $clause = $this->whereClause($field,
222 $op,
223 CRM_Utils_Array::value("{$fieldName}_value", $this->_params),
224 CRM_Utils_Array::value("{$fieldName}_min", $this->_params),
225 CRM_Utils_Array::value("{$fieldName}_max", $this->_params)
226 );
227 }
228 }
229
230 if (!empty($clause)) {
231 if ($tableName == 'civicrm_contribution_soft' &&
232 $fieldName == 'amount_2'
233 ) {
234 $havingClauses[] = $clause;
235 }
236 else {
237 $whereClauses[] = $clause;
238 }
239 }
240 }
241 }
242 }
243 if (empty($whereClauses)) {
244 $this->_where = "WHERE ( 1 ) ";
245 }
246 else {
247 $this->_where = "WHERE " . implode(' AND ', $whereClauses);
248 }
249 if ($this->_aclWhere) {
250 $this->_where .= " AND {$this->_aclWhere} ";
251 }
252 $this->_having = "";
253 if (!empty($havingClauses)) {
254 // use this clause to construct group by clause.
255 $this->_having = "HAVING " . implode(' AND ', $havingClauses);
256 }
257 }
258
74cf4551
EM
259 /**
260 * @param $rows
261 *
262 * @return array
263 */
00be9182 264 public function statistics(&$rows) {
ecd4d80f
JM
265 $statistics = parent::statistics($rows);
266
ea9ec579 267 // Calculate totals from the civicrm_contribution_soft table.
17dea6fa
JM
268 $select = "SELECT SUM({$this->_aliases['civicrm_contribution_soft']}.amount) "
269 . "as committed_total, COUNT({$this->_aliases['civicrm_contribution_soft']}.id) "
270 . "as donors_total, SUM(IF( contribution_civireport.contribution_status_id > 1, 0, "
271 . "contribution_soft_civireport.amount)) AS received_total ";
ecd4d80f
JM
272 $sql = "{$select} {$this->_from} {$this->_where}";
273 $dao = CRM_Core_DAO::executeQuery($sql);
274 $dao->fetch();
ea9ec579
JM
275 $committed_total = $dao->committed_total;
276 $received_total = $dao->received_total;
7a99327d 277 $donors_total = $dao->donors_total;
ea9ec579
JM
278
279 // Calculate goal total goal from the PCP table (we only want one result per
280 // PCP page - the query above produces one result per contribution made).
17dea6fa
JM
281 $sql = "SELECT SUM(goal_amount) as goal_total FROM civicrm_pcp WHERE "
282 . "goal_amount IS NOT NULL AND id IN ("
283 . "SELECT DISTINCT {$this->_aliases['civicrm_pcp']}.id {$this->_from} "
284 . "{$this->_where}"
285 . ")";
ea9ec579
JM
286 $dao = CRM_Core_DAO::executeQuery($sql);
287 $dao->fetch();
288 $goal_total = $dao->goal_total;
289
ecd4d80f
JM
290 $statistics['counts']['goal_total'] = array(
291 'title' => ts('Goal Total'),
ea9ec579 292 'value' => $goal_total,
21dfd5f5 293 'type' => CRM_Utils_Type::T_MONEY,
ecd4d80f
JM
294 );
295 $statistics['counts']['committed_total'] = array(
296 'title' => ts('Total Committed'),
ea9ec579 297 'value' => $committed_total,
21dfd5f5 298 'type' => CRM_Utils_Type::T_MONEY,
ecd4d80f
JM
299 );
300 $statistics['counts']['received_total'] = array(
301 'title' => ts('Total Received'),
ea9ec579 302 'value' => $received_total,
21dfd5f5 303 'type' => CRM_Utils_Type::T_MONEY,
ecd4d80f
JM
304 );
305 $statistics['counts']['donors_total'] = array(
306 'title' => ts('Total Donors'),
ea9ec579 307 'value' => $donors_total,
21dfd5f5 308 'type' => CRM_Utils_Type::T_INT,
ecd4d80f
JM
309 );
310 return $statistics;
311 }
74cf4551
EM
312
313 /**
ced9bfed
EM
314 * Alter display of rows.
315 *
316 * Iterate through the rows retrieved via SQL and make changes for display purposes,
317 * such as rendering contacts as links.
318 *
319 * @param array $rows
320 * Rows generated by SQL, with an array for each row.
74cf4551 321 */
00be9182 322 public function alterDisplay(&$rows) {
6a488035
TO
323 $entryFound = FALSE;
324 $checkList = array();
325 foreach ($rows as $rowNum => $row) {
326 if (!empty($this->_noRepeats) && $this->_outputMode != 'csv') {
327 // not repeat contact sort names if it matches with the one
328 // in previous row
329 $repeatFound = FALSE;
330
331 foreach ($row as $colName => $colVal) {
a7488080 332 if (!empty($checkList[$colName]) &&
6a488035
TO
333 is_array($checkList[$colName]) &&
334 in_array($colVal, $checkList[$colName])
335 ) {
336 $rows[$rowNum][$colName] = "";
337 $repeatFound = TRUE;
338 }
339 if (in_array($colName, $this->_noRepeats)) {
340 $checkList[$colName][] = $colVal;
341 }
342 }
343 }
344
345 if (array_key_exists('civicrm_contact_sort_name', $row) &&
346 $rows[$rowNum]['civicrm_contact_sort_name'] &&
347 array_key_exists('civicrm_contact_id', $row)
348 ) {
349 $url = CRM_Utils_System::url("civicrm/contact/view",
350 'reset=1&cid=' . $row['civicrm_contact_id'],
351 $this->_absoluteUrl
352 );
353 $rows[$rowNum]['civicrm_contact_sort_name_link'] = $url;
354 $rows[$rowNum]['civicrm_contact_sort_name_hover'] = ts("View Contact Summary for this Contact.");
355 $entryFound = TRUE;
356 }
357
358 if (!$entryFound) {
359 break;
360 }
361 }
362 }
96025800 363
6a488035 364}