Merge pull request #14000 from eileenmcnaughton/recur_fn
[civicrm-core.git] / CRM / Utils / Rule.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
fee14197 4 | CiviCRM version 5 |
6a488035 5 +--------------------------------------------------------------------+
6b83d5bd 6 | Copyright CiviCRM LLC (c) 2004-2019 |
6a488035
TO
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 +--------------------------------------------------------------------+
d25dd0ee 26 */
6a488035
TO
27
28/**
29 *
30 * @package CRM
6b83d5bd 31 * @copyright CiviCRM LLC (c) 2004-2019
6a488035
TO
32 */
33
34require_once 'HTML/QuickForm/Rule/Email.php';
f942c321 35
5bc392e6
EM
36/**
37 * Class CRM_Utils_Rule
38 */
6a488035
TO
39class CRM_Utils_Rule {
40
5bc392e6
EM
41 /**
42 * @param $str
43 * @param int $maxLength
44 *
45 * @return bool
46 */
00be9182 47 public static function title($str, $maxLength = 127) {
6a488035
TO
48
49 // check length etc
50 if (empty($str) || strlen($str) > $maxLength) {
51 return FALSE;
52 }
53
54 // Make sure it include valid characters, alpha numeric and underscores
55 if (!preg_match('/^\w[\w\s\'\&\,\$\#\-\.\"\?\!]+$/i', $str)) {
56 return FALSE;
57 }
58
59 return TRUE;
60 }
61
5bc392e6
EM
62 /**
63 * @param $str
64 *
65 * @return bool
66 */
00be9182 67 public static function longTitle($str) {
6a488035
TO
68 return self::title($str, 255);
69 }
70
5bc392e6
EM
71 /**
72 * @param $str
73 *
74 * @return bool
75 */
00be9182 76 public static function variable($str) {
6a488035
TO
77 // check length etc
78 if (empty($str) || strlen($str) > 31) {
79 return FALSE;
80 }
81
50bfb460 82 // make sure it includes valid characters, alpha numeric and underscores
6a488035
TO
83 if (!preg_match('/^[\w]+$/i', $str)) {
84 return FALSE;
85 }
86
87 return TRUE;
88 }
89
00f11506 90 /**
a33b83c5 91 * Validate that a string is a valid MySQL column name or alias.
b794b580 92 *
00f11506
MM
93 * @param $str
94 *
95 * @return bool
96 */
a33b83c5 97 public static function mysqlColumnNameOrAlias($str) {
10ed14b0
MM
98 // Check not empty.
99 if (empty($str)) {
00f11506
MM
100 return FALSE;
101 }
102
7cec4a9a
CB
103 // Ensure $str conforms to expected format. Not a complete expression of
104 // what MySQL permits; this should permit the formats CiviCRM generates.
105 //
106 // * Table name prefix is optional.
107 // * Table & column names & aliases:
108 // * Composed of alphanumeric chars, underscore and hyphens.
109 // * Maximum length of 64 chars.
110 // * Optionally surrounded by backticks, in which case spaces also OK.
38c9ed00 111 if (!preg_match('/^((`[-\w ]{1,64}`|[-\w]{1,64})\.)?(`[-\w ]{1,64}`|[-\w]{1,64})$/i', $str)) {
00f11506
MM
112 return FALSE;
113 }
114
115 return TRUE;
116 }
117
118 /**
b794b580
CB
119 * Validate that a string is ASC or DESC.
120 *
121 * Empty string should be treated as invalid and ignored => default = ASC.
00f11506 122 *
b794b580 123 * @param $str
00f11506
MM
124 * @return bool
125 */
b794b580 126 public static function mysqlOrderByDirection($str) {
00f11506
MM
127 if (!preg_match('/^(asc|desc)$/i', $str)) {
128 return FALSE;
129 }
130
131 return TRUE;
132 }
133
0fa4baf0
MM
134 /**
135 * Validate that a string is valid order by clause.
136 *
137 * @param $str
138 * @return bool
139 */
140 public static function mysqlOrderBy($str) {
be2fb01f 141 $matches = [];
9d5c7f14 142 // Using the field function in order by is valid.
143 // Look for a string like field(contribution_status_id,3,4,6).
144 // or field(civicrm_contribution.contribution_status_id,3,4,6)
145 if (preg_match('/field\([a-z_.]+,[0-9,]+\)/', $str, $matches)) {
146 // We have checked these. Remove them as they will fail the next lot.
147 // Our check currently only permits numbers & no back ticks. If we get a
148 // need for strings or backticks we can add.
149 $str = str_replace($matches, '', $str);
150 }
151 $str = trim($str);
152 if (!empty($matches) && empty($str)) {
153 // nothing left to check after the field check.
154 return TRUE;
155 }
0fa4baf0
MM
156 // Making a regex for a comma separated list is quite hard and not readable
157 // at all, so we split and loop over.
158 $parts = explode(',', $str);
159 foreach ($parts as $part) {
a99e69c2 160 if (!preg_match('/^((`[\w-]{1,64}`|[\w-]{1,64})\.)*(`[\w-]{1,64}`|[\w-]{1,64})( (asc|desc))?$/i', trim($part))) {
0fa4baf0
MM
161 return FALSE;
162 }
163 }
164
165 return TRUE;
166 }
167
5bc392e6
EM
168 /**
169 * @param $str
170 *
171 * @return bool
172 */
00be9182 173 public static function qfVariable($str) {
6a488035
TO
174 // check length etc
175 //if ( empty( $str ) || strlen( $str ) > 31 ) {
176 if (strlen(trim($str)) == 0 || strlen($str) > 31) {
177 return FALSE;
178 }
179
50bfb460 180 // make sure it includes valid characters, alpha numeric and underscores
6a488035
TO
181 // added (. and ,) option (CRM-1336)
182 if (!preg_match('/^[\w\s\.\,]+$/i', $str)) {
183 return FALSE;
184 }
185
186 return TRUE;
187 }
188
5bc392e6
EM
189 /**
190 * @param $phone
191 *
192 * @return bool
193 */
00be9182 194 public static function phone($phone) {
6a488035
TO
195 // check length etc
196 if (empty($phone) || strlen($phone) > 16) {
197 return FALSE;
198 }
199
50bfb460 200 // make sure it includes valid characters, (, \s and numeric
6a488035
TO
201 if (preg_match('/^[\d\(\)\-\.\s]+$/', $phone)) {
202 return TRUE;
203 }
204 return FALSE;
205 }
206
5bc392e6
EM
207 /**
208 * @param $query
209 *
210 * @return bool
211 */
00be9182 212 public static function query($query) {
6a488035
TO
213 // check length etc
214 if (empty($query) || strlen($query) < 3 || strlen($query) > 127) {
215 return FALSE;
216 }
217
50bfb460 218 // make sure it includes valid characters, alpha numeric and underscores
6a488035
TO
219 if (!preg_match('/^[\w\s\%\'\&\,\$\#]+$/i', $query)) {
220 return FALSE;
221 }
222
223 return TRUE;
224 }
225
5bc392e6
EM
226 /**
227 * @param $url
228 *
229 * @return bool
230 */
00be9182 231 public static function url($url) {
c7cd4e2c 232 if (!$url) {
233 // If this is required then that should be checked elsewhere - here we are not assuming it is required.
234 return TRUE;
235 }
1136a401 236 if (preg_match('/^\//', $url)) {
237 // allow relative URL's (CRM-15598)
238 $url = 'http://' . $_SERVER['HTTP_HOST'] . $url;
239 }
6a488035
TO
240 return (bool) filter_var($url, FILTER_VALIDATE_URL);
241 }
242
d9d7e7dd
TO
243 /**
244 * @param $url
245 *
246 * @return bool
247 */
248 public static function urlish($url) {
249 if (empty($url)) {
250 return TRUE;
251 }
e3d28c74 252 $url = Civi::paths()->getUrl($url, 'absolute');
d9d7e7dd
TO
253 return (bool) filter_var($url, FILTER_VALIDATE_URL);
254 }
255
5bc392e6
EM
256 /**
257 * @param $string
258 *
259 * @return bool
260 */
00be9182 261 public static function wikiURL($string) {
6a488035
TO
262 $items = explode(' ', trim($string), 2);
263 return self::url($items[0]);
264 }
265
5bc392e6
EM
266 /**
267 * @param $domain
268 *
269 * @return bool
270 */
00be9182 271 public static function domain($domain) {
6a488035
TO
272 // not perfect, but better than the previous one; see CRM-1502
273 if (!preg_match('/^[A-Za-z0-9]([A-Za-z0-9\.\-]*[A-Za-z0-9])?$/', $domain)) {
274 return FALSE;
275 }
276 return TRUE;
277 }
278
5bc392e6
EM
279 /**
280 * @param $value
281 * @param null $default
282 *
283 * @return null
284 */
00be9182 285 public static function date($value, $default = NULL) {
6a488035
TO
286 if (is_string($value) &&
287 preg_match('/^\d\d\d\d-?\d\d-?\d\d$/', $value)
288 ) {
289 return $value;
290 }
291 return $default;
292 }
293
5bc392e6
EM
294 /**
295 * @param $value
296 * @param null $default
297 *
298 * @return null|string
299 */
00be9182 300 public static function dateTime($value, $default = NULL) {
6a488035
TO
301 $result = $default;
302 if (is_string($value) &&
303 preg_match('/^\d\d\d\d-?\d\d-?\d\d(\s\d\d:\d\d(:\d\d)?|\d\d\d\d(\d\d)?)?$/', $value)
304 ) {
305 $result = $value;
306 }
307
308 return $result;
309 }
310
311 /**
100fef9d 312 * Check the validity of the date (in qf format)
6a488035
TO
313 * note that only a year is valid, or a mon-year is
314 * also valid in addition to day-mon-year. The date
315 * specified has to be beyond today. (i.e today or later)
316 *
317 * @param array $date
77855840
TO
318 * @param bool $monthRequired
319 * Check whether month is mandatory.
6a488035 320 *
a6c01b45
CW
321 * @return bool
322 * true if valid date
6a488035 323 */
00be9182 324 public static function currentDate($date, $monthRequired = TRUE) {
6a488035
TO
325 $config = CRM_Core_Config::singleton();
326
327 $d = CRM_Utils_Array::value('d', $date);
328 $m = CRM_Utils_Array::value('M', $date);
329 $y = CRM_Utils_Array::value('Y', $date);
330
331 if (!$d && !$m && !$y) {
332 return TRUE;
333 }
334
335 // CRM-9017 CiviContribute/CiviMember form with expiration date format 'm Y'
8cc574cf 336 if (!$m && !empty($date['m'])) {
6a488035
TO
337 $m = CRM_Utils_Array::value('m', $date);
338 }
339
340 $day = $mon = 1;
341 $year = 0;
342 if ($d) {
343 $day = $d;
344 }
345 if ($m) {
346 $mon = $m;
347 }
348 if ($y) {
349 $year = $y;
350 }
351
352 // if we have day we need mon, and if we have mon we need year
353 if (($d && !$m) ||
354 ($d && !$y) ||
355 ($m && !$y)
356 ) {
357 return FALSE;
358 }
359
360 $result = FALSE;
361 if (!empty($day) || !empty($mon) || !empty($year)) {
362 $result = checkdate($mon, $day, $year);
363 }
364
365 if (!$result) {
366 return FALSE;
367 }
368
369 // ensure we have month if required
370 if ($monthRequired && !$m) {
371 return FALSE;
372 }
373
374 // now make sure this date is greater that today
375 $currentDate = getdate();
376 if ($year > $currentDate['year']) {
377 return TRUE;
378 }
379 elseif ($year < $currentDate['year']) {
380 return FALSE;
381 }
382
383 if ($m) {
384 if ($mon > $currentDate['mon']) {
385 return TRUE;
386 }
387 elseif ($mon < $currentDate['mon']) {
388 return FALSE;
389 }
390 }
391
392 if ($d) {
393 if ($day > $currentDate['mday']) {
394 return TRUE;
395 }
396 elseif ($day < $currentDate['mday']) {
397 return FALSE;
398 }
399 }
400
401 return TRUE;
402 }
403
404 /**
100fef9d 405 * Check the validity of a date or datetime (timestamp)
6a488035
TO
406 * value which is in YYYYMMDD or YYYYMMDDHHMMSS format
407 *
408 * Uses PHP checkdate() - params are ( int $month, int $day, int $year )
409 *
410 * @param string $date
411 *
a6c01b45
CW
412 * @return bool
413 * true if valid date
6a488035 414 */
00be9182 415 public static function mysqlDate($date) {
6a488035
TO
416 // allow date to be null
417 if ($date == NULL) {
418 return TRUE;
419 }
420
421 if (checkdate(substr($date, 4, 2), substr($date, 6, 2), substr($date, 0, 4))) {
422 return TRUE;
423 }
424
425 return FALSE;
426 }
427
5bc392e6
EM
428 /**
429 * @param $value
430 *
431 * @return bool
432 */
00be9182 433 public static function integer($value) {
6a488035
TO
434 if (is_int($value)) {
435 return TRUE;
436 }
437
f942c321
DL
438 // CRM-13460
439 // ensure number passed is always a string numeral
440 if (!is_numeric($value)) {
441 return FALSE;
442 }
443
444 // note that is_int matches only integer type
445 // and not strings which are only integers
446 // hence we do this here
447 if (preg_match('/^\d+$/', $value)) {
448 return TRUE;
449 }
450
451 if ($value < 0) {
6a488035
TO
452 $negValue = -1 * $value;
453 if (is_int($negValue)) {
454 return TRUE;
455 }
456 }
457
6a488035
TO
458 return FALSE;
459 }
460
5bc392e6
EM
461 /**
462 * @param $value
463 *
464 * @return bool
465 */
00be9182 466 public static function positiveInteger($value) {
6a488035
TO
467 if (is_int($value)) {
468 return ($value < 0) ? FALSE : TRUE;
469 }
470
f942c321
DL
471 // CRM-13460
472 // ensure number passed is always a string numeral
473 if (!is_numeric($value)) {
474 return FALSE;
475 }
476
477 if (preg_match('/^\d+$/', $value)) {
6a488035
TO
478 return TRUE;
479 }
480
481 return FALSE;
482 }
483
fe61faf3
CW
484 /**
485 * @param $value
486 *
487 * @return bool
488 */
489 public static function commaSeparatedIntegers($value) {
490 foreach (explode(',', $value) as $val) {
491 if (!self::positiveInteger($val)) {
492 return FALSE;
493 }
494 }
495 return TRUE;
496 }
497
5bc392e6
EM
498 /**
499 * @param $value
500 *
501 * @return bool
502 */
00be9182 503 public static function numeric($value) {
f942c321
DL
504 // lets use a php gatekeeper to ensure this is numeric
505 if (!is_numeric($value)) {
506 return FALSE;
507 }
508
6a488035
TO
509 return preg_match('/(^-?\d\d*\.\d*$)|(^-?\d\d*$)|(^-?\.\d\d*$)/', $value) ? TRUE : FALSE;
510 }
511
d22982f3
SM
512 /**
513 * Test whether $value is alphanumeric.
514 *
515 * Underscores and dashes are also allowed!
516 *
517 * This is the type of string you could expect to see in URL parameters
518 * like `?mode=live` vs `?mode=test`. This function exists so that we can be
519 * strict about what we accept for such values, thus mitigating against
520 * potential security issues.
521 *
522 * @see \CRM_Utils_RuleTest::alphanumericData
523 * for examples of vales that give TRUE/FALSE here
524 *
525 * @param $value
526 *
527 * @return bool
528 */
529 public static function alphanumeric($value) {
530 return preg_match('/^[a-zA-Z0-9_-]*$/', $value) ? TRUE : FALSE;
531 }
532
5bc392e6
EM
533 /**
534 * @param $value
535 * @param $noOfDigit
536 *
537 * @return bool
538 */
00be9182 539 public static function numberOfDigit($value, $noOfDigit) {
6a488035
TO
540 return preg_match('/^\d{' . $noOfDigit . '}$/', $value) ? TRUE : FALSE;
541 }
542
8a52ae34
CW
543 /**
544 * Strict validation of 6-digit hex color notation per html5 <input type="color">
545 *
546 * @param $value
547 * @return bool
548 */
549 public static function color($value) {
550 return (bool) preg_match('/^#([\da-fA-F]{6})$/', $value);
551 }
552
5bc392e6 553 /**
83644f47 554 * Strip thousand separator from a money string.
555 *
556 * Note that this should be done at the form layer. Once we are processing
557 * money at the BAO or processor layer we should be working with something that
558 * is already in a normalised format.
559 *
560 * @param string $value
5bc392e6 561 *
83644f47 562 * @return string
5bc392e6 563 */
00be9182 564 public static function cleanMoney($value) {
6a488035 565 // first remove all white space
be2fb01f 566 $value = str_replace([' ', "\t", "\n"], '', $value);
6a488035
TO
567
568 $config = CRM_Core_Config::singleton();
569
e7292422 570 //CRM-14868
ef88f444 571 $currencySymbols = CRM_Core_PseudoConstant::get(
353ffa53 572 'CRM_Contribute_DAO_Contribution',
be2fb01f 573 'currency', [
353ffa53
TO
574 'keyColumn' => 'name',
575 'labelColumn' => 'symbol',
be2fb01f 576 ]
e70a7fc0 577 );
e7292422 578 $value = str_replace($currencySymbols, '', $value);
ef88f444 579
6a488035
TO
580 if ($config->monetaryThousandSeparator) {
581 $mon_thousands_sep = $config->monetaryThousandSeparator;
582 }
583 else {
584 $mon_thousands_sep = ',';
585 }
586
587 // ugly fix for CRM-6391: do not drop the thousand separator if
588 // it looks like it’s separating decimal part (because a given
589 // value undergoes a second cleanMoney() call, for example)
b81f42da 590 // CRM-15835 - in case the amount/value contains 0 after decimal
591 // eg 150.5 the following if condition will pass
592 if ($mon_thousands_sep != '.' or (substr($value, -3, 1) != '.' && substr($value, -2, 1) != '.')) {
6a488035
TO
593 $value = str_replace($mon_thousands_sep, '', $value);
594 }
595
596 if ($config->monetaryDecimalPoint) {
597 $mon_decimal_point = $config->monetaryDecimalPoint;
598 }
599 else {
600 $mon_decimal_point = '.';
601 }
602 $value = str_replace($mon_decimal_point, '.', $value);
603
604 return $value;
605 }
606
5bc392e6
EM
607 /**
608 * @param $value
609 *
610 * @return bool
611 */
00be9182 612 public static function money($value) {
6a488035
TO
613 $config = CRM_Core_Config::singleton();
614
50bfb460
SB
615 // only edge case when we have a decimal point in the input money
616 // field and not defined in the decimal Point in config settings
6a488035
TO
617 if ($config->monetaryDecimalPoint &&
618 $config->monetaryDecimalPoint != '.' &&
50bfb460 619 // CRM-7122 also check for Thousands Separator in config settings
6a488035
TO
620 $config->monetaryThousandSeparator != '.' &&
621 substr_count($value, '.')
622 ) {
623 return FALSE;
624 }
625
626 $value = self::cleanMoney($value);
627
628 if (self::integer($value)) {
629 return TRUE;
630 }
631
ce18e8d1
MW
632 // Allow values such as -0, 1.024555, -.1
633 // We need to support multiple decimal places here, not just the number allowed by locale
634 // otherwise tax calculations break when you want the inclusive amount to be a round number (eg. £10 inc. VAT requires 8.333333333 here).
635 return preg_match('/(^-?\d+\.?\d*$)|(^-?\.\d+$)/', $value) ? TRUE : FALSE;
6a488035
TO
636 }
637
5bc392e6
EM
638 /**
639 * @param $value
640 * @param int $maxLength
641 *
642 * @return bool
643 */
00be9182 644 public static function string($value, $maxLength = 0) {
6a488035
TO
645 if (is_string($value) &&
646 ($maxLength === 0 || strlen($value) <= $maxLength)
647 ) {
648 return TRUE;
649 }
650 return FALSE;
651 }
652
5bc392e6
EM
653 /**
654 * @param $value
655 *
656 * @return bool
657 */
00be9182 658 public static function boolean($value) {
6a488035
TO
659 return preg_match(
660 '/(^(1|0)$)|(^(Y(es)?|N(o)?)$)|(^(T(rue)?|F(alse)?)$)/i', $value
661 ) ? TRUE : FALSE;
662 }
663
5bc392e6
EM
664 /**
665 * @param $value
666 *
667 * @return bool
668 */
00be9182 669 public static function email($value) {
6a488035
TO
670 return (bool) filter_var($value, FILTER_VALIDATE_EMAIL);
671 }
672
5bc392e6
EM
673 /**
674 * @param $list
675 *
676 * @return bool
677 */
00be9182 678 public static function emailList($list) {
6a488035
TO
679 $emails = explode(',', $list);
680 foreach ($emails as $email) {
681 $email = trim($email);
682 if (!self::email($email)) {
683 return FALSE;
684 }
685 }
686 return TRUE;
687 }
688
5bc392e6 689 /**
4f1f1f2a
CW
690 * allow between 4-6 digits as postal code since india needs 6 and US needs 5 (or
691 * if u disregard the first 0, 4 (thanx excel!)
692 * FIXME: we need to figure out how to localize such rules
5bc392e6
EM
693 * @param $value
694 *
695 * @return bool
696 */
00be9182 697 public static function postalCode($value) {
6a488035
TO
698 if (preg_match('/^\d{4,6}(-\d{4})?$/', $value)) {
699 return TRUE;
700 }
701 return FALSE;
702 }
703
704 /**
100fef9d 705 * See how file rules are written in HTML/QuickForm/file.php
6a488035
TO
706 * Checks to make sure the uploaded file is ascii
707 *
ea3ddccf 708 * @param string $elementValue
709 *
a6c01b45 710 * @return bool
ea3ddccf 711 * True if file has been uploaded, false otherwise
6a488035 712 */
00be9182 713 public static function asciiFile($elementValue) {
6a488035
TO
714 if ((isset($elementValue['error']) && $elementValue['error'] == 0) ||
715 (!empty($elementValue['tmp_name']) && $elementValue['tmp_name'] != 'none')
716 ) {
717 return CRM_Utils_File::isAscii($elementValue['tmp_name']);
718 }
719 return FALSE;
720 }
721
722 /**
723 * Checks to make sure the uploaded file is in UTF-8, recodes if it's not
724 *
ea3ddccf 725 * @param array $elementValue
726 *
a6c01b45 727 * @return bool
ea3ddccf 728 * Whether file has been uploaded properly and is now in UTF-8.
6a488035 729 */
00be9182 730 public static function utf8File($elementValue) {
6a488035
TO
731 $success = FALSE;
732
733 if ((isset($elementValue['error']) && $elementValue['error'] == 0) ||
734 (!empty($elementValue['tmp_name']) && $elementValue['tmp_name'] != 'none')
735 ) {
736
737 $success = CRM_Utils_File::isAscii($elementValue['tmp_name']);
738
739 // if it's a file, but not UTF-8, let's try and recode it
740 // and then make sure it's an UTF-8 file in the end
741 if (!$success) {
742 $success = CRM_Utils_File::toUtf8($elementValue['tmp_name']);
743 if ($success) {
744 $success = CRM_Utils_File::isAscii($elementValue['tmp_name']);
745 }
746 }
747 }
748 return $success;
749 }
750
751 /**
100fef9d 752 * See how file rules are written in HTML/QuickForm/file.php
6a488035
TO
753 * Checks to make sure the uploaded file is html
754 *
ea3ddccf 755 * @param array $elementValue
756 *
a6c01b45 757 * @return bool
ea3ddccf 758 * True if file has been uploaded, false otherwise
6a488035 759 */
00be9182 760 public static function htmlFile($elementValue) {
6a488035
TO
761 if ((isset($elementValue['error']) && $elementValue['error'] == 0) ||
762 (!empty($elementValue['tmp_name']) && $elementValue['tmp_name'] != 'none')
763 ) {
764 return CRM_Utils_File::isHtmlFile($elementValue['tmp_name']);
765 }
766 return FALSE;
767 }
768
769 /**
fe482240 770 * Check if there is a record with the same name in the db.
6a488035 771 *
77855840
TO
772 * @param string $value
773 * The value of the field we are checking.
774 * @param array $options
35b63106 775 * The daoName, fieldName (optional) and DomainID (optional).
6a488035 776 *
408b79bf 777 * @return bool
a6c01b45 778 * true if object exists
6a488035 779 */
00be9182 780 public static function objectExists($value, $options) {
6a488035
TO
781 $name = 'name';
782 if (isset($options[2])) {
783 $name = $options[2];
784 }
785
35b63106 786 return CRM_Core_DAO::objectExists($value, CRM_Utils_Array::value(0, $options), CRM_Utils_Array::value(1, $options), CRM_Utils_Array::value(2, $options, $name), CRM_Utils_Array::value(3, $options));
6a488035
TO
787 }
788
5bc392e6
EM
789 /**
790 * @param $value
791 * @param $options
792 *
793 * @return bool
794 */
00be9182 795 public static function optionExists($value, $options) {
e6101f17 796 return CRM_Core_OptionValue::optionExists($value, $options[0], $options[1], $options[2], CRM_Utils_Array::value(3, $options, 'name'), CRM_Utils_Array::value(4, $options, FALSE));
6a488035
TO
797 }
798
5bc392e6
EM
799 /**
800 * @param $value
801 * @param $type
802 *
803 * @return bool
804 */
00be9182 805 public static function creditCardNumber($value, $type) {
6a488035
TO
806 return Validate_Finance_CreditCard::number($value, $type);
807 }
808
5bc392e6
EM
809 /**
810 * @param $value
811 * @param $type
812 *
813 * @return bool
814 */
00be9182 815 public static function cvv($value, $type) {
6a488035
TO
816 return Validate_Finance_CreditCard::cvv($value, $type);
817 }
818
5bc392e6
EM
819 /**
820 * @param $value
821 *
822 * @return bool
823 */
00be9182 824 public static function currencyCode($value) {
6a488035
TO
825 static $currencyCodes = NULL;
826 if (!$currencyCodes) {
827 $currencyCodes = CRM_Core_PseudoConstant::currencyCode();
828 }
829 if (in_array($value, $currencyCodes)) {
830 return TRUE;
831 }
832 return FALSE;
833 }
834
5bc392e6
EM
835 /**
836 * @param $value
837 *
838 * @return bool
839 */
00be9182 840 public static function xssString($value) {
6a488035
TO
841 if (is_string($value)) {
842 return preg_match('!<(vb)?script[^>]*>.*</(vb)?script.*>!ims',
843 $value
844 ) ? FALSE : TRUE;
845 }
846 else {
847 return TRUE;
848 }
849 }
850
88251439 851 /**
852 * Validate json string for xss
853 *
854 * @param string $value
855 *
856 * @return bool
857 * False if invalid, true if valid / safe.
858 */
859 public static function json($value) {
860 if (!self::xssString($value)) {
861 return FALSE;
862 }
863 $array = json_decode($value, TRUE);
864 if (!$array || !is_array($array)) {
865 return FALSE;
866 }
867 return self::arrayValue($array);
868 }
869
5bc392e6
EM
870 /**
871 * @param $path
872 *
873 * @return bool
874 */
00be9182 875 public static function fileExists($path) {
6a488035
TO
876 return file_exists($path);
877 }
878
d9d7e7dd
TO
879 /**
880 * Determine whether the value contains a valid reference to a directory.
881 *
882 * Paths stored in the setting system may be absolute -- or may be
883 * relative to the default data directory.
884 *
885 * @param string $path
886 * @return bool
887 */
888 public static function settingPath($path) {
e3d28c74 889 return is_dir(Civi::paths()->getPath($path));
d9d7e7dd
TO
890 }
891
5bc392e6
EM
892 /**
893 * @param $value
894 * @param null $actualElementValue
895 *
896 * @return bool
897 */
00be9182 898 public static function validContact($value, $actualElementValue = NULL) {
6a488035
TO
899 if ($actualElementValue) {
900 $value = $actualElementValue;
901 }
902
258570f7 903 return CRM_Utils_Rule::positiveInteger($value);
6a488035
TO
904 }
905
906 /**
100fef9d 907 * Check the validity of the date (in qf format)
6a488035
TO
908 * note that only a year is valid, or a mon-year is
909 * also valid in addition to day-mon-year
910 *
911 * @param array $date
912 *
a6c01b45
CW
913 * @return bool
914 * true if valid date
6a488035 915 */
00be9182 916 public static function qfDate($date) {
6a488035
TO
917 $config = CRM_Core_Config::singleton();
918
919 $d = CRM_Utils_Array::value('d', $date);
920 $m = CRM_Utils_Array::value('M', $date);
921 $y = CRM_Utils_Array::value('Y', $date);
922 if (isset($date['h']) ||
923 isset($date['g'])
924 ) {
925 $m = CRM_Utils_Array::value('M', $date);
926 }
927
928 if (!$d && !$m && !$y) {
929 return TRUE;
930 }
931
932 $day = $mon = 1;
933 $year = 0;
934 if ($d) {
935 $day = $d;
936 }
937 if ($m) {
938 $mon = $m;
939 }
940 if ($y) {
941 $year = $y;
942 }
943
944 // if we have day we need mon, and if we have mon we need year
945 if (($d && !$m) ||
946 ($d && !$y) ||
947 ($m && !$y)
948 ) {
949 return FALSE;
950 }
951
952 if (!empty($day) || !empty($mon) || !empty($year)) {
953 return checkdate($mon, $day, $year);
954 }
955 return FALSE;
956 }
957
5bc392e6
EM
958 /**
959 * @param $key
960 *
961 * @return bool
962 */
00be9182 963 public static function qfKey($key) {
6a488035
TO
964 return ($key) ? CRM_Core_Key::valid($key) : FALSE;
965 }
96025800 966
79326ee2
SB
967 /**
968 * Check if the values in the date range are in correct chronological order.
969 *
970 * @param array $fields
971 * Fields of the form.
972 * @param $fieldName
973 * Name of date range field.
974 * @param $errors
975 * The error array.
976 * @param $title
977 * Title of the date range to be displayed in the error message.
978 */
979 public static function validDateRange($fields, $fieldName, &$errors, $title) {
980 $lowDate = strtotime($fields[$fieldName . '_low']);
981 $highDate = strtotime($fields[$fieldName . '_high']);
982
983 if ($lowDate > $highDate) {
be2fb01f 984 $errors[$fieldName . '_range_error'] = ts('%1: Please check that your date range is in correct chronological order.', [1 => $title]);
79326ee2
SB
985 }
986 }
987
5df85a46
SL
988 /**
989 * @param string $key Extension Key to check
990 * @return bool
991 */
9e1d9d01 992 public static function checkExtensionKeyIsValid($key = NULL) {
5df85a46
SL
993 if (!empty($key) && !preg_match('/^[0-9a-zA-Z._-]+$/', $key)) {
994 return FALSE;
995 }
996 return TRUE;
997 }
998
88251439 999 /**
1000 * Validate array recursively checking keys and values.
1001 *
1002 * @param array $array
1003 * @return bool
1004 */
1005 protected static function arrayValue($array) {
1006 foreach ($array as $key => $item) {
1007 if (is_array($item)) {
1008 if (!self::xssString($key) || !self::arrayValue($item)) {
1009 return FALSE;
1010 }
1011 }
1012 if (!self::xssString($key) || !self::xssString($item)) {
1013 return FALSE;
1014 }
1015 }
1016 return TRUE;
1017 }
1018
6a488035 1019}