_loadUserPreferencesFocus(); } protected function _loadUserPreferencesFocus() { $this->_userPreferenceFocus = new UserPreference($this); } /** * returns an admin user */ public function getSystemUser() { if (null === $this->retrieve('1')) // handle cases where someone deleted user with id "1" $this->retrieve_by_string_fields(array( 'status' => 'Active', 'is_admin' => '1', )); return $this; } /** * convenience function to get user's default signature */ function getDefaultSignature() { if($defaultId = $this->getPreference('signature_default')) { return $this->getSignature($defaultId); } else { return array(); } } /** * retrieves the signatures for a user * @param string id ID of user_signature * @return array ID, signature, and signature_html */ public function getSignature($id) { $signatures = $this->getSignaturesArray(); return $signatures[$id]; } function getSignaturesArray() { $q = 'SELECT * FROM users_signatures WHERE user_id = \''.$this->id.'\' AND deleted = 0 ORDER BY name ASC'; $r = $this->db->query($q); // provide "none" $sig = array(""=>""); while($a = $this->db->fetchByAssoc($r)) { $sig[$a['id']] = $a; } return $sig; } /** * retrieves any signatures that the User may have created as "; $out .= get_select_options_with_id($sigs, $defaultSig).''; return $out; } /** * returns buttons and JS for signatures */ function getSignatureButtons($jscall='', $defaultDisplay=false) { global $mod_strings; $jscall = empty($jscall) ? 'open_email_signature_form' : $jscall; $butts = " "; if($defaultDisplay) { $butts .= '  '; } else { $butts .= ''; } return $butts; } /** * performs a rudimentary check to verify if a given user has setup personal * InboundEmail * * @return bool */ public function hasPersonalEmail() { $focus = new InboundEmail; $focus->retrieve_by_string_fields(array('group_id' => $this->id)); return !empty($focus->id); } /* Returns the User's private GUID; this is unassociated with the User's * actual GUID. It is used to secure file names that must be HTTP:// * accesible, but obfusicated. */ function getUserPrivGuid() { $userPrivGuid = $this->getPreference('userPrivGuid', 'global', $this); if ($userPrivGuid) { return $userPrivGuid; } else { $this->setUserPrivGuid(); if (!isset ($_SESSION['setPrivGuid'])) { $_SESSION['setPrivGuid'] = true; $userPrivGuid = $this->getUserPrivGuid(); return $userPrivGuid; } else { sugar_die("Breaking Infinite Loop Condition: Could not setUserPrivGuid."); } } } function setUserPrivGuid() { $privGuid = create_guid(); //($name, $value, $nosession=0) $this->setPreference('userPrivGuid', $privGuid, 0, 'global', $this); } /** * Interface for the User object to calling the UserPreference::setPreference() method in modules/UserPreferences/UserPreference.php * * @see UserPreference::setPreference() * * @param string $name Name of the preference to set * @param string $value Value to set preference to * @param null $nosession For BC, ignored * @param string $category Name of the category to retrieve */ public function setPreference( $name, $value, $nosession = 0, $category = 'global' ) { // for BC if ( func_num_args() > 4 ) { $user = func_get_arg(4); $GLOBALS['log']->deprecated('User::setPreferences() should not be used statically.'); } else $user = $this; $user->_userPreferenceFocus->setPreference($name, $value, $category); } /** * Interface for the User object to calling the UserPreference::resetPreferences() method in modules/UserPreferences/UserPreference.php * * @see UserPreference::resetPreferences() * * @param string $category category to reset */ public function resetPreferences( $category = null ) { // for BC if ( func_num_args() > 1 ) { $user = func_get_arg(1); $GLOBALS['log']->deprecated('User::resetPreferences() should not be used statically.'); } else $user = $this; $user->_userPreferenceFocus->resetPreferences($category); } /** * Interface for the User object to calling the UserPreference::savePreferencesToDB() method in modules/UserPreferences/UserPreference.php * * @see UserPreference::savePreferencesToDB() */ public function savePreferencesToDB() { // for BC if ( func_num_args() > 0 ) { $user = func_get_arg(0); $GLOBALS['log']->deprecated('User::savePreferencesToDB() should not be used statically.'); } else $user = $this; $user->_userPreferenceFocus->savePreferencesToDB(); } /** * Unconditionally reloads user preferences from the DB and updates the session * @param string $category name of the category to retreive, defaults to global scope * @return bool successful? */ public function reloadPreferences($category = 'global') { return $this->_userPreferenceFocus->reloadPreferences($category = 'global'); } /** * Interface for the User object to calling the UserPreference::getUserDateTimePreferences() method in modules/UserPreferences/UserPreference.php * * @see UserPreference::getUserDateTimePreferences() * * @return array 'date' - date format for user ; 'time' - time format for user */ public function getUserDateTimePreferences() { // for BC if ( func_num_args() > 0 ) { $user = func_get_arg(0); $GLOBALS['log']->deprecated('User::getUserDateTimePreferences() should not be used statically.'); } else $user = $this; return $user->_userPreferenceFocus->getUserDateTimePreferences(); } /** * Interface for the User object to calling the UserPreference::loadPreferences() method in modules/UserPreferences/UserPreference.php * * @see UserPreference::loadPreferences() * * @param string $category name of the category to retreive, defaults to global scope * @return bool successful? */ public function loadPreferences( $category = 'global' ) { // for BC if ( func_num_args() > 1 ) { $user = func_get_arg(1); $GLOBALS['log']->deprecated('User::loadPreferences() should not be used statically.'); } else $user = $this; return $user->_userPreferenceFocus->loadPreferences($category); } /** * Interface for the User object to calling the UserPreference::setPreference() method in modules/UserPreferences/UserPreference.php * * @see UserPreference::getPreference() * * @param string $name name of the preference to retreive * @param string $category name of the category to retreive, defaults to global scope * @return mixed the value of the preference (string, array, int etc) */ public function getPreference( $name, $category = 'global' ) { // for BC if ( func_num_args() > 2 ) { $user = func_get_arg(2); $GLOBALS['log']->deprecated('User::getPreference() should not be used statically.'); } else $user = $this; return $user->_userPreferenceFocus->getPreference($name, $category); } function save($check_notify = false) { $isUpdate = !empty($this->id) && !$this->new_with_id; $query = "SELECT count(id) as total from users WHERE status='Active' AND deleted=0 AND is_group=0 AND portal_only=0"; // wp: do not save user_preferences in this table, see user_preferences module $this->user_preferences = ''; // if this is an admin user, do not allow is_group or portal_only flag to be set. if ($this->is_admin) { $this->is_group = 0; $this->portal_only = 0; } parent::save($check_notify); $this->savePreferencesToDB(); return $this->id; } /** * @return boolean true if the user is a member of the role_name, false otherwise * @param string $role_name - Must be the exact name of the acl_role * @param string $user_id - The user id to check for the role membership, empty string if current user * @desc Determine whether or not a user is a member of an ACL Role. This function caches the * results in the session or to prevent running queries after the first time executed. * Portions created by SugarCRM are Copyright (C) SugarCRM, Inc.. * All Rights Reserved.. * Contributor(s): ______________________________________.. */ function check_role_membership($role_name, $user_id = ''){ global $current_user; if(empty($user_id)) $user_id = $current_user->id; // Check the Sugar External Cache to see if this users memberships were cached $role_array = sugar_cache_retrieve("RoleMemberships_".$user_id); // If we are pulling the roles for the current user if($user_id == $current_user->id){ // If the Session doesn't contain the values if(!isset($_SESSION['role_memberships'])){ // This means the external cache already had it loaded if(!empty($role_array)) $_SESSION['role_memberships'] = $role_array; else{ $_SESSION['role_memberships'] = ACLRole::getUserRoleNames($user_id); $role_array = $_SESSION['role_memberships']; } } // else the session had the values, so we assign to the role array else{ $role_array = $_SESSION['role_memberships']; } } else{ // If the external cache didn't contain the values, we get them and put them in cache if(!$role_array){ $role_array = ACLRole::getUserRoleNames($user_id); sugar_cache_put("RoleMemberships_".$user_id, $role_array); } } // If the role doesn't exist in the list of the user's roles if(!empty($role_array) && in_array($role_name, $role_array)) return true; else return false; } function get_summary_text() { //$this->_create_proper_name_field(); return $this->name; } /** * @return string encrypted password for storage in DB and comparison against DB password. * @param string $user_name - Must be non null and at least 2 characters * @param string $user_password - Must be non null and at least 1 character. * @desc Take an unencrypted username and password and return the encrypted password * Portions created by SugarCRM are Copyright (C) SugarCRM, Inc.. * All Rights Reserved.. * Contributor(s): ______________________________________.. */ function encrypt_password($user_password) { // encrypt the password. $salt = substr($this->user_name, 0, 2); $encrypted_password = crypt($user_password, $salt); return $encrypted_password; } /** * Authenicates the user; returns true if successful * * @param $password * @return bool */ public function authenticate_user( $password ) { $password = $GLOBALS['db']->quote($password); $user_name = $GLOBALS['db']->quote($this->user_name); $query = "SELECT * from $this->table_name where user_name='$user_name' AND user_hash='$password' AND (portal_only IS NULL OR portal_only !='1') AND (is_group IS NULL OR is_group !='1') "; //$result = $this->db->requireSingleResult($query, false); $result = $this->db->limitQuery($query,0,1,false); $a = $this->db->fetchByAssoc($result); // set the ID in the seed user. This can be used for retrieving the full user record later if (empty ($a)) { // already logging this in load_user() method //$GLOBALS['log']->fatal("SECURITY: failed login by $this->user_name"); return false; } else { $this->id = $a['id']; return true; } } /** * retrieves an User bean * preformat name & full_name attribute with first/last * loads User's preferences * * @param string id ID of the User * @param bool encode encode the result * @return object User bean * @return null null if no User found */ function retrieve($id, $encode = true) { $ret = parent::retrieve($id, $encode); if ($ret) { if (isset ($_SESSION)) { $this->loadPreferences(); } } return $ret; } function retrieve_by_email_address($email) { $email1= strtoupper($email); $q=<<db->query($q); $row=$this->db->fetchByAssoc($res); if (!empty($row['id'])) { return $this->retrieve($row['id']); } return ''; } function bean_implements($interface) { switch($interface){ case 'ACL':return true; } return false; } /** * Load a user based on the user_name in $this * @return -- this if load was successul and null if load failed. * Portions created by SugarCRM are Copyright (C) SugarCRM, Inc.. * All Rights Reserved.. * Contributor(s): ______________________________________.. */ function load_user($user_password) { global $login_error; unset($GLOBALS['login_error']); if(isset ($_SESSION['loginattempts'])) { $_SESSION['loginattempts'] += 1; } else { $_SESSION['loginattempts'] = 1; } if($_SESSION['loginattempts'] > 5) { $GLOBALS['log']->fatal('SECURITY: '.$this->user_name.' has attempted to login '.$_SESSION['loginattempts'].' times from IP address: '.$_SERVER['REMOTE_ADDR'].'.'); } $GLOBALS['log']->debug("Starting user load for $this->user_name"); if (!isset ($this->user_name) || $this->user_name == "" || !isset ($user_password) || $user_password == "") return null; $user_hash = strtolower(md5($user_password)); if($this->authenticate_user($user_hash)) { $query = "SELECT * from $this->table_name where id='$this->id'"; } else { $GLOBALS['log']->fatal('SECURITY: User authentication for '.$this->user_name.' failed'); return null; } $r = $this->db->limitQuery($query, 0, 1, false); $a = $this->db->fetchByAssoc($r); if(empty($a) || !empty ($GLOBALS['login_error'])) { $GLOBALS['log']->fatal('SECURITY: User authentication for '.$this->user_name.' failed - could not Load User from Database'); return null; } // Get the fields for the user $row = $a; // If there is no user_hash is not present or is out of date, then create a new one. if (!isset ($row['user_hash']) || $row['user_hash'] != $user_hash) { $query = "UPDATE $this->table_name SET user_hash='$user_hash' where id='{$row['id']}'"; $this->db->query($query, true, "Error setting new hash for {$row['user_name']}: "); } // now fill in the fields. foreach ($this->column_fields as $field) { $GLOBALS['log']->info($field); if (isset ($row[$field])) { $GLOBALS['log']->info("=".$row[$field]); $this-> $field = $row[$field]; } } $this->loadPreferences(); require_once ('modules/Versions/CheckVersions.php'); $invalid_versions = get_invalid_versions(); if (!empty ($invalid_versions)) { if (isset ($invalid_versions['Rebuild Relationships'])) { unset ($invalid_versions['Rebuild Relationships']); // flag for pickup in DisplayWarnings.php $_SESSION['rebuild_relationships'] = true; } if (isset ($invalid_versions['Rebuild Extensions'])) { unset ($invalid_versions['Rebuild Extensions']); // flag for pickup in DisplayWarnings.php $_SESSION['rebuild_extensions'] = true; } $_SESSION['invalid_versions'] = $invalid_versions; } $this->fill_in_additional_detail_fields(); if ($this->status != "Inactive") $this->authenticated = true; unset ($_SESSION['loginattempts']); return $this; } /** * Verify that the current password is correct and write the new password to the DB. * * @param string $user name - Must be non null and at least 1 character. * @param string $user_password - Must be non null and at least 1 character. * @param string $new_password - Must be non null and at least 1 character. * @return boolean - If passwords pass verification and query succeeds, return true, else return false. */ function change_password( $user_password, $new_password, $system_generated = '0' ) { global $mod_strings; global $current_user; $GLOBALS['log']->debug("Starting password change for $this->user_name"); if (!isset ($new_password) || $new_password == "") { $this->error_string = $mod_strings['ERR_PASSWORD_CHANGE_FAILED_1'].$current_user['user_name'].$mod_strings['ERR_PASSWORD_CHANGE_FAILED_2']; return false; } $old_user_hash = strtolower(md5($user_password)); if (!$current_user->isAdminForModule('Users')) { //check old password first $query = "SELECT user_name FROM $this->table_name WHERE user_hash='$old_user_hash' AND id='$this->id'"; $result = $this->db->query($query, true); $row = $this->db->fetchByAssoc($result); $GLOBALS['log']->debug("select old password query: $query"); $GLOBALS['log']->debug("return result of $row"); if ($row == null) { $GLOBALS['log']->warn("Incorrect old password for ".$this->user_name.""); $this->error_string = $mod_strings['ERR_PASSWORD_INCORRECT_OLD_1'].$this->user_name.$mod_strings['ERR_PASSWORD_INCORRECT_OLD_2']; return false; } } $user_hash = strtolower(md5($new_password)); $this->setPreference('loginexpiration','0'); //set new password $now = TimeDate::getInstance()->nowDb(); $query = "UPDATE $this->table_name SET user_hash='$user_hash', system_generated_password='$system_generated', pwd_last_changed='$now' where id='$this->id'"; $this->db->query($query, true, "Error setting new password for $this->user_name: "); $_SESSION['hasExpiredPassword'] = '0'; return true; } function is_authenticated() { return $this->authenticated; } function fill_in_additional_list_fields() { $this->fill_in_additional_detail_fields(); } function fill_in_additional_detail_fields() { global $locale; $query = "SELECT u1.first_name, u1.last_name from users u1, users u2 where u1.id = u2.reports_to_id AND u2.id = '$this->id' and u1.deleted=0"; $result = $this->db->query($query, true, "Error filling in additional detail fields"); $row = $this->db->fetchByAssoc($result); $GLOBALS['log']->debug("additional detail query results: $row"); if ($row != null) { $this->reports_to_name = stripslashes($row['first_name'].' '.$row['last_name']); } else { $this->reports_to_name = ''; } $this->_create_proper_name_field(); } public function retrieve_user_id( $user_name ) { $userFocus = new User; $userFocus->retrieve_by_string_fields(array('user_name'=>$user_name)); if ( empty($userFocus->id) ) return false; return $userFocus->id; } /** * @return -- returns a list of all users in the system. * Portions created by SugarCRM are Copyright (C) SugarCRM, Inc.. * All Rights Reserved.. * Contributor(s): ______________________________________.. */ function verify_data($ieVerified=true) { global $mod_strings, $current_user; $verified = TRUE; if (!empty ($this->id)) { // Make sure the user doesn't report to themselves. $reports_to_self = 0; $check_user = $this->reports_to_id; $already_seen_list = array (); while (!empty ($check_user)) { if (isset ($already_seen_list[$check_user])) { // This user doesn't actually report to themselves // But someone above them does. $reports_to_self = 1; break; } if ($check_user == $this->id) { $reports_to_self = 1; break; } $already_seen_list[$check_user] = 1; $query = "SELECT reports_to_id FROM users WHERE id='".$this->db->quote($check_user)."'"; $result = $this->db->query($query, true, "Error checking for reporting-loop"); $row = $this->db->fetchByAssoc($result); echo ("fetched: ".$row['reports_to_id']." from ".$check_user."
"); $check_user = $row['reports_to_id']; } if ($reports_to_self == 1) { $this->error_string .= $mod_strings['ERR_REPORT_LOOP']; $verified = FALSE; } } $query = "SELECT user_name from users where user_name='$this->user_name' AND deleted=0"; if(!empty($this->id))$query .= " AND id<>'$this->id'"; $result = $this->db->query($query, true, "Error selecting possible duplicate users: "); $dup_users = $this->db->fetchByAssoc($result); if (!empty($dup_users)) { $this->error_string .= $mod_strings['ERR_USER_NAME_EXISTS_1'].$this->user_name.$mod_strings['ERR_USER_NAME_EXISTS_2']; $verified = FALSE; } if (($current_user->is_admin == "on")) { if($this->db->dbType == 'mssql'){ $query = "SELECT user_name from users where is_admin = 1 AND deleted=0"; }else{ $query = "SELECT user_name from users where is_admin = 'on' AND deleted=0"; } $result = $this->db->query($query, true, "Error selecting possible duplicate users: "); $remaining_admins = $this->db->getRowCount($result); if (($remaining_admins <= 1) && ($this->is_admin != "on") && ($this->id == $current_user->id)) { $GLOBALS['log']->debug("Number of remaining administrator accounts: {$remaining_admins}"); $this->error_string .= $mod_strings['ERR_LAST_ADMIN_1'].$this->user_name.$mod_strings['ERR_LAST_ADMIN_2']; $verified = FALSE; } } /////////////////////////////////////////////////////////////////////// //// InboundEmail verification failure if(!$ieVerified) { $verified = false; $this->error_string .= '
'.$mod_strings['ERR_EMAIL_NO_OPTS']; } return $verified; } function get_list_view_data() { global $current_user; $user_fields = $this->get_list_view_array(); if ($this->is_admin) $user_fields['IS_ADMIN_IMAGE'] = SugarThemeRegistry::current()->getImage('check_inline', ''); elseif (!$this->is_admin) $user_fields['IS_ADMIN'] = ''; if ($this->is_group) $user_fields['IS_GROUP_IMAGE'] = SugarThemeRegistry::current()->getImage('check_inline', ''); else $user_fields['IS_GROUP_IMAGE'] = ''; $user_fields['NAME'] = empty ($this->name) ? '' : $this->name; $user_fields['REPORTS_TO_NAME'] = $this->reports_to_name; $user_fields['EMAIL1'] = $this->emailAddress->getPrimaryAddress($this); return $user_fields; } function list_view_parse_additional_sections(& $list_form, $xTemplateSection) { return $list_form; } function create_export_query($order_by, $where) { include('modules/Users/field_arrays.php'); $cols = ''; foreach($fields_array['User']['export_fields'] as $field) { $cols .= (empty($cols)) ? '' : ', '; $cols .= $field; } $query = "SELECT {$cols} FROM users "; $where_auto = " users.deleted = 0"; if ($where != "") $query .= " WHERE $where AND ".$where_auto; else $query .= " WHERE ".$where_auto; // admin for module user is not be able to export a super-admin global $current_user; if(!$current_user->is_admin){ $query .= " AND users.is_admin=0"; } if ($order_by != "") $query .= " ORDER BY $order_by"; else $query .= " ORDER BY users.user_name"; return $query; } /** Returns a list of the associated users * Portions created by SugarCRM are Copyright (C) SugarCRM, Inc.. * All Rights Reserved.. * Contributor(s): ______________________________________.. */ function get_meetings() { // First, get the list of IDs. $query = "SELECT meeting_id as id from meetings_users where user_id='$this->id' AND deleted=0"; return $this->build_related_list($query, new Meeting()); } function get_calls() { // First, get the list of IDs. $query = "SELECT call_id as id from calls_users where user_id='$this->id' AND deleted=0"; return $this->build_related_list($query, new Call()); } /** * generates Javascript to display I-E mail counts, both personal and group */ function displayEmailCounts() { global $theme; $new = translate('LBL_NEW', 'Emails'); $default = 'index.php?module=Emails&action=ListView&assigned_user_id='.$this->id; $count = ''; $verts = array('Love', 'Links', 'Pipeline', 'RipCurl', 'SugarLite'); if($this->hasPersonalEmail()) { $r = $this->db->query('SELECT count(*) AS c FROM emails WHERE deleted=0 AND assigned_user_id = \''.$this->id.'\' AND type = \'inbound\' AND status = \'unread\''); $a = $this->db->fetchByAssoc($r); if(in_array($theme, $verts)) { $count .= '
'; } else { $count .= '    '; } $count .= ''.translate('LBL_LIST_TITLE_MY_INBOX', 'Emails').': ('.$a['c'].' '.$new.')'; if(!in_array($theme, $verts)) { $count .= ' - '; } } $r = $this->db->query('SELECT id FROM users WHERE users.is_group = 1 AND deleted = 0'); $groupIds = ''; $groupNew = ''; while($a = $this->db->fetchByAssoc($r)) { if($groupIds != '') {$groupIds .= ', ';} $groupIds .= "'".$a['id']."'"; } $total = 0; if(strlen($groupIds) > 0) { $groupQuery = 'SELECT count(*) AS c FROM emails '; $groupQuery .= ' WHERE emails.deleted=0 AND emails.assigned_user_id IN ('.$groupIds.') AND emails.type = \'inbound\' AND emails.status = \'unread\''; $r = $this->db->query($groupQuery); if(is_resource($r)) { $a = $this->db->fetchByAssoc($r); if($a['c'] > 0) { $total = $a['c']; } } } if(in_array($theme, $verts)) $count .= '
'; if(empty($count)) $count .= '    '; $count .= ''.translate('LBL_LIST_TITLE_GROUP_INBOX', 'Emails').': ('.$total.' '.$new.')'; $out = ''; echo $out; } function getPreferredEmail() { $ret = array (); $nameEmail = $this->getUsersNameAndEmail(); $prefAddr = $nameEmail['email']; $fullName = $nameEmail['name']; if (empty ($prefAddr)) { $nameEmail = $this->getSystemDefaultNameAndEmail(); $prefAddr = $nameEmail['email']; $fullName = $nameEmail['name']; } // if $fullName = from_html($fullName); $ret['name'] = $fullName; $ret['email'] = $prefAddr; return $ret; } function getUsersNameAndEmail() { $salutation = ''; $fullName = ''; if(!empty($this->salutation)) $salutation = $this->salutation; if(!empty($this->first_name)) { $fullName = trim($salutation.' '.$this->first_name.' '.$this->last_name); } elseif(!empty($this->name)) { $fullName = $this->name; } $prefAddr = $this->emailAddress->getPrimaryAddress($this); if (empty ($prefAddr)) { $prefAddr = $this->emailAddress->getReplyToAddress($this); } return array('email' => $prefAddr , 'name' => $fullName); } // fn function getSystemDefaultNameAndEmail() { $email = new Email(); $return = $email->getSystemDefaultEmail(); $prefAddr = $return['email']; $fullName = $return['name']; return array('email' => $prefAddr , 'name' => $fullName); } // fn /** * sets User email default in config.php if not already set by install - i. * e., upgrades */ function setDefaultsInConfig() { global $sugar_config; $sugar_config['email_default_client'] = 'sugar'; $sugar_config['email_default_editor'] = 'html'; ksort($sugar_config); write_array_to_file('sugar_config', $sugar_config, 'config.php'); return $sugar_config; } /** * returns User's email address based on descending order of preferences * * @param string id GUID of target user if needed * @return array Assoc array for an email and name */ function getEmailInfo($id='') { $user = $this; if(!empty($id)) { $user = new User(); $user->retrieve($id); } // from name $fromName = $user->getPreference('mail_fromname'); if(empty($fromName)) { // cn: bug 8586 - localized name format $fromName = $user->full_name; } // from address $fromaddr = $user->getPreference('mail_fromaddress'); if(empty($fromaddr)) { if(!empty($user->email1) && isset($user->email1)) { $fromaddr = $user->email1; } elseif(!empty($user->email2) && isset($user->email2)) { $fromaddr = $user->email2; } else { $r = $user->db->query("SELECT value FROM config WHERE name = 'fromaddress'"); $a = $user->db->fetchByAssoc($r); $fromddr = $a['value']; } } $ret['name'] = $fromName; $ret['email'] = $fromaddr; return $ret; } /** * returns opening setDefaultsInConfig(); } $userPref = $this->getPreference('email_link_type'); $defaultPref = $sugar_config['email_default_client']; if($userPref != '') { $client = $userPref; } else { $client = $defaultPref; } if($client == 'sugar') { $salutation = ''; $fullName = ''; $email = ''; $to_addrs_ids = ''; $to_addrs_names = ''; $to_addrs_emails = ''; if(!empty($focus->salutation)) $salutation = $focus->salutation; if(!empty($focus->first_name)) { $fullName = trim($salutation.' '.$focus->first_name.' '.$focus->last_name); } elseif(!empty($focus->name)) { $fullName = $focus->name; } if(empty($ret_module)) $ret_module = $focus->module_dir; if(empty($ret_id)) $ret_id = $focus->id; if($focus->object_name == 'Contact') { $contact_id = $focus->id; $to_addrs_ids = $focus->id; $to_addrs_names = $fullName; $to_addrs_emails = $focus->email1; } $emailLinkUrl = 'contact_id='.$contact_id. '&parent_type='.$focus->module_dir. '&parent_id='.$focus->id. '&parent_name='.urlencode($fullName). '&to_addrs_ids='.$to_addrs_ids. '&to_addrs_names='.urlencode($to_addrs_names). '&to_addrs_emails='.urlencode($to_addrs_emails). '&to_email_addrs='.urlencode($fullName . ' <' . $emailAddress . '>'). '&return_module='.$ret_module. '&return_action='.$ret_action. '&return_id='.$ret_id; //Generate the compose package for the quick create options. //$json = getJSONobj(); //$composeOptionsLink = $json->encode( array('composeOptionsLink' => $emailLinkUrl,'id' => $focus->id) ); require_once('modules/Emails/EmailUI.php'); $eUi = new EmailUI(); $j_quickComposeOptions = $eUi->generateComposePackageForQuickCreateFromComposeUrl($emailLinkUrl, true); $emailLink = ""; } else { // straight mailto: $emailLink = ''; } return $emailLink; } /** * returns opening setDefaultsInConfig(); } $userPref = $this->getPreference('email_link_type'); $defaultPref = $sugar_config['email_default_client']; if($userPref != '') { $client = $userPref; } else { $client = $defaultPref; } if($client == 'sugar') { $salutation = ''; $fullName = ''; $email = ''; $to_addrs_ids = ''; $to_addrs_names = ''; $to_addrs_emails = ''; if(!empty($focus->salutation)) $salutation = $focus->salutation; if(!empty($focus->first_name)) { $fullName = trim($salutation.' '.$focus->first_name.' '.$focus->last_name); } elseif(!empty($focus->name)) { $fullName = $focus->name; } if(!empty($focus->$attribute)) { $email = $focus->$attribute; } if(empty($ret_module)) $ret_module = $focus->module_dir; if(empty($ret_id)) $ret_id = $focus->id; if($focus->object_name == 'Contact') { $contact_id = $focus->id; $to_addrs_ids = $focus->id; $to_addrs_names = $fullName; $to_addrs_emails = $focus->email1; } $emailLinkUrl = 'contact_id='.$contact_id. '&parent_type='.$focus->module_dir. '&parent_id='.$focus->id. '&parent_name='.urlencode($fullName). '&to_addrs_ids='.$to_addrs_ids. '&to_addrs_names='.urlencode($to_addrs_names). '&to_addrs_emails='.urlencode($to_addrs_emails). '&to_email_addrs='.urlencode($fullName . ' <' . $email . '>'). '&return_module='.$ret_module. '&return_action='.$ret_action. '&return_id='.$ret_id; //Generate the compose package for the quick create options. require_once('modules/Emails/EmailUI.php'); $eUi = new EmailUI(); $j_quickComposeOptions = $eUi->generateComposePackageForQuickCreateFromComposeUrl($emailLinkUrl, true); $emailLink = ""; } else { // straight mailto: $emailLink = ''; } return $emailLink; } /** * gets a human-readable explanation of the format macro * @return string Human readable name format */ function getLocaleFormatDesc() { global $locale; global $mod_strings; global $app_strings; $format['f'] = $mod_strings['LBL_LOCALE_DESC_FIRST']; $format['l'] = $mod_strings['LBL_LOCALE_DESC_LAST']; $format['s'] = $mod_strings['LBL_LOCALE_DESC_SALUTATION']; $format['t'] = $mod_strings['LBL_LOCALE_DESC_TITLE']; $name['f'] = $app_strings['LBL_LOCALE_NAME_EXAMPLE_FIRST']; $name['l'] = $app_strings['LBL_LOCALE_NAME_EXAMPLE_LAST']; $name['s'] = $app_strings['LBL_LOCALE_NAME_EXAMPLE_SALUTATION']; $name['t'] = $app_strings['LBL_LOCALE_NAME_EXAMPLE_TITLE']; $macro = $locale->getLocaleFormatMacro(); $ret1 = ''; $ret2 = ''; for($i=0; $i"; $ret2 .= "".$name[$macro{$i}].""; } else { $ret1 .= $macro{$i}; $ret2 .= $macro{$i}; } } return $ret1."
".$ret2; } /* * * Here are the multi level admin access check functions. * */ /** * Helper function to remap some modules around ACL wise * * @return string */ protected function _fixupModuleForACL($module) { if($module=='ContractTypes') { $module = 'Contracts'; } if(preg_match('/Product[a-zA-Z]*/',$module)) { $module = 'Products'; } return $module; } /** * Helper function that enumerates the list of modules and checks if they are an admin/dev. * The code was just too similar to copy and paste. * * @return array */ protected function _getModulesForACL($type='dev'){ $isDev = $type=='dev'; $isAdmin = $type=='admin'; global $beanList; $myModules = array(); if (!is_array($beanList) ) { return $myModules; } // These modules don't take kindly to the studio trying to play about with them. static $ignoredModuleList = array('iFrames','Feeds','Home','Dashboard','Calendar','Activities','Reports'); $actions = ACLAction::getUserActions($this->id); foreach ($beanList as $module=>$val) { // Remap the module name $module = $this->_fixupModuleForACL($module); if (in_array($module,$myModules)) { // Already have the module in the list continue; } if (in_array($module,$ignoredModuleList)) { // You can't develop on these modules. continue; } $key = 'module'; if (($this->isAdmin() && isset($actions[$module][$key])) ) { $myModules[] = $module; } } return $myModules; } /** * Is this user a system wide admin * * @return bool */ public function isAdmin() { if(isset($this->is_admin) &&($this->is_admin == '1' || $this->is_admin === 'on')){ return true; } return false; } /** * Is this user a developer for any module * * @return bool */ public function isDeveloperForAnyModule() { if ($this->isAdmin()) { return true; } return false; } /** * List the modules a user has developer access to * * @return array */ public function getDeveloperModules() { static $developerModules; if (!isset($_SESSION[$this->user_name.'_get_developer_modules_for_user']) ) { $_SESSION[$this->user_name.'_get_developer_modules_for_user'] = $this->_getModulesForACL('dev'); } return $_SESSION[$this->user_name.'_get_developer_modules_for_user']; } /** * Is this user a developer for the specified module * * @return bool */ public function isDeveloperForModule($module) { if ($this->isAdmin()) { return true; } $devModules = $this->getDeveloperModules(); $module = $this->_fixupModuleForACL($module); if (in_array($module,$devModules) ) { return true; } return false; } /** * List the modules a user has admin access to * * @return array */ public function getAdminModules() { if (!isset($_SESSION[$this->user_name.'_get_admin_modules_for_user']) ) { $_SESSION[$this->user_name.'_get_admin_modules_for_user'] = $this->_getModulesForACL('admin'); } return $_SESSION[$this->user_name.'_get_admin_modules_for_user']; } /** * Is this user an admin for the specified module * * @return bool */ public function isAdminForModule($module) { if ($this->isAdmin()) { return true; } $adminModules = $this->getAdminModules(); $module = $this->_fixupModuleForACL($module); if (in_array($module,$adminModules) ) { return true; } return false; } /** * Whether or not based on the user's locale if we should show the last name first. * * @return bool */ public function showLastNameFirst(){ global $locale; $localeFormat = $locale->getLocaleFormatMacro($this); if ( strpos($localeFormat,'l') > strpos($localeFormat,'f') ) { return false; }else { return true; } } function create_new_list_query($order_by, $where,$filter=array(),$params=array(), $show_deleted = 0,$join_type='', $return_array = false,$parentbean=null, $singleSelect = false) { //call parent method, specifying for array to be returned $ret_array = parent::create_new_list_query($order_by, $where,$filter,$params, $show_deleted,$join_type, true,$parentbean, $singleSelect); //if this is being called from webservices, then run additional code if(!empty($GLOBALS['soap_server_object'])){ //if this is a single select, then secondary queries are being run that may result in duplicate rows being returned through the //left joins with meetings/tasks/call. We need to change the left joins to include a null check (bug 40250) if($singleSelect) { //retrieve the 'from' string and make lowercase for easier manipulation $left_str = strtolower($ret_array['from']); $lefts = explode('left join', $left_str); $new_left_str = ''; //explode on the left joins and process each one foreach($lefts as $ljVal){ //grab the join alias $onPos = strpos( $ljVal, ' on'); if($onPos === false){ $new_left_str .=' '.$ljVal.' '; continue; } $spacePos = strrpos(substr($ljVal, 0, $onPos),' '); $alias = substr($ljVal,$spacePos,$onPos-$spacePos); //add null check to end of the Join statement // Bug #46390 to use id_c field instead of id field for custom tables if(substr($alias, -5) != '_cstm') { $ljVal =' LEFT JOIN '.$ljVal.' and '.$alias.'.id is null '; } else { $ljVal =' LEFT JOIN '.$ljVal.' and '.$alias.'.id_c is null '; } //add statement into new string $new_left_str .= $ljVal; } //replace the old string with the new one $ret_array['from'] = $new_left_str; } } //return array or query string if($return_array) { return $ret_array; } return $ret_array['select'] . $ret_array['from'] . $ret_array['where']. $ret_array['order_by']; } }