1be43c7529
* Added external feed provider to ingest summit schedule data ( sched, vanderpoel) * Updated summit add/update attributes - api_feed_type - api_feed_url - api_feed_key Change-Id: Id362c95640de7161fed8667679a0032372ae995c
132 lines
3.4 KiB
PHP
132 lines
3.4 KiB
PHP
<?php namespace repositories\resource_server;
|
|
/**
|
|
* Copyright 2017 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 App\Models\ResourceServer\EndPointRateLimitByIP;
|
|
use App\Models\ResourceServer\IEndpointRateLimitByIPRepository;
|
|
use App\Repositories\ConfigDoctrineRepository;
|
|
use App\Repositories\DoctrineRepository;
|
|
use Doctrine\ORM\QueryBuilder;
|
|
use Illuminate\Support\Facades\Log;
|
|
use models\utils\IEntity;
|
|
use utils\Filter;
|
|
use utils\Order;
|
|
use utils\PagingInfo;
|
|
use utils\PagingResponse;
|
|
|
|
/**
|
|
* Class DoctrineEndPointRateLimitByIPRepository
|
|
* @package repositories\resource_server
|
|
*/
|
|
final class DoctrineEndPointRateLimitByIPRepository
|
|
extends ConfigDoctrineRepository
|
|
implements IEndpointRateLimitByIPRepository
|
|
{
|
|
/**
|
|
* @param string $ip
|
|
* @param string $route
|
|
* @param string $http_method
|
|
* @return EndPointRateLimitByIP
|
|
*/
|
|
public function getByIPRouteMethod($ip, $route, $http_method)
|
|
{
|
|
try {
|
|
return $this->getEntityManager()->createQueryBuilder()
|
|
->select("c")
|
|
->from(\App\Models\ResourceServer\EndPointRateLimitByIP::class, "c")
|
|
->where('c.route = :route')
|
|
->andWhere('c.http_method = :http_method')
|
|
->andWhere('c.ip = :ip')
|
|
->andWhere('c.active = 1')
|
|
->setParameter('ip', trim($ip))
|
|
->setParameter('route', trim($route))
|
|
->setParameter('http_method', trim($http_method))
|
|
->getQuery()
|
|
->getOneOrNullResult();
|
|
}
|
|
catch(\Exception $ex){
|
|
Log::error($ex);
|
|
return null;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @return string
|
|
*/
|
|
protected function getBaseEntity()
|
|
{
|
|
return EndPointRateLimitByIP::class;
|
|
}
|
|
|
|
/**
|
|
* @return array
|
|
*/
|
|
protected function getFilterMappings()
|
|
{
|
|
return [];
|
|
}
|
|
|
|
/**
|
|
* @return array
|
|
*/
|
|
protected function getOrderMappings()
|
|
{
|
|
return [];
|
|
}
|
|
|
|
/**
|
|
* @param QueryBuilder $query
|
|
* @return QueryBuilder
|
|
*/
|
|
protected function applyExtraFilters(QueryBuilder $query)
|
|
{
|
|
return $query;
|
|
}
|
|
|
|
/**
|
|
* @param int $id
|
|
* @return IEntity
|
|
*/
|
|
public function getById($id)
|
|
{
|
|
// TODO: Implement getById() method.
|
|
}
|
|
|
|
|
|
/**
|
|
* @param IEntity $entity
|
|
* @return void
|
|
*/
|
|
public function delete($entity)
|
|
{
|
|
// TODO: Implement delete() method.
|
|
}
|
|
|
|
/**
|
|
* @return IEntity[]
|
|
*/
|
|
public function getAll()
|
|
{
|
|
// TODO: Implement getAll() method.
|
|
}
|
|
|
|
/**
|
|
* @param PagingInfo $paging_info
|
|
* @param Filter|null $filter
|
|
* @param Order|null $order
|
|
* @return PagingResponse
|
|
*/
|
|
public function getAllByPage(PagingInfo $paging_info, Filter $filter = null, Order $order = null)
|
|
{
|
|
// TODO: Implement getAllByPage() method.
|
|
}
|
|
} |