Merge branch '4.4' of https://github.com/civicrm/civicrm-core
[civicrm-core.git] / CRM / Contact / BAO / SavedSearch.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.4 |
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 * Business object for Saved searches
38 *
39 */
40 class CRM_Contact_BAO_SavedSearch extends CRM_Contact_DAO_SavedSearch {
41
42 /**
43 * class constructor
44 *
45 * @return object CRM_Contact_BAO_SavedSearch
46 */
47 function __construct() {
48 parent::__construct();
49 }
50
51 /**
52 * query the db for all saved searches.
53 *
54 * @return array $aSavedSearch - contains the search name as value and and id as key
55 *
56 * @access public
57 */
58 function getAll() {
59 $savedSearch = new CRM_Contact_DAO_SavedSearch();
60 $savedSearch->selectAdd();
61 $savedSearch->selectAdd('id, name');
62 $savedSearch->find();
63 while ($savedSearch->fetch()) {
64 $aSavedSearch[$savedSearch->id] = $savedSearch->name;
65 }
66 return $aSavedSearch;
67 }
68
69 /**
70 * Takes a bunch of params that are needed to match certain criteria and
71 * retrieves the relevant objects.
72 *
73 * @param array $params (reference ) an assoc array of name/value pairs
74 * @param array $defaults (reference ) an assoc array to hold the flattened values
75 *
76 * @return object CRM_Contact_BAO_SavedSearch
77 * @access public
78 * @static
79 */
80 static function retrieve(&$params, &$defaults) {
81 $savedSearch = new CRM_Contact_DAO_SavedSearch();
82 $savedSearch->copyValues($params);
83 if ($savedSearch->find(TRUE)) {
84 CRM_Core_DAO::storeValues($savedSearch, $defaults);
85 return $savedSearch;
86 }
87 return NULL;
88 }
89
90 /**
91 * given an id, extract the formValues of the saved search
92 *
93 * @param int $id the id of the saved search
94 *
95 * @return array the values of the posted saved search
96 * @access public
97 * @static
98 */
99 static function &getFormValues($id) {
100 $fv = CRM_Core_DAO::getFieldValue('CRM_Contact_DAO_SavedSearch', $id, 'form_values');
101 $result = NULL;
102 if ($fv) {
103 // make sure u unserialize - since it's stored in serialized form
104 $result = unserialize($fv);
105 }
106
107 // check to see if we need to convert the old privacy array
108 // CRM-9180
109 if (isset($result['privacy'])) {
110 if (is_array($result['privacy'])) {
111 $result['privacy_operator'] = 'AND';
112 $result['privacy_toggle'] = 1;
113 if (isset($result['privacy']['do_not_toggle'])) {
114 if ($result['privacy']['do_not_toggle']) {
115 $result['privacy_toggle'] = 2;
116 }
117 unset($result['privacy']['do_not_toggle']);
118 }
119
120 $result['privacy_options'] = array();
121 foreach ($result['privacy'] as $name => $value) {
122 if ($value) {
123 $result['privacy_options'][] = $name;
124 }
125 }
126 }
127 unset($result['privacy']);
128 }
129
130 return $result;
131 }
132
133 static function getSearchParams($id) {
134 $fv = self::getFormValues($id);
135 //check if the saved seach has mapping id
136 if (CRM_Core_DAO::getFieldValue('CRM_Contact_DAO_SavedSearch', $id, 'mapping_id')) {
137 return CRM_Core_BAO_Mapping::formattedFields($fv);
138 }
139 elseif (!empty($fv['customSearchID'])) {
140 return $fv;
141 }
142 else {
143 return CRM_Contact_BAO_Query::convertFormValues($fv);
144 }
145 }
146
147 /**
148 * get the where clause for a saved search
149 *
150 * @param int $id saved search id
151 * @param array $tables (reference ) add the tables that are needed for the select clause
152 * @param array $whereTables (reference ) add the tables that are needed for the where clause
153 *
154 * @return string the where clause for this saved search
155 * @access public
156 * @static
157 */
158 static function whereClause($id, &$tables, &$whereTables) {
159 $params = self::getSearchParams($id);
160 if ($params) {
161 if (!empty($params['customSearchID'])) {
162 // this has not yet been implemented
163 } else {
164 return CRM_Contact_BAO_Query::getWhereClause($params, NULL, $tables, $whereTables);
165 }
166 }
167 return NULL;
168 }
169
170 static function contactIDsSQL($id) {
171 $params = self::getSearchParams($id);
172 if ($params && !empty($params['customSearchID'])) {
173 return CRM_Contact_BAO_SearchCustom::contactIDSQL(NULL, $id);
174 }
175 else {
176 $tables = $whereTables = array('civicrm_contact' => 1);
177 $where = CRM_Contact_BAO_SavedSearch::whereClause($id, $tables, $whereTables);
178 if (!$where) {
179 $where = '( 1 )';
180 }
181 $from = CRM_Contact_BAO_Query::fromClause($whereTables);
182 return "
183 SELECT contact_a.id
184 $from
185 WHERE $where";
186 }
187 }
188
189 static function fromWhereEmail($id) {
190 $params = self::getSearchParams($id);
191
192 if ($params) {
193 if (!empty($params['customSearchID'])) {
194 return CRM_Contact_BAO_SearchCustom::fromWhereEmail(NULL, $id);
195 }
196 else {
197 $tables = $whereTables = array('civicrm_contact' => 1, 'civicrm_email' => 1);
198 $where = CRM_Contact_BAO_SavedSearch::whereClause($id, $tables, $whereTables);
199 $from = CRM_Contact_BAO_Query::fromClause($whereTables);
200 return array($from, $where);
201 }
202 }
203 else {
204 // fix for CRM-7240
205 $from = "
206 FROM civicrm_contact contact_a
207 LEFT JOIN civicrm_email ON (contact_a.id = civicrm_email.contact_id AND civicrm_email.is_primary = 1)
208 ";
209 $where = " ( 1 ) ";
210 $tables['civicrm_contact'] = $whereTables['civicrm_contact'] = 1;
211 $tables['civicrm_email'] = $whereTables['civicrm_email'] = 1;
212 return array($from, $where);
213 }
214 }
215
216 /**
217 * given a saved search compute the clause and the tables
218 * and store it for future use
219 */
220 function buildClause() {
221 $fv = unserialize($this->form_values);
222
223 if ($this->mapping_id) {
224 $params = CRM_Core_BAO_Mapping::formattedFields($fv);
225 }
226 else {
227 $params = CRM_Contact_BAO_Query::convertFormValues($fv);
228 }
229
230 if (!empty($params)) {
231 $tables = $whereTables = array();
232 $this->where_clause = CRM_Contact_BAO_Query::getWhereClause($params, NULL, $tables, $whereTables);
233 if (!empty($tables)) {
234 $this->select_tables = serialize($tables);
235 }
236 if (!empty($whereTables)) {
237 $this->where_tables = serialize($whereTables);
238 }
239 }
240
241 return;
242 }
243
244 function save() {
245 // first build the computed fields
246 $this->buildClause();
247
248 parent::save();
249 }
250
251 /**
252 * given an id, get the name of the saved search
253 *
254 * @param int $id the id of the saved search
255 *
256 * @return string the name of the saved search
257 * @access public
258 * @static
259 */
260 static function getName($id, $value = 'name') {
261 $group = new CRM_Contact_DAO_Group();
262 $group->saved_search_id = $id;
263 if ($group->find(TRUE)) {
264 return $group->$value;
265 }
266 return NULL;
267 }
268
269 /**
270 * Given a label and a set of normalized POST
271 * formValues, create a smart group with that
272 */
273 static function create(&$params) {
274 $savedSearch = new CRM_Contact_DAO_SavedSearch();
275 if (isset($params['formValues']) &&
276 !empty($params['formValues'])
277 ) {
278 $savedSearch->form_values = serialize($params['formValues']);
279 }
280 else {
281 $savedSearch->form_values = 'null';
282 }
283
284 $savedSearch->is_active = CRM_Utils_Array::value('is_active', $params, 1);
285 $savedSearch->mapping_id = CRM_Utils_Array::value('mapping_id', $params, 'null');
286 $savedSearch->custom_search_id = CRM_Utils_Array::value('custom_search_id', $params, 'null');
287 $savedSearch->id = CRM_Utils_Array::value('id', $params, NULL);
288
289 $savedSearch->save();
290
291 return $savedSearch;
292 }
293 }
294