Viewing file: ScopeRepository.php (1.05 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
namespace Laravel\Passport\Bridge;
use Laravel\Passport\Passport; use League\OAuth2\Server\Entities\ClientEntityInterface; use League\OAuth2\Server\Repositories\ScopeRepositoryInterface;
class ScopeRepository implements ScopeRepositoryInterface { /** * {@inheritdoc} */ public function getScopeEntityByIdentifier($identifier) { if (Passport::hasScope($identifier)) { return new Scope($identifier); } }
/** * {@inheritdoc} */ public function finalizeScopes( array $scopes, $grantType, ClientEntityInterface $clientEntity, $userIdentifier = null) { if (! in_array($grantType, ['password', 'personal_access', 'client_credentials'])) { $scopes = collect($scopes)->reject(function ($scope) { return trim($scope->getIdentifier()) === '*'; })->values()->all(); }
return collect($scopes)->filter(function ($scope) { return Passport::hasScope($scope->getIdentifier()); })->values()->all(); } }
|