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