Merge pull request #23656 from colemanw/afformOptions
[civicrm-core.git] / CRM / Utils / Weight.php
CommitLineData
6a488035
TO
1<?php
2/*
bc77d7c0
TO
3 +--------------------------------------------------------------------+
4 | Copyright CiviCRM LLC. All rights reserved. |
5 | |
6 | This work is published under the GNU AGPLv3 license with some |
7 | permitted exceptions and without any warranty. For full license |
8 | and copyright information, see https://civicrm.org/licensing |
9 +--------------------------------------------------------------------+
e70a7fc0 10 */
5bc392e6
EM
11
12/**
13 * Class CRM_Utils_Weight
14 */
6a488035
TO
15class CRM_Utils_Weight {
16 /**
ee3db087 17 * List of GET fields which must be validated
6a488035
TO
18 *
19 * To reduce the size of this patch, we only sign the exploitable fields
20 * which make up "$baseURL" in addOrder() (eg 'filter' or 'dao').
21 * Less-exploitable fields (eg 'dir') are left unsigned.
6714d8d2 22 * 'id','src','dst','dir'
ee3db087 23 * @var array
6a488035 24 */
6714d8d2 25 public static $SIGNABLE_FIELDS = ['reset', 'dao', 'idName', 'url', 'filter'];
6a488035
TO
26
27 /**
100fef9d 28 * Correct duplicate weight entries by putting them (duplicate weights) in sequence.
6a488035 29 *
77855840
TO
30 * @param string $daoName
31 * Full name of the DAO.
32 * @param array $fieldValues
33 * Field => value to be used in the WHERE.
34 * @param string $weightField
50bfb460 35 * Field which contains the weight value.
16b10e64 36 * defaults to 'weight'
6a488035
TO
37 *
38 * @return bool
39 */
00be9182 40 public static function correctDuplicateWeights($daoName, $fieldValues = NULL, $weightField = 'weight') {
6a488035 41 $selectField = "MIN(id) AS dupeId, count(id) as dupeCount, $weightField as dupeWeight";
e5cceea5 42 $groupBy = "$weightField having count(id)>1";
6a488035
TO
43
44 $minDupeID = CRM_Utils_Weight::query('SELECT', $daoName, $fieldValues, $selectField, NULL, NULL, $groupBy);
45
46 // return early if query returned empty
47 // CRM-8043
48 if (!$minDupeID->fetch()) {
49 return TRUE;
50 }
51
52 if ($minDupeID->dupeId) {
53 $additionalWhere = "id !=" . $minDupeID->dupeId . " AND $weightField >= " . $minDupeID->dupeWeight;
353ffa53
TO
54 $update = "$weightField = $weightField + 1";
55 $status = CRM_Utils_Weight::query('UPDATE', $daoName, $fieldValues, $update, $additionalWhere);
6a488035
TO
56 }
57
58 if ($minDupeID->dupeId && $status) {
50bfb460 59 // recursive call to correct all duplicate weight entries.
6a488035
TO
60 return CRM_Utils_Weight::correctDuplicateWeights($daoName, $fieldValues, $weightField);
61 }
62 elseif (!$minDupeID->dupeId) {
63 // case when no duplicate records are found.
64 return TRUE;
65 }
66 elseif (!$status) {
67 // case when duplicate records are found but update status is false.
68 return FALSE;
69 }
70 }
71
72 /**
73 * Remove a row from the specified weight, and shift all rows below it up
74 *
77855840
TO
75 * @param string $daoName
76 * Full name of the DAO.
6a488035 77 * $param integer $weight the weight to be removed
100fef9d 78 * @param int $fieldID
77855840
TO
79 * @param array $fieldValues
80 * Field => value to be used in the WHERE.
81 * @param string $weightField
50bfb460 82 * Field which contains the weight value.
16b10e64 83 * defaults to 'weight'
6a488035
TO
84 *
85 * @return bool
86 */
00be9182 87 public static function delWeight($daoName, $fieldID, $fieldValues = NULL, $weightField = 'weight') {
fffdfeba 88 $object = new $daoName();
6a488035
TO
89 $object->id = $fieldID;
90 if (!$object->find(TRUE)) {
91 return FALSE;
92 }
93
e7292422 94 $weight = (int) $object->weight;
6a488035
TO
95 if ($weight < 1) {
96 return FALSE;
97 }
98
99 // fill the gap
100 $additionalWhere = "$weightField > $weight";
353ffa53
TO
101 $update = "$weightField = $weightField - 1";
102 $status = CRM_Utils_Weight::query('UPDATE', $daoName, $fieldValues, $update, $additionalWhere);
6a488035
TO
103
104 return $status;
105 }
106
107 /**
44cc86bd 108 * Updates the weight fields of other rows according to the new and old weight passed in.
6a488035
TO
109 * And returns the new weight be used. If old-weight not present, Creates a gap for a new row to be inserted
110 * at the specified new weight
111 *
77855840
TO
112 * @param string $daoName
113 * Full name of the DAO.
114 * @param int $oldWeight
115 * @param int $newWeight
116 * @param array $fieldValues
117 * Field => value to be used in the WHERE.
118 * @param string $weightField
119 * Field which contains the weight value,.
16b10e64 120 * defaults to 'weight'
6a488035
TO
121 *
122 * @return int
123 */
00be9182 124 public static function updateOtherWeights($daoName, $oldWeight, $newWeight, $fieldValues = NULL, $weightField = 'weight') {
076fe09a
CW
125 $oldWeight = (int) $oldWeight;
126 $newWeight = (int) $newWeight;
6a488035
TO
127
128 // max weight is the highest current weight
076fe09a 129 $maxWeight = self::getMax($daoName, $fieldValues, $weightField) ?: 1;
6a488035
TO
130
131 if ($newWeight > $maxWeight) {
50bfb460 132 // calculate new weight, CRM-4133
6a488035
TO
133 $calNewWeight = CRM_Utils_Weight::getNewWeight($daoName, $fieldValues, $weightField);
134
50bfb460 135 // no need to update weight for other fields.
6a488035
TO
136 if ($calNewWeight > $maxWeight) {
137 return $calNewWeight;
138 }
139 $newWeight = $maxWeight;
140
141 if (!$oldWeight) {
142 return $newWeight + 1;
143 }
144 }
145 elseif ($newWeight < 1) {
146 $newWeight = 1;
147 }
148
149 // if they're the same, nothing to do
150 if ($oldWeight == $newWeight) {
151 return $newWeight;
152 }
153
076fe09a
CW
154 // Check for an existing record with this weight
155 $existing = self::query('SELECT', $daoName, $fieldValues, "id", "$weightField = $newWeight");
156 // Nothing to do if no existing record has this weight
157 if (empty($existing->N)) {
158 return $newWeight;
159 }
160
6a488035
TO
161 // if oldWeight not present, indicates new weight is to be added. So create a gap for a new row to be inserted.
162 if (!$oldWeight) {
163 $additionalWhere = "$weightField >= $newWeight";
164 $update = "$weightField = ($weightField + 1)";
165 CRM_Utils_Weight::query('UPDATE', $daoName, $fieldValues, $update, $additionalWhere);
6a488035
TO
166 }
167 else {
168 if ($newWeight > $oldWeight) {
169 $additionalWhere = "$weightField > $oldWeight AND $weightField <= $newWeight";
170 $update = "$weightField = ($weightField - 1)";
171 }
172 elseif ($newWeight < $oldWeight) {
173 $additionalWhere = "$weightField >= $newWeight AND $weightField < $oldWeight";
174 $update = "$weightField = ($weightField + 1)";
175 }
176 CRM_Utils_Weight::query('UPDATE', $daoName, $fieldValues, $update, $additionalWhere);
6a488035 177 }
076fe09a 178 return $newWeight;
6a488035
TO
179 }
180
181 /**
100fef9d 182 * Returns the new calculated weight.
6a488035 183 *
77855840
TO
184 * @param string $daoName
185 * Full name of the DAO.
186 * @param array $fieldValues
187 * Field => value to be used in the WHERE.
188 * @param string $weightField
189 * Field which used to get the wt, default to 'weight'.
6a488035 190 *
df8d3074 191 * @return int
6a488035 192 */
00be9182 193 public static function getNewWeight($daoName, $fieldValues = NULL, $weightField = 'weight') {
353ffa53
TO
194 $selectField = "id AS fieldID, $weightField AS weight";
195 $field = CRM_Utils_Weight::query('SELECT', $daoName, $fieldValues, $selectField);
6a488035 196 $sameWeightCount = 0;
be2fb01f 197 $weights = [];
6a488035
TO
198 while ($field->fetch()) {
199 if (in_array($field->weight, $weights)) {
200 $sameWeightCount++;
201 }
202 $weights[$field->fieldID] = $field->weight;
203 }
204
205 $newWeight = 1;
206 if ($sameWeightCount) {
207 $newWeight = max($weights) + 1;
208
50bfb460 209 // check for max wt, should not greater than cal max wt.
6a488035
TO
210 $calMaxWt = min($weights) + count($weights) - 1;
211 if ($newWeight > $calMaxWt) {
212 $newWeight = $calMaxWt;
213 }
214 }
215 elseif (!empty($weights)) {
216 $newWeight = max($weights);
217 }
218
219 return $newWeight;
220 }
221
222 /**
100fef9d 223 * Returns the highest weight.
6a488035 224 *
77855840
TO
225 * @param string $daoName
226 * Full name of the DAO.
227 * @param array $fieldValues
228 * Field => value to be used in the WHERE.
229 * @param string $weightField
50bfb460 230 * Field which contains the weight value.
16b10e64 231 * defaults to 'weight'
6a488035 232 *
df8d3074 233 * @return int
6a488035 234 */
00be9182 235 public static function getMax($daoName, $fieldValues = NULL, $weightField = 'weight') {
6a488035
TO
236 $selectField = "MAX(ROUND($weightField)) AS max_weight";
237 $weightDAO = CRM_Utils_Weight::query('SELECT', $daoName, $fieldValues, $selectField);
238 $weightDAO->fetch();
239 if ($weightDAO->max_weight) {
240 return $weightDAO->max_weight;
241 }
242 return 0;
243 }
244
245 /**
100fef9d 246 * Returns the default weight ( highest weight + 1 ) to be used.
6a488035 247 *
77855840
TO
248 * @param string $daoName
249 * Full name of the DAO.
250 * @param array $fieldValues
251 * Field => value to be used in the WHERE.
252 * @param string $weightField
50bfb460 253 * Field which contains the weight value.
16b10e64 254 * defaults to 'weight'
6a488035 255 *
df8d3074 256 * @return int
6a488035 257 */
00be9182 258 public static function getDefaultWeight($daoName, $fieldValues = NULL, $weightField = 'weight') {
6a488035
TO
259 $maxWeight = CRM_Utils_Weight::getMax($daoName, $fieldValues, $weightField);
260 return $maxWeight + 1;
261 }
262
263 /**
264 * Execute a weight-related query
265 *
77855840
TO
266 * @param string $queryType
267 * SELECT, UPDATE, DELETE.
076fe09a 268 * @param CRM_Core_DAO|string $daoName
77855840
TO
269 * Full name of the DAO.
270 * @param array $fieldValues
271 * Field => value to be used in the WHERE.
272 * @param string $queryData
273 * Data to be used, dependent on the query type.
3fd42bb5
BT
274 * @param string|null $additionalWhere
275 * Optional WHERE field.
276 * @param string|null $orderBy
77855840 277 * Optional ORDER BY field.
3fd42bb5
BT
278 * @param string|null $groupBy
279 * Optional GROU{} BY field.
f4aaa82a 280 *
16b10e64
CW
281 * @return CRM_Core_DAO
282 * objet that holds the results of the query
6a488035 283 */
79d7553f 284 public static function &query(
a3e55d9c 285 $queryType,
353ffa53 286 $daoName,
e9cde327 287 $fieldValues,
353ffa53
TO
288 $queryData,
289 $additionalWhere = NULL,
290 $orderBy = NULL,
291 $groupBy = NULL
292 ) {
076fe09a
CW
293 $table = $daoName::getTablename();
294 $fields = $daoName::getSupportedFields();
6a488035
TO
295 $fieldlist = array_keys($fields);
296
be2fb01f 297 $whereConditions = [];
6a488035
TO
298 if ($additionalWhere) {
299 $whereConditions[] = $additionalWhere;
300 }
be2fb01f 301 $params = [];
6a488035
TO
302 $fieldNum = 0;
303 if (is_array($fieldValues)) {
304 foreach ($fieldValues as $fieldName => $value) {
305 if (!in_array($fieldName, $fieldlist)) {
306 // invalid field specified. abort.
076fe09a 307 throw new CRM_Core_Exception("Invalid field '$fieldName' for $daoName");
6a488035 308 }
9df894bb
CW
309 if (CRM_Utils_System::isNull($value)) {
310 $whereConditions[] = "$fieldName IS NULL";
311 }
312 else {
313 $fieldNum++;
314 $whereConditions[] = "$fieldName = %$fieldNum";
315 $fieldType = $fields[$fieldName]['type'];
316 $params[$fieldNum] = [$value, CRM_Utils_Type::typeToString($fieldType)];
317 }
6a488035
TO
318 }
319 }
320 $where = implode(' AND ', $whereConditions);
321
322 switch ($queryType) {
323 case 'SELECT':
324 $query = "SELECT $queryData FROM $table";
325 if ($where) {
326 $query .= " WHERE $where";
327 }
328 if ($groupBy) {
329 $query .= " GROUP BY $groupBy";
330 }
331 if ($orderBy) {
332 $query .= " ORDER BY $orderBy";
333 }
334 break;
335
336 case 'UPDATE':
337 $query = "UPDATE $table SET $queryData";
338 if ($where) {
339 $query .= " WHERE $where";
340 }
341 break;
342
343 case 'DELETE':
344 $query = "DELETE FROM $table WHERE $where AND $queryData";
345 break;
346
347 default:
076fe09a 348 throw new CRM_Core_Exception("Invalid query operation for $daoName");
6a488035
TO
349 }
350
351 $resultDAO = CRM_Core_DAO::executeQuery($query, $params);
352 return $resultDAO;
353 }
354
5bc392e6 355 /**
3fd42bb5 356 * @param array $rows
c490a46a 357 * @param string $daoName
100fef9d 358 * @param string $idName
3fd42bb5
BT
359 * @param string $returnURL
360 * @param string|null $filter
5bc392e6 361 */
00be9182 362 public static function addOrder(&$rows, $daoName, $idName, $returnURL, $filter = NULL) {
6a488035
TO
363 if (empty($rows)) {
364 return;
365 }
366
367 $ids = array_keys($rows);
368 $numIDs = count($ids);
369 array_unshift($ids, 0);
353ffa53 370 $ids[] = 0;
6a488035 371 $firstID = $ids[1];
353ffa53 372 $lastID = $ids[$numIDs];
6a488035
TO
373 if ($firstID == $lastID) {
374 $rows[$firstID]['order'] = NULL;
375 return;
376 }
353ffa53
TO
377 $config = CRM_Core_Config::singleton();
378 $imageURL = $config->userFrameworkResourceURL . 'i/arrow';
6a488035 379
be2fb01f 380 $queryParams = [
6a488035
TO
381 'reset' => 1,
382 'dao' => $daoName,
383 'idName' => $idName,
384 'url' => $returnURL,
385 'filter' => $filter,
be2fb01f 386 ];
450f494d 387
6a488035
TO
388 $signer = new CRM_Utils_Signer(CRM_Core_Key::privateKey(), self::$SIGNABLE_FIELDS);
389 $queryParams['_sgn'] = $signer->sign($queryParams);
390 $baseURL = CRM_Utils_System::url('civicrm/admin/weight', $queryParams);
391
392 for ($i = 1; $i <= $numIDs; $i++) {
353ffa53 393 $id = $ids[$i];
6a488035
TO
394 $prevID = $ids[$i - 1];
395 $nextID = $ids[$i + 1];
396
be2fb01f 397 $links = [];
7326b302 398 $url = "{$baseURL}&amp;src=$id";
6a488035
TO
399
400 if ($prevID != 0) {
401 $alt = ts('Move to top');
7326b302 402 $links[] = "<a class=\"crm-weight-arrow\" href=\"{$url}&amp;dst={$firstID}&amp;dir=first\"><img src=\"{$imageURL}/first.gif\" title=\"$alt\" alt=\"$alt\" class=\"order-icon\"></a>";
6a488035
TO
403
404 $alt = ts('Move up one row');
7326b302 405 $links[] = "<a class=\"crm-weight-arrow\" href=\"{$url}&amp;dst={$prevID}&amp;dir=swap\"><img src=\"{$imageURL}/up.gif\" title=\"$alt\" alt=\"$alt\" class=\"order-icon\"></a>";
6a488035
TO
406 }
407 else {
841e66cd
BT
408 $links[] = "<span class=\"order-icon\"></span>";
409 $links[] = "<span class=\"order-icon\"></span>";
6a488035
TO
410 }
411
412 if ($nextID != 0) {
413 $alt = ts('Move down one row');
7326b302 414 $links[] = "<a class=\"crm-weight-arrow\" href=\"{$url}&amp;dst={$nextID}&amp;dir=swap\"><img src=\"{$imageURL}/down.gif\" title=\"$alt\" alt=\"$alt\" class=\"order-icon\"></a>";
6a488035
TO
415
416 $alt = ts('Move to bottom');
7326b302 417 $links[] = "<a class=\"crm-weight-arrow\" href=\"{$url}&amp;dst={$lastID}&amp;dir=last\"><img src=\"{$imageURL}/last.gif\" title=\"$alt\" alt=\"$alt\" class=\"order-icon\"></a>";
6a488035
TO
418 }
419 else {
841e66cd
BT
420 $links[] = "<span class=\"order-icon\"></span>";
421 $links[] = "<span class=\"order-icon\"></span>";
6a488035
TO
422 }
423 $rows[$id]['weight'] = implode('&nbsp;', $links);
424 }
425 }
426
ee3db087
SL
427 /**
428 *
429 * @throws CRM_Core_Exception
430 */
00be9182 431 public static function fixOrder() {
a3d827a7 432 $signature = CRM_Utils_Request::retrieve('_sgn', 'String');
6a488035
TO
433 $signer = new CRM_Utils_Signer(CRM_Core_Key::privateKey(), self::$SIGNABLE_FIELDS);
434
435 // Validate $_GET values b/c subsequent code reads $_GET (via CRM_Utils_Request::retrieve)
353ffa53 436 if (!$signer->validate($signature, $_GET)) {
ee3db087 437 throw new CRM_Core_Exception('Request signature is invalid');
6a488035
TO
438 }
439
440 // Note: Ensure this list matches self::$SIGNABLE_FIELDS
a3d827a7
CW
441 $daoName = CRM_Utils_Request::retrieve('dao', 'String');
442 $id = CRM_Utils_Request::retrieve('id', 'Integer');
443 $idName = CRM_Utils_Request::retrieve('idName', 'String');
444 $url = CRM_Utils_Request::retrieve('url', 'String');
445 $filter = CRM_Utils_Request::retrieve('filter', 'String');
446 $src = CRM_Utils_Request::retrieve('src', 'Integer');
447 $dst = CRM_Utils_Request::retrieve('dst', 'Integer');
448 $dir = CRM_Utils_Request::retrieve('dir', 'String');
353ffa53 449 $object = new $daoName();
6a488035
TO
450 $srcWeight = CRM_Core_DAO::getFieldValue($daoName, $src, 'weight', $idName);
451 $dstWeight = CRM_Core_DAO::getFieldValue($daoName, $dst, 'weight', $idName);
452 if ($srcWeight == $dstWeight) {
4a140040 453 self::fixOrderOutput($url);
6a488035
TO
454 }
455
456 $tableName = $object->tableName();
457
458 $query = "UPDATE $tableName SET weight = %1 WHERE $idName = %2";
be2fb01f
CW
459 $params = [
460 1 => [$dstWeight, 'Integer'],
461 2 => [$src, 'Integer'],
462 ];
6a488035
TO
463 CRM_Core_DAO::executeQuery($query, $params);
464
465 if ($dir == 'swap') {
be2fb01f
CW
466 $params = [
467 1 => [$srcWeight, 'Integer'],
468 2 => [$dst, 'Integer'],
469 ];
6a488035
TO
470 CRM_Core_DAO::executeQuery($query, $params);
471 }
472 elseif ($dir == 'first') {
473 // increment the rest by one
474 $query = "UPDATE $tableName SET weight = weight + 1 WHERE $idName != %1 AND weight < %2";
475 if ($filter) {
476 $query .= " AND $filter";
477 }
be2fb01f
CW
478 $params = [
479 1 => [$src, 'Integer'],
480 2 => [$srcWeight, 'Integer'],
481 ];
6a488035
TO
482 CRM_Core_DAO::executeQuery($query, $params);
483 }
484 elseif ($dir == 'last') {
485 // increment the rest by one
486 $query = "UPDATE $tableName SET weight = weight - 1 WHERE $idName != %1 AND weight > %2";
487 if ($filter) {
488 $query .= " AND $filter";
489 }
be2fb01f
CW
490 $params = [
491 1 => [$src, 'Integer'],
492 2 => [$srcWeight, 'Integer'],
493 ];
6a488035
TO
494 CRM_Core_DAO::executeQuery($query, $params);
495 }
496
4a140040
CW
497 self::fixOrderOutput($url);
498 }
f4aaa82a 499
5bc392e6 500 /**
3fd42bb5 501 * @param string $url
5bc392e6 502 */
00be9182 503 public static function fixOrderOutput($url) {
4a140040
CW
504 if (empty($_GET['snippet']) || $_GET['snippet'] !== 'json') {
505 CRM_Utils_System::redirect($url);
506 }
507
be2fb01f 508 CRM_Core_Page_AJAX::returnJsonResponse([
4a140040 509 'userContext' => $url,
be2fb01f 510 ]);
6a488035 511 }
96025800 512
6a488035 513}