Add php files
This commit is contained in:
356
modules/Import/ImportMap.php
Executable file
356
modules/Import/ImportMap.php
Executable file
@@ -0,0 +1,356 @@
|
||||
<?php
|
||||
if(!defined('sugarEntry') || !sugarEntry) die('Not A Valid Entry Point');
|
||||
/*********************************************************************************
|
||||
* SugarCRM is a customer relationship management program developed by
|
||||
* SugarCRM, Inc. Copyright (C) 2004-2010 SugarCRM Inc.
|
||||
*
|
||||
* 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. If the display of the logo is not reasonably feasible for
|
||||
* technical reasons, the Appropriate Legal Notices must display the words
|
||||
* "Powered by SugarCRM".
|
||||
********************************************************************************/
|
||||
/*********************************************************************************
|
||||
|
||||
* Description: Bean for import_map table
|
||||
* Portions created by SugarCRM are Copyright (C) SugarCRM, Inc.
|
||||
* All Rights Reserved.
|
||||
********************************************************************************/
|
||||
|
||||
|
||||
|
||||
class ImportMap extends SugarBean
|
||||
{
|
||||
/**
|
||||
* Fields in the table
|
||||
*/
|
||||
public $id;
|
||||
public $name;
|
||||
public $module;
|
||||
public $source;
|
||||
public $delimiter;
|
||||
public $enclosure;
|
||||
public $content;
|
||||
public $default_values;
|
||||
public $has_header;
|
||||
public $deleted;
|
||||
public $date_entered;
|
||||
public $date_modified;
|
||||
public $assigned_user_id;
|
||||
public $is_published;
|
||||
|
||||
/**
|
||||
* Set the default settings from Sugarbean
|
||||
*/
|
||||
public $table_name = "import_maps";
|
||||
public $object_name = "ImportMap";
|
||||
public $module_dir = 'Import';
|
||||
public $new_schema = true;
|
||||
public $column_fields = array(
|
||||
"id",
|
||||
"name",
|
||||
"module",
|
||||
"source",
|
||||
"enclosure",
|
||||
"delimiter",
|
||||
"content",
|
||||
"has_header",
|
||||
"deleted",
|
||||
"date_entered",
|
||||
"date_modified",
|
||||
"assigned_user_id",
|
||||
"is_published",
|
||||
);
|
||||
|
||||
/**
|
||||
* Constructor
|
||||
*/
|
||||
public function __construct()
|
||||
{
|
||||
parent::SugarBean();
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns an array with the field mappings
|
||||
*
|
||||
* @return array
|
||||
*/
|
||||
public function getMapping()
|
||||
{
|
||||
$mapping_arr = array();
|
||||
if ( !empty($this->content) )
|
||||
{
|
||||
$pairs = explode("&",$this->content);
|
||||
foreach ($pairs as $pair){
|
||||
list($name,$value) = explode("=",$pair);
|
||||
$mapping_arr[trim($name)] = $value;
|
||||
}
|
||||
}
|
||||
|
||||
return $mapping_arr;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets $content with the mapping given
|
||||
*
|
||||
* @param string $mapping_arr
|
||||
*/
|
||||
public function setMapping(
|
||||
$mapping_arr
|
||||
)
|
||||
{
|
||||
$output = array ();
|
||||
foreach ($mapping_arr as $key => $item) {
|
||||
$output[] = "$key=$item";
|
||||
}
|
||||
$this->content = implode("&", $output);
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns an array with the default field values
|
||||
*
|
||||
* @return array
|
||||
*/
|
||||
public function getDefaultValues()
|
||||
{
|
||||
$defa_arr = array();
|
||||
if ( !empty($this->default_values) )
|
||||
{
|
||||
$pairs = explode("&",$this->default_values);
|
||||
foreach ($pairs as $pair){
|
||||
list($name,$value) = explode("=",$pair);
|
||||
$defa_arr[trim($name)] = $value;
|
||||
}
|
||||
}
|
||||
|
||||
return $defa_arr;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets $default_values with the default values given
|
||||
*
|
||||
* @param string $defa_arr
|
||||
*/
|
||||
public function setDefaultValues(
|
||||
$defa_arr
|
||||
)
|
||||
{
|
||||
$output = array ();
|
||||
foreach ($defa_arr as $key => $item) {
|
||||
$output[] = "$key=$item";
|
||||
}
|
||||
$this->default_values = implode("&", $output);
|
||||
}
|
||||
|
||||
/**
|
||||
* @see SugarBean::retrieve()
|
||||
*/
|
||||
public function retrieve($id = -1, $encode=true,$deleted=true)
|
||||
{
|
||||
$returnVal = parent::retrieve($id,$encode,$deleted);
|
||||
|
||||
if ( !($returnVal instanceOf $this) ) {
|
||||
return $returnVal;
|
||||
}
|
||||
|
||||
if ( $this->source == 'tab' && $this->delimiter == '' ) {
|
||||
$this->delimiter = "\t";
|
||||
}
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Save
|
||||
*
|
||||
* @param string $owner_id
|
||||
* @param string $name
|
||||
* @param string $module
|
||||
* @param string $source
|
||||
* @param string $has_header
|
||||
* @param string $delimiter
|
||||
* @param string $enclosure
|
||||
* @return bool
|
||||
*/
|
||||
public function save(
|
||||
$owner_id,
|
||||
$name,
|
||||
$module,
|
||||
$source,
|
||||
$has_header,
|
||||
$delimiter,
|
||||
$enclosure
|
||||
)
|
||||
{
|
||||
$olddefault_values = $this->default_values;
|
||||
$oldcontent = $this->content;
|
||||
|
||||
$this->retrieve_by_string_fields(
|
||||
array(
|
||||
'assigned_user_id'=>$owner_id,
|
||||
'name'=>$name),
|
||||
false
|
||||
);
|
||||
|
||||
// Bug 23354 - Make sure enclosure gets saved as an empty string if
|
||||
// it is an empty string, instead of as a null
|
||||
if ( strlen($enclosure) <= 0 ) $enclosure = ' ';
|
||||
|
||||
$this->assigned_user_id = $owner_id;
|
||||
$this->name = $name;
|
||||
$this->source = $source;
|
||||
$this->module = $module;
|
||||
$this->delimiter = $delimiter;
|
||||
$this->enclosure = $enclosure;
|
||||
$this->has_header = $has_header;
|
||||
$this->deleted = 0;
|
||||
$this->default_values = $olddefault_values;
|
||||
$this->content = $oldcontent;
|
||||
parent::save();
|
||||
|
||||
// Bug 29365 - The enclosure character isn't saved correctly if it's a tab using MssqlManager, so resave it
|
||||
if ( $enclosure == '\\t' && $this->db instanceOf MssqlManager ) {
|
||||
$this->enclosure = $enclosure;
|
||||
parent::save();
|
||||
}
|
||||
|
||||
return 1;
|
||||
}
|
||||
|
||||
/**
|
||||
* Checks to see if the user owns this mapping or is an admin first
|
||||
* If true, then call parent function
|
||||
*
|
||||
* @param $id
|
||||
*/
|
||||
public function mark_deleted(
|
||||
$id
|
||||
)
|
||||
{
|
||||
global $current_user;
|
||||
|
||||
if ( !is_admin($current_user) ) {
|
||||
$other_map = new ImportMap();
|
||||
$other_map->retrieve_by_string_fields(array('id'=> $id), false);
|
||||
|
||||
if ( $other_map->assigned_user_id != $current_user->id )
|
||||
return false;
|
||||
}
|
||||
|
||||
return parent::mark_deleted($id);
|
||||
}
|
||||
|
||||
/**
|
||||
* Mark an import map as published
|
||||
*
|
||||
* @param string $user_id
|
||||
* @param bool $flag true if we are publishing or false if we are unpublishing
|
||||
* @return bool
|
||||
*/
|
||||
public function mark_published(
|
||||
$user_id,
|
||||
$flag
|
||||
)
|
||||
{
|
||||
global $current_user;
|
||||
|
||||
if ( !is_admin($current_user) )
|
||||
return false;
|
||||
|
||||
// check for problems
|
||||
if ($flag) {
|
||||
// if you are trying to publish your map
|
||||
// but there's another published map
|
||||
// by the same name
|
||||
$query_arr = array(
|
||||
'name' =>$this->name,
|
||||
'is_published' =>'yes'
|
||||
);
|
||||
}
|
||||
else {
|
||||
// if you are trying to unpublish a map
|
||||
// but you own an unpublished map by the same name
|
||||
$query_arr = array(
|
||||
'name' => $this->name,
|
||||
'assigned_user_id' => $user_id,
|
||||
'is_published' => 'no'
|
||||
);
|
||||
}
|
||||
$other_map = new ImportMap();
|
||||
$other_map->retrieve_by_string_fields($query_arr, false);
|
||||
|
||||
// if we find this other map, quit
|
||||
if ( isset($other_map->id) )
|
||||
return false;
|
||||
|
||||
// otherwise update the is_published flag
|
||||
$query = "UPDATE $this->table_name
|
||||
SET is_published = '". ($flag?'yes':'no') . "',
|
||||
assigned_user_id = '$user_id'
|
||||
WHERE id = '{$this->id}'";
|
||||
|
||||
$this->db->query($query,true,"Error marking import map published: ");
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
/**
|
||||
* Similar to retrieve_by_string_fields, but returns multiple objects instead of just one.
|
||||
*
|
||||
* @param array $fields_array
|
||||
* @return array $obj_arr
|
||||
*/
|
||||
public function retrieve_all_by_string_fields(
|
||||
$fields_array
|
||||
)
|
||||
{
|
||||
$query = "SELECT *
|
||||
FROM {$this->table_name}
|
||||
" . $this->get_where($fields_array);
|
||||
|
||||
$result = $this->db->query($query,true," Error: ");
|
||||
$obj_arr = array();
|
||||
|
||||
while ($row = $this->db->fetchByAssoc($result,-1,FALSE) ) {
|
||||
$focus = new ImportMap();
|
||||
|
||||
foreach($this->column_fields as $field) {
|
||||
if(isset($row[$field])) {
|
||||
$focus->$field = $row[$field];
|
||||
}
|
||||
}
|
||||
$focus->fill_in_additional_detail_fields();
|
||||
$obj_arr[]=$focus;
|
||||
}
|
||||
|
||||
return $obj_arr;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
?>
|
||||
Reference in New Issue
Block a user