HEX
Server: Apache
System: Linux sg241.singhost.net 2.6.32-896.16.1.lve1.4.51.el6.x86_64 #1 SMP Wed Jan 17 13:19:23 EST 2018 x86_64
User: honghock (909)
PHP: 8.0.30
Disabled: passthru,system,shell_exec,show_source,exec,popen,proc_open
Upload Files
File: /home/honghock/public_html/wp-content/plugins/ninja-tables/app/Traits/ImportTrait.php
<?php

namespace NinjaTables\App\Traits;

use NinjaTables\App\Library\Csv\Reader;
use NinjaTables\App\Modules\DragAndDrop\InitConfig;
use NinjaTables\Framework\Support\Arr;
use NinjaTables\Framework\Support\Sanitizer;

trait ImportTrait
{
    use WpPostTrait;

    private static $mimeTypes = [
        'text/csv',
        'text/plain',
        'application/csv',
        'application/json',
    ];

    public function savedDragAndDropTable($csvData, $fileName)
    {
        if (isset($csvData['table_name'])) {
            $tableId = $this->wpInsertPost($csvData['table_name']);
            $data    = $csvData;
        } else {
            $initConfig                = new InitConfig();
            $tableId                   = $this->wpInsertPost($fileName);
            $table_data                = $initConfig->getTableData();
            $table_data['table']['tr'] = count($csvData);
            $table_data['table']['tc'] = count($csvData[0]);
            $table_data['headers']     = $initConfig->makeTableHeader($table_data);
            $table_data['table_name']  = $fileName;
            $table_data['data']        = $initConfig->makeTableRow($table_data, $csvData);

            $data = [
                'table_name'       => $fileName,
                'table_settings'   => $initConfig->settingConfig(),
                'table_responsive' => $initConfig->responsiveConfig(),
                'table_data'       => $table_data,
                'table_html'       => null
            ];
        }

        $this->updatePostMeta($tableId, $data);

        return $tableId;
    }

    public static function importFromURL($url)
    {
        $file_info     = new \finfo (FILEINFO_MIME_TYPE);
        $remoteContent = ninjaTablesGetRemoteContent($url);
        $fileType      = $file_info->buffer($remoteContent);

        if ( ! in_array($fileType, static::$mimeTypes)) {
            wp_send_json_error(array(
                'errors'  => array(),
                'message' => __('Please upload valid CSV or JSON', 'ninja-tables')
            ), 423);
        }

        if ($fileType === 'application/json') {
            $content = json_decode($remoteContent, true);

            return $content;
        } else {
            $data = mb_convert_encoding($remoteContent, 'UTF-8', 'ISO-8859-1');

            return Reader::createFromString($data)->fetchAll();
        }
    }

    public static function getData()
    {
        $mimes    = static::$mimeTypes;
        $fileType = Sanitizer::sanitizeTextField(Arr::get($_FILES, 'file.type'));

        if ( ! in_array($fileType, $mimes)) {
            wp_send_json_error(array(
                'errors'  => array(),
                'message' => __('Please upload valid CSV or JSON', 'ninja-tables')
            ), 423);
        }

        if ($fileType === 'text/csv' || $fileType === 'application/csv' || $fileType === 'text/plain') {
            return static::importCSV();
        } elseif ($fileType === 'application/json') {
            return static::importJSON();
        }
    }

    private static function importCSV()
    {
        $tmpName = Sanitizer::sanitizeTextField(Arr::get($_FILES, 'file.tmp_name'));

        try {
            $reader = Reader::createFromPath($tmpName, 'r');
        } catch (\Exception $exception) {
            wp_send_json_error(array(
                'errors'  => $exception->getMessage(),
                'message' => __('Something is wrong when parsing the csv', 'ninja-tables')
            ), 423);
        }

        return isset($reader) ? $reader->fetchAll() : [];
    }

    private static function importJSON()
    {
        if (isset($content['table_id']) && isset($content['table_name'])) {
            return [
                'table_name'       => $content['table_name'],
                'table_settings'   => $content['table_settings'],
                'table_responsive' => $content['table_responsive'],
                'table_data'       => $content['table_data'],
                'table_html'       => $content['table_html']
            ];
        } else {
            $tmpName = Sanitizer::sanitizeTextField(Arr::get($_FILES, 'file.tmp_name'));
            $content = json_decode(file_get_contents($tmpName), true);

            return $content;
        }
    }
}