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