Merge pull request #7891 from totten/fuzionnz-CRM-18098
[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
f179424e 133 $this->_queryParams = CRM_Contact_BAO_Query::convertFormValues($this->_formValues, 0, FALSE, NULL, array('event_id'));
6a488035
TO
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'];
f179424e 218 foreach ($participant_fee_id as $k => &$val) {
219 $val = CRM_Core_DAO::getFieldValue('CRM_Price_DAO_PriceFieldValue', $val, 'label');
220 $val = CRM_Core_DAO::escapeString(trim($val));
221 }
222 $feeLabel = implode('|', $participant_fee_id);
223 $seatClause[] = "( participant.fee_level REGEXP '{$feeLabel}' )";
6a488035 224 }
59adcdd9 225
884fdc63 226 $seatClause = implode(' AND ', $seatClause);
227 $participantCount = CRM_Event_BAO_Event::eventTotalSeats(array_pop($eventIds), $seatClause);
6a488035
TO
228 }
229 $this->assign('participantCount', $participantCount);
230 $this->assign('lineItems', $lineItems);
231
6a488035
TO
232 $permission = CRM_Core_Permission::getPermission();
233
34197a55 234 $tasks = CRM_Event_Task::permissionedTaskTitles($permission);
6a488035
TO
235 if (isset($this->_ssID)) {
236 if ($permission == CRM_Core_Permission::EDIT) {
237 $tasks = $tasks + CRM_Event_Task::optionalTaskTitle();
238 }
239
240 $savedSearchValues = array(
241 'id' => $this->_ssID,
242 'name' => CRM_Contact_BAO_SavedSearch::getName($this->_ssID, 'title'),
243 );
244 $this->assign_by_ref('savedSearch', $savedSearchValues);
245 $this->assign('ssID', $this->_ssID);
246 }
247
34197a55 248 $this->addTaskMenu($tasks);
6a488035
TO
249 }
250
6a488035
TO
251 }
252
e597fc33
DG
253 /**
254 * Get the label for the sortName field if email searching is on.
255 *
256 * (email searching is a setting under search preferences).
257 *
258 * @return string
259 */
260 protected function getSortNameLabelWithEmail() {
261 return ts('Participant Name or Email');
262 }
263
264 /**
265 * Get the label for the sortName field if email searching is off.
266 *
267 * (email searching is a setting under search preferences).
268 *
269 * @return string
270 */
271 protected function getSortNameLabelWithOutEmail() {
272 return ts('Participant Name');
273 }
274
6a488035
TO
275 /**
276 * The post processing of the form gets done here.
277 *
278 * Key things done during post processing are
279 * - check for reset or next request. if present, skip post procesing.
280 * - now check if user requested running a saved search, if so, then
281 * the form values associated with the saved search are used for searching.
282 * - if user has done a submit with new values the regular post submissing is
283 * done.
284 * The processing consists of using a Selector / Controller framework for getting the
285 * search results.
286 *
287 * @param
288 *
289 * @return void
6a488035 290 */
00be9182 291 public function postProcess() {
6a488035
TO
292 if ($this->_done) {
293 return;
294 }
295
296 $this->_done = TRUE;
297
298 if (!empty($_POST)) {
299 $this->_formValues = $this->controller->exportValues($this->_name);
300 }
301
302 if (empty($this->_formValues)) {
303 $this->_formValues = $this->controller->exportValues($this->_name);
304 }
305
306 $this->fixFormValues();
307
308 if (isset($this->_ssID) && empty($_POST)) {
309 // if we are editing / running a saved search and the form has not been posted
310 $this->_formValues = CRM_Contact_BAO_SavedSearch::getFormValues($this->_ssID);
311 }
312
d43b88cc
CW
313 // We don't show test records in summaries or dashboards
314 if (empty($this->_formValues['participant_test']) && $this->_force) {
6a488035
TO
315 $this->_formValues["participant_test"] = 0;
316 }
317
c94d39fd 318 CRM_Core_BAO_CustomValue::fixCustomFieldValue($this->_formValues);
6a488035 319
f179424e 320 $this->_queryParams = CRM_Contact_BAO_Query::convertFormValues($this->_formValues, 0, FALSE, NULL, array('event_id'));
6a488035
TO
321
322 $this->set('formValues', $this->_formValues);
323 $this->set('queryParams', $this->_queryParams);
324
325 $buttonName = $this->controller->getButtonName();
e341bbee 326 if ($buttonName == $this->_actionButtonName) {
6a488035
TO
327 // check actionName and if next, then do not repeat a search, since we are going to the next page
328
329 // hack, make sure we reset the task values
a5611c8e 330 $stateMachine = $this->controller->getStateMachine();
6a488035
TO
331 $formName = $stateMachine->getTaskFormName();
332 $this->controller->resetPage($formName);
333 return;
334 }
335
336 $sortID = NULL;
337 if ($this->get(CRM_Utils_Sort::SORT_ID)) {
338 $sortID = CRM_Utils_Sort::sortIDValue($this->get(CRM_Utils_Sort::SORT_ID),
339 $this->get(CRM_Utils_Sort::SORT_DIRECTION)
340 );
341 }
342
f179424e 343 $this->_queryParams = CRM_Contact_BAO_Query::convertFormValues($this->_formValues, 0, FALSE, NULL, array('event_id'));
6a488035
TO
344
345 $selector = new CRM_Event_Selector_Search($this->_queryParams,
346 $this->_action,
347 NULL,
348 $this->_single,
349 $this->_limit,
350 $this->_context
351 );
352
353 $selector->setKey($this->controller->_key);
354
355 $prefix = NULL;
356 if ($this->_context == 'user') {
357 $prefix = $this->_prefix;
358 }
359
360 $this->assign("{$prefix}limit", $this->_limit);
361 $this->assign("{$prefix}single", $this->_single);
362
363 $controller = new CRM_Core_Selector_Controller($selector,
364 $this->get(CRM_Utils_Pager::PAGE_ID),
365 $sortID,
366 CRM_Core_Action::VIEW,
367 $this,
368 CRM_Core_Selector_Controller::SESSION,
369 $prefix
370 );
371 $controller->setEmbedded(TRUE);
372
a5611c8e 373 $query = $selector->getQuery();
6a488035
TO
374 if ($this->_context == 'user') {
375 $query->setSkipPermission(TRUE);
376 }
377 $controller->run();
378 }
379
380 /**
dc195289 381 * add the rules (mainly global rules) for form.
6a488035
TO
382 * All local rules are added near the element
383 *
355ba699 384 * @return void
6a488035
TO
385 * @see valid_date
386 */
6ea503d4
TO
387 public function addRules() {
388 }
6a488035
TO
389
390 /**
66f9e52b 391 * Set the default form values.
6a488035 392 *
6a488035 393 *
a6c01b45
CW
394 * @return array
395 * the default array reference
6a488035 396 */
00be9182 397 public function setDefaultValues() {
6a488035
TO
398 $defaults = array();
399 $defaults = $this->_formValues;
400 return $defaults;
401 }
402
00be9182 403 public function fixFormValues() {
6a488035
TO
404 // if this search has been forced
405 // then see if there are any get values, and if so over-ride the post values
406 // note that this means that GET over-rides POST :)
407 $event = CRM_Utils_Request::retrieve('event', 'Positive',
408 CRM_Core_DAO::$_nullObject
409 );
410 if ($event) {
411 $this->_formValues['event_id'] = $event;
412 $this->_formValues['event_name'] = CRM_Event_PseudoConstant::event($event, TRUE);
413 }
414
415 $status = CRM_Utils_Request::retrieve('status', 'String',
416 CRM_Core_DAO::$_nullObject
417 );
418
419 if (isset($status)) {
420 if ($status === 'true') {
d5bd1f7e 421 $statusTypes = CRM_Event_PseudoConstant::participantStatus(NULL, "is_counted = 1");
6a488035
TO
422 }
423 elseif ($status === 'false') {
d5bd1f7e 424 $statusTypes = CRM_Event_PseudoConstant::participantStatus(NULL, "is_counted = 0");
6a488035
TO
425 }
426 elseif (is_numeric($status)) {
53133bb0 427 $statusTypes = (int) $status;
6a488035 428 }
790b3777 429 elseif (is_array($status) && !array_key_exists('IN', $status)) {
430 $statusTypes = array_keys($status);
431 }
432 $this->_formValues['participant_status_id'] = is_array($statusTypes) ? array_keys($statusTypes) : $statusTypes;
6a488035
TO
433 }
434
435 $role = CRM_Utils_Request::retrieve('role', 'String',
436 CRM_Core_DAO::$_nullObject
437 );
438
439 if (isset($role)) {
440 if ($role === 'true') {
4b191b48 441 $roleTypes = CRM_Event_PseudoConstant::participantRole(NULL, "filter = 1");
6a488035
TO
442 }
443 elseif ($role === 'false') {
4b191b48 444 $roleTypes = CRM_Event_PseudoConstant::participantRole(NULL, "filter = 0");
6a488035
TO
445 }
446 elseif (is_numeric($role)) {
53133bb0 447 $roleTypes = (int) $role;
6a488035 448 }
d5bd1f7e 449 $this->_formValues['participant_role_id'] = is_array($roleTypes) ? array_keys($roleTypes) : $roleTypes;
53133bb0 450 }
451
6a488035
TO
452 $type = CRM_Utils_Request::retrieve('type', 'Positive',
453 CRM_Core_DAO::$_nullObject
454 );
455 if ($type) {
456 $this->_formValues['event_type'] = $type;
457 }
458
459 $cid = CRM_Utils_Request::retrieve('cid', 'Positive', $this);
460
461 if ($cid) {
462 $cid = CRM_Utils_Type::escape($cid, 'Integer');
463 if ($cid > 0) {
464 $this->_formValues['contact_id'] = $cid;
465
466 // also assign individual mode to the template
467 $this->_single = TRUE;
468 }
469 }
470 }
471
0cf587a7
EM
472 /**
473 * @return null
474 */
00be9182 475 public function getFormValues() {
6a488035
TO
476 return NULL;
477 }
478
479 /**
480 * Return a descriptive name for the page, used in wizard header
481 *
482 * @return string
6a488035
TO
483 */
484 public function getTitle() {
485 return ts('Find Participants');
486 }
96025800 487
6a488035 488}