westdc-core/Westdc/Db/Record.php

107 lines
3.0 KiB
PHP
Raw Normal View History

<?php
/**
* Created by PhpStorm.
* User: liujin834
* Date: 15-2-16
* Time: 上午11:31
*/
namespace Westdc\Db;
2015-02-25 16:03:43 +00:00
use Fselab\Db\RecordException;
use Zend\Db\Sql;
use Westdc\EventModel\AbstractEventManager;
class Record extends AbstractEventManager {
2015-02-25 16:03:43 +00:00
/**
* 向数据库表中写入新数据
* @param $table
* @param $data
* @param callable $callback
* @return bool
* @throws RecordException
*/
public function insert($table,$data,callable $callback = null){
2015-02-25 16:03:43 +00:00
if(!is_string($table) && !$table instanceof Sql\TableIdentifier)
throw new RecordException("table must is string or TableIdentifier");
$params = compact('data');
$this->getEventManager()->trigger(PreDeclare::EVENT_INSERT_PRE, $this, $params);
/** @var \Zend\EventManager\ResponseCollection $results */
$results = $this->getEventManager()->trigger(PreDeclare::EVENT_INSERT_PROCESS_DATA, $this, $params);
if(!$results->isEmpty())
$data = $results->bottom();
2015-02-25 16:03:43 +00:00
try{
$dbh = new Dbh;
$id = $dbh->insert($table,$data,true);
}catch(\Exception $e){
throw new RecordException($e->getMessage());
}
2015-02-25 16:03:43 +00:00
if(!empty($callback) && is_callable($callback))
call_user_func($callback,$id,$data);
2015-02-25 16:03:43 +00:00
$params = compact('data','id');
$this->getEventManager()->trigger(PreDeclare::EVENT_INSERT_POST, $this, $params);
return true;
}
/**
* 更新数据库记录
* @param $table
* @param array $data
* @param string $where
* @param callable $callback
* @return bool
* @throws RecordException
*/
public function update($table,array $data,$where = '',callable $callback = null){
if(!is_string($table) && !$table instanceof Sql\TableIdentifier)
throw new RecordException("table must is string or TableIdentifier");
$params = compact('data');
$this->getEventManager()->trigger(PreDeclare::EVENT_UPDATE_PRE, $this, $params);
/** @var \Zend\EventManager\ResponseCollection $results */
$results = $this->getEventManager()->trigger(PreDeclare::EVENT_UPDATE_PROCESS_DATA, $this, $params);
if(!$results->isEmpty())
$data = $results->bottom();
if($table instanceof Sql\TableIdentifier)
$table = $table->getSchema().".".$table->getTable();
if(is_string($where) || empty($where)){
$dbh = new Dbh;
$dbh->update($table,$data,$where);
}
elseif($where instanceof Sql\Where)
{
}
elseif(is_array($where))
{
}
else
throw new RecordException("Condition must is one of string,Zend\\Db\\Sql\\Where object,array");
if(!empty($callback) && is_callable($callback))
call_user_func($callback,$data);
$params = compact('data','id');
$this->getEventManager()->trigger(PreDeclare::EVENT_INSERT_POST, $this, $params);
return true;
}
}