openstackid/app/controllers/apis/ApiScopeController.php

183 lines
6.0 KiB
PHP

<?php
use utils\services\ILogService;
use oauth2\services\IApiScopeService;
use oauth2\exceptions\InvalidApi;
use oauth2\exceptions\InvalidApiScope;
/**
* Class ApiScopeController
*/
class ApiScopeController extends AbstractRESTController implements ICRUDController {
private $api_scope_service;
public function __construct(IApiScopeService $api_scope_service, ILogService $log_service)
{
parent::__construct($log_service);
$this->api_scope_service = $api_scope_service;
//set filters allowed values
$this->allowed_filter_fields = array('api_id');
$this->allowed_projection_fields = array('*');
}
public function get($id)
{
try {
$scope = $this->api_scope_service->get($id);
if(is_null($scope)){
return $this->error404(array('error' => 'scope not found'));
}
$data = $scope->toArray();
return $this->ok($data);
} catch (Exception $ex) {
$this->log_service->error($ex);
return $this->error500($ex);
}
}
public function getByPage()
{
try {
//check for optional filters param on querystring
$fields = $this->getProjection(Input::get('fields',null));
$filters = $this->getFilters(Input::except('fields','limit','offset'));
$page_nbr = intval(Input::get('offset',1));
$page_size = intval(Input::get('limit',10));
$list = $this->api_scope_service->getAll($page_nbr, $page_size, $filters,$fields);
$items = array();
foreach ($list->getItems() as $scope) {
array_push($items, $scope->toArray());
}
return $this->ok( array(
'page' => $items,
'total_items' => $list->getTotal()
));
} catch (Exception $ex) {
$this->log_service->error($ex);
return $this->error500($ex);
}
}
public function create()
{
try {
$values = Input::all();
$rules = array(
'name' => 'required|scopename|max:512',
'short_description' => 'required|text|max:512',
'description' => 'required|text',
'active' => 'required|boolean',
'default' => 'required|boolean',
'system' => 'required|boolean',
'api_id' => 'required|integer',
);
// Creates a Validator instance and validates the data.
$validation = Validator::make($values, $rules);
if ($validation->fails()) {
$messages = $validation->messages()->toArray();
return $this->error400(array('error'=>'validation','messages' => $messages));
}
$new_scope = $this->api_scope_service->add(
$values['name'],
$values['short_description'],
$values['description'],
$values['active'],
$values['default'],
$values['system'],
$values['api_id']
);
return $this->created(array('scope_id' => $new_scope->id));
}
catch(InvalidApi $ex1){
$this->log_service->error($ex1);
return $this->error404(array('error' => $ex1->getMessage()));
}
catch(InvalidApiScope $ex2){
$this->log_service->error($ex2);
return $this->error400(array('error' => $ex2->getMessage()));
}
catch (Exception $ex) {
$this->log_service->error($ex);
return $this->error500($ex);
}
}
public function delete($id)
{
try {
$res = $this->api_scope_service->delete($id);
return $res?$this->deleted():$this->error404(array('error'=>'operation failed'));
}
catch(InvalidApiScope $ex1){
$this->log_service->error($ex1);
return $this->error404(array('error'=>$ex1->getMessage()));
}
catch (Exception $ex) {
$this->log_service->error($ex);
return $this->error500($ex);
}
}
public function update()
{
try {
$values = Input::all();
$rules = array(
'id' => 'required|integer',
'name' => 'sometimes|required|scopename|max:512',
'description' => 'sometimes|required|text',
'short_description' => 'sometimes|required|text|max:512',
'active' => 'sometimes|required|boolean',
'system' => 'sometimes|required|boolean',
'default' => 'sometimes|required|boolean',
);
// Creates a Validator instance and validates the data.
$validation = Validator::make($values, $rules);
if ($validation->fails()) {
$messages = $validation->messages()->toArray();
return $this->error400(array('error'=>'validation','messages' => $messages));
}
$res = $this->api_scope_service->update(intval($values['id']),$values);
return $res?$this->ok():$this->error400(array('error'=>'operation failed'));
}
catch(InvalidApiScope $ex1){
$this->log_service->error($ex1);
return $this->error404(array('error'=>$ex1->getMessage()));
}
catch (Exception $ex) {
$this->log_service->error($ex);
return $this->error500($ex);
}
}
/**
* @param $id
* @param $active
* @return mixed
*/
public function updateStatus($id, $active){
try {
$res = $this->api_scope_service->setStatus($id,$active);
return $res?$this->ok():$this->error400(array('error'=>'operation failed'));
} catch (Exception $ex) {
$this->log_service->error($ex);
return $this->error500($ex);
}
}
}