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