
In order to migrate IDP from LV 4.x to latest LV version, following task were performed: * Updated namespace to be complain with PSR-4 * General Refactoring: moved all DB access code from services to repositories. * Migration to LV 5.X: these migration guides were applied - https://laravel.com/docs/5.3/upgrade#upgrade-5.0 - https://laravel.com/docs/5.3/upgrade#upgrade-5.1.0 - https://laravel.com/docs/5.3/upgrade#upgrade-5.2.0 * Improved caching: added repositories decorators in order to add REDIS cache to queries, entities Change-Id: I8edf9f5fce6585129701c88bb88332f242307534
115 lines
3.4 KiB
PHP
115 lines
3.4 KiB
PHP
<?php namespace App\Http\Controllers\Api;
|
|
/**
|
|
* Copyright 2015 OpenStack Foundation
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
**/
|
|
|
|
use Exception;
|
|
use Illuminate\Support\Facades\Input;
|
|
use Illuminate\Support\Facades\Validator;
|
|
use OAuth2\Repositories\IServerPrivateKeyRepository;
|
|
use OAuth2\Services\IServerPrivateKeyService;
|
|
use Services\Exceptions\ValidationException;
|
|
use Utils\Services\ILogService;
|
|
|
|
/**
|
|
* Class ServerPrivateKeyApiController
|
|
* @package App\Http\Controllers\Api
|
|
*/
|
|
final class ServerPrivateKeyApiController extends AsymmetricKeyApiController
|
|
{
|
|
/**
|
|
* @param IServerPrivateKeyRepository $repository
|
|
* @param IServerPrivateKeyService $service
|
|
* @param ILogService $log_service
|
|
*/
|
|
public function __construct
|
|
(
|
|
IServerPrivateKeyRepository $repository,
|
|
IServerPrivateKeyService $service,
|
|
ILogService $log_service
|
|
)
|
|
{
|
|
parent::__construct($repository, $service, $log_service);
|
|
}
|
|
|
|
/**
|
|
* @return mixed
|
|
*/
|
|
public function create()
|
|
{
|
|
try
|
|
{
|
|
|
|
$values = Input::All();
|
|
// Build the validation constraint set.
|
|
$rules = array(
|
|
'kid' => 'required|text|min:5|max:255',
|
|
'active' => 'required|boolean',
|
|
'valid_from' => 'date_format:m/d/Y',
|
|
'valid_to' => 'date_format:m/d/Y|after:valid_from',
|
|
'pem_content' => 'sometimes|required|private_key_pem:password|private_key_pem_length:password',
|
|
'usage' => 'required|public_key_usage',
|
|
'type' => 'required|public_key_type',
|
|
'alg' => 'required|key_alg:usage',
|
|
'password' => 'min:5|max:255|private_key_password:pem_content',
|
|
);
|
|
|
|
// Create a new validator instance.
|
|
$validation = Validator::make($values, $rules);
|
|
|
|
if ($validation->fails())
|
|
{
|
|
$messages = $validation->messages()->toArray();
|
|
return $this->error400(array('error' => 'validation', 'messages' => $messages));
|
|
}
|
|
|
|
$private_key = $this->service->register($values);
|
|
|
|
return $this->created(array('id' => $private_key->getId()));
|
|
|
|
}
|
|
catch(ValidationException $ex1)
|
|
{
|
|
return $this->error400(array('error' => $ex1->getMessage()));
|
|
}
|
|
catch (Exception $ex)
|
|
{
|
|
$this->log_service->error($ex);
|
|
|
|
return $this->error500($ex);
|
|
}
|
|
}
|
|
|
|
public function getByPage()
|
|
{
|
|
return $this->_getByPage();
|
|
}
|
|
|
|
/**
|
|
* @param int $id
|
|
* @return mixed
|
|
*/
|
|
public function update($id)
|
|
{
|
|
return $this->_update($id);
|
|
}
|
|
|
|
/**
|
|
* @param int $id
|
|
* @return mixed
|
|
*/
|
|
public function delete($id)
|
|
{
|
|
return $this->_delete($id);
|
|
}
|
|
|
|
} |