123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318 |
- <?php
- /* vim: set expandtab sw=4 ts=4 sts=4: */
- /**
- * ESRI Shape file import plugin for phpMyAdmin
- *
- * @package PhpMyAdmin-Import
- * @subpackage ESRI_Shape
- */
- namespace PhpMyAdmin\Plugins\Import;
- use PhpMyAdmin\Gis\GisFactory;
- use PhpMyAdmin\Gis\GisMultiLineString;
- use PhpMyAdmin\Gis\GisMultiPoint;
- use PhpMyAdmin\Gis\GisPoint;
- use PhpMyAdmin\Gis\GisPolygon;
- use PhpMyAdmin\Import;
- use PhpMyAdmin\Message;
- use PhpMyAdmin\Plugins\ImportPlugin;
- use PhpMyAdmin\Properties\Plugins\ImportPluginProperties;
- use PhpMyAdmin\Sanitize;
- use PhpMyAdmin\ZipExtension;
- /**
- * Handles the import for ESRI Shape files
- *
- * @package PhpMyAdmin-Import
- * @subpackage ESRI_Shape
- */
- class ImportShp extends ImportPlugin
- {
- /**
- * @var ZipExtension
- */
- private $zipExtension;
- /**
- * Constructor
- */
- public function __construct()
- {
- $this->setProperties();
- if (extension_loaded('zip')) {
- $this->zipExtension = new ZipExtension();
- }
- }
- /**
- * Sets the import plugin properties.
- * Called in the constructor.
- *
- * @return void
- */
- protected function setProperties()
- {
- $importPluginProperties = new ImportPluginProperties();
- $importPluginProperties->setText(__('ESRI Shape File'));
- $importPluginProperties->setExtension('shp');
- $importPluginProperties->setOptions(array());
- $importPluginProperties->setOptionsText(__('Options'));
- $this->properties = $importPluginProperties;
- }
- /**
- * Handles the whole import logic
- *
- * @param array &$sql_data 2-element array with sql data
- *
- * @return void
- */
- public function doImport(array &$sql_data = array())
- {
- global $db, $error, $finished,
- $import_file, $local_import_file, $message;
- $GLOBALS['finished'] = false;
- $compression = $GLOBALS['import_handle']->getCompression();
- $shp = new ShapeFileImport(1);
- // If the zip archive has more than one file,
- // get the correct content to the buffer from .shp file.
- if ($compression == 'application/zip'
- && $this->zipExtension->getNumberOfFiles($import_file) > 1
- ) {
- if ($GLOBALS['import_handle']->openZip('/^.*\.shp$/i') === false) {
- $message = Message::error(
- __('There was an error importing the ESRI shape file: "%s".')
- );
- $message->addParam($GLOBALS['import_handle']->getError());
- return;
- }
- }
- $temp_dbf_file = false;
- // We need dbase extension to handle .dbf file
- if (extension_loaded('dbase')) {
- $temp = $GLOBALS['PMA_Config']->getTempDir('shp');
- // If we can extract the zip archive to 'TempDir'
- // and use the files in it for import
- if ($compression == 'application/zip' && ! is_null($temp)) {
- $dbf_file_name = $this->zipExtension->findFile(
- $import_file,
- '/^.*\.dbf$/i'
- );
- // If the corresponding .dbf file is in the zip archive
- if ($dbf_file_name) {
- // Extract the .dbf file and point to it.
- $extracted = $this->zipExtension->extract(
- $import_file,
- $dbf_file_name
- );
- if ($extracted !== false) {
- $dbf_file_path = $temp . (PMA_IS_WINDOWS ? '\\' : '/')
- . Sanitize::sanitizeFilename($dbf_file_name, true);
- $handle = fopen($dbf_file_path, 'wb');
- if ($handle !== false) {
- fwrite($handle, $extracted);
- fclose($handle);
- $temp_dbf_file = true;
- // Replace the .dbf with .*, as required
- // by the bsShapeFiles library.
- $file_name = substr(
- $dbf_file_path, 0, strlen($dbf_file_path) - 4
- ) . '.*';
- $shp->FileName = $file_name;
- }
- }
- }
- } elseif (!empty($local_import_file)
- && !empty($GLOBALS['cfg']['UploadDir'])
- && $compression == 'none'
- ) {
- // If file is in UploadDir, use .dbf file in the same UploadDir
- // to load extra data.
- // Replace the .shp with .*,
- // so the bsShapeFiles library correctly locates .dbf file.
- $file_name = mb_substr(
- $import_file,
- 0,
- mb_strlen($import_file) - 4
- ) . '.*';
- $shp->FileName = $file_name;
- }
- }
- // Delete the .dbf file extracted to 'TempDir'
- if ($temp_dbf_file
- && isset($dbf_file_path)
- && @file_exists($dbf_file_path)
- ) {
- unlink($dbf_file_path);
- }
- // Load data
- $shp->loadFromFile('');
- if ($shp->lastError != "") {
- $error = true;
- $message = Message::error(
- __('There was an error importing the ESRI shape file: "%s".')
- );
- $message->addParam($shp->lastError);
- return;
- }
- switch ($shp->shapeType) {
- // ESRI Null Shape
- case 0:
- break;
- // ESRI Point
- case 1:
- $gis_type = 'point';
- break;
- // ESRI PolyLine
- case 3:
- $gis_type = 'multilinestring';
- break;
- // ESRI Polygon
- case 5:
- $gis_type = 'multipolygon';
- break;
- // ESRI MultiPoint
- case 8:
- $gis_type = 'multipoint';
- break;
- default:
- $error = true;
- $message = Message::error(
- __('MySQL Spatial Extension does not support ESRI type "%s".')
- );
- $message->addParam($shp->getShapeName());
- return;
- }
- if (isset($gis_type)) {
- /** @var GisMultiLineString|\PhpMyAdmin\Gis\GisMultiPoint|\PhpMyAdmin\Gis\GisPoint|GisPolygon $gis_obj */
- $gis_obj = GisFactory::factory($gis_type);
- } else {
- $gis_obj = null;
- }
- $num_rows = count($shp->records);
- // If .dbf file is loaded, the number of extra data columns
- $num_data_cols = isset($shp->DBFHeader) ? count($shp->DBFHeader) : 0;
- $rows = array();
- $col_names = array();
- if ($num_rows != 0) {
- foreach ($shp->records as $record) {
- $tempRow = array();
- if ($gis_obj == null) {
- $tempRow[] = null;
- } else {
- $tempRow[] = "GeomFromText('"
- . $gis_obj->getShape($record->SHPData) . "')";
- }
- if (isset($shp->DBFHeader)) {
- foreach ($shp->DBFHeader as $c) {
- $cell = trim($record->DBFData[$c[0]]);
- if (!strcmp($cell, '')) {
- $cell = 'NULL';
- }
- $tempRow[] = $cell;
- }
- }
- $rows[] = $tempRow;
- }
- }
- if (count($rows) == 0) {
- $error = true;
- $message = Message::error(
- __('The imported file does not contain any data!')
- );
- return;
- }
- // Column names for spatial column and the rest of the columns,
- // if they are available
- $col_names[] = 'SPATIAL';
- for ($n = 0; $n < $num_data_cols; $n++) {
- $col_names[] = $shp->DBFHeader[$n][0];
- }
- // Set table name based on the number of tables
- if (strlen($db) > 0) {
- $result = $GLOBALS['dbi']->fetchResult('SHOW TABLES');
- $table_name = 'TABLE ' . (count($result) + 1);
- } else {
- $table_name = 'TBL_NAME';
- }
- $tables = array(array($table_name, $col_names, $rows));
- // Use data from shape file to chose best-fit MySQL types for each column
- $analyses = array();
- $analyses[] = Import::analyzeTable($tables[0]);
- $table_no = 0;
- $spatial_col = 0;
- $analyses[$table_no][Import::TYPES][$spatial_col] = Import::GEOMETRY;
- $analyses[$table_no][Import::FORMATTEDSQL][$spatial_col] = true;
- // Set database name to the currently selected one, if applicable
- if (strlen($db) > 0) {
- $db_name = $db;
- $options = array('create_db' => false);
- } else {
- $db_name = 'SHP_DB';
- $options = null;
- }
- // Created and execute necessary SQL statements from data
- $null_param = null;
- Import::buildSql($db_name, $tables, $analyses, $null_param, $options, $sql_data);
- unset($tables);
- unset($analyses);
- $finished = true;
- $error = false;
- // Commit any possible data in buffers
- Import::runQuery('', '', $sql_data);
- }
- /**
- * Returns specified number of bytes from the buffer.
- * Buffer automatically fetches next chunk of data when the buffer
- * falls short.
- * Sets $eof when $GLOBALS['finished'] is set and the buffer falls short.
- *
- * @param int $length number of bytes
- *
- * @return string
- */
- public static function readFromBuffer($length)
- {
- global $buffer, $eof;
- if (strlen($buffer) < $length) {
- if ($GLOBALS['finished']) {
- $eof = true;
- } else {
- $buffer .= Import::getNextChunk();
- }
- }
- $result = substr($buffer, 0, $length);
- $buffer = substr($buffer, $length);
- return $result;
- }
- }
|