Merge pull request #1229 from totten/master-exttesthook
[civicrm-core.git] / CRM / Utils / System / Drupal6.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.3 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2013 |
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 +--------------------------------------------------------------------+
26 */
27
28 /**
29 *
30 * @package CRM
31 * @copyright CiviCRM LLC (c) 2004-2013
32 * $Id$
33 *
34 */
35
36 /**
37 * Drupal specific stuff goes here
38 */
39 class CRM_Utils_System_Drupal6 extends CRM_Utils_System_DrupalBase {
40
41 /**
42 * if we are using a theming system, invoke theme, else just print the
43 * content
44 *
45 * @param string $content the content that will be themed
46 * @param boolean $print are we displaying to the screen or bypassing theming?
47 * @param boolean $maintenance for maintenance mode
48 *
49 * @return void prints content on stdout
50 * @access public
51 */
52 function theme(&$content, $print = FALSE, $maintenance = FALSE) {
53 // TODO: Simplify; this was copied verbatim from CiviCRM 3.4's multi-UF theming function, but that's more complex than necessary
54 if (function_exists('theme') && !$print) {
55 if ($maintenance) {
56 drupal_set_breadcrumb('');
57 drupal_maintenance_theme();
58 }
59
60 // Arg 3 for D6 theme() is "show_blocks". Previously, we passed
61 // through a badly named variable ("$args") which was almost always
62 // TRUE (except on fatal error screen). However, this feature is
63 // non-functional on D6 default themes, was purposefully removed from
64 // D7, has no analog in other our other CMS's, and clutters the code.
65 // Hard-wiring to TRUE should be OK.
66 $out = theme('page', $content, TRUE);
67 }
68 else {
69 $out = $content;
70 }
71
72 print $out;
73 }
74
75 /**
76 * Function to create a user in Drupal.
77 *
78 * @param array $params associated array
79 * @param string $mail email id for cms user
80 *
81 * @return uid if user exists, false otherwise
82 *
83 * @access public
84 */
85 function createUser(&$params, $mail) {
86 $form_state = array();
87 $form_state['values'] = array(
88 'name' => $params['cms_name'],
89 'mail' => $params[$mail],
90 'op' => 'Create new account',
91 );
92
93 $admin = user_access('administer users');
94 if (!variable_get('user_email_verification', TRUE) || $admin) {
95 $form_state['values']['pass']['pass1'] = $params['cms_pass'];
96 $form_state['values']['pass']['pass2'] = $params['cms_pass'];
97 }
98
99 $config = CRM_Core_Config::singleton();
100
101 // we also need to redirect b
102 $config->inCiviCRM = TRUE;
103
104 $form = drupal_retrieve_form('user_register', $form_state);
105 $form['#post'] = $form_state['values'];
106 drupal_prepare_form('user_register', $form, $form_state);
107
108 // remove the captcha element from the form prior to processing
109 unset($form['captcha']);
110
111 drupal_process_form('user_register', $form, $form_state);
112
113 $config->inCiviCRM = FALSE;
114
115 if (form_get_errors() || !isset($form_state['user'])) {
116 return FALSE;
117 }
118
119 return $form_state['user']->uid;
120
121 }
122
123 /*
124 * Change user name in host CMS
125 *
126 * @param integer $ufID User ID in CMS
127 * @param string $ufName User name
128 */
129 function updateCMSName($ufID, $ufName) {
130 // CRM-5555
131 if (function_exists('user_load')) {
132 $user = user_load(array('uid' => $ufID));
133 if ($user->mail != $ufName) {
134 user_save($user, array('mail' => $ufName));
135 $user = user_load(array('uid' => $ufID));
136 }
137 }
138 }
139
140 /**
141 * Check if username and email exists in the drupal db
142 *
143 * @params $params array array of name and mail values
144 * @params $errors array array of errors
145 * @params $emailName string field label for the 'email'
146 *
147 * @return void
148 */
149 function checkUserNameEmailExists(&$params, &$errors, $emailName = 'email') {
150 $config = CRM_Core_Config::singleton();
151
152 $dao = new CRM_Core_DAO();
153 $name = $dao->escape(CRM_Utils_Array::value('name', $params));
154 $email = $dao->escape(CRM_Utils_Array::value('mail', $params));
155 _user_edit_validate(NULL, $params);
156 $errors = form_get_errors();
157
158 if ($errors) {
159 if (CRM_Utils_Array::value('name', $errors)) {
160 $errors['cms_name'] = $errors['name'];
161 }
162 if (CRM_Utils_Array::value('mail', $errors)) {
163 $errors[$emailName] = $errors['mail'];
164 }
165 // also unset drupal messages to avoid twice display of errors
166 unset($_SESSION['messages']);
167 }
168
169 // drupal api sucks do the name check manually
170 $nameError = user_validate_name($params['name']);
171 if ($nameError) {
172 $errors['cms_name'] = $nameError;
173 }
174
175 $sql = "
176 SELECT name, mail
177 FROM {$config->userFrameworkUsersTableName}
178 WHERE (LOWER(name) = LOWER('$name')) OR (LOWER(mail) = LOWER('$email'))";
179
180
181 $db_cms = DB::connect($config->userFrameworkDSN);
182 if (DB::isError($db_cms)) {
183 die("Cannot connect to UF db via $dsn, " . $db_cms->getMessage());
184 }
185 $query = $db_cms->query($sql);
186 $row = $query->fetchRow();
187 if (!empty($row)) {
188 $dbName = CRM_Utils_Array::value(0, $row);
189 $dbEmail = CRM_Utils_Array::value(1, $row);
190 if (strtolower($dbName) == strtolower($name)) {
191 $errors['cms_name'] = ts('The username %1 is already taken. Please select another username.',
192 array(1 => $name)
193 );
194 }
195 if (strtolower($dbEmail) == strtolower($email)) {
196 $resetUrl = $config->userFrameworkBaseURL . 'user/password';
197 $errors[$emailName] = ts('The email address %1 is already registered. <a href="%2">Have you forgotten your password?</a>',
198 array(1 => $email, 2 => $resetUrl)
199 );
200 }
201 }
202 }
203
204 /*
205 * Function to get the drupal destination string. When this is passed in the
206 * URL the user will be directed to it after filling in the drupal form
207 *
208 * @param object $form Form object representing the 'current' form - to which the user will be returned
209 * @return string $destination destination value for URL
210 *
211 */
212 function getLoginDestination(&$form) {
213 $args = NULL;
214
215 $id = $form->get('id');
216 if ($id) {
217 $args .= "&id=$id";
218 }
219 else {
220 $gid = $form->get('gid');
221 if ($gid) {
222 $args .= "&gid=$gid";
223 }
224 else {
225 // Setup Personal Campaign Page link uses pageId
226 $pageId = $form->get('pageId');
227 if ($pageId) {
228 $component = $form->get('component');
229 $args .= "&pageId=$pageId&component=$component&action=add";
230 }
231 }
232 }
233
234 $destination = NULL;
235 if ($args) {
236 // append destination so user is returned to form they came from after login
237 $destination = CRM_Utils_System::currentPath() . '?reset=1' . $args;
238 }
239 return $destination;
240 }
241
242 /**
243 * sets the title of the page
244 *
245 * @param string $title
246 * @paqram string $pageTitle
247 *
248 * @return void
249 * @access public
250 */
251 function setTitle($title, $pageTitle = NULL) {
252 if (!$pageTitle) {
253 $pageTitle = $title;
254 }
255 if (arg(0) == 'civicrm') {
256 //set drupal title
257 drupal_set_title($pageTitle);
258 }
259 }
260
261 /**
262 * Append an additional breadcrumb tag to the existing breadcrumb
263 *
264 * @param string $title
265 * @param string $url
266 *
267 * @return void
268 * @access public
269 */
270 function appendBreadCrumb($breadCrumbs) {
271 $breadCrumb = drupal_get_breadcrumb();
272
273 if (is_array($breadCrumbs)) {
274 foreach ($breadCrumbs as $crumbs) {
275 if (stripos($crumbs['url'], 'id%%')) {
276 $args = array('cid', 'mid');
277 foreach ($args as $a) {
278 $val = CRM_Utils_Request::retrieve($a, 'Positive', CRM_Core_DAO::$_nullObject,
279 FALSE, NULL, $_GET
280 );
281 if ($val) {
282 $crumbs['url'] = str_ireplace("%%{$a}%%", $val, $crumbs['url']);
283 }
284 }
285 }
286 $breadCrumb[] = "<a href=\"{$crumbs['url']}\">{$crumbs['title']}</a>";
287 }
288 }
289 drupal_set_breadcrumb($breadCrumb);
290 }
291
292 /**
293 * Reset an additional breadcrumb tag to the existing breadcrumb
294 *
295 * @return void
296 * @access public
297 */
298 function resetBreadCrumb() {
299 $bc = array();
300 drupal_set_breadcrumb($bc);
301 }
302
303 /**
304 * Append a string to the head of the html file
305 *
306 * @param string $head the new string to be appended
307 *
308 * @return void
309 * @access public
310 */
311 function addHTMLHead($head) {
312 drupal_set_html_head($head);
313 }
314
315 /**
316 * Add a script file
317 *
318 * @param $url: string, absolute path to file
319 * @param $region string, location within the document: 'html-header', 'page-header', 'page-footer'
320 *
321 * Note: This function is not to be called directly
322 * @see CRM_Core_Region::render()
323 *
324 * @return bool TRUE if we support this operation in this CMS, FALSE otherwise
325 * @access public
326 */
327 public function addScriptUrl($url, $region) {
328 switch ($region) {
329 case 'html-header':
330 case 'page-footer':
331 $scope = substr($region, 5);
332 break;
333 default:
334 return FALSE;
335 }
336 // If the path is within the drupal directory we can add in the normal way
337 if (CRM_Utils_System_Drupal::formatResourceUrl($url)) {
338 drupal_add_js($url, 'module', $scope);
339 return TRUE;
340 }
341 return FALSE;
342 }
343
344 /**
345 * Add an inline script
346 *
347 * @param $code: string, javascript code
348 * @param $region string, location within the document: 'html-header', 'page-header', 'page-footer'
349 *
350 * Note: This function is not to be called directly
351 * @see CRM_Core_Region::render()
352 *
353 * @return bool TRUE if we support this operation in this CMS, FALSE otherwise
354 * @access public
355 */
356 public function addScript($code, $region) {
357 switch ($region) {
358 case 'html-header':
359 case 'page-footer':
360 $scope = substr($region, 5);
361 break;
362 default:
363 return FALSE;
364 }
365 drupal_add_js($code, 'inline', $scope);
366 return TRUE;
367 }
368
369 /**
370 * Add a css file
371 *
372 * @param $url: string, absolute path to file
373 * @param $region string, location within the document: 'html-header', 'page-header', 'page-footer'
374 *
375 * Note: This function is not to be called directly
376 * @see CRM_Core_Region::render()
377 *
378 * @return bool TRUE if we support this operation in this CMS, FALSE otherwise
379 * @access public
380 */
381 public function addStyleUrl($url, $region) {
382 if ($region != 'html-header' || !CRM_Utils_System_Drupal::formatResourceUrl($url)) {
383 return FALSE;
384 }
385 drupal_add_css($url);
386 return TRUE;
387 }
388
389 /**
390 * Add an inline style
391 *
392 * @param $code: string, css code
393 * @param $region string, location within the document: 'html-header', 'page-header', 'page-footer'
394 *
395 * Note: This function is not to be called directly
396 * @see CRM_Core_Region::render()
397 *
398 * @return bool TRUE if we support this operation in this CMS, FALSE otherwise
399 * @access public
400 */
401 public function addStyle($code, $region) {
402 return FALSE;
403 }
404
405 /**
406 * rewrite various system urls to https
407 *
408 * @param null
409 *
410 * @return void
411 * @access public
412 */
413 function mapConfigToSSL() {
414 global $base_url;
415 $base_url = str_replace('http://', 'https://', $base_url);
416 }
417
418 /**
419 * figure out the post url for the form
420 *
421 * @param mix $action the default action if one is pre-specified
422 *
423 * @return string the url to post the form
424 * @access public
425
426 */
427 function postURL($action) {
428 if (!empty($action)) {
429 return $action;
430 }
431
432 return $this->url($_GET['q']);
433 }
434
435 /**
436 * Generate an internal CiviCRM URL (copied from DRUPAL/includes/common.inc#url)
437 *
438 * @param $path string The path being linked to, such as "civicrm/add"
439 * @param $query string A query string to append to the link.
440 * @param $absolute boolean Whether to force the output to be an absolute link (beginning with http:).
441 * Useful for links that will be displayed outside the site, such as in an
442 * RSS feed.
443 * @param $fragment string A fragment identifier (named anchor) to append to the link.
444 * @param $htmlize boolean whether to convert to html eqivalant
445 * @param $frontend boolean a gross joomla hack
446 *
447 * @return string an HTML string containing a link to the given path.
448 * @access public
449 *
450 */
451 function url($path = NULL, $query = NULL, $absolute = FALSE,
452 $fragment = NULL, $htmlize = TRUE,
453 $frontend = FALSE
454 ) {
455 $config = CRM_Core_Config::singleton();
456 $script = 'index.php';
457
458 $path = CRM_Utils_String::stripPathChars($path);
459
460 if (isset($fragment)) {
461 $fragment = '#' . $fragment;
462 }
463
464 if (!isset($config->useFrameworkRelativeBase)) {
465 $base = parse_url($config->userFrameworkBaseURL);
466 $config->useFrameworkRelativeBase = $base['path'];
467 }
468 $base = $absolute ? $config->userFrameworkBaseURL : $config->useFrameworkRelativeBase;
469
470 $separator = $htmlize ? '&amp;' : '&';
471
472 if (!$config->cleanURL) {
473 if (isset($path)) {
474 if (isset($query)) {
475 return $base . $script . '?q=' . $path . $separator . $query . $fragment;
476 }
477 else {
478 return $base . $script . '?q=' . $path . $fragment;
479 }
480 }
481 else {
482 if (isset($query)) {
483 return $base . $script . '?' . $query . $fragment;
484 }
485 else {
486 return $base . $fragment;
487 }
488 }
489 }
490 else {
491 if (isset($path)) {
492 if (isset($query)) {
493 return $base . $path . '?' . $query . $fragment;
494 }
495 else {
496 return $base . $path . $fragment;
497 }
498 }
499 else {
500 if (isset($query)) {
501 return $base . $script . '?' . $query . $fragment;
502 }
503 else {
504 return $base . $fragment;
505 }
506 }
507 }
508 }
509
510 /**
511 * Authenticate the user against the drupal db
512 *
513 * @param string $name the user name
514 * @param string $password the password for the above user name
515 *
516 * @return mixed false if no auth
517 * array(
518 * contactID, ufID, unique string ) if success
519 * @access public
520 */
521 function authenticate($name, $password, $loadCMSBootstrap = FALSE, $realPath = NULL) {
522 require_once 'DB.php';
523
524 $config = CRM_Core_Config::singleton();
525
526 $dbDrupal = DB::connect($config->userFrameworkDSN);
527 if (DB::isError($dbDrupal)) {
528 CRM_Core_Error::fatal("Cannot connect to drupal db via $config->userFrameworkDSN, " . $dbDrupal->getMessage());
529 }
530
531 $strtolower = function_exists('mb_strtolower') ? 'mb_strtolower' : 'strtolower';
532 $dbpassword = md5($password);
533 $name = $dbDrupal->escapeSimple($strtolower($name));
534 $sql = 'SELECT u.* FROM ' . $config->userFrameworkUsersTableName . " u WHERE LOWER(u.name) = '$name' AND u.pass = '$dbpassword' AND u.status = 1";
535 $query = $dbDrupal->query($sql);
536
537 $user = NULL;
538 // need to change this to make sure we matched only one row
539 while ($row = $query->fetchRow(DB_FETCHMODE_ASSOC)) {
540 CRM_Core_BAO_UFMatch::synchronizeUFMatch($user, $row['uid'], $row['mail'], 'Drupal');
541 $contactID = CRM_Core_BAO_UFMatch::getContactId($row['uid']);
542 if (!$contactID) {
543 return FALSE;
544 }
545 else{//success
546 if ($loadCMSBootstrap) {
547 $bootStrapParams = array();
548 if ($name && $password) {
549 $bootStrapParams = array(
550 'name' => $name,
551 'pass' => $password,
552 );
553 }
554 CRM_Utils_System::loadBootStrap($bootStrapParams, TRUE, TRUE, $realPath);
555 }
556 return array($contactID, $row['uid'], mt_rand());
557 }
558 }
559 return FALSE;
560 }
561
562 /*
563 * Load user into session
564 */
565 function loadUser($username) {
566 global $user;
567 $user = user_load(array('name' => $username));
568 if (empty($user->uid)) {
569 return FALSE;
570 }
571
572 $uid = $user->uid;
573 $contact_id = CRM_Core_BAO_UFMatch::getContactId($uid);
574
575 // lets store contact id and user id in session
576 $session = CRM_Core_Session::singleton();
577 $session->set('ufID', $uid);
578 $session->set('userID', $contact_id);
579 return TRUE;
580 }
581
582 /**
583 * Perform any post login activities required by the UF -
584 * e.g. for drupal : records a watchdog message about the new session,
585 * saves the login timestamp, calls hook_user op 'login' and generates a new session.
586 *
587 * @param array params
588 *
589 * FIXME: Document values accepted/required by $params
590 */
591 function userLoginFinalize($params = array()) {
592 user_authenticate_finalize($params);
593 }
594
595 /**
596 * Determine the native ID of the CMS user
597 *
598 * @param $username
599 * @return int|NULL
600 */
601 function getUfId($username) {
602 $user = user_load(array('name' => $username));
603 if (empty($user->uid)) {
604 return NULL;
605 }
606 return $user->uid;
607 }
608
609 /**
610 * Set a message in the UF to display to a user
611 *
612 * @param string $message the message to set
613 *
614 * @access public
615 */
616 function setMessage($message) {
617 drupal_set_message($message);
618 }
619
620 function permissionDenied() {
621 drupal_access_denied();
622 }
623
624 function logout() {
625 module_load_include('inc', 'user', 'user.pages');
626 return user_logout();
627 }
628
629 function updateCategories() {
630 // copied this from profile.module. Seems a bit inefficient, but i dont know a better way
631 // CRM-3600
632 cache_clear_all();
633 menu_rebuild();
634 }
635
636 /**
637 * Get the locale set in the hosting CMS
638 *
639 * @return string with the locale or null for none
640 */
641 function getUFLocale() {
642 // return CiviCRM’s xx_YY locale that either matches Drupal’s Chinese locale
643 // (for CRM-6281), Drupal’s xx_YY or is retrieved based on Drupal’s xx
644 global $language;
645 switch (TRUE) {
646 case $language->language == 'zh-hans':
647 return 'zh_CN';
648
649 case $language->language == 'zh-hant':
650 return 'zh_TW';
651
652 case preg_match('/^.._..$/', $language->language):
653 return $language->language;
654
655 default:
656 return CRM_Core_I18n_PseudoConstant::longForShort(substr($language->language, 0, 2));
657 }
658 }
659
660 function getVersion() {
661 return defined('VERSION') ? VERSION : 'Unknown';
662 }
663
664 /**
665 * load drupal bootstrap
666 *
667 * @param $name string optional username for login
668 * @param $pass string optional password for login
669 */
670 function loadBootStrap($params = array(
671 ), $loadUser = TRUE, $throwError = TRUE, $realPath = NULL) {
672 $uid = CRM_Utils_Array::value('uid', $params);
673 $name = CRM_Utils_Array::value('name', $params, FALSE) ? $params['name'] : trim(CRM_Utils_Array::value('name', $_REQUEST));
674 $pass = CRM_Utils_Array::value('pass', $params, FALSE) ? $params['pass'] : trim(CRM_Utils_Array::value('pass', $_REQUEST));
675
676 //take the cms root path.
677 $cmsPath = $this->cmsRootPath($realPath);
678 if (!file_exists("$cmsPath/includes/bootstrap.inc")) {
679 echo '<br />Sorry, unable to locate bootstrap.inc.';
680 exit();
681 }
682
683 chdir($cmsPath);
684 require_once 'includes/bootstrap.inc';
685 @drupal_bootstrap(DRUPAL_BOOTSTRAP_FULL);
686
687 if (!function_exists('module_exists') ||
688 !module_exists('civicrm')
689 ) {
690 echo '<br />Sorry, could not able to load drupal bootstrap.';
691 exit();
692 }
693 // lets also fix the clean url setting
694 // CRM-6948
695 $config->cleanURL = (int) variable_get('clean_url', '0');
696
697 // we need to call the config hook again, since we now know
698 // all the modules that are listening on it, does not apply
699 // to J! and WP as yet
700 // CRM-8655
701 CRM_Utils_Hook::config($config);
702
703 if (!$loadUser) {
704 return TRUE;
705 }
706 //load user, we need to check drupal permissions.
707 if ($name) {
708 $user = user_authenticate(array('name' => $name, 'pass' => $pass));
709 if (empty($user->uid)) {
710 echo '<br />Sorry, unrecognized username or password.';
711 exit();
712 }
713 }
714 elseif ($uid) {
715 $account = user_load(array('uid' => $uid));
716 if (empty($account->uid)) {
717 echo '<br />Sorry, unrecognized user id.';
718 exit();
719 }
720 else {
721 global $user;
722 $user = $account;
723 }
724 }
725 }
726
727 function cmsRootPath($scriptFilename = NULL) {
728 $cmsRoot = $valid = NULL;
729
730 if (!is_null($scriptFilename)) {
731 $path = $scriptFilename;
732 }
733 else {
734 $path = $_SERVER['SCRIPT_FILENAME'];
735 }
736 if (function_exists('drush_get_context')) {
737 // drush anyway takes care of multisite install etc
738 return drush_get_context('DRUSH_DRUPAL_ROOT');
739 }
740 // CRM-7582
741 $pathVars = explode('/',
742 str_replace('//', '/',
743 str_replace('\\', '/', $path)
744 )
745 );
746
747 //lets store first var,
748 //need to get back for windows.
749 $firstVar = array_shift($pathVars);
750
751 //lets remove sript name to reduce one iteration.
752 array_pop($pathVars);
753
754 //CRM-7429 --do check for upper most 'includes' dir,
755 //which would effectually work for multisite installation.
756 do {
757 $cmsRoot = $firstVar . '/' . implode('/', $pathVars);
758 $cmsIncludePath = "$cmsRoot/includes";
759 //stop as we found bootstrap.
760 if (@opendir($cmsIncludePath) &&
761 file_exists("$cmsIncludePath/bootstrap.inc")
762 ) {
763 $valid = TRUE;
764 break;
765 }
766 //remove one directory level.
767 array_pop($pathVars);
768 } while (count($pathVars));
769
770 return ($valid) ? $cmsRoot : NULL;
771 }
772
773 /**
774 * check is user logged in.
775 *
776 * @return boolean true/false.
777 */
778 public function isUserLoggedIn() {
779 $isloggedIn = FALSE;
780 if (function_exists('user_is_logged_in')) {
781 $isloggedIn = user_is_logged_in();
782 }
783
784 return $isloggedIn;
785 }
786
787 /**
788 * Get currently logged in user uf id.
789 *
790 * @return int $userID logged in user uf id.
791 */
792 public function getLoggedInUfID() {
793 $ufID = NULL;
794 if (function_exists('user_is_logged_in') &&
795 user_is_logged_in() &&
796 function_exists('user_uid_optional_to_arg')
797 ) {
798 $ufID = user_uid_optional_to_arg(array());
799 }
800
801 return $ufID;
802 }
803
804 /**
805 * Format the url as per language Negotiation.
806 *
807 * @param string $url
808 *
809 * @return string $url, formatted url.
810 * @static
811 */
812 function languageNegotiationURL($url,
813 $addLanguagePart = TRUE,
814 $removeLanguagePart = FALSE
815 ) {
816 if (empty($url)) {
817 return $url;
818 }
819
820 //upto d6 only, already we have code in place for d7
821 $config = CRM_Core_Config::singleton();
822 if (function_exists('variable_get') &&
823 module_exists('locale')
824 ) {
825 global $language;
826
827 //get the mode.
828 $mode = variable_get('language_negotiation', LANGUAGE_NEGOTIATION_NONE);
829
830 //url prefix / path.
831 if (isset($language->prefix) &&
832 $language->prefix &&
833 in_array($mode, array(
834 LANGUAGE_NEGOTIATION_PATH,
835 LANGUAGE_NEGOTIATION_PATH_DEFAULT,
836 ))
837 ) {
838
839 if ($addLanguagePart) {
840 $url .= $language->prefix . '/';
841 }
842 if ($removeLanguagePart) {
843 $url = str_replace("/{$language->prefix}/", '/', $url);
844 }
845 }
846 if (isset($language->domain) &&
847 $language->domain &&
848 $mode == LANGUAGE_NEGOTIATION_DOMAIN
849 ) {
850
851 if ($addLanguagePart) {
852 $url = CRM_Utils_File::addTrailingSlash($language->domain, '/');
853 }
854 if ($removeLanguagePart && defined('CIVICRM_UF_BASEURL')) {
855 $url = str_replace('\\', '/', $url);
856 $parseUrl = parse_url($url);
857
858 //kinda hackish but not sure how to do it right
859 //hope http_build_url() will help at some point.
860 if (is_array($parseUrl) && !empty($parseUrl)) {
861 $urlParts = explode('/', $url);
862 $hostKey = array_search($parseUrl['host'], $urlParts);
863 $ufUrlParts = parse_url(CIVICRM_UF_BASEURL);
864 $urlParts[$hostKey] = $ufUrlParts['host'];
865 $url = implode('/', $urlParts);
866 }
867 }
868 }
869 }
870
871 return $url;
872 }
873
874 /**
875 * Find any users/roles/security-principals with the given permission
876 * and replace it with one or more permissions.
877 *
878 * @param $oldPerm string
879 * @param $newPerms array, strings
880 *
881 * @return void
882 */
883 function replacePermission($oldPerm, $newPerms) {
884 $roles = user_roles(FALSE, $oldPerm);
885 foreach ($roles as $rid => $roleName) {
886 $permList = db_result(db_query('SELECT perm FROM {permission} WHERE rid = %d', $rid));
887 $perms = drupal_map_assoc(explode(', ', $permList));
888 unset($perms[$oldPerm]);
889 $perms = $perms + drupal_map_assoc($newPerms);
890 $permList = implode(', ', $perms);
891 db_query('UPDATE {permission} SET perm = "%s" WHERE rid = %d', $permList, $rid);
892 /*
893 if ( ! empty( $roles ) ) {
894 $rids = implode(',', array_keys($roles));
895 db_query( 'UPDATE {permission} SET perm = CONCAT( perm, \', edit all events\') WHERE rid IN (' . implode(',', array_keys($roles)) . ')' );
896 db_query( "UPDATE {permission} SET perm = REPLACE( perm, '%s', '%s' ) WHERE rid IN ($rids)",
897 $oldPerm, implode(', ', $newPerms) );*/
898 }
899 }
900
901 /**
902 * Get a list of all installed modules, including enabled and disabled ones
903 *
904 * @return array CRM_Core_Module
905 */
906 function getModules() {
907 $result = array();
908 $q = db_query('SELECT name, status FROM {system} WHERE type = \'module\' AND schema_version <> -1');
909 while ($row = db_fetch_object($q)) {
910 $result[] = new CRM_Core_Module('drupal.' . $row->name, ($row->status == 1) ? TRUE : FALSE);
911 }
912 return $result;
913 }
914
915 /**
916 * Get user login URL for hosting CMS (method declared in each CMS system class)
917 *
918 * @param string $destination - if present, add destination to querystring (works for Drupal only)
919 *
920 * @return string - loginURL for the current CMS
921 * @static
922 */
923 public function getLoginURL($destination = '') {
924 $config = CRM_Core_Config::singleton();
925 $loginURL = $config->userFrameworkBaseURL;
926 $loginURL .= 'user';
927 if (!empty($destination)) {
928 // append destination so user is returned to form they came from after login
929 $loginURL .= '?destination=' . urlencode($destination);
930 }
931 return $loginURL;
932 }
933
934 /**
935 * Wrapper for og_membership creation
936 *
937 * @param integer $ogID Organic Group ID
938 * @param integer $drupalID drupal User ID
939 */
940 function og_membership_create($ogID, $drupalID){
941 og_save_subscription( $ogID, $drupalID, array( 'is_active' => 1 ) );
942 }
943
944 /**
945 * Wrapper for og_membership deletion
946 *
947 * @param integer $ogID Organic Group ID
948 * @param integer $drupalID drupal User ID
949 */
950 function og_membership_delete($ogID, $drupalID) {
951 og_delete_subscription( $ogID, $drupalID );
952 }
953
954 /**
955 * Reset any system caches that may be required for proper CiviCRM
956 * integration.
957 */
958 function flush() {
959 drupal_flush_all_caches();
960 }
961 }
962