Merge pull request #4893 from colemanw/INFRA-132
[civicrm-core.git] / CRM / Contact / Form / Search / Advanced.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.6 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2014 |
7 +--------------------------------------------------------------------+
8 | This file is a part of CiviCRM. |
9 | |
10 | CiviCRM is free software; you can copy, modify, and distribute it |
11 s | 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 *
30 * @package CRM
31 * @copyright CiviCRM LLC (c) 2004-2014
32 * $Id$
33 *
34 */
35
36 /**
37 * Files required
38 */
39
40 /**
41 * advanced search, extends basic search
42 */
43 class CRM_Contact_Form_Search_Advanced extends CRM_Contact_Form_Search {
44
45 /**
46 * Processing needed for buildForm and later
47 *
48 * @return void
49 */
50 public function preProcess() {
51 $this->set('searchFormName', 'Advanced');
52
53 parent::preProcess();
54 $openedPanes = CRM_Contact_BAO_Query::$_openedPanes;
55 $openedPanes = array_merge($openedPanes, $this->_openedPanes);
56 $this->assign('openedPanes', $openedPanes);
57 }
58
59 /**
60 * Build the form object
61 *
62 *
63 * @return void
64 */
65 public function buildQuickForm() {
66 $this->set('context', 'advanced');
67
68 $this->_searchPane = CRM_Utils_Array::value('searchPane', $_GET);
69
70 $this->_searchOptions = CRM_Core_BAO_Setting::valueOptions(CRM_Core_BAO_Setting::SYSTEM_PREFERENCES_NAME,
71 'advanced_search_options'
72 );
73
74 if (!$this->_searchPane || $this->_searchPane == 'basic') {
75 CRM_Contact_Form_Search_Criteria::basic($this);
76 }
77
78 $allPanes = array();
79 $paneNames = array(
80 ts('Address Fields') => 'location',
81 ts('Custom Fields') => 'custom',
82 ts('Activities') => 'activity',
83 ts('Relationships') => 'relationship',
84 ts('Demographics') => 'demographics',
85 ts('Notes') => 'notes',
86 ts('Change Log') => 'changeLog',
87 );
88
89 //check if there are any custom data searchable fields
90 $groupDetails = array();
91 $extends = array_merge(array('Contact', 'Individual', 'Household', 'Organization'),
92 CRM_Contact_BAO_ContactType::subTypes()
93 );
94 $groupDetails = CRM_Core_BAO_CustomGroup::getGroupDetail(NULL, TRUE,
95 $extends
96 );
97 // if no searchable fields unset panel
98 if (empty($groupDetails)) {
99 unset($paneNames[ts('Custom Fields')]);
100 }
101
102 foreach ($paneNames as $name => $type) {
103 if (!$this->_searchOptions[$type]) {
104 unset($paneNames[$name]);
105 }
106 }
107
108 $components = CRM_Core_Component::getEnabledComponents();
109
110 $componentPanes = array();
111 foreach ($components as $name => $component) {
112 if (in_array($name, array_keys($this->_searchOptions)) &&
113 $this->_searchOptions[$name] &&
114 CRM_Core_Permission::access($component->name)
115 ) {
116 $componentPanes[$name] = $component->registerAdvancedSearchPane();
117 $componentPanes[$name]['name'] = $name;
118 }
119 }
120
121 usort($componentPanes, array('CRM_Utils_Sort', 'cmpFunc'));
122 foreach ($componentPanes as $name => $pane) {
123 // FIXME: we should change the use of $name here to keyword
124 $paneNames[$pane['title']] = $pane['name'];
125 }
126
127 $hookPanes = array();
128 CRM_Contact_BAO_Query_Hook::singleton()->registerAdvancedSearchPane($hookPanes);
129 $paneNames = array_merge($paneNames, $hookPanes);
130
131 $this->_paneTemplatePath = array();
132 foreach ($paneNames as $name => $type) {
133 if (!array_key_exists($type, $this->_searchOptions) && !in_array($type, $hookPanes)) {
134 continue;
135 }
136
137 $allPanes[$name] = array(
138 'url' => CRM_Utils_System::url('civicrm/contact/search/advanced',
139 "snippet=1&searchPane=$type&qfKey={$this->controller->_key}"
140 ),
141 'open' => 'false',
142 'id' => $type,
143 );
144
145 // see if we need to include this paneName in the current form
146 if ($this->_searchPane == $type || !empty($_POST["hidden_{$type}"]) ||
147 CRM_Utils_Array::value("hidden_{$type}", $this->_formValues)
148 ) {
149 $allPanes[$name]['open'] = 'true';
150
151 if (!empty($components[$type])) {
152 $c = $components[$type];
153 $this->add('hidden', "hidden_$type", 1);
154 $c->buildAdvancedSearchPaneForm($this);
155 $this->_paneTemplatePath[$type] = $c->getAdvancedSearchPaneTemplatePath();
156 }
157 elseif (in_array($type, $hookPanes)) {
158 CRM_Contact_BAO_Query_Hook::singleton()->buildAdvancedSearchPaneForm($this, $type);
159 CRM_Contact_BAO_Query_Hook::singleton()->setAdvancedSearchPaneTemplatePath($this->_paneTemplatePath, $type);
160 }
161 else {
162 CRM_Contact_Form_Search_Criteria::$type($this);
163 $template = ucfirst($type);
164 $this->_paneTemplatePath[$type] = "CRM/Contact/Form/Search/Criteria/{$template}.tpl";
165 }
166 }
167 }
168
169 $this->assign('allPanes', $allPanes);
170 if (!$this->_searchPane) {
171 parent::buildQuickForm();
172 }
173 else {
174 $this->assign('suppressForm', TRUE);
175 }
176 }
177
178 /**
179 * Use the form name to create the tpl file name
180 *
181 * @return string
182 */
183 /**
184 * @return string
185 */
186 public function getTemplateFileName() {
187 if (!$this->_searchPane) {
188 return parent::getTemplateFileName();
189 }
190 else {
191 if (isset($this->_paneTemplatePath[$this->_searchPane])) {
192 return $this->_paneTemplatePath[$this->_searchPane];
193 }
194 else {
195 $name = ucfirst($this->_searchPane);
196 return "CRM/Contact/Form/Search/Criteria/{$name}.tpl";
197 }
198 }
199 }
200
201 /**
202 * Set the default form values
203 *
204 *
205 * @return array
206 * the default array reference
207 */
208 public function setDefaultValues() {
209 $defaults = $this->_formValues;
210 $this->normalizeDefaultValues($defaults);
211
212 if ($this->_context === 'amtg') {
213 $defaults['task'] = CRM_Contact_Task::GROUP_CONTACTS;
214 }
215
216 $defaults['privacy_toggle'] = 1;
217
218 return $defaults;
219 }
220
221 /**
222 * The post processing of the form gets done here.
223 *
224 * Key things done during post processing are
225 * - check for reset or next request. if present, skip post procesing.
226 * - now check if user requested running a saved search, if so, then
227 * the form values associated with the saved search are used for searching.
228 * - if user has done a submit with new values the regular post submissing is
229 * done.
230 * The processing consists of using a Selector / Controller framework for getting the
231 * search results.
232 *
233 * @param
234 *
235 * @return void
236 */
237 public function postProcess() {
238 $this->set('isAdvanced', '1');
239
240 // get user submitted values
241 // get it from controller only if form has been submitted, else preProcess has set this
242 if (!empty($_POST)) {
243 $this->_formValues = $this->controller->exportValues($this->_name);
244 $this->normalizeFormValues();
245 // FIXME: couldn't figure out a good place to do this,
246 // FIXME: so leaving this as a dependency for now
247 if (array_key_exists('contribution_amount_low', $this->_formValues)) {
248 foreach (array(
249 'contribution_amount_low', 'contribution_amount_high') as $f) {
250 $this->_formValues[$f] = CRM_Utils_Rule::cleanMoney($this->_formValues[$f]);
251 }
252 }
253
254 // set the group if group is submitted
255 if (!empty($this->_formValues['uf_group_id'])) {
256 $this->set('id', $this->_formValues['uf_group_id']);
257 }
258 else {
259 $this->set('id', '');
260 }
261 }
262
263 // retrieve ssID values only if formValues is null, i.e. form has never been posted
264 if (empty($this->_formValues) && isset($this->_ssID)) {
265 $this->_formValues = CRM_Contact_BAO_SavedSearch::getFormValues($this->_ssID);
266 }
267
268 if (isset($this->_groupID) && empty($this->_formValues['group'])) {
269 $this->_formValues['group'] = array($this->_groupID => 1);
270 }
271
272
273 //search for civicase
274 if (is_array($this->_formValues)) {
275 $allCases = FALSE;
276 if (array_key_exists('case_owner', $this->_formValues) &&
277 !$this->_formValues['case_owner'] &&
278 !$this->_force
279 ) {
280 foreach (array(
281 'case_type_id', 'case_status_id', 'case_deleted', 'case_tags') as $caseCriteria) {
282 if (!empty($this->_formValues[$caseCriteria])) {
283 $allCases = TRUE;
284 $this->_formValues['case_owner'] = 1;
285 continue;
286 }
287 }
288 if ($allCases) {
289 if (CRM_Core_Permission::check('access all cases and activities')) {
290 $this->_formValues['case_owner'] = 1;
291 }
292 else {
293 $this->_formValues['case_owner'] = 2;
294 }
295 }
296 else {
297 $this->_formValues['case_owner'] = 0;
298 }
299 }
300 if (array_key_exists('case_owner', $this->_formValues) && empty($this->_formValues['case_deleted'])) {
301 $this->_formValues['case_deleted'] = 0;
302 }
303 }
304
305 // we dont want to store the sortByCharacter in the formValue, it is more like
306 // a filter on the result set
307 // this filter is reset if we click on the search button
308 if ($this->_sortByCharacter !== NULL && empty($_POST)) {
309 if (strtolower($this->_sortByCharacter) == 'all') {
310 $this->_formValues['sortByCharacter'] = NULL;
311 }
312 else {
313 $this->_formValues['sortByCharacter'] = $this->_sortByCharacter;
314 }
315 }
316 else {
317 $this->_sortByCharacter = NULL;
318 }
319
320 CRM_Core_BAO_CustomValue::fixFieldValueOfTypeMemo($this->_formValues);
321
322 $this->_params = CRM_Contact_BAO_Query::convertFormValues($this->_formValues);
323 $this->_returnProperties = &$this->returnProperties();
324 parent::postProcess();
325 }
326
327 /**
328 * Normalize the form values to make it look similar to the advanced form values
329 * this prevents a ton of work downstream and allows us to use the same code for
330 * multiple purposes (queries, save/edit etc)
331 *
332 * @return void
333 */
334 public function normalizeFormValues() {
335 $contactType = CRM_Utils_Array::value('contact_type', $this->_formValues);
336
337 if ($contactType && is_array($contactType)) {
338 unset($this->_formValues['contact_type']);
339 foreach ($contactType as $key => $value) {
340 $this->_formValues['contact_type'][$value] = 1;
341 }
342 }
343
344 $config = CRM_Core_Config::singleton();
345 $group = CRM_Utils_Array::value('group', $this->_formValues);
346 if ($group && is_array($group)) {
347 unset($this->_formValues['group']);
348 foreach ($group as $key => $value) {
349 $this->_formValues['group'][$value] = 1;
350 }
351 }
352
353 $tag = CRM_Utils_Array::value('contact_tags', $this->_formValues);
354 if ($tag && is_array($tag)) {
355 unset($this->_formValues['contact_tags']);
356 foreach ($tag as $key => $value) {
357 $this->_formValues['contact_tags'][$value] = 1;
358 }
359 }
360
361 // CRM-13848
362 $financialType = CRM_Utils_Array::value('financial_type_id', $this->_formValues);
363 if ($financialType && is_array($financialType)) {
364 unset($this->_formValues['financial_type_id']);
365 foreach ($financialType as $notImportant => $typeID) {
366 $this->_formValues['financial_type_id'][$typeID] = 1;
367 }
368 }
369
370 $taglist = CRM_Utils_Array::value('contact_taglist', $this->_formValues);
371
372 if ($taglist && is_array($taglist)) {
373 unset($this->_formValues['contact_taglist']);
374 foreach ($taglist as $value) {
375 if ($value) {
376 $value = explode(',', $value);
377 foreach ($value as $tId) {
378 if (is_numeric($tId)) {
379 $this->_formValues['contact_tags'][$tId] = 1;
380 }
381 }
382 }
383 }
384 }
385
386 return;
387 }
388
389 /**
390 * Normalize default values for multiselect plugins
391 *
392 * @param array $defaults
393 * @return array
394 */
395 public function normalizeDefaultValues(&$defaults) {
396 if (!is_array($defaults)) {
397 $defaults = array();
398 }
399
400 if ($this->_ssID && empty($_POST)) {
401 $fields = array('contact_type', 'group', 'contact_tags');
402
403 foreach ($fields as $field) {
404 $fieldValues = CRM_Utils_Array::value($field, $defaults);
405 if ($fieldValues && is_array($fieldValues)) {
406 $defaults[$field] = array_keys($fieldValues);
407 }
408 }
409 }
410 return $defaults;
411 }
412 }