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