Files
roi-theme/wp-content/plugins/wp-ultimate-csv-importer/importExtensions/JetEngineCCTImport.php
root a22573bf0b Commit inicial - WordPress Análisis de Precios Unitarios
- WordPress core y plugins
- Tema Twenty Twenty-Four configurado
- Plugin allow-unfiltered-html.php simplificado
- .gitignore configurado para excluir wp-config.php y uploads

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-03 21:04:30 -06:00

453 lines
17 KiB
PHP
Executable File

<?php
/******************************************************************************************
* Copyright (C) Smackcoders. - All Rights Reserved under Smackcoders Proprietary License
* Unauthorized copying of this file, via any medium is strictly prohibited
* Proprietary and confidential
* You can contact Smackcoders at email address info@smackcoders.com.
*******************************************************************************************/
namespace Smackcoders\FCSV;
if ( ! defined( 'ABSPATH' ) )
exit; // Exit if accessed directly
class JetEngineCCTImport {
private static $instance = null;
public static function getInstance() {
if (JetEngineCCTImport::$instance == null) {
JetEngineCCTImport::$instance = new JetEngineCCTImport;
}
return JetEngineCCTImport::$instance;
}
function set_jet_engine_cct_values($header_array ,$value_array , $map, $post_id , $type , $mode, $hash_key,$line_number){
$post_values = [];
$helpers_instance = ImportHelpers::getInstance();
$post_values = $helpers_instance->get_header_values($map , $header_array , $value_array);
$this->jet_engine_cct_import_function($post_values,$type, $post_id, $mode, $hash_key,$line_number,$header_array,$value_array);
}
public function jet_engine_cct_import_function($data_array, $type, $pID ,$mode, $hash_key,$line_number,$header_array,$value_array)
{
global $wpdb;
$helpers_instance = ImportHelpers::getInstance();
$media_instance = MediaHandling::getInstance();
$table_names = 'jet_cct_'.$type;
$single_post_id = $data_array['cct_single_post_id'];
$get_results = $wpdb->get_results("SELECT cct_status FROM {$wpdb->prefix}$table_names WHERE _ID = $pID ");
$listTaxonomy = get_taxonomies();
if (in_array($type, $listTaxonomy)) {
$get_import_type = 'termcct';
}elseif ($type == 'Users' || $type == 'user') {
$get_import_type = 'usercct';
}elseif ($type == 'Comments') {
$get_import_type = 'commentcct';
} else {
$get_import_type = 'postcct';
}
if(empty($get_results)){
return;
}
$jet_data = $this->JetEngineCCTFields($type);
$get_gallery_id = $gallery_ids = '';
foreach ($data_array as $dkey => $dvalue) {
if(array_key_exists($dkey,$jet_data['JECCT'])){
if($jet_data['JECCT'][$dkey]['type'] == 'text' ||$jet_data['JECCT'][$dkey]['type'] == 'textarea'
|| $jet_data['JECCT'][$dkey]['type'] == 'colorpicker' || $jet_data['JECCT'][$dkey]['type'] == 'iconpicker'
|| $jet_data['JECCT'][$dkey]['type'] == 'radio' || $jet_data['JECCT'][$dkey]['type'] == 'number'
|| $jet_data['JECCT'][$dkey]['type'] == 'wysiwyg' || $jet_data['JECCT'][$dkey]['type'] == 'switcher'){
$dvalue = preg_replace('/\s+/', ' ', $dvalue);
// Minify the HTML content
$dvalue = trim($dvalue);
$darray[$jet_data['JECCT'][$dkey]['name']] = $dvalue;
}
elseif($jet_data['JECCT'][$dkey]['type'] == 'date'){
$dateformat = 'Y-m-d';
if(!empty($dvalue)){
$var = trim($dvalue);
$date = str_replace('/', '-', "$var");
if($jet_data['JECCT'][$dkey]['is_timestamp']){
if(is_numeric($date)){
$date_of = $date;
}
else{
$date_of = strtotime($date);
}
}else{
$date_of = $helpers_instance->validate_datefield($var,$dkey,$dateformat,$line_number);
}
$darray[$jet_data['JECCT'][$dkey]['name']] = $date_of;
}
else{
$darray[$jet_data['JECCT'][$dkey]['name']] = '';
}
}
elseif($jet_data['JECCT'][$dkey]['type'] == 'gallery' || $jet_data['JECCT'][$dkey]['type'] == 'media'){
$gallery_ids ='';
$media_ids = '';
$media_id='';
$dselect='';
$exploded_gallery_items = explode( ',', $dvalue );
$galleryvalue=array();
$shortcode_table = $wpdb->prefix . "ultimate_csv_importer_shortcode_manager";
$indexs = 0;
foreach ( $exploded_gallery_items as $gallery ) {
$gallery = trim( $gallery );
if ( preg_match_all( '/\b(?:(?:https?|ftp|file):\/\/|www\.|ftp\.)[-A-Z0-9+&@#\/%=~_|$?!:,.]*[A-Z0-9+&@#\/%=~_|$]/i', $gallery ) ) {
$field_name = $jet_data['JECCT'][$dkey]['name'];
$field_type = $jet_data['JECCT'][$dkey]['type'];
$plugin = 'jetengine_'.$field_type;
$imgformat = $jet_data['JECCT'][$dkey]['value_format'];
$media_instance->store_image_ids($i=1);
$get_gallery_id = $media_instance->image_meta_table_entry($line_number,$data_array, $pID, $field_name,$gallery, $hash_key, $plugin,'','','',$header_array, $value_array,$imgformat,'',$indexs);
if ( $get_gallery_id != '' ) {
if($jet_data['JECCT'][$dkey]['type'] == 'media'){
$media_ids .= $get_gallery_id. ',';
}
elseif($jet_data['JECCT'][$dkey]['value_format'] == 'url'){
$get_gallery_fields = $wpdb->get_results("select meta_value from {$wpdb->prefix}postmeta where post_id=$get_gallery_id and meta_key ='_wp_attached_file'");
$dir = wp_upload_dir();
$gallery_ids .= $dir ['baseurl'] . '/' .$get_gallery_fields[0]->meta_value. ',';
}
elseif($jet_data['JECCT'][$dkey]['value_format'] == 'both'){
$gallery_id1 ['id']= $get_gallery_id;
$get_gallery_fields = $wpdb->get_results("select meta_value from {$wpdb->prefix}postmeta where post_id=$get_gallery_id and meta_key ='_wp_attached_file'");
$dir = wp_upload_dir();
$gallery_id2['url']= $dir ['baseurl'] . '/' .$get_gallery_fields[0]->meta_value;
$galleryvalue[] = array_merge($gallery_id1,$gallery_id2);
$gallery_ids=$galleryvalue;
}
else{
$gallery_ids .= $get_gallery_id.',';
}
}
} else {
$galleryLen = strlen( $gallery );
$checkgalleryid = intval( $gallery );
$verifiedGalleryLen = strlen( $checkgalleryid );
if ( $galleryLen == $verifiedGalleryLen ) {
if($jet_data['JECCT'][$dkey]['type'] == 'media'){
$media_ids .= $gallery. ',';
}
else{
$gallery_ids .= $gallery. ',';
}
}
}
$indexs++;
}
if(is_array($gallery_ids)){
$gallery_id = $gallery_ids;
}
if (!is_array($gallery_ids)) {
$gallery_id = rtrim($gallery_ids,',');
}
if(isset($media_ids)){
$media_id = rtrim($media_ids,',');
}
if($jet_data['JECCT'][$dkey]['value_format'] == 'url'){
$get_media_fields = $wpdb->get_results("select meta_value from {$wpdb->prefix}postmeta where post_id=$media_id and meta_key ='_wp_attached_file'");
$dir = wp_upload_dir();
if(!empty($get_media_fields[0]->meta_value)){
$media_id = $dir ['baseurl'] . '/' .$get_media_fields[0]->meta_value;
}
else{
$media_id='';
}
}
elseif($jet_data['JECCT'][$dkey]['value_format'] == 'both'){
if ( $media_id != '' ) {
$media_ids1['id']=$media_id;
$get_media_fields = $wpdb->get_results("select meta_value from {$wpdb->prefix}postmeta where post_id=$media_id and meta_key ='_wp_attached_file'");
$dir = wp_upload_dir();
if(!empty($get_media_fields[0]->meta_value)){
$media_ids2['url'] = $dir ['baseurl'] . '/' .$get_media_fields[0]->meta_value;
}
else{
$media_ids2['url']='';
}
$mediavalue= array_merge($media_ids1,$media_ids2);
$media_id=array($mediavalue);
}
}
else{
$media_id=$media_id;
}
if($jet_data['JECCT'][$dkey]['type'] == 'media'){
$darray[$jet_data['JECCT'][$dkey]['name']] = $media_id;
}
else{
$darray[$jet_data['JECCT'][$dkey]['name']] = $gallery_id;
}
}
elseif($jet_data['JECCT'][$dkey]['type'] == 'datetime-local'){
$dateformat = 'Y-m-d\TH:m';
if(!empty($dvalue)) {
$dt_var = trim($dvalue);
$datetime = str_replace('/', '-', "$dt_var");
if($jet_data['JECCT'][$dkey]['is_timestamp']){
if(is_numeric($datetime)){
$date_time_of = $datetime;
}
else{
$date_time_of = strtotime($datetime);
}
}else{
$date_time_of = $helpers_instance->validate_datefield($dt_var,$dkey,$dateformat,$line_number);
}
$darray[$jet_data['JECCT'][$dkey]['name']] = $date_time_of;
}
else {
$darray[$jet_data['JECCT'][$dkey]['name']] = '';
}
}
elseif($jet_data['JECCT'][$dkey]['type'] == 'time'){
$var = trim($dvalue);
$time = date('H:i', strtotime($var));
$darray[$jet_data['JECCT'][$dkey]['name']] = $time;
}
elseif($jet_data['JECCT'][$dkey]['type'] == 'checkbox'){
if($jet_data['JECCT'][$dkey]['is_array'] == 1){
$dvalexp = explode(',' , $dvalue);
$darray[$jet_data['JECCT'][$dkey]['name']] = $dvalexp;
}
else{
$options = $jet_data['JECCT'][$dkey]['options'];
$arr = [];
$opt = [];
$dvalexp = explode(',' , $dvalue);
foreach($options as $option_key => $option_val){
//$opt[$option_key] = $option_val['key'];
$arr[$option_val['key']] = 'false';
}
foreach($dvalexp as $dvalkey => $dvalueval){
$dvalueval = trim($dvalueval);
$keys = array_keys($arr);
foreach($keys as $keys1){
if($dvalueval == $keys1){
$arr[$keys1] = 'true';
}
}
//added new checkbox values
if(!in_array($dvalueval, $keys)){
$get_meta_fields = $wpdb->get_results("SELECT id, meta_fields from {$wpdb->prefix}jet_post_types where slug = '$type' and status = 'content-type'");
if(isset($get_meta_fields[0])){
$unserialized_meta = maybe_unserialize($get_meta_fields[0]->meta_fields);
$jet_engine_id = $get_meta_fields[0]->id;
if(!empty($unserialized_meta)){
foreach($unserialized_meta as $jet_keys => $jet_values){
$count_jetvalues = 0;
if($jet_values['type'] == 'checkbox' && $jet_values['name'] == $dkey){
$count_jetvalues = count($jet_values['options']);
$unserialized_meta[$jet_keys]['options'][$count_jetvalues]['key'] = $dvalueval;
$unserialized_meta[$jet_keys]['options'][$count_jetvalues]['value'] = $dvalueval;
$unserialized_meta[$jet_keys]['options'][$count_jetvalues]['id'] = $jet_values['options'][$count_jetvalues - 1]['id'] + 1;
}
}
$serialized_meta = serialize($unserialized_meta);
$wpdb->update( $wpdb->prefix . 'jet_post_types' ,
array(
'meta_fields' => $serialized_meta,
) ,
array(
'id' => $jet_engine_id
)
);
$arr[$dvalueval] = 'true';
}
}
}
}
$check_val=serialize($arr);
$darray[$jet_data['JECCT'][$dkey]['name']] = $check_val;
}
}
elseif($jet_data['JECCT'][$dkey]['type'] == 'select'){
$dselect = [];
if($jet_data['JECCT'][$dkey]['is_multiple'] == 0 || empty($jet_data['JECCT'][$dkey]['is_multiple'])){
$darray[$jet_data['JECCT'][$dkey]['name']] = $dvalue;
}
else{
$exp = explode(',',$dvalue);
foreach($exp as $exp_values){
$dselect[] = trim($exp_values);
}
//$dselect = $exp;
$darray[$jet_data['JECCT'][$dkey]['name']] = $dselect;
}
}
elseif($jet_data['JECCT'][$dkey]['type'] == 'posts'){
if($jet_data['JECCT'][$dkey]['is_multiple'] == 0){
//$jet_posts = $wpdb->_real_escape($jet_posts);
if(is_numeric($dvalue)) {
$jet_post_values=$dvalue;
$darray[$jet_data['JECCT'][$dkey]['name']] = $jet_post_values;
}
else{
$jet_posts = trim($dvalue);
$query = "SELECT id FROM {$wpdb->prefix}posts WHERE post_title ='{$jet_posts}' AND post_status='publish'";
$name = $wpdb->get_results($query);
if (!empty($name)) {
$jet_posts_values=$name[0]->id;
}
$darray[$jet_data['JECCT'][$dkey]['name']] = $jet_posts_values;
}
}
else{
$jet_posts_exp = explode(',',trim($dvalue));
$jet_posts_value = array();
$jet_posts_field_value = array();
foreach($jet_posts_exp as $jet_posts_value){
$jet_posts_value = trim($jet_posts_value);
if(is_numeric($jet_posts_value)){
$jet_posts_field_value[]=$jet_posts_value;
}
else{
if(!empty($jet_posts_value)){
$query = "SELECT id FROM {$wpdb->prefix}posts WHERE post_title ='{$jet_posts_value}' AND post_status='publish' ORDER BY ID DESC";
$multiple_id = $wpdb->get_results($query);
$multiple_id[0] = isset($multiple_id[0]) ? $multiple_id[0] : '';
$multiple_ids =$multiple_id[0];
if(!$multiple_id){
$jet_posts_field_value[]=$jet_posts_value;
}
else{
$jet_posts_field_value[]=trim($multiple_ids->id);
}
}
}
}
$jet_posts_value=serialize($jet_posts_field_value);
$darray[$jet_data['JECCT'][$dkey]['name']] = $jet_posts_value;
}
}
else{
if($jet_data['JECCT'][$dkey]['type'] != 'repeater'){
$darray[$jet_data['JECCT'][$dkey]['name']] = $dvalue;
}
}
// html
}
}
$darray['cct_modified']= date("Y-m-d\TH:i");
$table_name = 'jet_cct_'.$type;
if($darray){
$dataArray = [];
$key_name = '';
$data_values = '';
foreach($darray as $mkey => $mval){
if(is_array($mval)){
$darray[$mkey] = serialize($mval);
}
}
$wpdb->update($wpdb->prefix.'jet_cct_'.$type,
$darray,
array( '_ID' => $pID)
);
}
$getarg = $wpdb->get_results("SELECT args from {$wpdb->prefix}jet_post_types where slug = '$type' and status = 'content-type'",ARRAY_A);
foreach($getarg as $key => $value){
$arg_data = $value['args'];
break;
}
$arg_data = unserialize($arg_data);
if(!empty($arg_data) && array_key_exists('has_single',$arg_data) && $arg_data['has_single']){
$this->set_has_single($arg_data,$darray,$type,$pID,$mode,$single_post_id);
}
}
public function JetEngineCCTFields($type){
global $wpdb;
$jet_field = array();
$get_meta_fields = $wpdb->get_results($wpdb->prepare("select id, meta_fields from {$wpdb->prefix}jet_post_types where slug = %s and status = %s", $type, 'content-type'));
$unserialized_meta = maybe_unserialize($get_meta_fields[0]->meta_fields);
foreach($unserialized_meta as $jet_key => $jet_value){
$customFields["JECCT"][ $jet_value['name']]['label'] = $jet_value['title'];
$customFields["JECCT"][ $jet_value['name']]['name'] = $jet_value['name'];
$customFields["JECCT"][ $jet_value['name']]['type'] = $jet_value['type'];
$customFields["JECCT"][ $jet_value['name']]['options'] = isset($jet_value['options']) ? $jet_value['options'] : '';
$customFields["JECCT"][ $jet_value['name']]['is_multiple'] = isset($jet_value['is_multiple']) ? $jet_value['is_multiple'] : '';
$customFields["JECCT"][ $jet_value['name']]['is_array'] = isset($jet_value['is_array']) ? $jet_value['is_array'] : '';
$customFields["JECCT"][ $jet_value['name']]['value_format'] = isset($jet_value['value_format']) ? $jet_value['value_format'] : '';
if($jet_value['type'] == 'date' || $jet_value['type'] == 'datetime-local'){
$customFields["JECCT"][ $jet_value['name']]['is_timestamp'] = isset($jet_value['is_timestamp']) ? $jet_value['is_timestamp'] : '';
}
$jet_field[] = $jet_value['name'];
}
return $customFields;
}
function set_has_single($data,$field_data,$type,$pID,$mode,$single_post_id){
$title_field = $content_field = "";
$relation_title = $relation_content = "";
if(array_key_exists('related_post_type',$data)){
$relation_type = $data['related_post_type'];
if(array_key_exists('related_post_type_title',$data)){
$title_field = $data['related_post_type_title'];
}
if(array_key_exists('related_post_type_content',$data)){
$content_field = $data['related_post_type_content'];
}
}
if(array_key_exists($title_field,$field_data)){
$relation_title = $field_data[$title_field];
}
if(array_key_exists($content_field,$field_data)){
$relation_content = $field_data[$content_field];
}
$this->create_interrelation($relation_title,$relation_content,$type,$relation_type,$pID,$mode,$single_post_id);
}
function create_interrelation($title,$content,$type,$relation_type,$pID,$mode,$single_post_id){
global $wpdb;
$data_array['post_title'] = $title;
$data_array['post_content'] = $content;
$data_array['post_status'] = 'publish';
$data_array['post_name'] = str_replace(" ","-",$title);
$data_array['post_date'] = current_time('Y-m-d H:i:s');
$data_array['post_type'] = $relation_type;
if($mode == 'Insert'){
$post_id = wp_insert_post($data_array);
}
if(!empty($post_id)){
$wpdb->update( $wpdb->prefix . 'jet_cct_'.$type ,
array(
'cct_single_post_id' => $post_id,
) ,
array(
'_ID' => $pID
)
);
}
}
}