Refactored structure
This commit is contained in:
parent
963225382c
commit
e5164ae1dd
329 changed files with 277 additions and 457 deletions
246
src/B8Framework/Controller/RestController.php
Executable file
246
src/B8Framework/Controller/RestController.php
Executable file
|
|
@ -0,0 +1,246 @@
|
|||
<?php
|
||||
|
||||
namespace b8\Controller;
|
||||
use b8\Controller,
|
||||
b8\Type\RestUser,
|
||||
b8\Store\Factory,
|
||||
b8\Exception\HttpException;
|
||||
|
||||
class RestController extends Controller
|
||||
{
|
||||
const SEARCHTYPE_AND = 'AND';
|
||||
const SEARCHTYPE_OR = 'OR';
|
||||
|
||||
public $requiresAuthentication = true;
|
||||
public $updateLastAction = true;
|
||||
|
||||
/**
|
||||
* @var \b8\Type\RestUser
|
||||
*/
|
||||
protected $activeUser;
|
||||
protected $where = array();
|
||||
protected $limit = null;
|
||||
protected $offset = null;
|
||||
protected $joins = array();
|
||||
protected $arrayDepth = 2;
|
||||
protected $params = null;
|
||||
protected $order = array();
|
||||
protected $group = null;
|
||||
protected $manualJoins = array();
|
||||
protected $manualWheres = array();
|
||||
protected $searchType = self::SEARCHTYPE_AND;
|
||||
protected $_resourceName = null;
|
||||
protected $_modelName = null;
|
||||
protected $_tableName = null;
|
||||
protected $_modelClass = null;
|
||||
|
||||
public function init()
|
||||
{
|
||||
}
|
||||
|
||||
protected function setControllerView()
|
||||
{
|
||||
}
|
||||
|
||||
protected function setView()
|
||||
{
|
||||
}
|
||||
|
||||
public function handleAction($action, $actionParams)
|
||||
{
|
||||
$response = call_user_func_array(array($this, $action), $actionParams);
|
||||
$this->response->setContent($response);
|
||||
|
||||
return $this->response;
|
||||
}
|
||||
|
||||
public function setActiveUser(RestUser $user)
|
||||
{
|
||||
$this->activeUser = $user;
|
||||
}
|
||||
|
||||
public function getActiveUser()
|
||||
{
|
||||
return $this->activeUser;
|
||||
}
|
||||
|
||||
public function index()
|
||||
{
|
||||
if(!$this->activeUser->checkPermission('canRead', $this->_resourceName))
|
||||
{
|
||||
throw new HttpException\ForbiddenException('You do not have permission do this.');
|
||||
}
|
||||
|
||||
$this->where = $this->_parseWhere();
|
||||
$this->limit = is_null($this->limit) ? $this->getParam('limit', 25) : $this->limit;
|
||||
$this->offset = is_null($this->offset) ? $this->getParam('offset', 0) : $this->offset;
|
||||
$this->order = is_null($this->order) || !count($this->order) ? $this->getParam('order', array()) : $this->order;
|
||||
$this->group = is_null($this->group) || !count($this->group) ? $this->getParam('group', null) : $this->group;
|
||||
$this->searchType = $this->getParam('searchType', self::SEARCHTYPE_AND);
|
||||
|
||||
$store = Factory::getStore($this->_modelName);
|
||||
$data = $store->getWhere($this->where, $this->limit, $this->offset, $this->joins, $this->order, $this->manualJoins, $this->group, $this->manualWheres, $this->searchType);
|
||||
|
||||
$rtn = array(
|
||||
'debug' => array(
|
||||
'where' => $this->where,
|
||||
'searchType' => $this->searchType,
|
||||
),
|
||||
'limit' => $this->limit,
|
||||
'offset' => $this->offset,
|
||||
'total' => $data['count'],
|
||||
'items' => array()
|
||||
);
|
||||
|
||||
foreach($data['items'] as $item)
|
||||
{
|
||||
$rtn['items'][] = $item->toArray($this->arrayDepth);
|
||||
}
|
||||
|
||||
return $rtn;
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
protected function _parseWhere()
|
||||
{
|
||||
$clauses = array(
|
||||
'fuzzy' => 'like',
|
||||
'gt' => '>',
|
||||
'gte' => '>=',
|
||||
'lt' => '<',
|
||||
'lte' => '<=',
|
||||
'neq' => '!=',
|
||||
'between' => 'between'
|
||||
);
|
||||
|
||||
$where = $this->getParam('where', array());
|
||||
$where = array_merge($where, $this->where);
|
||||
|
||||
if(count($where))
|
||||
{
|
||||
foreach($where as &$value)
|
||||
{
|
||||
if(!is_array($value) || !isset($value['operator']))
|
||||
{
|
||||
if(is_array($value) && count($value) == 1)
|
||||
{
|
||||
$value = array_shift($value);
|
||||
}
|
||||
|
||||
$value = array(
|
||||
'operator' => '=',
|
||||
'value' => $value
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
foreach($clauses as $clause => $operator)
|
||||
{
|
||||
$fields = $this->getParam($clause, array());
|
||||
|
||||
if(count($clause))
|
||||
{
|
||||
if(!is_array($fields))
|
||||
{
|
||||
$fields = array($fields);
|
||||
}
|
||||
foreach($fields as $field)
|
||||
{
|
||||
if(isset($where[$field]))
|
||||
{
|
||||
$where[$field]['operator'] = $operator;
|
||||
if($operator == 'like')
|
||||
{
|
||||
$where[$field]['value'] = str_replace(' ', '%', $where[$field]['value']);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return $where;
|
||||
}
|
||||
|
||||
public function get($key)
|
||||
{
|
||||
if(!$this->activeUser->checkPermission('canRead', $this->_resourceName))
|
||||
{
|
||||
throw new HttpException\ForbiddenException('You do not have permission do this.');
|
||||
}
|
||||
|
||||
$rtn = Factory::getStore($this->_modelName)->getByPrimaryKey($key);
|
||||
|
||||
if(is_object($rtn) && method_exists($rtn, 'toArray'))
|
||||
{
|
||||
$rtn = $rtn->toArray($this->arrayDepth);
|
||||
}
|
||||
|
||||
return array(strtolower($this->_modelName) => $rtn);
|
||||
}
|
||||
|
||||
public function put($key)
|
||||
{
|
||||
if(!$this->activeUser->checkPermission('canEdit', $this->_resourceName))
|
||||
{
|
||||
throw new HttpException\ForbiddenException('You do not have permission do this.');
|
||||
}
|
||||
|
||||
$store = Factory::getStore($this->_modelName);
|
||||
|
||||
if($obj = $store->getByPrimaryKey($key))
|
||||
{
|
||||
$obj->setValues($this->getParams());
|
||||
$rtn = $store->save($obj);
|
||||
|
||||
return array(strtolower($this->_modelName) => $rtn->toArray($this->arrayDepth));
|
||||
}
|
||||
else
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
public function post()
|
||||
{
|
||||
if(!$this->activeUser->checkPermission('canCreate', $this->_resourceName))
|
||||
{
|
||||
throw new HttpException\ForbiddenException('You do not have permission do this.');
|
||||
}
|
||||
|
||||
$store = Factory::getStore($this->_modelName);
|
||||
|
||||
$modelClass = $this->_modelClass;
|
||||
$obj = new $modelClass();
|
||||
$obj->setValues($this->getParams());
|
||||
$rtn = $store->save($obj);
|
||||
|
||||
return array(strtolower($this->_modelName) => $rtn->toArray($this->arrayDepth));
|
||||
}
|
||||
|
||||
public function delete($key)
|
||||
{
|
||||
if(!$this->activeUser->checkPermission('canDelete', $this->_resourceName))
|
||||
{
|
||||
throw new HttpException\ForbiddenException('You do not have permission do this.');
|
||||
}
|
||||
|
||||
$store = Factory::getStore($this->_modelName);
|
||||
|
||||
try
|
||||
{
|
||||
if($obj = $store->getByPrimaryKey($key))
|
||||
{
|
||||
$store->delete($obj);
|
||||
return array('deleted' => true);
|
||||
}
|
||||
}
|
||||
catch(\Exception $ex)
|
||||
{
|
||||
}
|
||||
|
||||
return array('deleted' => false);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue