openstackid/app/Models/OAuth2/ApiEndpoint.php

126 lines
2.9 KiB
PHP

<?php namespace Models\OAuth2;
/**
* 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 Utils\Model\BaseModelEloquent;
use OAuth2\Models\IApiEndpoint;
/**
* Class ApiEndpoint
* @package Models\OAuth2
*/
class ApiEndpoint extends BaseModelEloquent implements IApiEndpoint {
protected $table = 'oauth2_api_endpoint';
protected $fillable = array( 'description','active','allow_cors', 'name','route', 'http_method', 'api_id', 'rate_limit');
public function getActiveAttribute(){
return (bool) $this->attributes['active'];
}
public function getAllowCorsAttribute(){
return (bool) $this->attributes['allow_cors'];
}
public function getApiIdAttribute(){
return (int) $this->attributes['api_id'];
}
public function getIdAttribute(){
return (int) $this->attributes['id'];
}
public function api()
{
return $this->belongsTo('Models\OAuth2\Api');
}
public function getRoute()
{
return $this->route;
}
public function scopes()
{
return $this->belongsToMany('Models\OAuth2\ApiScope','oauth2_api_endpoint_api_scope','api_endpoint_id','scope_id');
}
public function getHttpMethod(){
return $this->http_method;
}
public function setRoute($route)
{
$this->route = $route;
}
public function setHttpMethod($http_method)
{
$this->http_method = $http_method;
}
/**
* @return \oauth2\models\IApi
*/
public function getApi()
{
return $this->api()->first();
}
public function getScope()
{
$scope = '';
foreach($this->scopes()->get() as $s){
if(!$s->active) continue;
$scope = $scope .$s->name.' ';
}
$scope = trim($scope);
return $scope;
}
public function isActive()
{
return $this->active;
}
public function setStatus($active)
{
$this->active = $active;
}
public function getName()
{
return $this->name;
}
public function setName($name)
{
$this->name= $name;
}
/**
* @return \oauth2\models\booll
*/
public function supportCORS()
{
return $this->allow_cors;
}
/**
* @return bool
*/
public function supportCredentials()
{
// TODO: Implement supportCredentials() method.
return false;
}
}