mirror of
https://github.com/salesagility/SuiteCRM.git
synced 2024-11-21 23:47:57 +00:00
253 lines
7.8 KiB
PHP
Executable File
253 lines
7.8 KiB
PHP
Executable File
<?php
|
|
if (!defined('sugarEntry') || !sugarEntry) {
|
|
die('Not A Valid Entry Point');
|
|
}
|
|
/**
|
|
*
|
|
* SugarCRM Community Edition is a customer relationship management program developed by
|
|
* SugarCRM, Inc. Copyright (C) 2004-2013 SugarCRM Inc.
|
|
*
|
|
* SuiteCRM is an extension to SugarCRM Community Edition developed by SalesAgility Ltd.
|
|
* Copyright (C) 2011 - 2018 SalesAgility Ltd.
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify it under
|
|
* the terms of the GNU Affero General Public License version 3 as published by the
|
|
* Free Software Foundation with the addition of the following permission added
|
|
* to Section 15 as permitted in Section 7(a): FOR ANY PART OF THE COVERED WORK
|
|
* IN WHICH THE COPYRIGHT IS OWNED BY SUGARCRM, SUGARCRM DISCLAIMS THE WARRANTY
|
|
* OF NON INFRINGEMENT OF THIRD PARTY RIGHTS.
|
|
*
|
|
* This program is distributed in the hope that it will be useful, but WITHOUT
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
|
* FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more
|
|
* details.
|
|
*
|
|
* You should have received a copy of the GNU Affero General Public License along with
|
|
* this program; if not, see http://www.gnu.org/licenses or write to the Free
|
|
* Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
|
|
* 02110-1301 USA.
|
|
*
|
|
* You can contact SugarCRM, Inc. headquarters at 10050 North Wolfe Road,
|
|
* SW2-130, Cupertino, CA 95014, USA. or at email address contact@sugarcrm.com.
|
|
*
|
|
* The interactive user interfaces in modified source and object code versions
|
|
* of this program must display Appropriate Legal Notices, as required under
|
|
* Section 5 of the GNU Affero General Public License version 3.
|
|
*
|
|
* In accordance with Section 7(b) of the GNU Affero General Public License version 3,
|
|
* these Appropriate Legal Notices must retain the display of the "Powered by
|
|
* SugarCRM" logo and "Supercharged by SuiteCRM" logo. If the display of the logos is not
|
|
* reasonably feasible for technical reasons, the Appropriate Legal Notices must
|
|
* display the words "Powered by SugarCRM" and "Supercharged by SuiteCRM".
|
|
*/
|
|
|
|
/**
|
|
|
|
* Description: Bean class for the users_last_import table
|
|
* Portions created by SugarCRM are Copyright (C) SugarCRM, Inc.
|
|
* All Rights Reserved.
|
|
*/
|
|
|
|
|
|
require_once('modules/Import/Forms.php');
|
|
|
|
#[\AllowDynamicProperties]
|
|
class UsersLastImport extends SugarBean
|
|
{
|
|
/**
|
|
* Fields in the table
|
|
*/
|
|
public $id;
|
|
public $assigned_user_id;
|
|
public $import_module;
|
|
public $bean_type;
|
|
public $bean_id;
|
|
public $deleted;
|
|
|
|
/**
|
|
* Set the default settings from Sugarbean
|
|
*/
|
|
public $module_dir = 'Import';
|
|
public $table_name = "users_last_import";
|
|
public $object_name = "UsersLastImport";
|
|
public $disable_custom_fields = true;
|
|
public $column_fields = array(
|
|
"id",
|
|
"assigned_user_id",
|
|
"bean_type",
|
|
"bean_id",
|
|
"deleted"
|
|
);
|
|
public $new_schema = true;
|
|
public $additional_column_fields = array();
|
|
|
|
/**
|
|
* Constructor
|
|
*/
|
|
public function __construct()
|
|
{
|
|
parent::__construct();
|
|
}
|
|
|
|
/**
|
|
* Extends SugarBean::listviewACLHelper
|
|
*
|
|
* @return array
|
|
*/
|
|
public function listviewACLHelper()
|
|
{
|
|
$array_assign = parent::listviewACLHelper();
|
|
$is_owner = false;
|
|
if (!ACLController::moduleSupportsACL('Accounts')
|
|
|| ACLController::checkAccess('Accounts', 'view', $is_owner)) {
|
|
$array_assign['ACCOUNT'] = 'a';
|
|
} else {
|
|
$array_assign['ACCOUNT'] = 'span';
|
|
}
|
|
return $array_assign;
|
|
}
|
|
|
|
/**
|
|
* Delete all the records for a particular user
|
|
*
|
|
* @param string $user_id user id of the user doing the import
|
|
*/
|
|
public function mark_deleted_by_user_id($user_id)
|
|
{
|
|
$query = "DELETE FROM $this->table_name WHERE assigned_user_id = '$user_id'";
|
|
$this->db->query($query, true, "Error marking last imported records deleted: ");
|
|
}
|
|
|
|
/**
|
|
* Undo a single record
|
|
*
|
|
* @param string $id specific users_last_import id to undo
|
|
*/
|
|
public function undoById($id)
|
|
{
|
|
global $current_user;
|
|
|
|
$query1 = "SELECT bean_id, bean_type FROM users_last_import WHERE assigned_user_id = '$current_user->id'
|
|
AND id = '$id' AND deleted=0";
|
|
|
|
$result1 = $this->db->query($query1);
|
|
if (!$result1) {
|
|
return false;
|
|
}
|
|
|
|
while ($row1 = $this->db->fetchByAssoc($result1)) {
|
|
$this->_deleteRecord($row1['bean_id'], $row1['bean_type']);
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
/**
|
|
* Undo an import
|
|
*
|
|
* @param string $module module being imported into
|
|
*/
|
|
public function undo($module)
|
|
{
|
|
global $current_user;
|
|
|
|
$query1 = "SELECT bean_id, bean_type FROM users_last_import WHERE assigned_user_id = '$current_user->id'
|
|
AND import_module = '$module' AND deleted=0";
|
|
|
|
$result1 = $this->db->query($query1);
|
|
if (!$result1) {
|
|
return false;
|
|
}
|
|
|
|
while ($row1 = $this->db->fetchByAssoc($result1)) {
|
|
$this->_deleteRecord($row1['bean_id'], $row1['bean_type']);
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
/**
|
|
* Deletes a record in a bean
|
|
*
|
|
* @param $bean_id
|
|
* @param $module
|
|
*/
|
|
protected function _deleteRecord($bean_id, $module)
|
|
{
|
|
static $focus;
|
|
|
|
// load bean
|
|
if (!($focus instanceof $module)) {
|
|
require_once($GLOBALS['beanFiles'][$module]);
|
|
$focus = new $module;
|
|
}
|
|
|
|
$focus->mark_relationships_deleted($bean_id);
|
|
|
|
$result = $this->db->query(
|
|
"DELETE FROM {$focus->table_name}
|
|
WHERE id = '{$bean_id}'"
|
|
);
|
|
if (!$result) {
|
|
return false;
|
|
}
|
|
// Bug 26318: Remove all created e-mail addresses ( from jchi )
|
|
$result2 = $this->db->query(
|
|
"SELECT email_address_id
|
|
FROM email_addr_bean_rel
|
|
WHERE email_addr_bean_rel.bean_id='{$bean_id}'
|
|
AND email_addr_bean_rel.bean_module='{$focus->module_dir}'"
|
|
);
|
|
$this->db->query(
|
|
"DELETE FROM email_addr_bean_rel
|
|
WHERE email_addr_bean_rel.bean_id='{$bean_id}'
|
|
AND email_addr_bean_rel.bean_module='{$focus->module_dir}'"
|
|
);
|
|
|
|
while ($row2 = $this->db->fetchByAssoc($result2)) {
|
|
if (!$this->db->getOne(
|
|
"SELECT email_address_id
|
|
FROM email_addr_bean_rel
|
|
WHERE email_address_id = '{$row2['email_address_id']}'"
|
|
)) {
|
|
$this->db->query(
|
|
"DELETE FROM email_addresses
|
|
WHERE id = '{$row2['email_address_id']}'"
|
|
);
|
|
}
|
|
}
|
|
|
|
if ($focus->hasCustomFields()) {
|
|
$this->db->query(
|
|
"DELETE FROM {$focus->table_name}_cstm
|
|
WHERE id_c = '{$bean_id}'"
|
|
);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Get a list of bean types created in the import
|
|
*
|
|
* @param string $module module being imported into
|
|
*/
|
|
public static function getBeansByImport($module)
|
|
{
|
|
global $current_user;
|
|
|
|
$query1 = "SELECT DISTINCT bean_type FROM users_last_import WHERE assigned_user_id = '$current_user->id'
|
|
AND import_module = '$module' AND deleted=0";
|
|
|
|
$result1 = DBManagerFactory::getInstance()->query($query1);
|
|
if (!$result1) {
|
|
return array($module);
|
|
}
|
|
|
|
$returnarray = array();
|
|
while ($row1 = DBManagerFactory::getInstance()->fetchByAssoc($result1)) {
|
|
$returnarray[] = $row1['bean_type'];
|
|
}
|
|
|
|
return $returnarray;
|
|
}
|
|
}
|