Merge pull request #14077 from pradpnayak/AutoComplete
[civicrm-core.git] / CRM / Core / Form / Search.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 5 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2019 |
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, |
24 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
25 +--------------------------------------------------------------------+
26 */
27
28 /**
29 * Base class for most search forms
30 */
31 class CRM_Core_Form_Search extends CRM_Core_Form {
32
33 /**
34 * Are we forced to run a search
35 *
36 * @var int
37 */
38 protected $_force;
39
40 /**
41 * Name of search button
42 *
43 * @var string
44 */
45 protected $_searchButtonName;
46
47 /**
48 * Name of action button
49 *
50 * @var string
51 */
52 protected $_actionButtonName;
53
54 /**
55 * Form values that we will be using
56 *
57 * @var array
58 */
59 public $_formValues;
60
61 /**
62 * Have we already done this search
63 *
64 * @var boolean
65 */
66 protected $_done;
67
68 /**
69 * What context are we being invoked from
70 *
71 * @var string
72 */
73 protected $_context = NULL;
74
75 /**
76 * The list of tasks or actions that a searcher can perform on a result set.
77 *
78 * @var array
79 */
80 protected $_taskList = [];
81
82 /**
83 * Declare entity reference fields as they will need to be converted.
84 *
85 * The entity reference format looks like '2,3' whereas the Query object expects array(2, 3)
86 * or array('IN' => array(2, 3). The latter is the one we are moving towards standardising on.
87 *
88 * @var array
89 */
90 protected $entityReferenceFields = [];
91
92 /**
93 * Builds the list of tasks or actions that a searcher can perform on a result set.
94 *
95 * To modify the task list, child classes should alter $this->_taskList,
96 * preferably by extending this method.
97 *
98 * @return array
99 */
100 protected function buildTaskList() {
101 return $this->_taskList;
102 }
103
104 /**
105 * Metadata for fields on the search form.
106 *
107 * @var array
108 */
109 protected $searchFieldMetadata = [];
110
111 /**
112 * @return array
113 */
114 public function getSearchFieldMetadata() {
115 return $this->searchFieldMetadata;
116 }
117
118 /**
119 * @param array $searchFieldMetadata
120 */
121 public function addSearchFieldMetadata($searchFieldMetadata) {
122 $this->searchFieldMetadata = array_merge($this->searchFieldMetadata, $searchFieldMetadata);
123 }
124
125 /**
126 * Common buildForm tasks required by all searches.
127 */
128 public function buildQuickform() {
129 CRM_Core_Resources::singleton()
130 ->addScriptFile('civicrm', 'js/crm.searchForm.js', 1, 'html-header')
131 ->addStyleFile('civicrm', 'css/searchForm.css', 1, 'html-header');
132
133 $this->addButtons([
134 [
135 'type' => 'refresh',
136 'name' => ts('Search'),
137 'isDefault' => TRUE,
138 ],
139 ]);
140
141 $this->addClass('crm-search-form');
142
143 $tasks = $this->buildTaskList();
144 $this->addTaskMenu($tasks);
145 }
146
147 /**
148 * Add any fields described in metadata to the form.
149 *
150 * The goal is to describe all fields in metadata and handle from metadata rather
151 * than existing ad hoc handling.
152 */
153 public function addFormFieldsFromMetadata() {
154 $this->addFormRule(['CRM_Core_Form_Search', 'formRule'], $this);
155 $this->_action = CRM_Core_Action::ADVANCED;
156 foreach ($this->getSearchFieldMetadata() as $entity => $fields) {
157 foreach ($fields as $fieldName => $fieldSpec) {
158 if ($fieldSpec['type'] === CRM_Utils_Type::T_DATE || $fieldSpec['type'] === (CRM_Utils_Type::T_DATE + CRM_Utils_Type::T_TIME)) {
159 $this->addDatePickerRange($fieldName, $fieldSpec['title'], ($fieldSpec['type'] === (CRM_Utils_Type::T_DATE + CRM_Utils_Type::T_TIME)));
160 }
161 else {
162 $this->addField($fieldName, ['entity' => $entity]);
163 }
164 }
165 }
166 }
167
168 /**
169 * Global validation rules for the form.
170 *
171 * @param array $fields
172 * Posted values of the form.
173 * @param array $files
174 * @param object $form
175 *
176 * @return array
177 * list of errors to be posted back to the form
178 */
179 public static function formRule($fields, $files, $form) {
180 $errors = [];
181 foreach ($form->getSearchFieldMetadata() as $entity => $spec) {
182 foreach ($spec as $fieldName => $fieldSpec) {
183 if ($fieldSpec['type'] === CRM_Utils_Type::T_DATE || $fieldSpec['type'] === (CRM_Utils_Type::T_DATE + CRM_Utils_Type::T_TIME)) {
184 if (isset($fields[$fieldName . '_high']) && isset($fields[$fieldName . '_low']) && empty($fields[$fieldName . '_relative'])) {
185 if (strtotime($fields[$fieldName . '_low']) > strtotime($fields[$fieldName . '_high'])) {
186 $errors[$fieldName . '_low'] = ts('%1: Please check that your date range is in correct chronological order.', [1 => $fieldSpec['title']]);
187 }
188 }
189 }
190 }
191 }
192 return $errors;
193 }
194
195 /**
196 * Get the validation rule to apply to a function.
197 *
198 * Alphanumeric is designed to always be safe & for now we just return
199 * that but in future we can use tighter rules for types like int, bool etc.
200 *
201 * @param string $entity
202 * @param string $fieldName
203 *
204 * @return string
205 */
206 protected function getValidationTypeForField($entity, $fieldName) {
207 switch ($this->getSearchFieldMetadata()[$entity][$fieldName]['type']) {
208 case CRM_Utils_Type::T_BOOLEAN:
209 return 'Boolean';
210
211 case CRM_Utils_Type::T_INT:
212 return 'CommaSeparatedIntegers';
213
214 case CRM_Utils_Type::T_DATE:
215 case CRM_Utils_Type::T_DATE + CRM_Utils_Type::T_TIME:
216 return 'Timestamp';
217
218 default:
219 return 'Alphanumeric';
220 }
221 }
222
223 /**
224 * Get the defaults for the entity for any fields described in metadata.
225 *
226 * @param string $entity
227 *
228 * @return array
229 */
230 protected function getEntityDefaults($entity) {
231 $defaults = [];
232 foreach ($this->getSearchFieldMetadata()[$entity] as $fieldSpec) {
233 if (empty($_POST[$fieldSpec['name']])) {
234 $value = CRM_Utils_Request::retrieveValue($fieldSpec['name'], $this->getValidationTypeForField($entity, $fieldSpec['name']), FALSE, NULL, 'GET');
235 if ($value !== FALSE) {
236 $defaults[$fieldSpec['name']] = $value;
237 }
238 if ($fieldSpec['type'] === CRM_Utils_Type::T_DATE || ($fieldSpec['type'] === CRM_Utils_Type::T_DATE + CRM_Utils_Type::T_TIME)) {
239 $low = CRM_Utils_Request::retrieveValue($fieldSpec['name'] . '_low', 'Timestamp', FALSE, NULL, 'GET');
240 $high = CRM_Utils_Request::retrieveValue($fieldSpec['name'] . '_high', 'Timestamp', FALSE, NULL, 'GET');
241 if ($low !== FALSE || $high !== FALSE) {
242 $defaults[$fieldSpec['name'] . '_relative'] = 0;
243 $defaults[$fieldSpec['name'] . '_low'] = $low ? date('Y-m-d H:i:s', strtotime($low)) : NULL;
244 $defaults[$fieldSpec['name'] . '_high'] = $high ? date('Y-m-d H:i:s', strtotime($high)) : NULL;
245 }
246 }
247 }
248 }
249 return $defaults;
250 }
251
252 /**
253 * Add checkboxes for each row plus a master checkbox.
254 *
255 * @param array $rows
256 */
257 public function addRowSelectors($rows) {
258 $this->addElement('checkbox', 'toggleSelect', NULL, NULL, ['class' => 'select-rows']);
259 if (!empty($rows)) {
260 foreach ($rows as $row) {
261 if (CRM_Utils_Array::value('checkbox', $row)) {
262 $this->addElement('checkbox', $row['checkbox'], NULL, NULL, ['class' => 'select-row']);
263 }
264 }
265 }
266 }
267
268 /**
269 * Add actions menu to search results form.
270 *
271 * @param array $tasks
272 */
273 public function addTaskMenu($tasks) {
274 $taskMetaData = [];
275 foreach ($tasks as $key => $task) {
276 $taskMetaData[$key] = ['title' => $task];
277 }
278 parent::addTaskMenu($taskMetaData);
279 }
280
281 /**
282 * Add the sort-name field to the form.
283 *
284 * There is a setting to determine whether email is included in the search & we look this up to determine
285 * which text to choose.
286 *
287 * Note that for translation purposes the full string works better than using 'prefix' hence we use override-able functions
288 * to define the string.
289 */
290 protected function addSortNameField() {
291 $this->addElement(
292 'text',
293 'sort_name',
294 civicrm_api3('setting', 'getvalue', ['name' => 'includeEmailInName', 'group' => 'Search Preferences']) ? $this->getSortNameLabelWithEmail() : $this->getSortNameLabelWithOutEmail(),
295 CRM_Core_DAO::getAttribute('CRM_Contact_DAO_Contact', 'sort_name')
296 );
297 }
298
299 /**
300 * Get the label for the sortName field if email searching is on.
301 *
302 * (email searching is a setting under search preferences).
303 *
304 * @return string
305 */
306 protected function getSortNameLabelWithEmail() {
307 return ts('Name or Email');
308 }
309
310 /**
311 * Get the label for the sortName field if email searching is off.
312 *
313 * (email searching is a setting under search preferences).
314 *
315 * @return string
316 */
317 protected function getSortNameLabelWithOutEmail() {
318 return ts('Name');
319 }
320
321 /**
322 * Explicitly declare the form context for addField().
323 */
324 public function getDefaultContext() {
325 return 'search';
326 }
327
328 /**
329 * Add generic fields that specify the contact.
330 */
331 protected function addContactSearchFields() {
332 if (!$this->isFormInViewOrEditMode()) {
333 return;
334 }
335 $this->addSortNameField();
336
337 $this->_group = CRM_Core_PseudoConstant::nestedGroup();
338 if ($this->_group) {
339 $this->add('select', 'group', $this->getGroupLabel(), $this->_group, FALSE,
340 [
341 'id' => 'group',
342 'multiple' => 'multiple',
343 'class' => 'crm-select2',
344 ]
345 );
346 }
347
348 $contactTags = CRM_Core_BAO_Tag::getTags();
349 if ($contactTags) {
350 $this->add('select', 'contact_tags', $this->getTagLabel(), $contactTags, FALSE,
351 [
352 'id' => 'contact_tags',
353 'multiple' => 'multiple',
354 'class' => 'crm-select2',
355 ]
356 );
357 }
358 $this->addField('contact_type', ['entity' => 'Contact']);
359
360 if (CRM_Core_Permission::check('access deleted contacts') && Civi::settings()->get('contact_undelete')) {
361 $this->addElement('checkbox', 'deleted_contacts', ts('Search in Trash') . '<br />' . ts('(deleted contacts)'));
362 }
363
364 }
365
366 /**
367 * we allow the controller to set force/reset externally, useful when we are being
368 * driven by the wizard framework
369 */
370 protected function loadStandardSearchOptionsFromUrl() {
371 $this->_reset = CRM_Utils_Request::retrieve('reset', 'Boolean');
372 $this->_force = CRM_Utils_Request::retrieve('force', 'Boolean', $this, FALSE);
373 $this->_limit = CRM_Utils_Request::retrieve('limit', 'Positive', $this);
374 $this->_context = CRM_Utils_Request::retrieve('context', 'Alphanumeric', $this, FALSE, 'search');
375 $this->_ssID = CRM_Utils_Request::retrieve('ssID', 'Positive', $this);
376 $this->assign("context", $this->_context);
377 }
378
379 /**
380 * Get user submitted values.
381 *
382 * Get it from controller only if form has been submitted, else preProcess has set this
383 */
384 protected function loadFormValues() {
385 if (!empty($_POST) && !$this->controller->isModal()) {
386 $this->_formValues = $this->controller->exportValues($this->_name);
387 }
388 else {
389 $this->_formValues = $this->get('formValues');
390 }
391
392 if (empty($this->_formValues)) {
393 if (isset($this->_ssID)) {
394 $this->_formValues = CRM_Contact_BAO_SavedSearch::getFormValues($this->_ssID);
395 }
396 }
397 }
398
399 }