CRM-12274 - redo all changes due to bad rebase
[civicrm-core.git] / CRM / Campaign / Selector / Search.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.3 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2013 |
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 *
30 * @package CRM
31 * @copyright CiviCRM LLC (c) 2004-2013
32 * $Id$
33 *
34 */
35
36/**
37 * This class is used to retrieve and display a range of
38 * contacts that match the given criteria (specifically for
39 * results of advanced search options.
40 *
41 */
42class CRM_Campaign_Selector_Search extends CRM_Core_Selector_Base implements CRM_Core_Selector_API {
43
44 /**
45 * This defines two actions- View and Edit.
46 *
47 * @var array
48 * @static
49 */
50 static $_links = NULL;
51
52 /**
53 * we use desc to remind us what that column is, name is used in the tpl
54 *
55 * @var array
56 * @static
57 */
58 static $_columnHeaders;
59
60 /**
61 * Properties of contact we're interested in displaying
62 * @var array
63 * @static
64 */
65 static $_properties = array(
66 'contact_id',
67 'sort_name',
68 'street_unit',
69 'street_name',
70 'street_number',
71 'street_address',
72 'city',
73 'postal_code',
74 'state_province',
75 'country',
76 'email',
77 'phone',
78 'campaign_id',
79 'survey_activity_id',
80 'survey_activity_target_id',
81 'survey_activity_target_contact_id',
82 );
83
84 /**
85 * are we restricting ourselves to a single contact
86 *
87 * @access protected
88 * @var boolean
89 */
90 protected $_single = FALSE;
91
92 /**
93 * are we restricting ourselves to a single contact
94 *
95 * @access protected
96 * @var boolean
97 */
98 protected $_limit = NULL;
99
100 /**
101 * what context are we being invoked from
102 *
103 * @access protected
104 * @var string
105 */
106 protected $_context = NULL;
107
108 /**
109 * queryParams is the array returned by exportValues called on
110 * the HTML_QuickForm_Controller for that page.
111 *
112 * @var array
113 * @access protected
114 */
115 public $_queryParams;
116
117 /**
118 * represent the type of selector
119 *
120 * @var int
121 * @access protected
122 */
123 protected $_action;
124
125 /**
126 * The additional clause that we restrict the search with
127 *
128 * @var string
129 */
130 protected $_surveyClause = NULL;
131
132 /**
133 * The query object
134 *
135 * @var string
136 */
137 protected $_query;
138
139 /**
140 * Class constructor
141 *
142 * @param array $queryParams array of parameters for query
143 * @param int $action - action of search basic or advanced.
144 * @param string $surveyClause if the caller wants to further restrict the search.
145 * @param boolean $single are we dealing only with one contact?
146 * @param int $limit how many voters do we want returned
147 *
148 * @return CRM_Contact_Selector
149 * @access public
150 */ function __construct(&$queryParams,
151 $action = CRM_Core_Action::NONE,
152 $surveyClause = NULL,
153 $single = FALSE,
154 $limit = NULL,
155 $context = 'search'
156 ) {
157 // submitted form values
158 $this->_queryParams = &$queryParams;
159
160 $this->_single = $single;
161 $this->_limit = $limit;
162 $this->_context = $context;
163
164 $this->_campaignClause = $surveyClause;
165 $this->_campaignFromClause = CRM_Utils_Array::value('fromClause', $surveyClause);
166 $this->_campaignWhereClause = CRM_Utils_Array::value('whereClause', $surveyClause);
167
168 // type of selector
169 $this->_action = $action;
170
171 $this->_query = new CRM_Contact_BAO_Query($this->_queryParams,
172 NULL, NULL, FALSE, FALSE,
173 CRM_Contact_BAO_Query::MODE_CAMPAIGN,
174 TRUE
175 );
176 }
177 //end of constructor
178
179 /**
180 * This method returns the links that are given for each search row.
181 * currently the links added for each row are
182 *
183 * - View
184 * - Edit
185 *
186 * @return array
187 * @access public
188 *
189 */
190 static
191 function &links() {
192 return self::$_links = array();
193 }
194
195 /**
196 * getter for array of the parameters required for creating pager.
197 *
198 * @param
199 * @access public
200 */
201 function getPagerParams($action, &$params) {
202 $params['csvString'] = NULL;
203 $params['status'] = ts('Respondents') . ' %%StatusMessage%%';
204 $params['rowCount'] = ($this->_limit) ? $this->_limit : CRM_Utils_Pager::ROWCOUNT;
205 $params['buttonTop'] = 'PagerTopButton';
206 $params['buttonBottom'] = 'PagerBottomButton';
207 }
208
209 /**
210 * Returns total number of rows for the query.
211 *
212 * @param
213 *
214 * @return int Total number of rows
215 * @access public
216 */
217 function getTotalCount($action) {
218 return $this->_query->searchQuery(0, 0, NULL,
219 TRUE, FALSE,
220 FALSE, FALSE, FALSE,
221 $this->_campaignWhereClause,
222 NULL,
223 $this->_campaignFromClause
224 );
225 }
226
227 /**
228 * returns all the rows in the given offset and rowCount
229 *
230 * @param enum $action the action being performed
231 * @param int $offset the row number to start from
232 * @param int $rowCount the number of rows to return
233 * @param string $sort the sql string that describes the sort order
234 * @param enum $output what should the result set include (web/email/csv)
235 *
236 * @return int the total number of rows for this action
237 */
238 function &getRows($action, $offset, $rowCount, $sort, $output = NULL) {
239 $result = $this->_query->searchQuery($offset, $rowCount, $sort,
240 FALSE, FALSE,
241 FALSE, FALSE,
242 FALSE, $this->_campaignWhereClause,
243 NULL,
244 $this->_campaignFromClause
245 );
246
247
248 // process the result of the query
249 $rows = array();
250
251 While ($result->fetch()) {
252 $row = array();
253 // the columns we are interested in
254 foreach (self::$_properties as $property) {
255 if (property_exists($result, $property)) {
256 $row[$property] = $result->$property;
257 }
258 }
259 $row['checkbox'] = CRM_Core_Form::CB_PREFIX . $result->contact_id;
260 $row['contact_type'] = CRM_Contact_BAO_Contact_Utils::getImage($result->contact_type, FALSE, $result->contact_id);
261
262 $rows[] = $row;
263 }
264 $this->buildPrevNextCache($sort);
265
266 return $rows;
267 }
268
269 function buildPrevNextCache($sort) {
270 //for prev/next pagination
271 $crmPID = CRM_Utils_Request::retrieve('crmPID', 'Integer', CRM_Core_DAO::$_nullObject);
272
273 if (!$crmPID) {
274 $cacheKey = "civicrm search {$this->_key}";
275 CRM_Core_BAO_PrevNextCache::deleteItem(NULL, $cacheKey, 'civicrm_contact');
91da6cd5 276
6a488035
TO
277 $sql = $this->_query->searchQuery(0, 0, $sort,
278 FALSE, FALSE,
279 FALSE, FALSE,
280 TRUE, $this->_campaignWhereClause,
281 NULL,
282 $this->_campaignFromClause
283 );
284 list($select, $from) = explode(' FROM ', $sql);
285 $insertSQL = "
286INSERT INTO civicrm_prevnext_cache ( entity_table, entity_id1, entity_id2, cacheKey, data )
91da6cd5 287SELECT 'civicrm_contact', contact_a.id, contact_a.id, '$cacheKey', contact_a.display_name
6a488035
TO
288FROM {$from}
289";
290 CRM_Core_Error::ignoreException();
291 $result = CRM_Core_DAO::executeQuery($insertSQL);
292 CRM_Core_Error::setCallback();
293
294 if (is_a($result, 'DB_Error')) {
295 return;
296 }
297 // also record an entry in the cache key table, so we can delete it periodically
298 CRM_Core_BAO_Cache::setItem($cacheKey, 'CiviCRM Search PrevNextCache', $cacheKey);
299 }
300 }
301
302 /**
303 *
304 * @return array $qill which contains an array of strings
305 * @access public
306 **/
307 public function getQILL() {
308 return $this->_query->qill();
309 }
310
311 /**
312 * returns the column headers as an array of tuples:
313 * (name, sortName (key to the sort array))
314 *
315 * @param string $action the action being performed
316 * @param enum $output what should the result set include (web/email/csv)
317 *
318 * @return array the column headers that need to be displayed
319 * @access public
320 */
321 public function &getColumnHeaders($action = NULL, $output = NULL) {
322 self::$_columnHeaders = array();
323
324 if (!$this->_single) {
325 $contactDetails = array(
326 array('name' => ts('Contact Name'),
327 'sort' => 'sort_name',
328 'direction' => CRM_Utils_Sort::ASCENDING,
329 ),
330 array('name' => ts('Street Number'),
331 'sort' => 'street_number',
332 ),
333 array('name' => ts('Street Name'),
334 'sort' => 'street_name',
335 ),
336 array('name' => ts('Street Address')),
337 array('name' => ts('City'),
338 'sort' => 'city',
339 ),
340 array('name' => ts('Postal Code'),
341 'sort' => 'postal_code',
342 ),
343 array('name' => ts('State'),
344 'sort' => 'state_province_name',
345 ),
346 array('name' => ts('Country')),
347 array('name' => ts('Email')),
348 array('name' => ts('Phone')),
349 );
350 self::$_columnHeaders = array_merge($contactDetails, self::$_columnHeaders);
351 }
352
353 return self::$_columnHeaders;
354 }
355
356 function &getQuery() {
357 return $this->_query;
358 }
359
360 /**
361 * name of export file.
362 *
363 * @param string $output type of output
364 *
365 * @return string name of the file
366 */
367 function getExportFileName($output = 'csv') {
368 return ts('CiviCRM Respondent Search');
369 }
370}
371//end of class
372