实现文献数据文件导入 #261

This commit is contained in:
wlx 2011-11-26 10:51:45 +00:00
parent 53c323d1ca
commit b431fa7f10
4 changed files with 64 additions and 3 deletions

View File

@ -553,6 +553,7 @@ class Admin_DataController extends Zend_Controller_Action
$uuid=$this->_getParam('uuid');
$search=$this->_getParam('search');
$keyword=$this->_getParam('keyword');
$import=(int)$this->_getParam('import');
if ($add) {
$form=new ReferenceForm();
@ -623,6 +624,31 @@ class Admin_DataController extends Zend_Controller_Action
$this->messenger->addMessage($e->getMessage());
}
$this->_redirect("/admin/data/reference");
} elseif ($import) {
if ($this->_request->isPost()) {
if ($_FILES["ref"]["error"] == UPLOAD_ERR_OK) {
$tmp_name = $_FILES["ref"]["tmp_name"];
$fp = fopen($tmp_name, "rb");
$ref=fread($fp, filesize($tmp_name));
fclose($fp);
$lines=explode("\n",$ref);
foreach($lines as $line)
{
$data=explode(";",$line);
$sql="insert into reference (reference) values(?)";
try {
$this->db->exec($this->db->quoteInto($sql,$data[1]));
} catch (Exception $e) {}
$sql="select id from reference where reference=?";
$row=$this->db->fetchRow($this->db->quoteInto($sql,$data[1]));
$sql="insert into mdref (uuid,refid) values(?,".$row['id'].")";
try {
$this->db->exec($this->db->quoteInto($sql,$data[0]));
} catch (Exception $e) {}
}
}//end if
}
$this->_helper->viewRenderer('referenceimport');
} else if($search){
if(!empty($keyword))
{
@ -711,7 +737,7 @@ class Admin_DataController extends Zend_Controller_Action
//move_uploaded_file($tmp_name, "../data/import/$name");
}//end if
}//foreach
$this->_redirect('/metadata');
$this->_redirect('/data');
} else {
//do nothing now.
}

View File

@ -37,7 +37,7 @@
<div class="controlplan">
<a href="/admin/data/reference/add/1">添加新的数据文献</a>
| <a href="/admin/data/reference/import/1">导入数据文献文件</a>
</div>
<?php if (count($this->paginator)): ?>

View File

@ -23,5 +23,6 @@
</div>
<?php endif; ?>
<a href="/admin/data/reference/add/1">添加新的数据文献</a>
| <a href="/admin/data/reference/import/1">导入数据文献文件</a>
<?= $this->form; ?>
</div>

View File

@ -0,0 +1,34 @@
<?php
$this->headTitle($this->config->title->site);
$this->headTitle('后台管理');
$this->headTitle()->setSeparator(' - ');
$this->headLink()->appendStylesheet('/css/admin.css');
$this->breadcrumb('<a href="/">首页</a>');
$this->breadcrumb('<a href="/admin">后台首页</a>');
$this->breadcrumb('<a href="/admin/data">数据管理</a>');
$this->breadcrumb('数据文献管理</a>');
$this->breadcrumb()->setSeparator(' > ');
?>
<div id="leftPanel">
<?= $this->partial('data/left.phtml'); ?>
</div>
<div id="rightPanel">
<?php if ($this->msg or $this->messages) :?>
<div id="message">
<?php if ($this->msg) : ?>
<p><?php echo $this->msg; ?></p>
<?php endif; if ($this->messages): foreach($this->messages as $msg): ?>
<p><?php echo $msg; ?></p>
<?php endforeach;endif; ?>
</div>
<?php endif; ?>
<a href="/admin/data/reference/add/1">添加新的数据文献</a> | <a href="/admin/data/reference/import/1">导入数据文献文件</a>
<form enctype="multipart/form-data" method="POST">
<!-- MAX_FILE_SIZE must precede the file input field -->
<input type="hidden" name="MAX_FILE_SIZE" value="3000000" />
<!-- Name of input element determines name in $_FILES array -->
上传数据文献文件: <br />
<input name="ref" type="file" /><br />
<input type="submit" value="导入" />
</form>
</div>