is_drupal = TRUE; $this->supports_form_extensions = TRUE; } /** * Function to create a user in Drupal. * * @param array $params associated array * @param string $mail email id for cms user * * @return uid if user exists, false otherwise * * @access public * */ function createUser(&$params, $mail) { $form_state = array(); $form_state['input'] = array( 'name' => $params['cms_name'], 'mail' => $params[$mail], 'op' => 'Create new account', ); $admin = user_access('administer users'); if (!variable_get('user_email_verification', TRUE) || $admin) { $form_state['input']['pass'] = array('pass1'=>$params['cms_pass'],'pass2'=>$params['cms_pass']); } if(!empty($params['notify'])){ $form_state['input']['notify'] = $params['notify']; } $form_state['rebuild'] = FALSE; $form_state['programmed'] = TRUE; $form_state['complete form'] = FALSE; $form_state['method'] = 'post'; $form_state['build_info']['args'] = array(); /* * if we want to submit this form more than once in a process (e.g. create more than one user) * we must force it to validate each time for this form. Otherwise it will not validate * subsequent submissions and the manner in which the password is passed in will be invalid * */ $form_state['must_validate'] = TRUE; $config = CRM_Core_Config::singleton(); // we also need to redirect b $config->inCiviCRM = TRUE; $form = drupal_retrieve_form('user_register_form', $form_state); $form_state['process_input'] = 1; $form_state['submitted'] = 1; $form['#array_parents'] = array(); $form['#tree'] = FALSE; drupal_process_form('user_register_form', $form, $form_state); $config->inCiviCRM = FALSE; if (form_get_errors()) { return FALSE; } else { return $form_state['user']->uid; } } /* * Change user name in host CMS * * @param integer $ufID User ID in CMS * @param string $ufName User name */ function updateCMSName($ufID, $ufName) { // CRM-5555 if (function_exists('user_load')) { $user = user_load($ufID); if ($user->mail != $ufName) { user_save($user, array('mail' => $ufName)); $user = user_load($ufID); } } } /** * Check if username and email exists in the drupal db * * @params $params array array of name and mail values * @params $errors array array of errors * @params $emailName string field label for the 'email' * * @return void */ static function checkUserNameEmailExists(&$params, &$errors, $emailName = 'email') { $config = CRM_Core_Config::singleton(); $dao = new CRM_Core_DAO(); $name = $dao->escape(CRM_Utils_Array::value('name', $params)); $email = $dao->escape(CRM_Utils_Array::value('mail', $params)); $errors = form_get_errors(); if ($errors) { // unset drupal messages to avoid twice display of errors unset($_SESSION['messages']); } if (CRM_Utils_Array::value('name', $params)) { if ($nameError = user_validate_name($params['name'])) { $errors['cms_name'] = $nameError; } else { $uid = db_query( "SELECT uid FROM {users} WHERE name = :name", array(':name' => $params['name']) )->fetchField(); if ((bool) $uid) { $errors['cms_name'] = ts('The username %1 is already taken. Please select another username.', array(1 => $params['name'])); } } } if (CRM_Utils_Array::value('mail', $params)) { if ($emailError = user_validate_mail($params['mail'])) { $errors[$emailName] = $emailError; } else { $uid = db_query( "SELECT uid FROM {users} WHERE mail = :mail", array(':mail' => $params['mail']) )->fetchField(); if ((bool) $uid) { $resetUrl = $config->userFrameworkBaseURL . 'user/password'; $errors[$emailName] = ts('The email address %1 is already registered. Have you forgotten your password?', array(1 => $params['mail'], 2 => $resetUrl) ); } } } } /* * Function to get the drupal destination string. When this is passed in the * URL the user will be directed to it after filling in the drupal form * * @param object $form Form object representing the 'current' form - to which the user will be returned * @return string $destination destination value for URL * */ function getLoginDestination(&$form) { $args = NULL; $id = $form->get('id'); if ($id) { $args .= "&id=$id"; } else { $gid = $form->get('gid'); if ($gid) { $args .= "&gid=$gid"; } else { // Setup Personal Campaign Page link uses pageId $pageId = $form->get('pageId'); if ($pageId) { $component = $form->get('component'); $args .= "&pageId=$pageId&component=$component&action=add"; } } } $destination = NULL; if ($args) { // append destination so user is returned to form they came from after login $destination = CRM_Utils_System::currentPath() . '?reset=1' . $args; } return $destination; } /** * Get user login URL for hosting CMS (method declared in each CMS system class) * * @param string $destination - if present, add destination to querystring (works for Drupal only) * * @return string - loginURL for the current CMS * @static */ public function getLoginURL($destination = '') { $config = CRM_Core_Config::singleton(); $loginURL = $config->userFrameworkBaseURL; $loginURL .= 'user'; if (!empty($destination)) { // append destination so user is returned to form they came from after login $loginURL .= '?destination=' . urlencode($destination); } return $loginURL; } /** * sets the title of the page * * @param string $title * @paqram string $pageTitle * * @return void * @access public */ function setTitle($title, $pageTitle = NULL) { if (arg(0) == 'civicrm') { if (!$pageTitle) { $pageTitle = $title; } drupal_set_title($pageTitle, PASS_THROUGH); } } /** * Append an additional breadcrumb tag to the existing breadcrumb * * @param string $title * @param string $url * * @return void * @access public */ function appendBreadCrumb($breadCrumbs) { $breadCrumb = drupal_get_breadcrumb(); if (is_array($breadCrumbs)) { foreach ($breadCrumbs as $crumbs) { if (stripos($crumbs['url'], 'id%%')) { $args = array('cid', 'mid'); foreach ($args as $a) { $val = CRM_Utils_Request::retrieve($a, 'Positive', CRM_Core_DAO::$_nullObject, FALSE, NULL, $_GET ); if ($val) { $crumbs['url'] = str_ireplace("%%{$a}%%", $val, $crumbs['url']); } } } $breadCrumb[] = "{$crumbs['title']}"; } } drupal_set_breadcrumb($breadCrumb); } /** * Reset an additional breadcrumb tag to the existing breadcrumb * * @return void * @access public */ function resetBreadCrumb() { $bc = array(); drupal_set_breadcrumb($bc); } /** * Append a string to the head of the html file * * @param string $header the new string to be appended * * @return void * @access public */ function addHTMLHead($header) { static $count = 0; if (!empty($header)) { $key = 'civi_' . ++$count; $data = array( '#type' => 'markup', '#markup' => $header, ); drupal_add_html_head($data, $key); } } /** * Add a script file * * @param $url: string, absolute path to file * @param $region string, location within the document: 'html-header', 'page-header', 'page-footer' * * Note: This function is not to be called directly * @see CRM_Core_Region::render() * * @return bool TRUE if we support this operation in this CMS, FALSE otherwise * @access public */ public function addScriptUrl($url, $region) { $params = array('group' => JS_LIBRARY, 'weight' => 10); switch ($region) { case 'html-header': case 'page-footer': $params['scope'] = substr($region, 5); break; default: return FALSE; } // If the path is within the drupal directory we can use the more efficient 'file' setting $params['type'] = self::formatResourceUrl($url) ? 'file' : 'external'; drupal_add_js($url, $params); return TRUE; } /** * Add an inline script * * @param $code: string, javascript code * @param $region string, location within the document: 'html-header', 'page-header', 'page-footer' * * Note: This function is not to be called directly * @see CRM_Core_Region::render() * * @return bool TRUE if we support this operation in this CMS, FALSE otherwise * @access public */ public function addScript($code, $region) { $params = array('type' => 'inline', 'group' => JS_LIBRARY, 'weight' => 10); switch ($region) { case 'html-header': case 'page-footer': $params['scope'] = substr($region, 5); break; default: return FALSE; } drupal_add_js($code, $params); return TRUE; } /** * Add a css file * * @param $url: string, absolute path to file * @param $region string, location within the document: 'html-header', 'page-header', 'page-footer' * * Note: This function is not to be called directly * @see CRM_Core_Region::render() * * @return bool TRUE if we support this operation in this CMS, FALSE otherwise * @access public */ public function addStyleUrl($url, $region) { if ($region != 'html-header') { return FALSE; } $params = array(); // If the path is within the drupal directory we can use the more efficient 'file' setting $params['type'] = self::formatResourceUrl($url) ? 'file' : 'external'; drupal_add_css($url, $params); return TRUE; } /** * Add an inline style * * @param $code: string, css code * @param $region string, location within the document: 'html-header', 'page-header', 'page-footer' * * Note: This function is not to be called directly * @see CRM_Core_Region::render() * * @return bool TRUE if we support this operation in this CMS, FALSE otherwise * @access public */ public function addStyle($code, $region) { if ($region != 'html-header') { return FALSE; } $params = array('type' => 'inline'); drupal_add_css($code, $params); return TRUE; } /** * Check if a resource url is within the drupal directory and format appropriately * * @param url (reference) * * @return bool: TRUE for internal paths, FALSE for external */ static function formatResourceUrl(&$url) { $internal = FALSE; $base = CRM_Core_Config::singleton()->resourceBase; global $base_url; // Handle absolute urls if (strpos($url, $base_url) === 0) { $internal = TRUE; $url = trim(str_replace($base_url, '', $url), '/'); } // Handle relative urls elseif (strpos($url, $base) === 0) { $internal = TRUE; $url = substr(drupal_get_path('module', 'civicrm'), 0, -6) . trim(substr($url, strlen($base)), '/'); } // Strip query string $q = strpos($url, '?'); if ($q && $internal) { $url = substr($url, 0, $q); } return $internal; } /** * rewrite various system urls to https * * @param null * * @return void * @access public */ function mapConfigToSSL() { global $base_url; $base_url = str_replace('http://', 'https://', $base_url); } /** * figure out the post url for the form * * @param mix $action the default action if one is pre-specified * * @return string the url to post the form * @access public */ function postURL($action) { if (!empty($action)) { return $action; } return $this->url($_GET['q']); } /** * Generate an internal CiviCRM URL (copied from DRUPAL/includes/common.inc#url) * * @param $path string The path being linked to, such as "civicrm/add" * @param $query string A query string to append to the link. * @param $absolute boolean Whether to force the output to be an absolute link (beginning with http:). * Useful for links that will be displayed outside the site, such as in an * RSS feed. * @param $fragment string A fragment identifier (named anchor) to append to the link. * @param $htmlize boolean whether to convert to html eqivalant * @param $frontend boolean a gross joomla hack * * @return string an HTML string containing a link to the given path. * @access public * */ function url($path = NULL, $query = NULL, $absolute = FALSE, $fragment = NULL, $htmlize = TRUE, $frontend = FALSE, $forceBackend = FALSE ) { $config = CRM_Core_Config::singleton(); $script = 'index.php'; $path = CRM_Utils_String::stripPathChars($path); if (isset($fragment)) { $fragment = '#' . $fragment; } if (!isset($config->useFrameworkRelativeBase)) { $base = parse_url($config->userFrameworkBaseURL); $config->useFrameworkRelativeBase = $base['path']; } $base = $absolute ? $config->userFrameworkBaseURL : $config->useFrameworkRelativeBase; $separator = $htmlize ? '&' : '&'; if (!$config->cleanURL) { if (isset($path)) { if (isset($query)) { return $base . $script . '?q=' . $path . $separator . $query . $fragment; } else { return $base . $script . '?q=' . $path . $fragment; } } else { if (isset($query)) { return $base . $script . '?' . $query . $fragment; } else { return $base . $fragment; } } } else { if (isset($path)) { if (isset($query)) { return $base . $path . '?' . $query . $fragment; } else { return $base . $path . $fragment; } } else { if (isset($query)) { return $base . $script . '?' . $query . $fragment; } else { return $base . $fragment; } } } } /** * Authenticate the user against the drupal db * * @param string $name the user name * @param string $password the password for the above user name * @param $loadCMSBootstrap boolean load cms bootstrap? * * @return mixed false if no auth * array( * contactID, ufID, unique string ) if success * @access public */ static function authenticate($name, $password, $loadCMSBootstrap = FALSE, $realPath = NULL) { require_once 'DB.php'; $config = CRM_Core_Config::singleton(); $dbDrupal = DB::connect($config->userFrameworkDSN); if (DB::isError($dbDrupal)) { CRM_Core_Error::fatal("Cannot connect to drupal db via $config->userFrameworkDSN, " . $dbDrupal->getMessage()); } $account = $userUid = $userMail = NULL; if ($loadCMSBootstrap) { $bootStrapParams = array(); if ($name && $password) { $bootStrapParams = array( 'name' => $name, 'pass' => $password, ); } CRM_Utils_System::loadBootStrap($bootStrapParams, TRUE, TRUE, $realPath); global $user; if ($user) { $userUid = $user->uid; $userMail = $user->mail; } } else { // CRM-8638 // SOAP cannot load drupal bootstrap and hence we do it the old way // Contact CiviSMTP folks if we run into issues with this :) $cmsPath = $config->userSystem->cmsRootPath($realPath); require_once ("$cmsPath/includes/bootstrap.inc"); require_once ("$cmsPath/includes/password.inc"); $strtolower = function_exists('mb_strtolower') ? 'mb_strtolower' : 'strtolower'; $name = $dbDrupal->escapeSimple($strtolower($name)); $sql = " SELECT u.* FROM {$config->userFrameworkUsersTableName} u WHERE LOWER(u.name) = '$name' AND u.status = 1 "; $query = $dbDrupal->query($sql); $row = $query->fetchRow(DB_FETCHMODE_ASSOC); if ($row) { $fakeDrupalAccount = drupal_anonymous_user(); $fakeDrupalAccount->name = $name; $fakeDrupalAccount->pass = $row['pass']; $passwordCheck = user_check_password($password, $fakeDrupalAccount); if ($passwordCheck) { $userUid = $row['uid']; $userMail = $row['mail']; } } } if ($userUid && $userMail) { CRM_Core_BAO_UFMatch::synchronizeUFMatch($account, $userUid, $userMail, 'Drupal'); $contactID = CRM_Core_BAO_UFMatch::getContactId($userUid); if (!$contactID) { return FALSE; } return array($contactID, $userUid, mt_rand()); } return FALSE; } /* * Load user into session */ function loadUser($username) { global $user; $user = user_load_by_name($username); if (empty($user->uid)) { return FALSE; } $uid = $user->uid; $contact_id = CRM_Core_BAO_UFMatch::getContactId($uid); // lets store contact id and user id in session $session = CRM_Core_Session::singleton(); $session->set('ufID', $uid); $session->set('userID', $contact_id); return TRUE; } /** * Set a message in the UF to display to a user * * @param string $message the message to set * * @access public */ function setMessage($message) { drupal_set_message($message); } function permissionDenied() { drupal_access_denied(); } function logout() { module_load_include('inc', 'user', 'user.pages'); return user_logout(); } function updateCategories() { // copied this from profile.module. Seems a bit inefficient, but i dont know a better way // CRM-3600 cache_clear_all(); menu_rebuild(); } /** * Get the default location for CiviCRM blocks * * @return string */ function getDefaultBlockLocation() { return 'sidebar_first'; } /** * Get the locale set in the hosting CMS * * @return string with the locale or null for none */ function getUFLocale() { // return CiviCRM’s xx_YY locale that either matches Drupal’s Chinese locale // (for CRM-6281), Drupal’s xx_YY or is retrieved based on Drupal’s xx global $language; switch (TRUE) { case $language->language == 'zh-hans': return 'zh_CN'; case $language->language == 'zh-hant': return 'zh_TW'; case preg_match('/^.._..$/', $language->language): return $language->language; default: return CRM_Core_I18n_PseudoConstant::longForShort(substr($language->language, 0, 2)); } } function getVersion() { return defined('VERSION') ? VERSION : 'Unknown'; } /** * load drupal bootstrap * * @param $params array with uid or name and password * @param $loadUser boolean load cms user? * @param $throwError throw error on failure? */ function loadBootStrap($params = array( ), $loadUser = TRUE, $throwError = TRUE, $realPath = NULL) { //take the cms root path. $cmsPath = $this->cmsRootPath($realPath); if (!file_exists("$cmsPath/includes/bootstrap.inc")) { if ($throwError) { echo '
Sorry, could not locate bootstrap.inc\n'; exit(); } return FALSE; } // load drupal bootstrap chdir($cmsPath); define('DRUPAL_ROOT', $cmsPath); // For drupal multi-site CRM-11313 if ($realPath && strpos($realPath, 'sites/all/modules/') === FALSE) { preg_match('@sites/([^/]*)/modules@s', $realPath, $matches); if (!empty($matches[1])) { $_SERVER['HTTP_HOST'] = $matches[1]; } } require_once 'includes/bootstrap.inc'; drupal_bootstrap(DRUPAL_BOOTSTRAP_FULL); // explicitly setting error reporting, since we cannot handle drupal related notices error_reporting(1); if (!function_exists('module_exists') || !module_exists('civicrm') ) { if ($throwError) { echo '
Sorry, could not load drupal bootstrap.'; exit(); } return FALSE; } // seems like we've bootstrapped drupal $config = CRM_Core_Config::singleton(); // lets also fix the clean url setting // CRM-6948 $config->cleanURL = (int) variable_get('clean_url', '0'); // we need to call the config hook again, since we now know // all the modules that are listening on it, does not apply // to J! and WP as yet // CRM-8655 CRM_Utils_Hook::config($config); if (!$loadUser) { return TRUE; } $uid = CRM_Utils_Array::value('uid', $params); if (!$uid) { //load user, we need to check drupal permissions. $name = CRM_Utils_Array::value('name', $params, FALSE) ? $params['name'] : trim(CRM_Utils_Array::value('name', $_REQUEST)); $pass = CRM_Utils_Array::value('pass', $params, FALSE) ? $params['pass'] : trim(CRM_Utils_Array::value('pass', $_REQUEST)); if ($name) { $uid = user_authenticate($name, $pass); if (!$uid) { if ($throwError) { echo '
Sorry, unrecognized username or password.'; exit(); } return FALSE; } } } if ($uid) { $account = user_load($uid); if ($account && $account->uid) { global $user; $user = $account; return TRUE; } } if ($throwError) { echo '
Sorry, can not load CMS user account.'; exit(); } // CRM-6948: When using loadBootStrap, it's implicit that CiviCRM has already loaded its settings, which means that define(CIVICRM_CLEANURL) was correctly set. // So we correct it $config = CRM_Core_Config::singleton(); $config->cleanURL = (int)variable_get('clean_url', '0'); // CRM-8655: Drupal wasn't available during bootstrap, so hook_civicrm_config never executes CRM_Utils_Hook::config($config); return FALSE; } function cmsRootPath($scriptFilename = NULL) { $cmsRoot = $valid = NULL; if (!is_null($scriptFilename)) { $path = $scriptFilename; } else { $path = $_SERVER['SCRIPT_FILENAME']; } if (function_exists('drush_get_context')) { // drush anyway takes care of multisite install etc return drush_get_context('DRUSH_DRUPAL_ROOT'); } // CRM-7582 $pathVars = explode('/', str_replace('//', '/', str_replace('\\', '/', $path) ) ); //lets store first var, //need to get back for windows. $firstVar = array_shift($pathVars); //lets remove sript name to reduce one iteration. array_pop($pathVars); //CRM-7429 --do check for upper most 'includes' dir, //which would effectually work for multisite installation. do { $cmsRoot = $firstVar . '/' . implode('/', $pathVars); $cmsIncludePath = "$cmsRoot/includes"; //stop as we found bootstrap. if (@opendir($cmsIncludePath) && file_exists("$cmsIncludePath/bootstrap.inc") ) { $valid = TRUE; break; } //remove one directory level. array_pop($pathVars); } while (count($pathVars)); return ($valid) ? $cmsRoot : NULL; } /** * check is user logged in. * * @return boolean true/false. */ public function isUserLoggedIn() { $isloggedIn = FALSE; if (function_exists('user_is_logged_in')) { $isloggedIn = user_is_logged_in(); } return $isloggedIn; } /** * Get currently logged in user uf id. * * @return int $userID logged in user uf id. */ public function getLoggedInUfID() { $ufID = NULL; if (function_exists('user_is_logged_in') && user_is_logged_in() && function_exists('user_uid_optional_to_arg') ) { $ufID = user_uid_optional_to_arg(array()); } return $ufID; } /** * Format the url as per language Negotiation. * * @param string $url * * @return string $url, formatted url. * @static */ function languageNegotiationURL($url, $addLanguagePart = TRUE, $removeLanguagePart = FALSE ) { if (empty($url)) { return $url; } //CRM-7803 -from d7 onward. $config = CRM_Core_Config::singleton(); if (function_exists('variable_get') && module_exists('locale') && function_exists('language_negotiation_get') ) { global $language; //does user configuration allow language //support from the URL (Path prefix or domain) if (language_negotiation_get('language') == 'locale-url') { $urlType = variable_get('locale_language_negotiation_url_part'); //url prefix if ($urlType == LOCALE_LANGUAGE_NEGOTIATION_URL_PREFIX) { if (isset($language->prefix) && $language->prefix) { if ($addLanguagePart) { $url .= $language->prefix . '/'; } if ($removeLanguagePart) { $url = str_replace("/{$language->prefix}/", '/', $url); } } } //domain if ($urlType == LOCALE_LANGUAGE_NEGOTIATION_URL_DOMAIN) { if (isset($language->domain) && $language->domain) { if ($addLanguagePart) { $url = CRM_Utils_File::addTrailingSlash($language->domain, '/'); } if ($removeLanguagePart && defined('CIVICRM_UF_BASEURL')) { $url = str_replace('\\', '/', $url); $parseUrl = parse_url($url); //kinda hackish but not sure how to do it right //hope http_build_url() will help at some point. if (is_array($parseUrl) && !empty($parseUrl)) { $urlParts = explode('/', $url); $hostKey = array_search($parseUrl['host'], $urlParts); $ufUrlParts = parse_url(CIVICRM_UF_BASEURL); $urlParts[$hostKey] = $ufUrlParts['host']; $url = implode('/', $urlParts); } } } } } } return $url; } /** * Find any users/roles/security-principals with the given permission * and replace it with one or more permissions. * * @param $oldPerm string * @param $newPerms array, strings * * @return void */ function replacePermission($oldPerm, $newPerms) { $roles = user_roles(FALSE, $oldPerm); if (!empty($roles)) { foreach (array_keys($roles) as $rid) { user_role_revoke_permissions($rid, array($oldPerm)); user_role_grant_permissions($rid, $newPerms); } } } /** * Get a list of all installed modules, including enabled and disabled ones * * @return array CRM_Core_Module */ function getModules() { $result = array(); $q = db_query('SELECT name, status FROM {system} WHERE type = \'module\' AND schema_version <> -1'); foreach ($q as $row) { $result[] = new CRM_Core_Module('drupal.' . $row->name, ($row->status == 1) ? TRUE : FALSE); } return $result; } /** * Wrapper for og_membership creation */ function og_membership_create($ogID, $drupalID){ if (function_exists('og_entity_query_alter')) { // sort-of-randomly chose a function that only exists in the 7.x-2.x branch // TODO: Find a more solid way to make this test // Also, since we don't know how to get the entity type of the group, we'll assume it's 'node' og_group('node', $ogID, array('entity' => user_load($drupalID))); } else { // Works for the OG 7.x-1.x branch og_group($ogID, array('entity' => user_load($drupalID))); } } /** * Wrapper for og_membership deletion */ function og_membership_delete($ogID, $drupalID) { if (function_exists('og_entity_query_alter')) { // sort-of-randomly chose a function that only exists in the 7.x-2.x branch // TODO: Find a more solid way to make this test // Also, since we don't know how to get the entity type of the group, we'll assume it's 'node' og_ungroup('node', $ogID, 'user', user_load($drupalID)); } else { // Works for the OG 7.x-1.x branch og_ungroup($ogID, 'user', user_load($drupalID)); } } /** * Reset any system caches that may be required for proper CiviCRM * integration. */ function flush() { drupal_flush_all_caches(); } }