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