CRM-20630: Modifying CRM_Activity_Form_Search to use URL parameters as search form...
[civicrm-core.git] / CRM / Activity / Form / Search.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
7e9e8871 4 | CiviCRM version 4.7 |
6a488035 5 +--------------------------------------------------------------------+
0f03f337 6 | Copyright CiviCRM LLC (c) 2004-2017 |
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 |
c73475ea 12 | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
6a488035
TO
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 |
c73475ea
WA
20 | License and the CiviCRM Licensing Exception along |
21 | with this program; if not, contact CiviCRM LLC |
6a488035
TO
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
0f03f337 31 * @copyright CiviCRM LLC (c) 2004-2017
6a488035
TO
32 */
33
34/**
b6c94f42 35 * This file is for activity search.
6a488035 36 */
3efb5b86 37class CRM_Activity_Form_Search extends CRM_Core_Form_Search {
6a488035 38
6a488035 39 /**
fe482240 40 * The params that are sent to the query.
6a488035
TO
41 *
42 * @var array
6a488035
TO
43 */
44 protected $_queryParams;
45
6a488035 46 /**
fe482240 47 * Are we restricting ourselves to a single contact.
6a488035 48 *
6a488035
TO
49 * @var boolean
50 */
51 protected $_single = FALSE;
52
53 /**
fe482240 54 * Are we restricting ourselves to a single contact.
6a488035 55 *
6a488035
TO
56 * @var boolean
57 */
58 protected $_limit = NULL;
59
6a488035 60 /**
fe482240 61 * Prefix for the controller.
6a488035
TO
62 */
63 protected $_prefix = "activity_";
64
6a488035 65 /**
fe482240 66 * The saved search ID retrieved from the GET vars.
6a488035
TO
67 *
68 * @var int
6a488035
TO
69 */
70 protected $_ssID;
71
72 /**
fe482240 73 * Processing needed for buildForm and later.
6a488035 74 */
00be9182 75 public function preProcess() {
6a488035
TO
76 $this->set('searchFormName', 'Search');
77
c490a46a 78 // set the button names
6a488035 79 $this->_searchButtonName = $this->getButtonName('refresh');
6a488035
TO
80 $this->_actionButtonName = $this->getButtonName('next', 'action');
81
82 $this->_done = FALSE;
83 $this->defaults = array();
84
c490a46a
CW
85 // we allow the controller to set force/reset externally, useful when we are being
86 // driven by the wizard framework
a3d827a7 87 $this->_reset = CRM_Utils_Request::retrieve('reset', 'Boolean');
353ffa53
TO
88 $this->_force = CRM_Utils_Request::retrieve('force', 'Boolean', $this, FALSE);
89 $this->_limit = CRM_Utils_Request::retrieve('limit', 'Positive', $this);
6a488035
TO
90 $this->_context = CRM_Utils_Request::retrieve('context', 'String', $this, FALSE, 'search');
91
92 $this->assign("context", $this->_context);
93
94 // get user submitted values
95 // get it from controller only if form has been submitted, else preProcess has set this
96 if (!empty($_POST) && !$this->controller->isModal()) {
97 $this->_formValues = $this->controller->exportValues($this->_name);
98 }
99 else {
100 $this->_formValues = $this->get('formValues');
998fb051 101
102 if ($this->_force) {
103 // If we force the search then merge form values with url values
104 // and set submit values to form values.
105 $this->_formValues = array_merge((array) $this->_formValues, CRM_Utils_Request::exportValues());
106 $this->_submitValues = $this->_formValues;
107 }
6a488035
TO
108 }
109
110 if (empty($this->_formValues)) {
111 if (isset($this->_ssID)) {
112 $this->_formValues = CRM_Contact_BAO_SavedSearch::getFormValues($this->_ssID);
113 }
114 }
115
116 if ($this->_force) {
117 $this->postProcess();
118 $this->set('force', 0);
119 }
120
121 $sortID = NULL;
122 if ($this->get(CRM_Utils_Sort::SORT_ID)) {
123 $sortID = CRM_Utils_Sort::sortIDValue($this->get(CRM_Utils_Sort::SORT_ID),
124 $this->get(CRM_Utils_Sort::SORT_DIRECTION)
125 );
126 }
127
128 $this->_queryParams = CRM_Contact_BAO_Query::convertFormValues($this->_formValues);
129 $selector = new CRM_Activity_Selector_Search($this->_queryParams,
130 $this->_action,
131 NULL,
132 $this->_single,
133 $this->_limit,
134 $this->_context
135 );
136 $prefix = NULL;
137 if ($this->_context == 'user') {
138 $prefix = $this->_prefix;
139 }
140
141 $this->assign("{$prefix}limit", $this->_limit);
142 $this->assign("{$prefix}single", $this->_single);
143
144 $controller = new CRM_Core_Selector_Controller($selector,
145 $this->get(CRM_Utils_Pager::PAGE_ID),
146 $sortID,
147 CRM_Core_Action::VIEW,
148 $this,
149 CRM_Core_Selector_Controller::TRANSFER,
150 $prefix
151 );
152 $controller->setEmbedded(TRUE);
153 $controller->moveFromSessionToTemplate();
154
155 $this->assign('summary', $this->get('summary'));
156 }
157
158 /**
fe482240 159 * Build the form object.
6a488035 160 */
00be9182 161 public function buildQuickForm() {
3efb5b86 162 parent::buildQuickForm();
e597fc33 163 $this->addSortNameField();
6a488035
TO
164
165 CRM_Activity_BAO_Query::buildSearchForm($this);
166
6a488035
TO
167 $rows = $this->get('rows');
168 if (is_array($rows)) {
169 if (!$this->_single) {
8d36b801 170 $this->addRowSelectors($rows);
6a488035
TO
171 }
172
6a488035
TO
173 $permission = CRM_Core_Permission::getPermission();
174
34197a55 175 $this->addTaskMenu(CRM_Activity_Task::permissionedTaskTitles($permission));
6a488035
TO
176 }
177
6a488035
TO
178 }
179
180 /**
181 * The post processing of the form gets done here.
182 *
183 * Key things done during post processing are
184 * - check for reset or next request. if present, skip post procesing.
185 * - now check if user requested running a saved search, if so, then
186 * the form values associated with the saved search are used for searching.
187 * - if user has done a submit with new values the regular post submissing is
188 * done.
2e2605fe 189 *
6a488035
TO
190 * The processing consists of using a Selector / Controller framework for getting the
191 * search results.
6a488035 192 */
00be9182 193 public function postProcess() {
6a488035
TO
194 if ($this->_done) {
195 return;
196 }
197
198 $this->_done = TRUE;
199
200 if (!empty($_POST)) {
201 $this->_formValues = $this->controller->exportValues($this->_name);
0b38e8f1 202 $specialParams = array(
203 'activity_type_id',
204 'status_id',
da236f9a 205 'priority_id',
288674ef 206 'activity_text',
0b38e8f1 207 );
da236f9a 208 $changeNames = array(
209 'status_id' => 'activity_status_id',
210 'priority_id' => 'activity_priority_id',
211 );
212
0b38e8f1 213 CRM_Contact_BAO_Query::processSpecialFormValue($this->_formValues, $specialParams, $changeNames);
6a488035
TO
214 }
215
216 $this->fixFormValues();
217
218 if (isset($this->_ssID) && empty($_POST)) {
219 // if we are editing / running a saved search and the form has not been posted
220 $this->_formValues = CRM_Contact_BAO_SavedSearch::getFormValues($this->_ssID);
221 }
6a488035 222
d43b88cc
CW
223 // We don't show test records in summaries or dashboards
224 if (empty($this->_formValues['activity_test']) && $this->_force) {
6a488035
TO
225 $this->_formValues["activity_test"] = 0;
226 }
28c666be 227
c94d39fd 228 CRM_Core_BAO_CustomValue::fixCustomFieldValue($this->_formValues);
6a488035
TO
229
230 $this->_queryParams = CRM_Contact_BAO_Query::convertFormValues($this->_formValues);
231
232 $this->set('formValues', $this->_formValues);
233 $this->set('queryParams', $this->_queryParams);
234
235 $buttonName = $this->controller->getButtonName();
e341bbee 236 if ($buttonName == $this->_actionButtonName) {
6a488035
TO
237 // check actionName and if next, then do not repeat a search, since we are going to the next page
238 // hack, make sure we reset the task values
95ea77ec 239 $stateMachine = $this->controller->getStateMachine();
6a488035
TO
240 $formName = $stateMachine->getTaskFormName();
241 $this->controller->resetPage($formName);
242 return;
243 }
244
245 $sortID = NULL;
246 if ($this->get(CRM_Utils_Sort::SORT_ID)) {
247 $sortID = CRM_Utils_Sort::sortIDValue($this->get(CRM_Utils_Sort::SORT_ID),
248 $this->get(CRM_Utils_Sort::SORT_DIRECTION)
249 );
250 }
251
252 $this->_queryParams = CRM_Contact_BAO_Query::convertFormValues($this->_formValues);
253
254 $selector = new CRM_Activity_Selector_Search($this->_queryParams,
255 $this->_action,
256 NULL,
257 $this->_single,
258 $this->_limit,
259 $this->_context
260 );
261 $selector->setKey($this->controller->_key);
262
263 $prefix = NULL;
264 if ($this->_context == 'basic' || $this->_context == 'user') {
265 $prefix = $this->_prefix;
266 }
267
268 $controller = new CRM_Core_Selector_Controller($selector,
269 $this->get(CRM_Utils_Pager::PAGE_ID),
270 $sortID,
271 CRM_Core_Action::VIEW,
272 $this,
273 CRM_Core_Selector_Controller::SESSION,
274 $prefix
275 );
276 $controller->setEmbedded(TRUE);
277 $query = &$selector->getQuery();
278
279 if ($this->_context == 'user') {
280 $query->setSkipPermission(TRUE);
281 }
282 $controller->run();
283 }
284
00be9182 285 public function fixFormValues() {
6a488035
TO
286 if (!$this->_force) {
287 return;
288 }
0370ad20 289
6a488035
TO
290 $status = CRM_Utils_Request::retrieve('status', 'String', $this);
291 if ($status) {
97b002d7
CW
292 $this->_formValues['activity_status_id'] = $status;
293 $this->_defaults['activity_status_id'] = $status;
6a488035
TO
294 }
295
a3d827a7 296 $survey = CRM_Utils_Request::retrieve('survey', 'Positive');
300c3253 297
6a488035 298 if ($survey) {
9231464f
KJ
299 $this->_formValues['activity_survey_id'] = $this->_defaults['activity_survey_id'] = $survey;
300 $sid = CRM_Utils_Array::value('activity_survey_id', $this->_formValues);
301 $activity_type_id = CRM_Core_DAO::getFieldValue('CRM_Campaign_DAO_Survey', $sid, 'activity_type_id');
302
c56c5190 303 // since checkbox are replaced by multiple select option
304 $this->_formValues['activity_type_id'] = $activity_type_id;
305 $this->_defaults['activity_type_id'] = $activity_type_id;
6a488035
TO
306 }
307 $cid = CRM_Utils_Request::retrieve('cid', 'Positive', $this);
308
309 if ($cid) {
310 $cid = CRM_Utils_Type::escape($cid, 'Integer');
311 if ($cid > 0) {
312 $this->_formValues['contact_id'] = $cid;
313
314 $activity_role = CRM_Utils_Request::retrieve('activity_role', 'Positive', $this);
315
316 if ($activity_role) {
317 $this->_formValues['activity_role'] = $activity_role;
318 }
319 else {
6a488035
TO
320 $this->_defaults['sort_name'] = CRM_Core_DAO::getFieldValue('CRM_Contact_DAO_Contact', $cid, 'sort_name');
321 }
322 // also assign individual mode to the template
323 $this->_single = TRUE;
324 }
325 }
8ef12e64 326
4e636a74 327 // Added for membership search
8ef12e64 328
1273d77c 329 $signupType = CRM_Utils_Request::retrieve('signupType', 'Positive');
8ef12e64 330
4e636a74 331 if ($signupType) {
2e2acd1f 332 $this->_formValues['activity_role'] = 1;
2e2acd1f 333 $this->_defaults['activity_role'] = 1;
4e636a74 334 $activityTypes = CRM_Core_PseudoConstant::activityType(TRUE, FALSE, FALSE, 'name');
0370ad20
AH
335
336 $renew = CRM_Utils_Array::key('Membership Renewal', $activityTypes);
337 $signup = CRM_Utils_Array::key('Membership Signup', $activityTypes);
8ef12e64 338
4e636a74
AH
339 switch ($signupType) {
340 case 3: // signups and renewals
341 $this->_formValues['activity_type_id'][$renew] = 1;
342 $this->_defaults['activity_type_id'][$renew] = 1;
343 case 1: // signups only
344 $this->_formValues['activity_type_id'][$signup] = 1;
345 $this->_defaults['activity_type_id'][$signup] = 1;
346 break;
8ef12e64 347
4e636a74
AH
348 case 2: // renewals only
349 $this->_formValues['activity_type_id'][$renew] = 1;
350 $this->_defaults['activity_type_id'][$renew] = 1;
351 break;
352 }
353 }
8ef12e64 354
1273d77c 355 $dateLow = CRM_Utils_Request::retrieve('dateLow', 'String');
8ef12e64 356
4e636a74 357 if ($dateLow) {
0370ad20
AH
358 $dateLow = date('m/d/Y', strtotime($dateLow));
359 $this->_formValues['activity_date_relative'] = 0;
360 $this->_defaults['activity_date_relative'] = 0;
4e636a74
AH
361 $this->_formValues['activity_date_low'] = $dateLow;
362 $this->_defaults['activity_date_low'] = $dateLow;
363 }
8ef12e64 364
1273d77c 365 $dateHigh = CRM_Utils_Request::retrieve('dateHigh', 'String');
8ef12e64 366
4e636a74
AH
367 if ($dateHigh) {
368 // Activity date time assumes midnight at the beginning of the date
369 // This sets it to almost midnight at the end of the date
32864ccf 370 /* if ($dateHigh <= 99999999) {
e70a7fc0 371 $dateHigh = 1000000 * $dateHigh + 235959;
0370ad20
AH
372 } */
373 $dateHigh = date('m/d/Y', strtotime($dateHigh));
374 $this->_formValues['activity_date_relative'] = 0;
375 $this->_defaults['activity_date_relative'] = 0;
4e636a74
AH
376 $this->_formValues['activity_date_high'] = $dateHigh;
377 $this->_defaults['activity_date_high'] = $dateHigh;
8ef12e64 378 }
19c7dd92 379
2c8d0277
DG
380 // Enable search activity by custom value
381 $requestParams = CRM_Utils_Request::exportValues();
382 foreach (array_keys($requestParams) as $key) {
383 if (substr($key, 0, 7) != 'custom_') {
384 continue;
385 }
386 elseif (empty($requestParams[$key])) {
387 continue;
388 }
389 $customValue = CRM_Utils_Request::retrieve($key, 'String', $this);
390 if ($customValue) {
391 $this->_formValues[$key] = $customValue;
392 $this->_defaults[$key] = $customValue;
393 }
394 }
9231464f
KJ
395
396 if (!empty($this->_defaults)) {
397 $this->setDefaults($this->_defaults);
398 }
6a488035
TO
399 }
400
ffd93213
EM
401 /**
402 * @return null
403 */
00be9182 404 public function getFormValues() {
6a488035
TO
405 return NULL;
406 }
407
408 /**
409 * Return a descriptive name for the page, used in wizard header
410 *
411 * @return string
6a488035
TO
412 */
413 public function getTitle() {
414 return ts('Find Activities');
415 }
96025800 416
6a488035 417}