Merge pull request #15982 from civicrm/5.20
[civicrm-core.git] / CRM / Utils / System.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
bc77d7c0 4 | Copyright CiviCRM LLC. All rights reserved. |
6a488035 5 | |
bc77d7c0
TO
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 |
6a488035 9 +--------------------------------------------------------------------+
d25dd0ee 10 */
6a488035
TO
11
12/**
13 *
14 * @package CRM
ca5cec67 15 * @copyright CiviCRM LLC https://civicrm.org/licensing
6a488035
TO
16 */
17
18/**
19 * System wide utilities.
091db908
CW
20 *
21 * Provides a collection of Civi utilities + access to the CMS-dependant utilities
22 *
23 * FIXME: This is a massive and random collection that could be split into smaller services
24 *
25 * @method static mixed permissionDenied() Show access denied screen.
26 * @method static mixed logout() Log out the current user.
27 * @method static mixed updateCategories() Clear CMS caches related to the user registration/profile forms.
0efdabe7 28 * @method static appendBreadCrumb(array $breadCrumbs) Append an additional breadcrumb tag to the existing breadcrumbs.
091db908
CW
29 * @method static resetBreadCrumb() Reset an additional breadcrumb tag to the existing breadcrumb.
30 * @method static addHTMLHead(string $bc) Append a string to the head of the HTML file.
31 * @method static string postURL(int $action) Determine the post URL for a form.
32 * @method static string|null getUFLocale() Get the locale of the CMS.
33 * @method static bool setUFLocale(string $civicrm_language) Set the locale of the CMS.
34 * @method static bool isUserLoggedIn() Check if user is logged in.
35 * @method static int getLoggedInUfID() Get current logged in user id.
36 * @method static setHttpHeader(string $name, string $value) Set http header.
37 * @method static array synchronizeUsers() Create CRM contacts for all existing CMS users.
303017a1 38 * @method static appendCoreResources(\Civi\Core\Event\GenericHookEvent $e) Callback for hook_civicrm_coreResourceList.
62c20d1e 39 * @method static alterAssetUrl(\Civi\Core\Event\GenericHookEvent $e) Callback for hook_civicrm_getAssetUrl.
6a488035
TO
40 */
41class CRM_Utils_System {
42
6714d8d2 43 public static $_callbacks = NULL;
6a488035 44
5af8c999 45 /**
50bfb460
SB
46 * @var string
47 * Page title
5af8c999 48 */
6714d8d2 49 public static $title = '';
5af8c999 50
091db908
CW
51 /**
52 * Access methods in the appropriate CMS class
53 *
54 * @param $name
55 * @param $arguments
56 * @return mixed
57 */
58 public static function __callStatic($name, $arguments) {
59 $userSystem = CRM_Core_Config::singleton()->userSystem;
be2fb01f 60 return call_user_func_array([$userSystem, $name], $arguments);
091db908
CW
61 }
62
6a488035 63 /**
9911500f 64 * Compose a new URL string from the current URL string.
7890c493 65 *
6a488035
TO
66 * Used by all the framework components, specifically,
67 * pager, sort and qfc
68 *
7890c493
RS
69 * @param string $urlVar
70 * The url variable being considered (i.e. crmPageID, crmSortID etc).
71 * @param bool $includeReset
72 * (optional) Whether to include the reset GET string (if present).
73 * @param bool $includeForce
74 * (optional) Whether to include the force GET string (if present).
414e3596 75 * @param string $path
7890c493 76 * (optional) The path to use for the new url.
f4aaa82a 77 * @param bool|string $absolute
7890c493 78 * (optional) Whether to return an absolute URL.
6a488035 79 *
7890c493
RS
80 * @return string
81 * The URL fragment.
6a488035 82 */
00be9182 83 public static function makeURL($urlVar, $includeReset = FALSE, $includeForce = TRUE, $path = NULL, $absolute = FALSE) {
6a488035
TO
84 if (empty($path)) {
85 $config = CRM_Core_Config::singleton();
86 $path = CRM_Utils_Array::value($config->userFrameworkURLVar, $_GET);
87 if (empty($path)) {
88 return '';
89 }
90 }
91
6714d8d2 92 return self::url(
3ab88a8c
DL
93 $path,
94 CRM_Utils_System::getLinksUrl($urlVar, $includeReset, $includeForce),
95 $absolute
96 );
6a488035
TO
97 }
98
99 /**
7890c493
RS
100 * Get the query string and clean it up.
101 *
9911500f 102 * Strips some variables that should not be propagated, specifically variables
7890c493 103 * like 'reset'. Also strips any side-affect actions (e.g. export).
6a488035
TO
104 *
105 * This function is copied mostly verbatim from Pager.php (_getLinksUrl)
106 *
7890c493
RS
107 * @param string $urlVar
108 * The URL variable being considered (e.g. crmPageID, crmSortID etc).
109 * @param bool $includeReset
9911500f
RS
110 * (optional) By default this is FALSE, meaning that the reset parameter
111 * is skipped. Set to TRUE to leave the reset parameter as-is.
7890c493 112 * @param bool $includeForce
9911500f 113 * (optional)
7890c493 114 * @param bool $skipUFVar
9911500f 115 * (optional)
6a488035
TO
116 *
117 * @return string
6a488035 118 */
00be9182 119 public static function getLinksUrl($urlVar, $includeReset = FALSE, $includeForce = TRUE, $skipUFVar = TRUE) {
6a488035 120 // Sort out query string to prevent messy urls
be2fb01f
CW
121 $querystring = [];
122 $qs = [];
123 $arrays = [];
6a488035
TO
124
125 if (!empty($_SERVER['QUERY_STRING'])) {
126 $qs = explode('&', str_replace('&amp;', '&', $_SERVER['QUERY_STRING']));
127 for ($i = 0, $cnt = count($qs); $i < $cnt; $i++) {
128 // check first if exist a pair
129 if (strstr($qs[$i], '=') !== FALSE) {
130 list($name, $value) = explode('=', $qs[$i]);
131 if ($name != $urlVar) {
132 $name = rawurldecode($name);
50bfb460 133 // check for arrays in parameters: site.php?foo[]=1&foo[]=2&foo[]=3
6a488035
TO
134 if ((strpos($name, '[') !== FALSE) &&
135 (strpos($name, ']') !== FALSE)
136 ) {
137 $arrays[] = $qs[$i];
138 }
139 else {
140 $qs[$name] = $value;
141 }
142 }
143 }
144 else {
145 $qs[$qs[$i]] = '';
146 }
147 unset($qs[$i]);
148 }
149 }
150
151 if ($includeForce) {
152 $qs['force'] = 1;
153 }
154
d8249fcb 155 // Ok this is a big assumption but usually works
9911500f
RS
156 // If we are in snippet mode, retain the 'section' param, if not, get rid
157 // of it.
d8249fcb
CW
158 if (!empty($qs['snippet'])) {
159 unset($qs['snippet']);
160 }
161 else {
162 unset($qs['section']);
163 }
6a488035
TO
164
165 if ($skipUFVar) {
166 $config = CRM_Core_Config::singleton();
167 unset($qs[$config->userFrameworkURLVar]);
168 }
169
170 foreach ($qs as $name => $value) {
171 if ($name != 'reset' || $includeReset) {
172 $querystring[] = $name . '=' . $value;
173 }
174 }
175
176 $querystring = array_merge($querystring, array_unique($arrays));
6a488035 177
fe010227 178 $url = implode('&', $querystring);
3ab88a8c 179 if ($urlVar) {
fe010227 180 $url .= (!empty($querystring) ? '&' : '') . $urlVar . '=';
3ab88a8c
DL
181 }
182
183 return $url;
6a488035
TO
184 }
185
186 /**
70599df6 187 * If we are using a theming system, invoke theme, else just print the content.
6a488035 188 *
7890c493
RS
189 * @param string $content
190 * The content that will be themed.
414e3596 191 * @param bool $print
7890c493
RS
192 * (optional) Are we displaying to the screen or bypassing theming?
193 * @param bool $maintenance
194 * (optional) For maintenance mode.
6a488035 195 *
a75c13cc 196 * @return string
6a488035 197 */
971d41b1 198 public static function theme(
6a488035 199 &$content,
e7292422 200 $print = FALSE,
6a488035
TO
201 $maintenance = FALSE
202 ) {
f3a87cf4 203 return CRM_Core_Config::singleton()->userSystem->theme($content, $print, $maintenance);
6a488035
TO
204 }
205
206 /**
7890c493 207 * Generate a query string if input is an array.
6a488035 208 *
7890c493 209 * @param array|string $query
70599df6 210 *
7890c493 211 * @return string
6a488035 212 */
00be9182 213 public static function makeQueryString($query) {
6a488035
TO
214 if (is_array($query)) {
215 $buf = '';
216 foreach ($query as $key => $value) {
217 $buf .= ($buf ? '&' : '') . urlencode($key) . '=' . urlencode($value);
218 }
219 $query = $buf;
220 }
221 return $query;
222 }
223
224 /**
7890c493 225 * Generate an internal CiviCRM URL.
6a488035 226 *
7890c493
RS
227 * @param string $path
228 * The path being linked to, such as "civicrm/add".
229 * @param array|string $query
230 * A query string to append to the link, or an array of key-value pairs.
231 * @param bool $absolute
232 * Whether to force the output to be an absolute link (beginning with a
9911500f 233 * URI-scheme such as 'http:'). Useful for links that will be displayed
7890c493
RS
234 * outside the site, such as in an RSS feed.
235 * @param string $fragment
236 * A fragment identifier (named anchor) to append to the link.
fe010227 237 * @param bool $htmlize
f77dfbae 238 * Whether to encode special html characters such as &.
fe010227 239 * @param bool $frontend
f77dfbae 240 * This link should be to the CMS front end (applies to WP & Joomla).
fe010227 241 * @param bool $forceBackend
f77dfbae 242 * This link should be to the CMS back end (applies to WP & Joomla).
70599df6 243 *
7890c493
RS
244 * @return string
245 * An HTML string containing a link to the given path.
6a488035 246 */
971d41b1 247 public static function url(
6a488035 248 $path = NULL,
e7292422 249 $query = NULL,
6a488035
TO
250 $absolute = FALSE,
251 $fragment = NULL,
e7292422 252 $htmlize = TRUE,
6a488035
TO
253 $frontend = FALSE,
254 $forceBackend = FALSE
255 ) {
256 $query = self::makeQueryString($query);
257
c80e2dbf
CW
258 // Legacy handling for when the system passes around html escaped strings
259 if (strstr($query, '&amp;')) {
260 $query = html_entity_decode($query);
261 }
262
263 // Extract fragment from path or query if munged together
264 if ($query && strstr($query, '#')) {
265 list($path, $fragment) = explode('#', $query);
266 }
267 if ($path && strstr($path, '#')) {
268 list($path, $fragment) = explode('#', $path);
269 }
270
271 // Extract query from path if munged together
272 if ($path && strstr($path, '?')) {
273 list($path, $extraQuery) = explode('?', $path);
274 $query = $extraQuery . ($query ? "&$query" : '');
6a488035
TO
275 }
276
277 $config = CRM_Core_Config::singleton();
c80e2dbf
CW
278 $url = $config->userSystem->url($path, $query, $absolute, $fragment, $frontend, $forceBackend);
279
280 if ($htmlize) {
281 $url = htmlentities($url);
282 }
283
284 return $url;
6a488035
TO
285 }
286
42a40a1c 287 /**
288 * Path of the current page e.g. 'civicrm/contact/view'
289 *
290 * @return string|null
291 */
292 public static function getUrlPath() {
293 if (isset($_GET[CRM_Core_Config::singleton()->userFrameworkURLVar])) {
294 return $_GET[CRM_Core_Config::singleton()->userFrameworkURLVar];
295 }
296 return NULL;
297 }
298
5bc392e6 299 /**
70599df6 300 * Get href.
301 *
302 * @param string $text
303 * @param string $path
304 * @param string|array $query
5bc392e6 305 * @param bool $absolute
70599df6 306 * @param string $fragment
5bc392e6
EM
307 * @param bool $htmlize
308 * @param bool $frontend
309 * @param bool $forceBackend
310 *
311 * @return string
312 */
971d41b1 313 public static function href(
a3e55d9c 314 $text, $path = NULL, $query = NULL, $absolute = TRUE,
6a488035
TO
315 $fragment = NULL, $htmlize = TRUE, $frontend = FALSE, $forceBackend = FALSE
316 ) {
317 $url = self::url($path, $query, $absolute, $fragment, $htmlize, $frontend, $forceBackend);
318 return "<a href=\"$url\">$text</a>";
319 }
320
6a488035 321 /**
70599df6 322 * What menu path are we currently on. Called for the primary tpl.
6a488035 323 *
a6c01b45
CW
324 * @return string
325 * the current menu path
6a488035 326 */
00be9182 327 public static function currentPath() {
6a488035
TO
328 $config = CRM_Core_Config::singleton();
329 return trim(CRM_Utils_Array::value($config->userFrameworkURLVar, $_GET), '/');
330 }
331
332 /**
70599df6 333 * Called from a template to compose a url.
6a488035 334 *
7890c493
RS
335 * @param array $params
336 * List of parameters.
6a488035 337 *
a6c01b45
CW
338 * @return string
339 * url
6a488035 340 */
00be9182 341 public static function crmURL($params) {
6a488035
TO
342 $p = CRM_Utils_Array::value('p', $params);
343 if (!isset($p)) {
344 $p = self::currentPath();
345 }
346
496e07aa
DL
347 return self::url(
348 $p,
6a488035
TO
349 CRM_Utils_Array::value('q', $params),
350 CRM_Utils_Array::value('a', $params, FALSE),
351 CRM_Utils_Array::value('f', $params),
352 CRM_Utils_Array::value('h', $params, TRUE),
353 CRM_Utils_Array::value('fe', $params, FALSE),
354 CRM_Utils_Array::value('fb', $params, FALSE)
355 );
356 }
357
358 /**
7890c493 359 * Sets the title of the page.
6a488035
TO
360 *
361 * @param string $title
091db908 362 * Document title - plain text only
6a488035 363 * @param string $pageTitle
091db908 364 * Page title (if different) - may include html
6a488035 365 */
00be9182 366 public static function setTitle($title, $pageTitle = NULL) {
5af8c999 367 self::$title = $title;
6a488035
TO
368 $config = CRM_Core_Config::singleton();
369 return $config->userSystem->setTitle($title, $pageTitle);
370 }
371
372 /**
7890c493 373 * Figures and sets the userContext.
6a488035 374 *
70599df6 375 * Uses the referrer if valid else uses the default.
7890c493
RS
376 *
377 * @param array $names
50bfb460 378 * Referrer should match any str in this array.
7890c493
RS
379 * @param string $default
380 * (optional) The default userContext if no match found.
6a488035 381 */
00be9182 382 public static function setUserContext($names, $default = NULL) {
6a488035
TO
383 $url = $default;
384
385 $session = CRM_Core_Session::singleton();
386 $referer = CRM_Utils_Array::value('HTTP_REFERER', $_SERVER);
387
388 if ($referer && !empty($names)) {
389 foreach ($names as $name) {
390 if (strstr($referer, $name)) {
391 $url = $referer;
392 break;
393 }
394 }
395 }
396
397 if ($url) {
398 $session->pushUserContext($url);
399 }
400 }
401
402 /**
7890c493 403 * Gets a class name for an object.
6a488035 404 *
7890c493
RS
405 * @param object $object
406 * Object whose class name is needed.
6a488035 407 *
7890c493
RS
408 * @return string
409 * The class name of the object.
6a488035 410 */
00be9182 411 public static function getClassName($object) {
6a488035
TO
412 return get_class($object);
413 }
414
415 /**
7890c493 416 * Redirect to another URL.
6a488035 417 *
7890c493
RS
418 * @param string $url
419 * The URL to provide to the browser via the Location header.
f9bdf062 420 * @param array $context
421 * Optional additional information for the hook.
6a488035 422 */
f9bdf062 423 public static function redirect($url = NULL, $context = []) {
6a488035
TO
424 if (!$url) {
425 $url = self::url('civicrm/dashboard', 'reset=1');
426 }
6a488035
TO
427 // replace the &amp; characters with &
428 // this is kinda hackish but not sure how to do it right
429 $url = str_replace('&amp;', '&', $url);
0a94ab7d 430
f9bdf062 431 $context['output'] = CRM_Utils_Array::value('snippet', $_GET);
432
433 $parsedUrl = CRM_Utils_Url::parseUrl($url);
434 CRM_Utils_Hook::alterRedirect($parsedUrl, $context);
435 $url = CRM_Utils_Url::unparseUrl($parsedUrl);
436
0a94ab7d 437 // If we are in a json context, respond appropriately
f9bdf062 438 if ($context['output'] === 'json') {
be2fb01f 439 CRM_Core_Page_AJAX::returnJsonResponse([
0a94ab7d
CW
440 'status' => 'redirect',
441 'userContext' => $url,
be2fb01f 442 ]);
0a94ab7d
CW
443 }
444
d42a224c 445 self::setHttpHeader('Location', $url);
6a488035
TO
446 self::civiExit();
447 }
448
449 /**
7890c493
RS
450 * Redirect to another URL using JavaScript.
451 *
452 * Use an html based file with javascript embedded to redirect to another url
6a488035
TO
453 * This prevent the too many redirect errors emitted by various browsers
454 *
7890c493
RS
455 * @param string $url
456 * (optional) The destination URL.
457 * @param string $title
458 * (optional) The page title to use for the redirect page.
459 * @param string $message
460 * (optional) The message to provide in the body of the redirect page.
6a488035 461 */
971d41b1 462 public static function jsRedirect(
e7292422
TO
463 $url = NULL,
464 $title = NULL,
6a488035
TO
465 $message = NULL
466 ) {
467 if (!$url) {
468 $url = self::url('civicrm/dashboard', 'reset=1');
469 }
470
471 if (!$title) {
472 $title = ts('CiviCRM task in progress');
473 }
474
475 if (!$message) {
476 $message = ts('A long running CiviCRM task is currently in progress. This message will be refreshed till the task is completed');
477 }
478
479 // replace the &amp; characters with &
480 // this is kinda hackish but not sure how to do it right
481 $url = str_replace('&amp;', '&', $url);
482
483 $template = CRM_Core_Smarty::singleton();
484 $template->assign('redirectURL', $url);
485 $template->assign('title', $title);
486 $template->assign('message', $message);
487
488 $html = $template->fetch('CRM/common/redirectJS.tpl');
489
490 echo $html;
491
492 self::civiExit();
493 }
494
6a488035 495 /**
7890c493 496 * Get the base URL of the system.
6a488035
TO
497 *
498 * @return string
6a488035 499 */
00be9182 500 public static function baseURL() {
6a488035
TO
501 $config = CRM_Core_Config::singleton();
502 return $config->userFrameworkBaseURL;
503 }
504
7890c493 505 /**
ad37ac8e 506 * Authenticate or abort.
507 *
508 * @param string $message
509 * @param bool $abort
510 *
511 * @return bool
7890c493 512 */
00be9182 513 public static function authenticateAbort($message, $abort) {
6a488035
TO
514 if ($abort) {
515 echo $message;
516 self::civiExit(0);
517 }
518 else {
519 return FALSE;
520 }
521 }
522
7890c493 523 /**
70599df6 524 * Authenticate key.
525 *
7890c493
RS
526 * @param bool $abort
527 * (optional) Whether to exit; defaults to true.
77b97be7
EM
528 *
529 * @return bool
7890c493 530 */
00be9182 531 public static function authenticateKey($abort = TRUE) {
6a488035
TO
532 // also make sure the key is sent and is valid
533 $key = trim(CRM_Utils_Array::value('key', $_REQUEST));
534
535 $docAdd = "More info at:" . CRM_Utils_System::docURL2("Managing Scheduled Jobs", TRUE, NULL, NULL, NULL, "wiki");
536
537 if (!$key) {
0af0e4c9
DL
538 return self::authenticateAbort(
539 "ERROR: You need to send a valid key to execute this file. " . $docAdd . "\n",
6a488035
TO
540 $abort
541 );
542 }
543
544 $siteKey = defined('CIVICRM_SITE_KEY') ? CIVICRM_SITE_KEY : NULL;
545
0af0e4c9
DL
546 if (!$siteKey || empty($siteKey)) {
547 return self::authenticateAbort(
548 "ERROR: You need to set a valid site key in civicrm.settings.php. " . $docAdd . "\n",
6a488035
TO
549 $abort
550 );
551 }
552
553 if (strlen($siteKey) < 8) {
0af0e4c9
DL
554 return self::authenticateAbort(
555 "ERROR: Site key needs to be greater than 7 characters in civicrm.settings.php. " . $docAdd . "\n",
6a488035
TO
556 $abort
557 );
558 }
559
560 if ($key !== $siteKey) {
0af0e4c9
DL
561 return self::authenticateAbort(
562 "ERROR: Invalid key value sent. " . $docAdd . "\n",
6a488035
TO
563 $abort
564 );
565 }
566
567 return TRUE;
568 }
569
7890c493 570 /**
70599df6 571 * Authenticate script.
572 *
f4aaa82a 573 * @param bool $abort
70599df6 574 * @param string $name
575 * @param string $pass
f4aaa82a
EM
576 * @param bool $storeInSession
577 * @param bool $loadCMSBootstrap
578 * @param bool $requireKey
579 *
7890c493 580 * @return bool
7890c493 581 */
00be9182 582 public static function authenticateScript($abort = TRUE, $name = NULL, $pass = NULL, $storeInSession = TRUE, $loadCMSBootstrap = TRUE, $requireKey = TRUE) {
7890c493 583 // auth to make sure the user has a login/password to do a shell operation
6a488035
TO
584 // later on we'll link this to acl's
585 if (!$name) {
586 $name = trim(CRM_Utils_Array::value('name', $_REQUEST));
587 $pass = trim(CRM_Utils_Array::value('pass', $_REQUEST));
588 }
589
590 // its ok to have an empty password
591 if (!$name) {
0af0e4c9
DL
592 return self::authenticateAbort(
593 "ERROR: You need to send a valid user name and password to execute this file\n",
6a488035
TO
594 $abort
595 );
596 }
597
bec3fc7c 598 if ($requireKey && !self::authenticateKey($abort)) {
6a488035
TO
599 return FALSE;
600 }
601
602 $result = CRM_Utils_System::authenticate($name, $pass, $loadCMSBootstrap);
603 if (!$result) {
0af0e4c9
DL
604 return self::authenticateAbort(
605 "ERROR: Invalid username and/or password\n",
6a488035
TO
606 $abort
607 );
608 }
609 elseif ($storeInSession) {
610 // lets store contact id and user id in session
611 list($userID, $ufID, $randomNumber) = $result;
612 if ($userID && $ufID) {
bec3fc7c 613 $config = CRM_Core_Config::singleton();
be2fb01f 614 $config->userSystem->setUserSession([$userID, $ufID]);
6a488035
TO
615 }
616 else {
0af0e4c9
DL
617 return self::authenticateAbort(
618 "ERROR: Unexpected error, could not match userID and contactID",
6a488035
TO
619 $abort
620 );
621 }
622 }
623
624 return $result;
625 }
626
627 /**
7890c493 628 * Authenticate the user against the uf db.
6a488035 629 *
b44e3f84 630 * In case of successful authentication, returns an array consisting of
7890c493
RS
631 * (contactID, ufID, unique string). Returns FALSE if authentication is
632 * unsuccessful.
6a488035 633 *
7890c493
RS
634 * @param string $name
635 * The username.
636 * @param string $password
637 * The password.
638 * @param bool $loadCMSBootstrap
70599df6 639 * @param string $realPath
7890c493
RS
640 *
641 * @return false|array
6a488035 642 */
00be9182 643 public static function authenticate($name, $password, $loadCMSBootstrap = FALSE, $realPath = NULL) {
6a488035 644 $config = CRM_Core_Config::singleton();
c1e1e8b8 645
7890c493
RS
646 /* Before we do any loading, let's start the session and write to it.
647 * We typically call authenticate only when we need to bootstrap the CMS
648 * directly via Civi and hence bypass the normal CMS auth and bootstrap
649 * process typically done in CLI and cron scripts. See: CRM-12648
dc1e9be8
TO
650 *
651 * Q: Can we move this to the userSystem class so that it can be tuned
652 * per-CMS? For example, when dealing with UnitTests UF, there's no
653 * userFrameworkDSN.
7890c493 654 */
c1e1e8b8 655 $session = CRM_Core_Session::singleton();
481a74f4 656 $session->set('civicrmInitSession', TRUE);
c1e1e8b8 657
dc1e9be8
TO
658 if ($config->userFrameworkDSN) {
659 $dbDrupal = DB::connect($config->userFrameworkDSN);
660 }
6a488035
TO
661 return $config->userSystem->authenticate($name, $password, $loadCMSBootstrap, $realPath);
662 }
663
664 /**
7890c493 665 * Set a message in the UF to display to a user.
6a488035 666 *
7890c493
RS
667 * @param string $message
668 * The message to set.
6a488035 669 */
00be9182 670 public static function setUFMessage($message) {
6a488035
TO
671 $config = CRM_Core_Config::singleton();
672 return $config->userSystem->setMessage($message);
673 }
674
7890c493
RS
675 /**
676 * Determine whether a value is null-ish.
677 *
70599df6 678 * @param mixed $value
7890c493 679 * The value to check for null.
70599df6 680 *
7890c493 681 * @return bool
7890c493 682 */
00be9182 683 public static function isNull($value) {
6a488035
TO
684 // FIXME: remove $value = 'null' string test when we upgrade our DAO code to handle passing null in a better way.
685 if (!isset($value) || $value === NULL || $value === '' || $value === 'null') {
686 return TRUE;
687 }
688 if (is_array($value)) {
26659f0c 689 // @todo Reuse of the $value variable = asking for trouble.
6a488035 690 foreach ($value as $key => $value) {
57f8e7f0 691 if (in_array($key, CRM_Core_DAO::acceptedSQLOperators(), TRUE) || !self::isNull($value)) {
6a488035
TO
692 return FALSE;
693 }
694 }
695 return TRUE;
696 }
697 return FALSE;
698 }
699
7890c493
RS
700 /**
701 * Obscure all but the last few digits of a credit card number.
702 *
703 * @param string $number
704 * The credit card number to obscure.
705 * @param int $keep
706 * (optional) The number of digits to preserve unmodified.
70599df6 707 *
7890c493
RS
708 * @return string
709 * The obscured credit card number.
7890c493 710 */
00be9182 711 public static function mungeCreditCard($number, $keep = 4) {
6a488035
TO
712 $number = trim($number);
713 if (empty($number)) {
714 return NULL;
715 }
716 $replace = str_repeat('*', strlen($number) - $keep);
717 return substr_replace($number, $replace, 0, -$keep);
718 }
719
414e3596 720 /**
7890c493
RS
721 * Determine which PHP modules are loaded.
722 *
723 * @return array
7890c493 724 */
c8f60166 725 private static function parsePHPModules() {
6a488035
TO
726 ob_start();
727 phpinfo(INFO_MODULES);
728 $s = ob_get_contents();
729 ob_end_clean();
730
353ffa53
TO
731 $s = strip_tags($s, '<h2><th><td>');
732 $s = preg_replace('/<th[^>]*>([^<]+)<\/th>/', "<info>\\1</info>", $s);
733 $s = preg_replace('/<td[^>]*>([^<]+)<\/td>/', "<info>\\1</info>", $s);
734 $vTmp = preg_split('/(<h2>[^<]+<\/h2>)/', $s, -1, PREG_SPLIT_DELIM_CAPTURE);
be2fb01f 735 $vModules = [];
6a488035
TO
736 for ($i = 1; $i < count($vTmp); $i++) {
737 if (preg_match('/<h2>([^<]+)<\/h2>/', $vTmp[$i], $vMat)) {
738 $vName = trim($vMat[1]);
739 $vTmp2 = explode("\n", $vTmp[$i + 1]);
e7292422 740 foreach ($vTmp2 as $vOne) {
353ffa53 741 $vPat = '<info>([^<]+)<\/info>';
6a488035
TO
742 $vPat3 = "/$vPat\s*$vPat\s*$vPat/";
743 $vPat2 = "/$vPat\s*$vPat/";
744 // 3cols
745 if (preg_match($vPat3, $vOne, $vMat)) {
be2fb01f 746 $vModules[$vName][trim($vMat[1])] = [trim($vMat[2]), trim($vMat[3])];
6a488035
TO
747 // 2cols
748 }
749 elseif (preg_match($vPat2, $vOne, $vMat)) {
750 $vModules[$vName][trim($vMat[1])] = trim($vMat[2]);
751 }
752 }
753 }
754 }
755 return $vModules;
756 }
757
7890c493
RS
758 /**
759 * Get a setting from a loaded PHP module.
ad37ac8e 760 *
761 * @param string $pModuleName
762 * @param string $pSetting
763 *
764 * @return mixed
7890c493 765 */
fcc5922d 766 public static function getModuleSetting($pModuleName, $pSetting) {
6a488035
TO
767 $vModules = self::parsePHPModules();
768 return $vModules[$pModuleName][$pSetting];
769 }
770
7890c493 771 /**
70599df6 772 * Do something no-one bothered to document.
773 *
774 * @param string $title
7890c493 775 * (optional)
f4aaa82a
EM
776 *
777 * @return mixed|string
7890c493 778 */
00be9182 779 public static function memory($title = NULL) {
6a488035
TO
780 static $pid = NULL;
781 if (!$pid) {
782 $pid = posix_getpid();
783 }
784
785 $memory = str_replace("\n", '', shell_exec("ps -p" . $pid . " -o rss="));
786 $memory .= ", " . time();
787 if ($title) {
788 CRM_Core_Error::debug_var($title, $memory);
789 }
790 return $memory;
791 }
792
7890c493 793 /**
70599df6 794 * Download something or other.
795 *
7890c493
RS
796 * @param string $name
797 * @param string $mimeType
70599df6 798 * @param string $buffer
7890c493
RS
799 * @param string $ext
800 * @param bool $output
f4aaa82a 801 * @param string $disposition
7890c493 802 */
971d41b1 803 public static function download(
a3e55d9c 804 $name, $mimeType, &$buffer,
6a488035 805 $ext = NULL,
8f176433
M
806 $output = TRUE,
807 $disposition = 'attachment'
6a488035
TO
808 ) {
809 $now = gmdate('D, d M Y H:i:s') . ' GMT';
810
d42a224c
CW
811 self::setHttpHeader('Content-Type', $mimeType);
812 self::setHttpHeader('Expires', $now);
6a488035 813
50bfb460 814 // lem9 & loic1: IE needs specific headers
8535cfc6 815 $isIE = empty($_SERVER['HTTP_USER_AGENT']) ? FALSE : strstr($_SERVER['HTTP_USER_AGENT'], 'MSIE');
6a488035
TO
816 if ($ext) {
817 $fileString = "filename=\"{$name}.{$ext}\"";
818 }
819 else {
820 $fileString = "filename=\"{$name}\"";
821 }
822 if ($isIE) {
d42a224c
CW
823 self::setHttpHeader("Content-Disposition", "inline; $fileString");
824 self::setHttpHeader('Cache-Control', 'must-revalidate, post-check=0, pre-check=0');
825 self::setHttpHeader('Pragma', 'public');
6a488035
TO
826 }
827 else {
d42a224c
CW
828 self::setHttpHeader("Content-Disposition", "$disposition; $fileString");
829 self::setHttpHeader('Pragma', 'no-cache');
6a488035
TO
830 }
831
832 if ($output) {
833 print $buffer;
834 self::civiExit();
835 }
836 }
837
7890c493 838 /**
9911500f
RS
839 * Gather and print (and possibly log) amount of used memory.
840 *
841 * @param string $title
842 * @param bool $log
843 * (optional) Whether to log the memory usage information.
7890c493 844 */
00be9182 845 public static function xMemory($title = NULL, $log = FALSE) {
e7292422 846 $mem = (float ) xdebug_memory_usage() / (float ) (1024);
6a488035
TO
847 $mem = number_format($mem, 5) . ", " . time();
848 if ($log) {
849 echo "<p>$title: $mem<p>";
850 flush();
851 CRM_Core_Error::debug_var($title, $mem);
852 }
853 else {
854 echo "<p>$title: $mem<p>";
855 flush();
856 }
857 }
858
7890c493 859 /**
9911500f
RS
860 * Take a URL (or partial URL) and make it better.
861 *
862 * Currently, URLs pass straight through unchanged unless they are "seriously
863 * malformed" (see http://us2.php.net/parse_url).
864 *
7890c493
RS
865 * @param string $url
866 * The URL to operate on.
70599df6 867 *
9911500f
RS
868 * @return string
869 * The fixed URL.
7890c493 870 */
00be9182 871 public static function fixURL($url) {
6a488035
TO
872 $components = parse_url($url);
873
874 if (!$components) {
875 return NULL;
876 }
877
878 // at some point we'll add code here to make sure the url is not
50bfb460 879 // something that will mess up, so we need to clean it up here
6a488035
TO
880 return $url;
881 }
882
883 /**
7890c493 884 * Make sure a callback is valid in the current context.
6a488035 885 *
7890c493
RS
886 * @param string $callback
887 * Name of the function to check.
6a488035 888 *
7890c493 889 * @return bool
6a488035 890 */
00be9182 891 public static function validCallback($callback) {
6a488035 892 if (self::$_callbacks === NULL) {
be2fb01f 893 self::$_callbacks = [];
6a488035
TO
894 }
895
896 if (!array_key_exists($callback, self::$_callbacks)) {
897 if (strpos($callback, '::') !== FALSE) {
898 list($className, $methodName) = explode('::', $callback);
899 $fileName = str_replace('_', DIRECTORY_SEPARATOR, $className) . '.php';
900 // ignore errors if any
e7292422 901 @include_once $fileName;
6a488035
TO
902 if (!class_exists($className)) {
903 self::$_callbacks[$callback] = FALSE;
904 }
905 else {
906 // instantiate the class
907 $object = new $className();
908 if (!method_exists($object, $methodName)) {
909 self::$_callbacks[$callback] = FALSE;
910 }
911 else {
912 self::$_callbacks[$callback] = TRUE;
913 }
914 }
915 }
916 else {
917 self::$_callbacks[$callback] = function_exists($callback);
918 }
919 }
920 return self::$_callbacks[$callback];
921 }
922
923 /**
7890c493
RS
924 * Like PHP's built-in explode(), but always return an array of $limit items.
925 *
926 * This serves as a wrapper to the PHP explode() function. In the event that
927 * PHP's explode() returns an array with fewer than $limit elements, pad
928 * the end of the array with NULLs.
929 *
930 * @param string $separator
931 * @param string $string
932 * @param int $limit
70599df6 933 *
7890c493 934 * @return string[]
6a488035 935 */
00be9182 936 public static function explode($separator, $string, $limit) {
6a488035
TO
937 $result = explode($separator, $string, $limit);
938 for ($i = count($result); $i < $limit; $i++) {
939 $result[$i] = NULL;
940 }
941 return $result;
942 }
943
7890c493 944 /**
70599df6 945 * Check url.
946 *
7890c493
RS
947 * @param string $url
948 * The URL to check.
949 * @param bool $addCookie
950 * (optional)
f4aaa82a
EM
951 *
952 * @return mixed
7890c493 953 */
00be9182 954 public static function checkURL($url, $addCookie = FALSE) {
6a488035
TO
955 // make a GET request to $url
956 $ch = curl_init($url);
957 if ($addCookie) {
958 curl_setopt($ch, CURLOPT_COOKIE, http_build_query($_COOKIE));
959 }
960 // it's quite alright to use a self-signed cert
961 curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);
962
963 // lets capture the return stuff rather than echo
481a74f4 964 curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);
6a488035 965
8d1adeef
NG
966 // CRM-13227, CRM-14744: only return the SSL error status
967 return (curl_exec($ch) !== FALSE);
6a488035
TO
968 }
969
7890c493
RS
970 /**
971 * Assert that we are running on a particular PHP version.
972 *
973 * @param int $ver
974 * The major version of PHP that is required.
975 * @param bool $abort
414e3596 976 * (optional) Whether to fatally abort if the version requirement is not
7890c493 977 * met. Defaults to TRUE.
70599df6 978 *
7890c493
RS
979 * @return bool
980 * Returns TRUE if the requirement is met, FALSE if the requirement is not
9911500f
RS
981 * met and we're not aborting due to the failed requirement. If $abort is
982 * TRUE and the requirement fails, this function does not return.
7890c493 983 */
00be9182 984 public static function checkPHPVersion($ver = 5, $abort = TRUE) {
6a488035
TO
985 $phpVersion = substr(PHP_VERSION, 0, 1);
986 if ($phpVersion >= $ver) {
987 return TRUE;
988 }
989
990 if ($abort) {
991 CRM_Core_Error::fatal(ts('This feature requires PHP Version %1 or greater',
be2fb01f 992 [1 => $ver]
353ffa53 993 ));
6a488035
TO
994 }
995 return FALSE;
996 }
997
7890c493 998 /**
70599df6 999 * Format wiki url.
1000 *
1001 * @param string $string
f4aaa82a
EM
1002 * @param bool $encode
1003 *
7890c493 1004 * @return string
7890c493 1005 */
00be9182 1006 public static function formatWikiURL($string, $encode = FALSE) {
6a488035
TO
1007 $items = explode(' ', trim($string), 2);
1008 if (count($items) == 2) {
1009 $title = $items[1];
1010 }
1011 else {
1012 $title = $items[0];
1013 }
1014
1015 // fix for CRM-4044
1016 $url = $encode ? self::urlEncode($items[0]) : $items[0];
1017 return "<a href=\"$url\">$title</a>";
1018 }
1019
7890c493 1020 /**
70599df6 1021 * Encode url.
1022 *
7890c493 1023 * @param string $url
f4aaa82a
EM
1024 *
1025 * @return null|string
7890c493 1026 */
00be9182 1027 public static function urlEncode($url) {
6a488035
TO
1028 $items = parse_url($url);
1029 if ($items === FALSE) {
1030 return NULL;
1031 }
1032
a7488080 1033 if (empty($items['query'])) {
6a488035
TO
1034 return $url;
1035 }
1036
1037 $items['query'] = urlencode($items['query']);
1038
1039 $url = $items['scheme'] . '://';
a7488080 1040 if (!empty($items['user'])) {
6a488035
TO
1041 $url .= "{$items['user']}:{$items['pass']}@";
1042 }
1043
1044 $url .= $items['host'];
a7488080 1045 if (!empty($items['port'])) {
6a488035
TO
1046 $url .= ":{$items['port']}";
1047 }
1048
1049 $url .= "{$items['path']}?{$items['query']}";
a7488080 1050 if (!empty($items['fragment'])) {
6a488035
TO
1051 $url .= "#{$items['fragment']}";
1052 }
1053
1054 return $url;
1055 }
1056
1057 /**
7890c493 1058 * Return the running civicrm version.
6a488035 1059 *
7890c493
RS
1060 * @return string
1061 * civicrm version
6a488035 1062 */
00be9182 1063 public static function version() {
6a488035
TO
1064 static $version;
1065
1066 if (!$version) {
1067 $verFile = implode(DIRECTORY_SEPARATOR,
be2fb01f 1068 [dirname(__FILE__), '..', '..', 'xml', 'version.xml']
6a488035
TO
1069 );
1070 if (file_exists($verFile)) {
e48985ca 1071 $str = file_get_contents($verFile);
1072 $xmlObj = simplexml_load_string($str);
1073 $version = (string) $xmlObj->version_no;
6a488035
TO
1074 }
1075
1076 // pattern check
1077 if (!CRM_Utils_System::isVersionFormatValid($version)) {
1078 CRM_Core_Error::fatal('Unknown codebase version.');
1079 }
1080 }
1081
1082 return $version;
1083 }
1084
b769826b 1085 /**
3d469574 1086 * Gives the first two parts of the version string E.g. 6.1.
b769826b
CW
1087 *
1088 * @return string
1089 */
1090 public static function majorVersion() {
1091 list($a, $b) = explode('.', self::version());
1092 return "$a.$b";
1093 }
1094
7890c493
RS
1095 /**
1096 * Determines whether a string is a valid CiviCRM version string.
1097 *
1098 * @param string $version
1099 * Version string to be checked.
3d469574 1100 *
7890c493 1101 * @return bool
7890c493 1102 */
00be9182 1103 public static function isVersionFormatValid($version) {
6a488035
TO
1104 return preg_match("/^(\d{1,2}\.){2,3}(\d{1,2}|(alpha|beta)\d{1,2})(\.upgrade)?$/", $version);
1105 }
1106
7890c493
RS
1107 /**
1108 * Wraps or emulates PHP's getallheaders() function.
7890c493 1109 */
00be9182 1110 public static function getAllHeaders() {
6a488035
TO
1111 if (function_exists('getallheaders')) {
1112 return getallheaders();
1113 }
1114
1115 // emulate get all headers
1116 // http://www.php.net/manual/en/function.getallheaders.php#66335
be2fb01f 1117 $headers = [];
6a488035
TO
1118 foreach ($_SERVER as $name => $value) {
1119 if (substr($name, 0, 5) == 'HTTP_') {
1120 $headers[str_replace(' ',
1121 '-',
1122 ucwords(strtolower(str_replace('_',
353ffa53
TO
1123 ' ',
1124 substr($name, 5)
1125 )
1126 ))
6a488035
TO
1127 )] = $value;
1128 }
1129 }
1130 return $headers;
1131 }
1132
3d469574 1133 /**
1134 * Get request headers.
1135 *
1136 * @return array|false
1137 */
00be9182 1138 public static function getRequestHeaders() {
6a488035
TO
1139 if (function_exists('apache_request_headers')) {
1140 return apache_request_headers();
1141 }
1142 else {
1143 return $_SERVER;
1144 }
1145 }
1146
1147 /**
7890c493
RS
1148 * Determine whether this is an SSL request.
1149 *
1150 * Note that we inline this function in install/civicrm.php, so if you change
1151 * this function, please go and change the code in the install script as well.
6a488035 1152 */
e7292422 1153 public static function isSSL() {
6714d8d2 1154 return (isset($_SERVER['HTTPS']) &&
6a488035 1155 !empty($_SERVER['HTTPS']) &&
688ad538 1156 strtolower($_SERVER['HTTPS']) != 'off') ? TRUE : FALSE;
6a488035
TO
1157 }
1158
3d469574 1159 /**
1160 * Redirect to SSL.
1161 *
1162 * @param bool|FALSE $abort
1163 *
1164 * @throws \Exception
1165 */
00be9182 1166 public static function redirectToSSL($abort = FALSE) {
6a488035
TO
1167 $config = CRM_Core_Config::singleton();
1168 $req_headers = self::getRequestHeaders();
3e6b8905 1169 // FIXME: Shouldn't the X-Forwarded-Proto check be part of CRM_Utils_System::isSSL()?
aaffa79f 1170 if (Civi::settings()->get('enableSSL') &&
6a488035
TO
1171 !self::isSSL() &&
1172 strtolower(CRM_Utils_Array::value('X_FORWARDED_PROTO', $req_headers)) != 'https'
1173 ) {
1174 // ensure that SSL is enabled on a civicrm url (for cookie reasons etc)
1175 $url = "https://{$_SERVER['HTTP_HOST']}{$_SERVER['REQUEST_URI']}";
b12378a7
CB
1176 // @see https://lab.civicrm.org/dev/core/issues/425 if you're seeing this message.
1177 Civi::log()->warning('CiviCRM thinks site is not SSL, redirecting to {url}', ['url' => $url]);
6a488035
TO
1178 if (!self::checkURL($url, TRUE)) {
1179 if ($abort) {
1180 CRM_Core_Error::fatal('HTTPS is not set up on this machine');
1181 }
1182 else {
e7292422 1183 CRM_Core_Session::setStatus(ts('HTTPS is not set up on this machine'), ts('Warning'), 'alert');
6a488035
TO
1184 // admin should be the only one following this
1185 // since we dont want the user stuck in a bad place
1186 return;
1187 }
1188 }
1189 CRM_Utils_System::redirect($url);
1190 }
1191 }
1192
d424ffde 1193 /**
5df36634
PJ
1194 * Get logged in user's IP address.
1195 *
7890c493
RS
1196 * Get IP address from HTTP REMOTE_ADDR header. If the CMS is Drupal then use
1197 * the Drupal function as this also handles reverse proxies (based on proper
1198 * configuration in settings.php)
5df36634 1199 *
7890c493
RS
1200 * @param bool $strictIPV4
1201 * (optional) Whether to return only IPv4 addresses.
1202 *
1203 * @return string
1204 * IP address of logged in user.
5df36634 1205 */
00be9182 1206 public static function ipAddress($strictIPV4 = TRUE) {
6a488035
TO
1207 $address = CRM_Utils_Array::value('REMOTE_ADDR', $_SERVER);
1208
1209 $config = CRM_Core_Config::singleton();
414e3596 1210 if ($config->userSystem->is_drupal && function_exists('ip_address')) {
50bfb460 1211 // drupal function handles the server being behind a proxy securely. We still have legacy ipn methods
414e3596 1212 // that reach this point without bootstrapping hence the check that the fn exists
e7292422 1213 $address = ip_address();
6a488035
TO
1214 }
1215
1216 // hack for safari
1217 if ($address == '::1') {
1218 $address = '127.0.0.1';
1219 }
1220
5df36634
PJ
1221 // when we need to have strictly IPV4 ip address
1222 // convert ipV6 to ipV4
1223 if ($strictIPV4) {
1224 // this converts 'IPV4 mapped IPV6 address' to IPV4
1225 if (filter_var($address, FILTER_VALIDATE_IP, FILTER_FLAG_IPV6) && strstr($address, '::ffff:')) {
1226 $address = ltrim($address, '::ffff:');
1227 }
1228 }
1229
6a488035
TO
1230 return $address;
1231 }
1232
1233 /**
7890c493 1234 * Get the referring / previous page URL.
6a488035 1235 *
7890c493
RS
1236 * @return string
1237 * The previous page URL
6a488035 1238 */
00be9182 1239 public static function refererPath() {
6a488035
TO
1240 return CRM_Utils_Array::value('HTTP_REFERER', $_SERVER);
1241 }
1242
1243 /**
7890c493 1244 * Get the documentation base URL.
6a488035 1245 *
7890c493
RS
1246 * @return string
1247 * Base URL of the CRM documentation.
6a488035 1248 */
00be9182 1249 public static function getDocBaseURL() {
6a488035 1250 // FIXME: move this to configuration at some stage
c15f87c1 1251 return 'https://docs.civicrm.org/';
6a488035
TO
1252 }
1253
1254 /**
7890c493 1255 * Returns wiki (alternate) documentation URL base.
6a488035 1256 *
a6c01b45
CW
1257 * @return string
1258 * documentation url
6a488035 1259 */
00be9182 1260 public static function getWikiBaseURL() {
6a488035
TO
1261 // FIXME: move this to configuration at some stage
1262 return 'http://wiki.civicrm.org/confluence/display/CRMDOC/';
1263 }
1264
1265 /**
1266 * Returns URL or link to documentation page, based on provided parameters.
7890c493 1267 *
6a488035 1268 * For use in PHP code.
7890c493
RS
1269 * WARNING: Always returns URL, if ts function is not defined ($URLonly has
1270 * no effect).
6a488035 1271 *
7890c493
RS
1272 * @param string $page
1273 * Title of documentation wiki page.
77855840 1274 * @param bool $URLonly
7890c493
RS
1275 * (optional) Whether to return URL only or full HTML link (default).
1276 * @param string $text
1277 * (optional) Text of HTML link (no effect if $URLonly = false).
1278 * @param string $title
1279 * (optional) Tooltip text for HTML link (no effect if $URLonly = false)
1280 * @param string $style
1281 * (optional) Style attribute value for HTML link (no effect if $URLonly = false)
6a488035 1282 *
f4aaa82a
EM
1283 * @param null $resource
1284 *
7890c493
RS
1285 * @return string
1286 * URL or link to documentation page, based on provided parameters.
6a488035 1287 */
00be9182 1288 public static function docURL2($page, $URLonly = FALSE, $text = NULL, $title = NULL, $style = NULL, $resource = NULL) {
6a488035
TO
1289 // if ts function doesn't exist, it means that CiviCRM hasn't been fully initialised yet -
1290 // return just the URL, no matter what other parameters are defined
1291 if (!function_exists('ts')) {
1292 if ($resource == 'wiki') {
e7292422 1293 $docBaseURL = self::getWikiBaseURL();
0db6c3e1
TO
1294 }
1295 else {
6a488035 1296 $docBaseURL = self::getDocBaseURL();
c15f87c1 1297 $page = self::formatDocUrl($page);
6a488035
TO
1298 }
1299 return $docBaseURL . str_replace(' ', '+', $page);
1300 }
1301 else {
be2fb01f 1302 $params = [
6a488035
TO
1303 'page' => $page,
1304 'URLonly' => $URLonly,
1305 'text' => $text,
1306 'title' => $title,
1307 'style' => $style,
1308 'resource' => $resource,
be2fb01f 1309 ];
6a488035
TO
1310 return self::docURL($params);
1311 }
1312 }
1313
1314 /**
1315 * Returns URL or link to documentation page, based on provided parameters.
7890c493 1316 *
6a488035
TO
1317 * For use in templates code.
1318 *
7890c493
RS
1319 * @param array $params
1320 * An array of parameters (see CRM_Utils_System::docURL2 method for names)
6a488035 1321 *
b8c71ffa 1322 * @return null|string
7890c493 1323 * URL or link to documentation page, based on provided parameters.
6a488035 1324 */
00be9182 1325 public static function docURL($params) {
6a488035
TO
1326
1327 if (!isset($params['page'])) {
c301f76e 1328 return NULL;
6a488035
TO
1329 }
1330
1331 if (CRM_Utils_Array::value('resource', $params) == 'wiki') {
1332 $docBaseURL = self::getWikiBaseURL();
0db6c3e1
TO
1333 }
1334 else {
6a488035 1335 $docBaseURL = self::getDocBaseURL();
c15f87c1 1336 $params['page'] = self::formatDocUrl($params['page']);
6a488035
TO
1337 }
1338
1339 if (!isset($params['title']) or $params['title'] === NULL) {
1340 $params['title'] = ts('Opens documentation in a new window.');
1341 }
1342
1343 if (!isset($params['text']) or $params['text'] === NULL) {
1344 $params['text'] = ts('(learn more...)');
1345 }
1346
1347 if (!isset($params['style']) || $params['style'] === NULL) {
1348 $style = '';
1349 }
1350 else {
1351 $style = "style=\"{$params['style']}\"";
1352 }
1353
1354 $link = $docBaseURL . str_replace(' ', '+', $params['page']);
1355
1356 if (isset($params['URLonly']) && $params['URLonly'] == TRUE) {
1357 return $link;
1358 }
1359 else {
16e71c83 1360 return "<a href=\"{$link}\" $style target=\"_blank\" class=\"crm-doc-link no-popup\" title=\"{$params['title']}\">{$params['text']}</a>";
6a488035
TO
1361 }
1362 }
1363
c15f87c1
CW
1364 /**
1365 * Add language and version parameters to the doc url.
1366 *
1367 * Note that this function may run before CiviCRM is initialized and so should not call ts() or perform any db lookups.
1368 *
1369 * @param $url
1370 * @return mixed
1371 */
1372 public static function formatDocUrl($url) {
8552370e 1373 return preg_replace('#^(user|sysadmin|dev)/#', '\1/en/stable/', $url);
c15f87c1
CW
1374 }
1375
7890c493
RS
1376 /**
1377 * Exit with provided exit code.
1378 *
1379 * @param int $status
1380 * (optional) Code with which to exit.
62e245e6 1381 *
68989e71 1382 * @param array $testParameters
7890c493 1383 */
68989e71 1384 public static function civiExit($status = 0, $testParameters = []) {
307d2406 1385
62e245e6 1386 if (CIVICRM_UF === 'UnitTests') {
68989e71 1387 throw new CRM_Core_Exception_PrematureExitException('civiExit called', $testParameters);
62e245e6 1388 }
d74139ea 1389 if ($status > 0) {
307d2406
MM
1390 http_response_code(500);
1391 }
6a488035
TO
1392 // move things to CiviCRM cache as needed
1393 CRM_Core_Session::storeSessionObjects();
1394
f2e906d7
JP
1395 if (Civi\Core\Container::isContainerBooted()) {
1396 Civi::dispatcher()->dispatch('civi.core.exit');
1397 }
1398
1399 $userSystem = CRM_Core_Config::singleton()->userSystem;
be2fb01f 1400 if (is_callable([$userSystem, 'onCiviExit'])) {
f2e906d7
JP
1401 $userSystem->onCiviExit();
1402 }
6a488035
TO
1403 exit($status);
1404 }
1405
1406 /**
7890c493 1407 * Reset the various system caches and some important static variables.
6a488035 1408 */
e7292422 1409 public static function flushCache() {
6a488035
TO
1410 // flush out all cache entries so we can reload new data
1411 // a bit aggressive, but livable for now
5aac553c 1412 CRM_Utils_Cache::singleton()->flush();
70423e0d
TO
1413
1414 // Traditionally, systems running on memory-backed caches were quite
1415 // zealous about destroying *all* memory-backed caches during a flush().
1416 // These flushes simulate that legacy behavior. However, they should probably
1417 // be removed at some point.
c33f1df1 1418 $localDrivers = ['CRM_Utils_Cache_ArrayCache', 'CRM_Utils_Cache_NoCache'];
70423e0d
TO
1419 if (Civi\Core\Container::isContainerBooted()
1420 && !in_array(get_class(CRM_Utils_Cache::singleton()), $localDrivers)) {
90cdaa0e 1421 Civi::cache('long')->flush();
5aac553c
TO
1422 Civi::cache('settings')->flush();
1423 Civi::cache('js_strings')->flush();
1424 Civi::cache('community_messages')->flush();
972b390e 1425 Civi::cache('groups')->flush();
96689db3 1426 Civi::cache('navigation')->flush();
792fce0b 1427 Civi::cache('customData')->flush();
81c4c148 1428 Civi::cache('contactTypes')->clear();
eb151aab 1429 Civi::cache('metadata')->clear();
5aac553c
TO
1430 CRM_Extension_System::singleton()->getCache()->flush();
1431 CRM_Cxn_CiviCxnHttp::singleton()->getCache()->flush();
1432 }
6a488035
TO
1433
1434 // also reset the various static memory caches
1435
1436 // reset the memory or array cache
9cdf85c1 1437 Civi::cache('fields')->flush();
6a488035
TO
1438
1439 // reset ACL cache
1440 CRM_ACL_BAO_Cache::resetCache();
1441
1442 // reset various static arrays used here
c301f76e 1443 CRM_Contact_BAO_Contact::$_importableFields = CRM_Contact_BAO_Contact::$_exportableFields
971d41b1 1444 = CRM_Contribute_BAO_Contribution::$_importableFields
c301f76e 1445 = CRM_Contribute_BAO_Contribution::$_exportableFields
33a766c6 1446 = CRM_Pledge_BAO_Pledge::$_exportableFields
c301f76e 1447 = CRM_Core_BAO_CustomField::$_importFields
1448 = CRM_Core_BAO_Cache::$_cache = CRM_Core_DAO::$_dbColumnValueCache = NULL;
6a488035
TO
1449
1450 CRM_Core_OptionGroup::flushAll();
1451 CRM_Utils_PseudoConstant::flushAll();
1452 }
1453
1454 /**
7890c493 1455 * Load CMS bootstrap.
6a488035 1456 *
7890c493
RS
1457 * @param array $params
1458 * Array with uid name and pass
1459 * @param bool $loadUser
1460 * Boolean load user or not.
1461 * @param bool $throwError
3d469574 1462 * @param string $realPath
6a488035 1463 */
be2fb01f 1464 public static function loadBootStrap($params = [], $loadUser = TRUE, $throwError = TRUE, $realPath = NULL) {
6a488035 1465 if (!is_array($params)) {
be2fb01f 1466 $params = [];
6a488035
TO
1467 }
1468 $config = CRM_Core_Config::singleton();
49b60138
TO
1469 $result = $config->userSystem->loadBootStrap($params, $loadUser, $throwError, $realPath);
1470 if (is_callable([$config->userSystem, 'setMySQLTimeZone'])) {
1471 $config->userSystem->setMySQLTimeZone();
1472 }
1473 return $result;
6a488035
TO
1474 }
1475
70599df6 1476 /**
1477 * Get Base CMS url.
1478 *
1479 * @return mixed|string
1480 */
00be9182 1481 public static function baseCMSURL() {
6a488035
TO
1482 static $_baseURL = NULL;
1483 if (!$_baseURL) {
1484 $config = CRM_Core_Config::singleton();
1485 $_baseURL = $userFrameworkBaseURL = $config->userFrameworkBaseURL;
1486
1487 if ($config->userFramework == 'Joomla') {
1488 // gross hack
1489 // we need to remove the administrator/ from the end
1490 $_baseURL = str_replace("/administrator/", "/", $userFrameworkBaseURL);
1491 }
1492 else {
1493 // Drupal setting
1494 global $civicrm_root;
1495 if (strpos($civicrm_root,
1496 DIRECTORY_SEPARATOR . 'sites' .
1497 DIRECTORY_SEPARATOR . 'all' .
1498 DIRECTORY_SEPARATOR . 'modules'
353ffa53
TO
1499 ) === FALSE
1500 ) {
6a488035
TO
1501 $startPos = strpos($civicrm_root,
1502 DIRECTORY_SEPARATOR . 'sites' . DIRECTORY_SEPARATOR
1503 );
1504 $endPos = strpos($civicrm_root,
1505 DIRECTORY_SEPARATOR . 'modules' . DIRECTORY_SEPARATOR
1506 );
1507 if ($startPos && $endPos) {
1508 // if component is in sites/SITENAME/modules
1509 $siteName = substr($civicrm_root,
1510 $startPos + 7,
1511 $endPos - $startPos - 7
1512 );
1513
1514 $_baseURL = $userFrameworkBaseURL . "sites/$siteName/";
1515 }
1516 }
1517 }
1518 }
1519 return $_baseURL;
1520 }
1521
7890c493
RS
1522 /**
1523 * Given a URL, return a relative URL if possible.
1524 *
1525 * @param string $url
3d469574 1526 *
7890c493 1527 * @return string
7890c493 1528 */
00be9182 1529 public static function relativeURL($url) {
6a488035
TO
1530 // check if url is relative, if so return immediately
1531 if (substr($url, 0, 4) != 'http') {
1532 return $url;
1533 }
1534
1535 // make everything relative from the baseFilePath
1536 $baseURL = self::baseCMSURL();
1537
1538 // check if baseURL is a substr of $url, if so
1539 // return rest of string
1540 if (substr($url, 0, strlen($baseURL)) == $baseURL) {
1541 return substr($url, strlen($baseURL));
1542 }
1543
1544 // return the original value
1545 return $url;
1546 }
1547
7890c493
RS
1548 /**
1549 * Produce an absolute URL from a possibly-relative URL.
1550 *
1551 * @param string $url
f4aaa82a
EM
1552 * @param bool $removeLanguagePart
1553 *
7890c493 1554 * @return string
7890c493 1555 */
00be9182 1556 public static function absoluteURL($url, $removeLanguagePart = FALSE) {
6a488035
TO
1557 // check if url is already absolute, if so return immediately
1558 if (substr($url, 0, 4) == 'http') {
1559 return $url;
1560 }
1561
1562 // make everything absolute from the baseFileURL
1563 $baseURL = self::baseCMSURL();
1564
1565 //CRM-7622: drop the language from the URL if requested (and it’s there)
1566 $config = CRM_Core_Config::singleton();
1567 if ($removeLanguagePart) {
1568 $baseURL = self::languageNegotiationURL($baseURL, FALSE, TRUE);
1569 }
1570
1571 return $baseURL . $url;
1572 }
1573
1574 /**
3d469574 1575 * Clean url, replaces first '&' with '?'.
6a488035
TO
1576 *
1577 * @param string $url
1578 *
a6c01b45
CW
1579 * @return string
1580 * , clean url
6a488035 1581 */
00be9182 1582 public static function cleanUrl($url) {
6a488035
TO
1583 if (!$url) {
1584 return NULL;
1585 }
1586
1587 if ($pos = strpos($url, '&')) {
1588 $url = substr_replace($url, '?', $pos, 1);
1589 }
1590
1591 return $url;
1592 }
1593
1594 /**
1595 * Format the url as per language Negotiation.
1596 *
1597 * @param string $url
1598 *
f4aaa82a
EM
1599 * @param bool $addLanguagePart
1600 * @param bool $removeLanguagePart
1601 *
a6c01b45
CW
1602 * @return string
1603 * , formatted url.
6a488035 1604 */
971d41b1 1605 public static function languageNegotiationURL(
a3e55d9c 1606 $url,
6a488035
TO
1607 $addLanguagePart = TRUE,
1608 $removeLanguagePart = FALSE
1609 ) {
f3a87cf4 1610 return CRM_Core_Config::singleton()->userSystem->languageNegotiationURL($url, $addLanguagePart, $removeLanguagePart);
6a488035
TO
1611 }
1612
1613 /**
3d469574 1614 * Append the contents of an 'extra' smarty template file.
1615 *
1616 * It must be present in the custom template directory. This does not work if there are
6a488035
TO
1617 * multiple custom template directories
1618 *
9911500f
RS
1619 * @param string $fileName
1620 * The name of the tpl file that we are processing.
1621 * @param string $content
1622 * The current content string. May be modified by this function.
1623 * @param string $overideFileName
1624 * (optional) Sent by contribution/event reg/profile pages which uses a id
1625 * specific extra file name if present.
6a488035 1626 */
971d41b1 1627 public static function appendTPLFile(
a3e55d9c 1628 $fileName,
6a488035
TO
1629 &$content,
1630 $overideFileName = NULL
1631 ) {
1632 $template = CRM_Core_Smarty::singleton();
1633 if ($overideFileName) {
1634 $additionalTPLFile = $overideFileName;
1635 }
1636 else {
1637 $additionalTPLFile = str_replace('.tpl', '.extra.tpl', $fileName);
1638 }
1639
1640 if ($template->template_exists($additionalTPLFile)) {
1641 $content .= $template->fetch($additionalTPLFile);
1642 }
1643 }
1644
1645 /**
3d469574 1646 * Get a list of all files that are found within the directories.
1647 *
1648 * Files must be the result of appending the provided relative path to
6a488035
TO
1649 * each component of the PHP include path.
1650 *
1651 * @author Ken Zalewski
1652 *
9911500f
RS
1653 * @param string $relpath
1654 * A relative path, typically pointing to a directory with multiple class
1655 * files.
6a488035 1656 *
9911500f
RS
1657 * @return array
1658 * An array of files that exist in one or more of the directories that are
1659 * referenced by the relative path when appended to each element of the PHP
1660 * include path.
6a488035 1661 */
00be9182 1662 public static function listIncludeFiles($relpath) {
be2fb01f 1663 $file_list = [];
6a488035
TO
1664 $inc_dirs = explode(PATH_SEPARATOR, get_include_path());
1665 foreach ($inc_dirs as $inc_dir) {
1666 $target_dir = $inc_dir . DIRECTORY_SEPARATOR . $relpath;
1667 if (is_dir($target_dir)) {
1668 $cur_list = scandir($target_dir);
1669 foreach ($cur_list as $fname) {
1670 if ($fname != '.' && $fname != '..') {
1671 $file_list[$fname] = $fname;
1672 }
1673 }
1674 }
1675 }
1676 return $file_list;
1677 }
6a488035
TO
1678
1679 /**
3d469574 1680 * Get a list of all "plugins".
1681 *
1682 * (PHP classes that implement a piece of
6a488035
TO
1683 * functionality using a well-defined interface) that are found in a
1684 * particular CiviCRM directory (both custom and core are searched).
1685 *
1686 * @author Ken Zalewski
1687 *
9911500f
RS
1688 * @param string $relpath
1689 * A relative path referencing a directory that contains one or more
1690 * plugins.
1691 * @param string $fext
1692 * (optional) Only files with this extension will be considered to be
1693 * plugins.
1694 * @param array $skipList
1695 * (optional) List of files to skip.
6a488035 1696 *
9911500f
RS
1697 * @return array
1698 * List of plugins, where the plugin name is both the key and the value of
1699 * each element.
6a488035 1700 */
be2fb01f 1701 public static function getPluginList($relpath, $fext = '.php', $skipList = []) {
c490a46a 1702 $fext_len = strlen($fext);
be2fb01f 1703 $plugins = [];
6a488035
TO
1704 $inc_files = CRM_Utils_System::listIncludeFiles($relpath);
1705 foreach ($inc_files as $inc_file) {
1706 if (substr($inc_file, 0 - $fext_len) == $fext) {
1707 $plugin_name = substr($inc_file, 0, 0 - $fext_len);
1708 if (!in_array($plugin_name, $skipList)) {
1709 $plugins[$plugin_name] = $plugin_name;
1710 }
1711 }
1712 }
1713 return $plugins;
1714 }
6a488035 1715
3d469574 1716 /**
1717 * Execute scheduled jobs.
1718 */
00be9182 1719 public static function executeScheduledJobs() {
6a488035
TO
1720 $facility = new CRM_Core_JobManager();
1721 $facility->execute(FALSE);
1722
1723 $redirectUrl = self::url('civicrm/admin/job', 'reset=1');
1724
1725 CRM_Core_Session::setStatus(
1726 ts('Scheduled jobs have been executed according to individual timing settings. Please check log for messages.'),
1727 ts('Complete'), 'success');
1728
1729 CRM_Utils_System::redirect($redirectUrl);
1730 }
1731
efceedd4 1732 /**
9911500f 1733 * Evaluate any tokens in a URL.
efceedd4
TO
1734 *
1735 * @param string|FALSE $url
3d469574 1736 *
efceedd4
TO
1737 * @return string|FALSE
1738 */
1739 public static function evalUrl($url) {
202407d7
CW
1740 if (!$url || strpos($url, '{') === FALSE) {
1741 return $url;
efceedd4
TO
1742 }
1743 else {
1744 $config = CRM_Core_Config::singleton();
be2fb01f 1745 $vars = [
efceedd4
TO
1746 '{ver}' => CRM_Utils_System::version(),
1747 '{uf}' => $config->userFramework,
1748 '{php}' => phpversion(),
202407d7 1749 '{sid}' => self::getSiteID(),
c4e76569
TO
1750 '{baseUrl}' => $config->userFrameworkBaseURL,
1751 '{lang}' => $config->lcMessages,
1752 '{co}' => $config->defaultContactCountry,
be2fb01f 1753 ];
202407d7 1754 return strtr($url, array_map('urlencode', $vars));
efceedd4
TO
1755 }
1756 }
1757
202407d7 1758 /**
1ab26c95
CW
1759 * Returns the unique identifier for this site, as used by community messages.
1760 *
1761 * SiteID will be generated if it is not already stored in the settings table.
1762 *
202407d7
CW
1763 * @return string
1764 */
1765 public static function getSiteID() {
aaffa79f 1766 $sid = Civi::settings()->get('site_id');
1ab26c95
CW
1767 if (!$sid) {
1768 $config = CRM_Core_Config::singleton();
1769 $sid = md5('sid_' . (defined('CIVICRM_SITE_KEY') ? CIVICRM_SITE_KEY : '') . '_' . $config->userFrameworkBaseURL);
be2fb01f 1770 civicrm_api3('Setting', 'create', ['domain_id' => 'all', 'site_id' => $sid]);
1ab26c95
CW
1771 }
1772 return $sid;
202407d7 1773 }
efceedd4 1774
6a488035
TO
1775 /**
1776 * Determine whether this is a developmental system.
1777 *
1778 * @return bool
1779 */
00be9182 1780 public static function isDevelopment() {
6a488035
TO
1781 static $cache = NULL;
1782 if ($cache === NULL) {
1783 global $civicrm_root;
1784 $cache = file_exists("{$civicrm_root}/.svn") || file_exists("{$civicrm_root}/.git");
1785 }
1786 return $cache;
1787 }
5da97e99 1788
5bc392e6 1789 /**
3d469574 1790 * Is in upgrade mode.
1791 *
5bc392e6
EM
1792 * @return bool
1793 */
00be9182 1794 public static function isInUpgradeMode() {
40787e18 1795 $args = explode('/', CRM_Utils_Array::value('q', $_GET));
252e6dbc
PJ
1796 $upgradeInProcess = CRM_Core_Session::singleton()->get('isUpgradePending');
1797 if ((isset($args[1]) && $args[1] == 'upgrade') || $upgradeInProcess) {
1798 return TRUE;
1799 }
1800 else {
1801 return FALSE;
1802 }
1803 }
688ad538
TO
1804
1805 /**
fe482240 1806 * Determine the standard URL for viewing or editing the specified link.
688ad538
TO
1807 *
1808 * This function delegates the decision-making to (a) the hook system and
1809 * (b) the BAO system.
1810 *
77855840
TO
1811 * @param array $crudLinkSpec
1812 * With keys:.
16b10e64
CW
1813 * - action: int, CRM_Core_Action::UPDATE or CRM_Core_Action::VIEW [default: VIEW]
1814 * - entity_table: string, eg "civicrm_contact"
1815 * - entity_id: int
3d469574 1816 *
72b3a70c
CW
1817 * @return array|NULL
1818 * NULL if unavailable, or an array. array has keys:
16b10e64
CW
1819 * - path: string
1820 * - query: array
1821 * - title: string
1822 * - url: string
688ad538 1823 */
00be9182 1824 public static function createDefaultCrudLink($crudLinkSpec) {
688ad538
TO
1825 $crudLinkSpec['action'] = CRM_Utils_Array::value('action', $crudLinkSpec, CRM_Core_Action::VIEW);
1826 $daoClass = CRM_Core_DAO_AllCoreTables::getClassForTable($crudLinkSpec['entity_table']);
1827 if (!$daoClass) {
1828 return NULL;
1829 }
1830
1831 $baoClass = str_replace('_DAO_', '_BAO_', $daoClass);
1832 if (!class_exists($baoClass)) {
1833 return NULL;
1834 }
1835
1836 $bao = new $baoClass();
1837 $bao->id = $crudLinkSpec['entity_id'];
1838 if (!$bao->find(TRUE)) {
1839 return NULL;
1840 }
1841
be2fb01f 1842 $link = [];
688ad538 1843 CRM_Utils_Hook::crudLink($crudLinkSpec, $bao, $link);
be2fb01f 1844 if (empty($link) && is_callable([$bao, 'createDefaultCrudLink'])) {
688ad538
TO
1845 $link = $bao->createDefaultCrudLink($crudLinkSpec);
1846 }
1847
1848 if (!empty($link)) {
1849 if (!isset($link['url'])) {
1850 $link['url'] = self::url($link['path'], $link['query'], TRUE, NULL, FALSE);
1851 }
1852 return $link;
1853 }
1854
1855 return NULL;
1856 }
96025800 1857
79dd7fe9
SL
1858 /**
1859 * Return an HTTP Response with appropriate content and status code set.
46dddc5c 1860 * @param \Psr\Http\Message\ResponseInterface $response
79dd7fe9 1861 */
46dddc5c 1862 public static function sendResponse(\Psr\Http\Message\ResponseInterface $response) {
90f6c8df 1863 $config = CRM_Core_Config::singleton()->userSystem->sendResponse($response);
79dd7fe9
SL
1864 }
1865
5bc392e6 1866}