CRM-17640 add follow up comments to discourage random brutal attacks on site performance
[civicrm-core.git] / CRM / Contribute / Form / Task.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
7e9e8871 4 | CiviCRM version 4.7 |
6a488035 5 +--------------------------------------------------------------------+
e7112fa7 6 | Copyright CiviCRM LLC (c) 2004-2015 |
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
e7112fa7 31 * @copyright CiviCRM LLC (c) 2004-2015
6a488035
TO
32 */
33
34/**
95cdcc0f 35 * This class generates form components for relationship.
6a488035
TO
36 */
37class CRM_Contribute_Form_Task extends CRM_Core_Form {
38
39 /**
fe482240 40 * The task being performed.
6a488035
TO
41 *
42 * @var int
43 */
44 protected $_task;
45
46 /**
fe482240 47 * The additional clause that we restrict the search with.
6a488035
TO
48 *
49 * @var string
50 */
51 protected $_componentClause = NULL;
52
53 /**
fe482240 54 * The array that holds all the component ids.
6a488035
TO
55 *
56 * @var array
57 */
58 protected $_componentIds;
59
60 /**
fe482240 61 * The array that holds all the contribution ids.
6a488035
TO
62 *
63 * @var array
64 */
65 protected $_contributionIds;
66
67 /**
fe482240 68 * The array that holds all the contact ids.
6a488035
TO
69 *
70 * @var array
71 */
72 public $_contactIds;
73
34eec215 74 /**
fe482240 75 * The array that holds all the mapping contribution and contact ids.
34eec215
DS
76 *
77 * @var array
78 */
79 protected $_contributionContactIds = array();
80
81 /**
fe482240 82 * The flag to tell if there are soft credits included.
34eec215
DS
83 *
84 * @var boolean
85 */
86 public $_includesSoftCredits = FALSE;
87
6a488035 88 /**
fe482240 89 * Build all the data structures needed to build the form.
6a488035 90 */
00be9182 91 public function preProcess() {
6a488035
TO
92 self::preProcessCommon($this);
93 }
94
186c9c17 95 /**
c490a46a 96 * @param CRM_Core_Form $form
186c9c17
EM
97 * @param bool $useTable
98 */
00be9182 99 public static function preProcessCommon(&$form, $useTable = FALSE) {
6a488035
TO
100 $form->_contributionIds = array();
101
102 $values = $form->controller->exportValues($form->get('searchFormName'));
103
104 $form->_task = $values['task'];
105 $contributeTasks = CRM_Contribute_Task::tasks();
106 $form->assign('taskName', $contributeTasks[$form->_task]);
107
108 $ids = array();
109 if ($values['radio_ts'] == 'ts_sel') {
110 foreach ($values as $name => $value) {
111 if (substr($name, 0, CRM_Core_Form::CB_PREFIX_LEN) == CRM_Core_Form::CB_PREFIX) {
112 $ids[] = substr($name, CRM_Core_Form::CB_PREFIX_LEN);
113 }
114 }
115 }
116 else {
117 $queryParams = $form->get('queryParams');
874c9be7 118 $sortOrder = NULL;
353ffa53 119 if ($form->get(CRM_Utils_Sort::SORT_ORDER)) {
481a74f4 120 $sortOrder = $form->get(CRM_Utils_Sort::SORT_ORDER);
6a488035 121 }
665e5ec7 122
34eec215 123 $form->_includesSoftCredits = CRM_Contribute_BAO_Query::isSoftCreditOptionEnabled($queryParams);
6a488035
TO
124 $query = new CRM_Contact_BAO_Query($queryParams, NULL, NULL, FALSE, FALSE,
125 CRM_Contact_BAO_Query::MODE_CONTRIBUTE
126 );
34eec215
DS
127 if ($form->_includesSoftCredits) {
128 $contactIds = $contributionContactIds = array();
129 $query->_rowCountClause = " count(civicrm_contribution.id)";
130 $query->_groupByComponentClause = " GROUP BY contribution_search_scredit_combined.id, contribution_search_scredit_combined.contact_id, contribution_search_scredit_combined.scredit_id ";
0db6c3e1
TO
131 }
132 else {
34eec215
DS
133 $query->_distinctComponentClause = ' civicrm_contribution.id';
134 $query->_groupByComponentClause = ' GROUP BY civicrm_contribution.id ';
135 }
6a488035
TO
136 $result = $query->searchQuery(0, 0, $sortOrder);
137 while ($result->fetch()) {
138 $ids[] = $result->contribution_id;
34eec215
DS
139 if ($form->_includesSoftCredits) {
140 $contactIds[$result->contact_id] = $result->contact_id;
141 $contributionContactIds["{$result->contact_id}-{$result->contribution_id}"] = $result->contribution_id;
142 }
6a488035
TO
143 }
144 $form->assign('totalSelectedContributions', $form->get('rowCount'));
145 }
146
147 if (!empty($ids)) {
148 $form->_componentClause = ' civicrm_contribution.id IN ( ' . implode(',', $ids) . ' ) ';
149
150 $form->assign('totalSelectedContributions', count($ids));
151 }
b9884d60 152 if (!empty($form->_includesSoftCredits) && !empty($contactIds)) {
34eec215
DS
153 $form->_contactIds = $contactIds;
154 $form->_contributionContactIds = $contributionContactIds;
155 }
6a488035
TO
156
157 $form->_contributionIds = $form->_componentIds = $ids;
158
159 //set the context for redirection for any task actions
160 $session = CRM_Core_Session::singleton();
161
162 $qfKey = CRM_Utils_Request::retrieve('qfKey', 'String', $form);
163 $urlParams = 'force=1';
164 if (CRM_Utils_Rule::qfKey($qfKey)) {
165 $urlParams .= "&qfKey=$qfKey";
166 }
167
168 $searchFormName = strtolower($form->get('searchFormName'));
169 if ($searchFormName == 'search') {
170 $session->replaceUserContext(CRM_Utils_System::url('civicrm/contribute/search', $urlParams));
171 }
172 else {
173 $session->replaceUserContext(CRM_Utils_System::url("civicrm/contact/search/$searchFormName",
353ffa53
TO
174 $urlParams
175 ));
6a488035
TO
176 }
177 }
178
179 /**
180 * Given the contribution id, compute the contact id
181 * since its used for things like send email
182 */
183 public function setContactIDs() {
34eec215
DS
184 if (!$this->_includesSoftCredits) {
185 $this->_contactIds = &CRM_Core_DAO::getContactIDsFromComponent(
186 $this->_contributionIds,
187 'civicrm_contribution'
188 );
189 }
6a488035
TO
190 }
191
192 /**
100fef9d 193 * Simple shell that derived classes can call to add buttons to
6a488035
TO
194 * the form with a customized title for the main Submit
195 *
014c4014
TO
196 * @param string $title
197 * Title of the main button.
198 * @param string $nextType
199 * Button type for the form after processing.
da6b46f4
EM
200 * @param string $backType
201 * @param bool $submitOnce
6a488035 202 */
00be9182 203 public function addDefaultButtons($title, $nextType = 'next', $backType = 'back', $submitOnce = FALSE) {
6a488035
TO
204 $this->addButtons(array(
205 array(
206 'type' => $nextType,
207 'name' => $title,
208 'isDefault' => TRUE,
209 ),
210 array(
211 'type' => $backType,
212 'name' => ts('Cancel'),
213 ),
214 )
215 );
216 }
96025800 217
6a488035 218}