Properly escaped participant roles.
[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();
6a488035
TO
171 $this->addElement('text', 'sort_name', ts('Participant Name or Email'), CRM_Core_DAO::getAttribute('CRM_Contact_DAO_Contact', 'sort_name'));
172
173 CRM_Event_BAO_Query::buildSearchForm($this);
174
6a488035
TO
175 $rows = $this->get('rows');
176 if (is_array($rows)) {
177 $lineItems = $eventIds = array();
178 if (!$this->_single) {
8d36b801 179 $this->addRowSelectors($rows);
6a488035
TO
180 }
181 foreach ($rows as $row) {
182 $eventIds[$row['event_id']] = $row['event_id'];
6a488035
TO
183 if (CRM_Event_BAO_Event::usesPriceSet($row['event_id'])) {
184 // add line item details if applicable
185 $lineItems[$row['participant_id']] = CRM_Price_BAO_LineItem::getLineItems($row['participant_id']);
186 }
187 }
188
189 //get actual count only when we are dealing w/ single event.
190 $participantCount = 0;
191 if (count($eventIds) == 1) {
192 //convert form values to clause.
193 $seatClause = array();
884fdc63 194 if (CRM_Utils_Array::value('participant_test', $this->_formValues) == '1' || CRM_Utils_Array::value('participant_test', $this->_formValues) == '0') {
195 $seatClause[] = "( participant.is_test = {$this->_formValues['participant_test']} )";
196 }
197 if (!empty($this->_formValues['participant_status_id'])) {
ef36db8b 198 $seatClause[] = CRM_Contact_BAO_Query::buildClause("participant.status_id", '=', $this->_formValues['participant_status_id'], 'Int');
199 if ($status = CRM_Utils_Array::value('IN', $this->_formValues['participant_status_id'])) {
200 $this->_formValues['participant_status_id'] = $status;
201 }
884fdc63 202 }
203 if (!empty($this->_formValues['participant_role_id'])) {
0906de17
MM
204 $escapedRoles = array();
205 foreach ((array) $this->_formValues['participant_role_id'] as $participantRole) {
206 $escapedRoles[] = CRM_Utils_Type::escape($participantRole, 'String');
207 }
208 $seatClause[] = '( participant.role_id IN ( "' . implode('" , "', $escapedRoles) . '" ) )';
884fdc63 209 }
210
7c75c017 211 // CRM-15379
212 if (!empty($this->_formValues['participant_fee_id'])) {
213 $participant_fee_id = $this->_formValues['participant_fee_id'];
214 $feeLabel = CRM_Core_DAO::getFieldValue('CRM_Price_DAO_PriceFieldValue', $participant_fee_id, 'label');
215 $feeLabel = CRM_Core_DAO::escapeString(trim($feeLabel));
884fdc63 216 $seatClause[] = "( participant.fee_level LIKE '%$feeLabel%' )";
6a488035 217 }
59adcdd9 218
884fdc63 219 $seatClause = implode(' AND ', $seatClause);
220 $participantCount = CRM_Event_BAO_Event::eventTotalSeats(array_pop($eventIds), $seatClause);
6a488035
TO
221 }
222 $this->assign('participantCount', $participantCount);
223 $this->assign('lineItems', $lineItems);
224
6a488035
TO
225 $permission = CRM_Core_Permission::getPermission();
226
34197a55 227 $tasks = CRM_Event_Task::permissionedTaskTitles($permission);
6a488035
TO
228 if (isset($this->_ssID)) {
229 if ($permission == CRM_Core_Permission::EDIT) {
230 $tasks = $tasks + CRM_Event_Task::optionalTaskTitle();
231 }
232
233 $savedSearchValues = array(
234 'id' => $this->_ssID,
235 'name' => CRM_Contact_BAO_SavedSearch::getName($this->_ssID, 'title'),
236 );
237 $this->assign_by_ref('savedSearch', $savedSearchValues);
238 $this->assign('ssID', $this->_ssID);
239 }
240
34197a55 241 $this->addTaskMenu($tasks);
6a488035
TO
242 }
243
6a488035
TO
244 }
245
246 /**
247 * The post processing of the form gets done here.
248 *
249 * Key things done during post processing are
250 * - check for reset or next request. if present, skip post procesing.
251 * - now check if user requested running a saved search, if so, then
252 * the form values associated with the saved search are used for searching.
253 * - if user has done a submit with new values the regular post submissing is
254 * done.
255 * The processing consists of using a Selector / Controller framework for getting the
256 * search results.
257 *
258 * @param
259 *
260 * @return void
6a488035 261 */
00be9182 262 public function postProcess() {
6a488035
TO
263 if ($this->_done) {
264 return;
265 }
266
267 $this->_done = TRUE;
268
269 if (!empty($_POST)) {
270 $this->_formValues = $this->controller->exportValues($this->_name);
271 }
272
273 if (empty($this->_formValues)) {
274 $this->_formValues = $this->controller->exportValues($this->_name);
275 }
276
277 $this->fixFormValues();
278
279 if (isset($this->_ssID) && empty($_POST)) {
280 // if we are editing / running a saved search and the form has not been posted
281 $this->_formValues = CRM_Contact_BAO_SavedSearch::getFormValues($this->_ssID);
282 }
283
d43b88cc
CW
284 // We don't show test records in summaries or dashboards
285 if (empty($this->_formValues['participant_test']) && $this->_force) {
6a488035
TO
286 $this->_formValues["participant_test"] = 0;
287 }
288
c94d39fd 289 CRM_Core_BAO_CustomValue::fixCustomFieldValue($this->_formValues);
6a488035
TO
290
291 $this->_queryParams = CRM_Contact_BAO_Query::convertFormValues($this->_formValues);
292
293 $this->set('formValues', $this->_formValues);
294 $this->set('queryParams', $this->_queryParams);
295
296 $buttonName = $this->controller->getButtonName();
e341bbee 297 if ($buttonName == $this->_actionButtonName) {
6a488035
TO
298 // check actionName and if next, then do not repeat a search, since we are going to the next page
299
300 // hack, make sure we reset the task values
a5611c8e 301 $stateMachine = $this->controller->getStateMachine();
6a488035
TO
302 $formName = $stateMachine->getTaskFormName();
303 $this->controller->resetPage($formName);
304 return;
305 }
306
307 $sortID = NULL;
308 if ($this->get(CRM_Utils_Sort::SORT_ID)) {
309 $sortID = CRM_Utils_Sort::sortIDValue($this->get(CRM_Utils_Sort::SORT_ID),
310 $this->get(CRM_Utils_Sort::SORT_DIRECTION)
311 );
312 }
313
314 $this->_queryParams = CRM_Contact_BAO_Query::convertFormValues($this->_formValues);
315
316 $selector = new CRM_Event_Selector_Search($this->_queryParams,
317 $this->_action,
318 NULL,
319 $this->_single,
320 $this->_limit,
321 $this->_context
322 );
323
324 $selector->setKey($this->controller->_key);
325
326 $prefix = NULL;
327 if ($this->_context == 'user') {
328 $prefix = $this->_prefix;
329 }
330
331 $this->assign("{$prefix}limit", $this->_limit);
332 $this->assign("{$prefix}single", $this->_single);
333
334 $controller = new CRM_Core_Selector_Controller($selector,
335 $this->get(CRM_Utils_Pager::PAGE_ID),
336 $sortID,
337 CRM_Core_Action::VIEW,
338 $this,
339 CRM_Core_Selector_Controller::SESSION,
340 $prefix
341 );
342 $controller->setEmbedded(TRUE);
343
a5611c8e 344 $query = $selector->getQuery();
6a488035
TO
345 if ($this->_context == 'user') {
346 $query->setSkipPermission(TRUE);
347 }
348 $controller->run();
349 }
350
351 /**
dc195289 352 * add the rules (mainly global rules) for form.
6a488035
TO
353 * All local rules are added near the element
354 *
355ba699 355 * @return void
6a488035
TO
356 * @see valid_date
357 */
6ea503d4
TO
358 public function addRules() {
359 }
6a488035
TO
360
361 /**
66f9e52b 362 * Set the default form values.
6a488035 363 *
6a488035 364 *
a6c01b45
CW
365 * @return array
366 * the default array reference
6a488035 367 */
00be9182 368 public function setDefaultValues() {
6a488035
TO
369 $defaults = array();
370 $defaults = $this->_formValues;
371 return $defaults;
372 }
373
00be9182 374 public function fixFormValues() {
6a488035
TO
375 // if this search has been forced
376 // then see if there are any get values, and if so over-ride the post values
377 // note that this means that GET over-rides POST :)
378 $event = CRM_Utils_Request::retrieve('event', 'Positive',
379 CRM_Core_DAO::$_nullObject
380 );
381 if ($event) {
382 $this->_formValues['event_id'] = $event;
383 $this->_formValues['event_name'] = CRM_Event_PseudoConstant::event($event, TRUE);
384 }
385
386 $status = CRM_Utils_Request::retrieve('status', 'String',
387 CRM_Core_DAO::$_nullObject
388 );
389
390 if (isset($status)) {
391 if ($status === 'true') {
d5bd1f7e 392 $statusTypes = CRM_Event_PseudoConstant::participantStatus(NULL, "is_counted = 1");
6a488035
TO
393 }
394 elseif ($status === 'false') {
d5bd1f7e 395 $statusTypes = CRM_Event_PseudoConstant::participantStatus(NULL, "is_counted = 0");
6a488035
TO
396 }
397 elseif (is_numeric($status)) {
53133bb0 398 $statusTypes = (int) $status;
6a488035 399 }
ef36db8b 400
401 $this->_formValues['participant_status_id'] = is_array($statusTypes) ? array('IN' => array_keys($statusTypes)) : $statusTypes;
402 }
403 elseif ($statusTypes = CRM_Utils_Array::value('participant_status_id', $this->_formValues)) {
404 $this->_formValues['participant_status_id'] = is_array($statusTypes) ? array('IN' => $statusTypes) : $statusTypes;
6a488035
TO
405 }
406
407 $role = CRM_Utils_Request::retrieve('role', 'String',
408 CRM_Core_DAO::$_nullObject
409 );
410
411 if (isset($role)) {
412 if ($role === 'true') {
4b191b48 413 $roleTypes = CRM_Event_PseudoConstant::participantRole(NULL, "filter = 1");
6a488035
TO
414 }
415 elseif ($role === 'false') {
4b191b48 416 $roleTypes = CRM_Event_PseudoConstant::participantRole(NULL, "filter = 0");
6a488035
TO
417 }
418 elseif (is_numeric($role)) {
53133bb0 419 $roleTypes = (int) $role;
6a488035 420 }
d5bd1f7e 421 $this->_formValues['participant_role_id'] = is_array($roleTypes) ? array_keys($roleTypes) : $roleTypes;
53133bb0 422 }
423
6a488035
TO
424 $type = CRM_Utils_Request::retrieve('type', 'Positive',
425 CRM_Core_DAO::$_nullObject
426 );
427 if ($type) {
428 $this->_formValues['event_type'] = $type;
429 }
430
431 $cid = CRM_Utils_Request::retrieve('cid', 'Positive', $this);
432
433 if ($cid) {
434 $cid = CRM_Utils_Type::escape($cid, 'Integer');
435 if ($cid > 0) {
436 $this->_formValues['contact_id'] = $cid;
437
438 // also assign individual mode to the template
439 $this->_single = TRUE;
440 }
441 }
442 }
443
0cf587a7
EM
444 /**
445 * @return null
446 */
00be9182 447 public function getFormValues() {
6a488035
TO
448 return NULL;
449 }
450
451 /**
452 * Return a descriptive name for the page, used in wizard header
453 *
454 * @return string
6a488035
TO
455 */
456 public function getTitle() {
457 return ts('Find Participants');
458 }
96025800 459
6a488035 460}