-
-
Notifications
You must be signed in to change notification settings - Fork 824
/
Copy pathSearch.php
476 lines (411 loc) · 14.7 KB
/
Search.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
<?php
/*
+--------------------------------------------------------------------+
| Copyright CiviCRM LLC. All rights reserved. |
| |
| This work is published under the GNU AGPLv3 license with some |
| permitted exceptions and without any warranty. For full license |
| and copyright information, see https://civicrm.org/licensing |
+--------------------------------------------------------------------+
*/
/**
*
* @package CRM
* @copyright CiviCRM LLC https://civicrm.org/licensing
*/
/**
* Advanced search, extends basic search.
*/
class CRM_Contribute_Form_Search extends CRM_Core_Form_Search {
/**
* The params that are sent to the query.
*
* @var array
*/
protected $_queryParams;
/**
* Are we restricting ourselves to a single contact.
*
* @var bool
*/
protected $_single = FALSE;
/**
* Are we restricting ourselves to a single contact.
*
* @var bool
*/
protected $_limit = NULL;
/**
* Prefix for the controller.
* @var string
*/
protected $_prefix = 'contribute_';
/**
* @var bool
*/
public $submitOnce = TRUE;
/**
* Explicitly declare the entity api name.
*/
public function getDefaultEntity() {
return 'Contribution';
}
/**
* Processing needed for buildForm and later.
*
* @throws \CRM_Core_Exception
*/
public function preProcess() {
// SearchFormName is deprecated & to be removed - the replacement is for the task to
// call $this->form->getSearchFormValues()
// A couple of extensions use it.
$this->set('searchFormName', 'Search');
$this->_actionButtonName = $this->getButtonName('next', 'action');
$this->_done = FALSE;
parent::preProcess();
// For contributionTotals.tpl
$this->addExpectedSmartyVariables(['annual']);
$this->_queryParams = CRM_Contact_BAO_Query::convertFormValues($this->_formValues);
$selector = new CRM_Contribute_Selector_Search($this->_queryParams,
$this->_action,
NULL,
$this->_single,
$this->_limit,
$this->_context
);
$prefix = NULL;
if ($this->_context === 'user') {
$prefix = $this->_prefix;
}
$this->assign("{$prefix}limit", $this->_limit);
$this->assign("{$prefix}single", $this->_single);
$controller = new CRM_Core_Selector_Controller($selector,
$this->get(CRM_Utils_Pager::PAGE_ID),
$this->getSortID(),
CRM_Core_Action::VIEW,
$this,
CRM_Core_Selector_Controller::TRANSFER,
$prefix
);
$controller->setEmbedded(TRUE);
$controller->moveFromSessionToTemplate();
$this->assign('contributionSummary', $this->get('summary'));
}
/**
* Set defaults.
*
* @return array
* @throws \Exception
*/
public function setDefaultValues() {
$this->setDeprecatedDefaults();
$this->_defaults = parent::setDefaultValues();
$this->_defaults = array_merge($this->getEntityDefaults('ContributionRecur'), $this->_defaults);
if (empty($this->_defaults['contribution_status_id']) && !$this->_force) {
// In force mode only parameters from the url will be used. When visible/ explicit this is a useful default.
$this->_defaults['contribution_status_id'][1] = CRM_Core_PseudoConstant::getKey(
'CRM_Contribute_BAO_Contribution',
'contribution_status_id',
'Completed'
);
}
// The membership or contribution id could be set on the form if viewing
// an embedded block on ParticipantView or MembershipView.
$membershipId = CRM_Utils_Request::retrieve('memberId', 'Positive', $this);
if (isset($membershipId)) {
$this->_defaults['contribution_membership_id'] = $membershipId;
}
$participantId = CRM_Utils_Request::retrieve('participantId', 'Positive', $this);
if (isset($participantId)) {
$this->_defaults['contribution_participant_id'] = $participantId;
}
return $this->_defaults;
}
/**
* Build the form object.
*
* @throws \CRM_Core_Exception
*/
public function buildQuickForm() {
if ($this->isFormInViewOrEditMode()) {
parent::buildQuickForm();
$this->addContactSearchFields();
CRM_Contribute_BAO_Query::buildSearchForm($this);
}
$rows = $this->get('rows');
if (is_array($rows)) {
if (!$this->_single) {
$this->addRowSelectors($rows);
}
$permission = CRM_Core_Permission::getPermission();
$queryParams = $this->get('queryParams');
$taskParams['softCreditFiltering'] = FALSE;
if (!empty($queryParams)) {
$taskParams['softCreditFiltering'] = CRM_Contribute_BAO_Query::isSoftCreditOptionEnabled($queryParams);
}
$tasks = CRM_Contribute_Task::permissionedTaskTitles($permission, $taskParams);
$this->addTaskMenu($tasks);
}
}
/**
* Get the label for the sortName field if email searching is on.
*
* (email searching is a setting under search preferences).
*
* @return string
*/
protected function getSortNameLabelWithEmail() {
return ts('Contributor Name or Email');
}
/**
* Get the label for the sortName field if email searching is off.
*
* (email searching is a setting under search preferences).
*
* @return string
*/
protected function getSortNameLabelWithOutEmail() {
return ts('Contributor Name');
}
/**
* Get the label for the tag field.
*
* We do this in a function so the 'ts' wraps the whole string to allow
* better translation.
*
* @return string
*/
protected function getTagLabel() {
return ts('Contributor Tag(s)');
}
/**
* Get the label for the group field.
*
* @return string
*/
protected function getGroupLabel() {
return ts('Contributor Group(s)');
}
/**
* Get the label for the group field.
*
* @return string
*/
protected function getContactTypeLabel() {
return ts('Contributor Contact Type');
}
/**
* The post processing of the form gets done here.
*
* Key things done during post processing are
* - check for reset or next request. if present, skip post processing.
* - now check if user requested running a saved search, if so, then
* the form values associated with the saved search are used for searching.
* - if user has done a submit with new values the regular post submission is
* done.
* The processing consists of using a Selector / Controller framework for getting the
* search results.
*
* @throws \CRM_Core_Exception
*/
public function postProcess() {
if ($this->_done) {
return;
}
$this->_done = TRUE;
$this->setFormValues();
// @todo - stop changing formValues - respect submitted form values, change a working array.
$this->fixFormValues();
// We don't show template records in summaries or dashboards
if (empty($this->_formValues['is_template']) && $this->_force && !empty($this->_context) && ($this->_context === 'dashboard' || $this->_context === 'contribution')) {
// @todo - stop changing formValues - respect submitted form values, change a working array.
$this->_formValues['is_template'] = 0;
}
foreach (['contribution_amount_low', 'contribution_amount_high'] as $f) {
if (isset($this->_formValues[$f])) {
// @todo - stop changing formValues - respect submitted form values, change a working array.
$this->_formValues[$f] = CRM_Utils_Rule::cleanMoney($this->_formValues[$f]);
}
}
if (!empty($_POST)) {
$specialParams = [
'financial_type_id',
'contribution_soft_credit_type_id',
'contribution_status_id',
'contribution_trxn_id',
'contribution_product_id',
'invoice_id',
'payment_instrument_id',
'contribution_batch_id',
];
// @todo - stop changing formValues - respect submitted form values, change a working array.
CRM_Contact_BAO_Query::processSpecialFormValue($this->_formValues, $specialParams);
// @todo - stop changing formValues - respect submitted form values, change a working array.
$tags = $this->_formValues['contact_tags'] ?? NULL;
if ($tags && !is_array($tags)) {
// @todo - stop changing formValues - respect submitted form values, change a working array.
unset($this->_formValues['contact_tags']);
$this->_formValues['contact_tags'][$tags] = 1;
}
if ($tags && is_array($tags)) {
unset($this->_formValues['contact_tags']);
foreach ($tags as $notImportant => $tagID) {
// @todo - stop changing formValues - respect submitted form values, change a working array.
$this->_formValues['contact_tags'][$tagID] = 1;
}
}
$group = $this->_formValues['group'] ?? NULL;
if ($group && !is_array($group)) {
// @todo - stop changing formValues - respect submitted form values, change a working array.
unset($this->_formValues['group']);
$this->_formValues['group'][$group] = 1;
}
if ($group && is_array($group)) {
unset($this->_formValues['group']);
foreach ($group as $groupID) {
// @todo - stop changing formValues - respect submitted form values, change a working array.
$this->_formValues['group'][$groupID] = 1;
}
}
}
// @todo - stop changing formValues - respect submitted form values, change a working array.
$this->_queryParams = CRM_Contact_BAO_Query::convertFormValues($this->_formValues);
$this->set('queryParams', $this->_queryParams);
$buttonName = $this->controller->getButtonName();
if ($buttonName == $this->_actionButtonName) {
// check actionName and if next, then do not repeat a search, since we are going to the next page
// hack, make sure we reset the task values
$stateMachine = $this->controller->getStateMachine();
$formName = $stateMachine->getTaskFormName();
$this->controller->resetPage($formName);
return;
}
$this->_queryParams = CRM_Contact_BAO_Query::convertFormValues($this->_formValues);
$selector = new CRM_Contribute_Selector_Search($this->_queryParams,
$this->_action,
NULL,
$this->_single,
$this->_limit,
$this->_context
);
$selector->setKey($this->controller->_key);
$prefix = NULL;
if ($this->_context === 'basic' || $this->_context === 'user') {
$prefix = $this->_prefix;
}
$controller = new CRM_Core_Selector_Controller($selector,
$this->get(CRM_Utils_Pager::PAGE_ID),
$this->getSortID(),
CRM_Core_Action::VIEW,
$this,
CRM_Core_Selector_Controller::SESSION,
$prefix
);
$controller->setEmbedded(TRUE);
$query = &$selector->getQuery();
if ($this->_context === 'user') {
$query->setSkipPermission(TRUE);
}
$controller->run();
}
/**
* Use values from $_GET if force is set to TRUE.
*
* Note that this means that GET over-rides POST. This was a historical decision & the reasoning is not explained.
*
* @throws \CRM_Core_Exception
*/
public function fixFormValues() {
if (!$this->_force) {
return;
}
$status = CRM_Utils_Request::retrieve('status', 'String');
if ($status) {
$this->_formValues['contribution_status_id'] = [$status => 1];
$this->_defaults['contribution_status_id'] = [$status => 1];
}
$pcpid = (array) CRM_Utils_Request::retrieve('pcpid', 'String', $this);
if ($pcpid) {
// Add new pcpid to the tail of the array...
foreach ($pcpid as $pcpIdList) {
$this->_formValues['contribution_pcp_made_through_id'][] = $pcpIdList;
}
// and avoid any duplicate
$this->_formValues['contribution_pcp_made_through_id'] = array_unique($this->_formValues['contribution_pcp_made_through_id']);
}
$cid = CRM_Utils_Request::retrieve('cid', 'Positive', $this);
// skip cid (contact id of membership/participant record) to get associated payments for membership/participant record,
// contribution record may be on different contact id.
$skip_cid = CRM_Utils_Request::retrieve('skip_cid', 'Boolean', $this, FALSE, FALSE);
if ($cid && !$skip_cid) {
$cid = CRM_Utils_Type::escape($cid, 'Integer');
if ($cid > 0) {
$this->_formValues['contact_id'] = $cid;
$this->_defaults['sort_name'] = CRM_Core_DAO::getFieldValue('CRM_Contact_DAO_Contact', $cid,
'sort_name'
);
// also assign individual mode to the template
$this->_single = TRUE;
}
}
$this->_limit = CRM_Utils_Request::retrieve('limit', 'Positive',
$this
);
$test = CRM_Utils_Request::retrieve('test', 'Boolean');
if (isset($test)) {
$test = CRM_Utils_Type::escape($test, 'Boolean');
$this->_formValues['contribution_test'] = $test;
}
//Recurring id
$recur = CRM_Utils_Request::retrieve('recur', 'Positive', $this, FALSE);
if ($recur) {
$this->_formValues['contribution_recur_id'] = $recur;
$this->_formValues['contribution_recurring'] = 1;
}
//check for contribution page id.
$contribPageId = CRM_Utils_Request::retrieve('pid', 'Positive', $this);
if ($contribPageId) {
$this->_formValues['contribution_page_id'] = $contribPageId;
}
}
/**
* Return a descriptive name for the page, used in wizard header.
*
* @return string
*/
public function getTitle() {
return ts('Find Contributions');
}
/**
* Set the metadata for the form.
*
* @throws \CRM_Core_Exception
*/
protected function setSearchMetadata() {
$this->addSearchFieldMetadata(['Contribution' => CRM_Contribute_BAO_Query::getSearchFieldMetadata()]);
$this->addSearchFieldMetadata(['ContributionRecur' => CRM_Contribute_BAO_ContributionRecur::getContributionRecurSearchFieldMetadata()]);
}
/**
* Handling for url params that are deprecated.
*
* @throws \CRM_Core_Exception
*/
protected function setDeprecatedDefaults() {
$lowReceiveDate = CRM_Utils_Request::retrieve('start', 'Timestamp');
if (!empty($lowReceiveDate)) {
$this->_formValues['receive_date_low'] = date('Y-m-d H:i:s', strtotime($lowReceiveDate));
CRM_Core_Error::deprecatedFunctionWarning('pass receive_date_low not start');
}
$highReceiveDate = CRM_Utils_Request::retrieve('end', 'Timestamp');
if (!empty($highReceiveDate)) {
$this->_formValues['receive_date_high'] = date('Y-m-d H:i:s', strtotime($highReceiveDate));
CRM_Core_Error::deprecatedFunctionWarning('pass receive_date_high not end');
}
//check for contribution page id.
$contribPageId = CRM_Utils_Request::retrieve('pid', 'Positive', $this);
if ($contribPageId) {
CRM_Core_Error::deprecatedFunctionWarning('pass contribution_page_id');
$this->_formValues['contribution_page_id'] = $contribPageId;
}
}
}