Merge pull request #7637 from jmcclelland/CRM-17812
[civicrm-core.git] / CRM / Event / Form / Search.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, |
a5611c8e 24 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
6a488035 25 +--------------------------------------------------------------------+
d25dd0ee 26 */
6a488035
TO
27
28/**
29 *
30 * @package CRM
e7112fa7 31 * @copyright CiviCRM LLC (c) 2004-2015
6a488035
TO
32 * $Id$
33 *
34 */
35
36/**
37 * Files required
38 */
39
40/**
41 * This file is for civievent search
42 */
3efb5b86 43class CRM_Event_Form_Search extends CRM_Core_Form_Search {
6a488035 44
6a488035 45 /**
66f9e52b 46 * The params that are sent to the query.
6a488035
TO
47 *
48 * @var array
6a488035
TO
49 */
50 protected $_queryParams;
51
6a488035 52 /**
66f9e52b 53 * Are we restricting ourselves to a single contact.
6a488035 54 *
6a488035
TO
55 * @var boolean
56 */
57 protected $_single = FALSE;
58
59 /**
66f9e52b 60 * Are we restricting ourselves to a single contact.
6a488035 61 *
6a488035
TO
62 * @var boolean
63 */
64 protected $_limit = NULL;
65
6a488035 66 /**
66f9e52b 67 * Prefix for the controller.
6a488035
TO
68 */
69 protected $_prefix = "event_";
70
6a488035 71 /**
66f9e52b 72 * The saved search ID retrieved from the GET vars.
6a488035
TO
73 *
74 * @var int
6a488035
TO
75 */
76 protected $_ssID;
77
78 /**
66f9e52b 79 * Processing needed for buildForm and later.
6a488035
TO
80 *
81 * @return void
6a488035 82 */
00be9182 83 public function preProcess() {
6a488035
TO
84 $this->set('searchFormName', 'Search');
85
86 /**
87 * set the button names
88 */
89 $this->_searchButtonName = $this->getButtonName('refresh');
6a488035
TO
90 $this->_actionButtonName = $this->getButtonName('next', 'action');
91
92 $this->_done = FALSE;
93 $this->defaults = array();
94
a5611c8e
DL
95 /*
96 * we allow the controller to set force/reset externally, useful when we are being
97 * driven by the wizard framework
6a488035 98 */
353ffa53
TO
99 $this->_reset = CRM_Utils_Request::retrieve('reset', 'Boolean', CRM_Core_DAO::$_nullObject);
100 $this->_force = CRM_Utils_Request::retrieve('force', 'Boolean', $this, FALSE);
101 $this->_limit = CRM_Utils_Request::retrieve('limit', 'Positive', $this);
6a488035 102 $this->_context = CRM_Utils_Request::retrieve('context', 'String', $this, FALSE, 'search');
353ffa53 103 $this->_ssID = CRM_Utils_Request::retrieve('ssID', 'Positive', $this);
6a488035
TO
104 $this->assign("context", $this->_context);
105
106 // get user submitted values
107 // get it from controller only if form has been submitted, else preProcess has set this
108 if (!empty($_POST) && !$this->controller->isModal()) {
109 $this->_formValues = $this->controller->exportValues($this->_name);
110 }
111 else {
112 $this->_formValues = $this->get('formValues');
113 }
114
115 if (empty($this->_formValues)) {
116 if (isset($this->_ssID)) {
117 $this->_formValues = CRM_Contact_BAO_SavedSearch::getFormValues($this->_ssID);
118 }
119 }
120
121 if ($this->_force) {
122 $this->postProcess();
123 $this->set('force', 0);
124 }
125
126 $sortID = NULL;
127 if ($this->get(CRM_Utils_Sort::SORT_ID)) {
128 $sortID = CRM_Utils_Sort::sortIDValue($this->get(CRM_Utils_Sort::SORT_ID),
129 $this->get(CRM_Utils_Sort::SORT_DIRECTION)
130 );
131 }
132
133 $this->_queryParams = CRM_Contact_BAO_Query::convertFormValues($this->_formValues);
134 $selector = new CRM_Event_Selector_Search($this->_queryParams,
135 $this->_action,
136 NULL,
137 $this->_single,
138 $this->_limit,
139 $this->_context
140 );
141 $prefix = NULL;
142 if ($this->_context == 'user') {
143 $prefix = $this->_prefix;
144 }
145
146 $this->assign("{$prefix}limit", $this->_limit);
147 $this->assign("{$prefix}single", $this->_single);
148
149 $controller = new CRM_Core_Selector_Controller($selector,
150 $this->get(CRM_Utils_Pager::PAGE_ID),
151 $sortID,
152 CRM_Core_Action::VIEW,
153 $this,
154 CRM_Core_Selector_Controller::TRANSFER,
155 $prefix
156 );
157 $controller->setEmbedded(TRUE);
158 $controller->moveFromSessionToTemplate();
159
160 $this->assign('summary', $this->get('summary'));
161 }
162
163 /**
66f9e52b 164 * Build the form object.
6a488035 165 *
6a488035
TO
166 *
167 * @return void
168 */
00be9182 169 public function buildQuickForm() {
3efb5b86 170 parent::buildQuickForm();
e597fc33 171 $this->addSortNameField();
6a488035 172
9821f0c5 173 if (CRM_Core_Permission::check('access deleted contacts') and Civi::settings()->get('contact_undelete')) {
00126b1c 174 $this->addElement('checkbox', 'deleted_contacts', ts('Search in Trash') . '<br />' . ts('(deleted contacts)'));
48242ab6
MM
175 }
176
6a488035
TO
177 CRM_Event_BAO_Query::buildSearchForm($this);
178
6a488035
TO
179 $rows = $this->get('rows');
180 if (is_array($rows)) {
181 $lineItems = $eventIds = array();
182 if (!$this->_single) {
8d36b801 183 $this->addRowSelectors($rows);
6a488035
TO
184 }
185 foreach ($rows as $row) {
186 $eventIds[$row['event_id']] = $row['event_id'];
6a488035
TO
187 if (CRM_Event_BAO_Event::usesPriceSet($row['event_id'])) {
188 // add line item details if applicable
189 $lineItems[$row['participant_id']] = CRM_Price_BAO_LineItem::getLineItems($row['participant_id']);
190 }
191 }
192
193 //get actual count only when we are dealing w/ single event.
194 $participantCount = 0;
195 if (count($eventIds) == 1) {
196 //convert form values to clause.
197 $seatClause = array();
884fdc63 198 if (CRM_Utils_Array::value('participant_test', $this->_formValues) == '1' || CRM_Utils_Array::value('participant_test', $this->_formValues) == '0') {
199 $seatClause[] = "( participant.is_test = {$this->_formValues['participant_test']} )";
200 }
201 if (!empty($this->_formValues['participant_status_id'])) {
ef36db8b 202 $seatClause[] = CRM_Contact_BAO_Query::buildClause("participant.status_id", '=', $this->_formValues['participant_status_id'], 'Int');
203 if ($status = CRM_Utils_Array::value('IN', $this->_formValues['participant_status_id'])) {
204 $this->_formValues['participant_status_id'] = $status;
205 }
884fdc63 206 }
207 if (!empty($this->_formValues['participant_role_id'])) {
0906de17
MM
208 $escapedRoles = array();
209 foreach ((array) $this->_formValues['participant_role_id'] as $participantRole) {
210 $escapedRoles[] = CRM_Utils_Type::escape($participantRole, 'String');
211 }
aba574d4 212 $seatClause[] = "( participant.role_id IN ( '" . implode("' , '", $escapedRoles) . "' ) )";
884fdc63 213 }
214
7c75c017 215 // CRM-15379
216 if (!empty($this->_formValues['participant_fee_id'])) {
217 $participant_fee_id = $this->_formValues['participant_fee_id'];
218 $feeLabel = CRM_Core_DAO::getFieldValue('CRM_Price_DAO_PriceFieldValue', $participant_fee_id, 'label');
219 $feeLabel = CRM_Core_DAO::escapeString(trim($feeLabel));
884fdc63 220 $seatClause[] = "( participant.fee_level LIKE '%$feeLabel%' )";
6a488035 221 }
59adcdd9 222
884fdc63 223 $seatClause = implode(' AND ', $seatClause);
224 $participantCount = CRM_Event_BAO_Event::eventTotalSeats(array_pop($eventIds), $seatClause);
6a488035
TO
225 }
226 $this->assign('participantCount', $participantCount);
227 $this->assign('lineItems', $lineItems);
228
6a488035
TO
229 $permission = CRM_Core_Permission::getPermission();
230
34197a55 231 $tasks = CRM_Event_Task::permissionedTaskTitles($permission);
6a488035
TO
232 if (isset($this->_ssID)) {
233 if ($permission == CRM_Core_Permission::EDIT) {
234 $tasks = $tasks + CRM_Event_Task::optionalTaskTitle();
235 }
236
237 $savedSearchValues = array(
238 'id' => $this->_ssID,
239 'name' => CRM_Contact_BAO_SavedSearch::getName($this->_ssID, 'title'),
240 );
241 $this->assign_by_ref('savedSearch', $savedSearchValues);
242 $this->assign('ssID', $this->_ssID);
243 }
244
34197a55 245 $this->addTaskMenu($tasks);
6a488035
TO
246 }
247
6a488035
TO
248 }
249
e597fc33
DG
250 /**
251 * Get the label for the sortName field if email searching is on.
252 *
253 * (email searching is a setting under search preferences).
254 *
255 * @return string
256 */
257 protected function getSortNameLabelWithEmail() {
258 return ts('Participant Name or Email');
259 }
260
261 /**
262 * Get the label for the sortName field if email searching is off.
263 *
264 * (email searching is a setting under search preferences).
265 *
266 * @return string
267 */
268 protected function getSortNameLabelWithOutEmail() {
269 return ts('Participant Name');
270 }
271
6a488035
TO
272 /**
273 * The post processing of the form gets done here.
274 *
275 * Key things done during post processing are
276 * - check for reset or next request. if present, skip post procesing.
277 * - now check if user requested running a saved search, if so, then
278 * the form values associated with the saved search are used for searching.
279 * - if user has done a submit with new values the regular post submissing is
280 * done.
281 * The processing consists of using a Selector / Controller framework for getting the
282 * search results.
283 *
284 * @param
285 *
286 * @return void
6a488035 287 */
00be9182 288 public function postProcess() {
6a488035
TO
289 if ($this->_done) {
290 return;
291 }
292
293 $this->_done = TRUE;
294
295 if (!empty($_POST)) {
296 $this->_formValues = $this->controller->exportValues($this->_name);
297 }
298
299 if (empty($this->_formValues)) {
300 $this->_formValues = $this->controller->exportValues($this->_name);
301 }
302
303 $this->fixFormValues();
304
305 if (isset($this->_ssID) && empty($_POST)) {
306 // if we are editing / running a saved search and the form has not been posted
307 $this->_formValues = CRM_Contact_BAO_SavedSearch::getFormValues($this->_ssID);
308 }
309
d43b88cc
CW
310 // We don't show test records in summaries or dashboards
311 if (empty($this->_formValues['participant_test']) && $this->_force) {
6a488035
TO
312 $this->_formValues["participant_test"] = 0;
313 }
314
c94d39fd 315 CRM_Core_BAO_CustomValue::fixCustomFieldValue($this->_formValues);
6a488035
TO
316
317 $this->_queryParams = CRM_Contact_BAO_Query::convertFormValues($this->_formValues);
318
319 $this->set('formValues', $this->_formValues);
320 $this->set('queryParams', $this->_queryParams);
321
322 $buttonName = $this->controller->getButtonName();
e341bbee 323 if ($buttonName == $this->_actionButtonName) {
6a488035
TO
324 // check actionName and if next, then do not repeat a search, since we are going to the next page
325
326 // hack, make sure we reset the task values
a5611c8e 327 $stateMachine = $this->controller->getStateMachine();
6a488035
TO
328 $formName = $stateMachine->getTaskFormName();
329 $this->controller->resetPage($formName);
330 return;
331 }
332
333 $sortID = NULL;
334 if ($this->get(CRM_Utils_Sort::SORT_ID)) {
335 $sortID = CRM_Utils_Sort::sortIDValue($this->get(CRM_Utils_Sort::SORT_ID),
336 $this->get(CRM_Utils_Sort::SORT_DIRECTION)
337 );
338 }
339
340 $this->_queryParams = CRM_Contact_BAO_Query::convertFormValues($this->_formValues);
341
342 $selector = new CRM_Event_Selector_Search($this->_queryParams,
343 $this->_action,
344 NULL,
345 $this->_single,
346 $this->_limit,
347 $this->_context
348 );
349
350 $selector->setKey($this->controller->_key);
351
352 $prefix = NULL;
353 if ($this->_context == 'user') {
354 $prefix = $this->_prefix;
355 }
356
357 $this->assign("{$prefix}limit", $this->_limit);
358 $this->assign("{$prefix}single", $this->_single);
359
360 $controller = new CRM_Core_Selector_Controller($selector,
361 $this->get(CRM_Utils_Pager::PAGE_ID),
362 $sortID,
363 CRM_Core_Action::VIEW,
364 $this,
365 CRM_Core_Selector_Controller::SESSION,
366 $prefix
367 );
368 $controller->setEmbedded(TRUE);
369
a5611c8e 370 $query = $selector->getQuery();
6a488035
TO
371 if ($this->_context == 'user') {
372 $query->setSkipPermission(TRUE);
373 }
374 $controller->run();
375 }
376
377 /**
dc195289 378 * add the rules (mainly global rules) for form.
6a488035
TO
379 * All local rules are added near the element
380 *
355ba699 381 * @return void
6a488035
TO
382 * @see valid_date
383 */
6ea503d4
TO
384 public function addRules() {
385 }
6a488035
TO
386
387 /**
66f9e52b 388 * Set the default form values.
6a488035 389 *
6a488035 390 *
a6c01b45
CW
391 * @return array
392 * the default array reference
6a488035 393 */
00be9182 394 public function setDefaultValues() {
6a488035
TO
395 $defaults = array();
396 $defaults = $this->_formValues;
397 return $defaults;
398 }
399
00be9182 400 public function fixFormValues() {
6a488035
TO
401 // if this search has been forced
402 // then see if there are any get values, and if so over-ride the post values
403 // note that this means that GET over-rides POST :)
404 $event = CRM_Utils_Request::retrieve('event', 'Positive',
405 CRM_Core_DAO::$_nullObject
406 );
407 if ($event) {
408 $this->_formValues['event_id'] = $event;
409 $this->_formValues['event_name'] = CRM_Event_PseudoConstant::event($event, TRUE);
410 }
411
412 $status = CRM_Utils_Request::retrieve('status', 'String',
413 CRM_Core_DAO::$_nullObject
414 );
415
416 if (isset($status)) {
417 if ($status === 'true') {
d5bd1f7e 418 $statusTypes = CRM_Event_PseudoConstant::participantStatus(NULL, "is_counted = 1");
6a488035
TO
419 }
420 elseif ($status === 'false') {
d5bd1f7e 421 $statusTypes = CRM_Event_PseudoConstant::participantStatus(NULL, "is_counted = 0");
6a488035
TO
422 }
423 elseif (is_numeric($status)) {
53133bb0 424 $statusTypes = (int) $status;
6a488035 425 }
790b3777 426 elseif (is_array($status) && !array_key_exists('IN', $status)) {
427 $statusTypes = array_keys($status);
428 }
429 $this->_formValues['participant_status_id'] = is_array($statusTypes) ? array_keys($statusTypes) : $statusTypes;
6a488035
TO
430 }
431
432 $role = CRM_Utils_Request::retrieve('role', 'String',
433 CRM_Core_DAO::$_nullObject
434 );
435
436 if (isset($role)) {
437 if ($role === 'true') {
4b191b48 438 $roleTypes = CRM_Event_PseudoConstant::participantRole(NULL, "filter = 1");
6a488035
TO
439 }
440 elseif ($role === 'false') {
4b191b48 441 $roleTypes = CRM_Event_PseudoConstant::participantRole(NULL, "filter = 0");
6a488035
TO
442 }
443 elseif (is_numeric($role)) {
53133bb0 444 $roleTypes = (int) $role;
6a488035 445 }
d5bd1f7e 446 $this->_formValues['participant_role_id'] = is_array($roleTypes) ? array_keys($roleTypes) : $roleTypes;
53133bb0 447 }
448
6a488035
TO
449 $type = CRM_Utils_Request::retrieve('type', 'Positive',
450 CRM_Core_DAO::$_nullObject
451 );
452 if ($type) {
453 $this->_formValues['event_type'] = $type;
454 }
455
456 $cid = CRM_Utils_Request::retrieve('cid', 'Positive', $this);
457
458 if ($cid) {
459 $cid = CRM_Utils_Type::escape($cid, 'Integer');
460 if ($cid > 0) {
461 $this->_formValues['contact_id'] = $cid;
462
463 // also assign individual mode to the template
464 $this->_single = TRUE;
465 }
466 }
467 }
468
0cf587a7
EM
469 /**
470 * @return null
471 */
00be9182 472 public function getFormValues() {
6a488035
TO
473 return NULL;
474 }
475
476 /**
477 * Return a descriptive name for the page, used in wizard header
478 *
479 * @return string
6a488035
TO
480 */
481 public function getTitle() {
482 return ts('Find Participants');
483 }
96025800 484
6a488035 485}