如何处理ROLES和FOSOAuthServerBundle范围

时间:2016-01-13 18:02:37

标签: php symfony oauth fosoauthserverbundle

我有一个基本的api,使用FOSOAuthServerBundle对用户进行身份验证。用户可以拥有ROLE_USER和ROLE_ADMIN角色。基于FOSOAuthServerBundle文档,默认行为是使用范围作为角色,所以我认为当我有一个普通用户时,该包将在响应中返回scope: user,当它是管理员用户时,将返回scope: admin。但它不是这样的。捆绑包返回supported_scopes条目中配置的任何内容。以下是我的config.yml

fos_oauth_server:
    service:
        options:
            supported_scopes: user admin

access_control中的security.yml部分为空,我的firewalls部分位于以下位置:

firewalls:
        users_create:
            pattern: ^/v1/users
            methods: [POST]
            security: false

        api:
            pattern:    ^/
            security: true
            fos_oauth:  true
            stateless:  true

access_control:
        # You can omit this if /api can be accessed both authenticated and anonymously

这样,即使用户没有ROLE_ADMIN角色,bundle总是返回user admin作为范围。

{
"access_token": "ZGQ2ODE5ZjAzNTZkOWY0OWMyNmZmODE4MjcwZTJmYjExNzY0NzQxOTRmMzk4NzA2Mjc2NjIyZmY1ZDgwMzk4NA"
"expires_in": 3600
"token_type": "bearer"
"scope": "user admin"
"refresh_token": "NmM5ZGFmNzBiNTNjYmQzMTQ1MTk0ODJjOTAxMWU0YWIwMzM1MzgyODg4ZTAzNTI5ZTk2MDc3OGU2MTg0MWZiMA"
}

我错过了什么?用户角色是否附加到令牌范围?有没有更好的方法来了解我的用户是否是管理员?

4 个答案:

答案 0 :(得分:2)

doc开始,默认行为是使用角色映射范围。在您的情况下,角色将是ROLE_USER和ROLE_ADMIN。

现在要限制使用,您可以像下面这样编辑security.yml文件:

# app/config/security.yml
security:
    access_control:
        - { path: ^/api/super/secured, role: ROLE_ADMIN }
        - { path: ^/api/general, role: ROLE_USER }

要限制控制器内的访问权限,您可以使用:

if ($this->get('security.context')->isGranted('ROLE_ADMIN')) {
    // the user has the ROLE_ADMIN role, so act accordingly
}

再次来自doc

  

现在,客户端可以在请求时传递scope参数   访问令牌。

希望这有帮助。

更新:

在类似问题上查看此答案here,并在设置FOSOAuthServerBundle时查看此article。密切注意配置部分。

答案 1 :(得分:1)

FOSOAuthServerBundle根据令牌对您的用户进行身份验证,因此您不必担心范围,这与角色不同。在您的控制器内,您可以获得$this->getUser()以获取当前经过身份验证的用户。如果这样做,那么检查isGranted是否也有效。

http://symfony.com/doc/current/book/security.html

public function helloAction($name)
{
    // The second parameter is used to specify on what object the role is tested.
    $this->denyAccessUnlessGranted('ROLE_ADMIN', null, 'Unable to access this page!');

    // Old way :
    // if (false === $this->get('security.authorization_checker')->isGranted('ROLE_ADMIN')) {
    //     throw $this->createAccessDeniedException('Unable to access this page!');
    // }

    // ...
}

如果$this->getUser()无法正常工作,您必须在fetch实体上将EAGER设置为AccessToken

class AccessToken extends BaseAccessToken
{
    /**
     * @ORM\Id
     * @ORM\Column(type="integer")
     * @ORM\GeneratedValue(strategy="AUTO")
     */
    protected $id;

    /**
     * @ORM\ManyToOne(targetEntity="AppBundle\Entity\Client")
     * @ORM\JoinColumn(nullable=false)
     */
    protected $client;

    /**
     * @ORM\ManyToOne(targetEntity="AppBundle\Entity\User", fetch="EAGER")
     */
    protected $user;
}

答案 2 :(得分:1)

github上存在一个与back to 2013 for this约会的问题。如果您阅读该问题并按照链接进行操作,最终将会向用户Spomky创建his own library and Symfony bundle并成为FOSAuthServerBundle的suggested as a maintainer。一旦稳定,FOS组织似乎将Spomky的工作合并到FOSOAuthServerBundle的下一个主要版本中。

答案 3 :(得分:0)

您可以返回用户帐户信息以及令牌。

这是处理类似情况的方法,我创建了一个代理路由,将用户名和密码作为请求参数,将oauth客户端信息添加到请求中,并将请求转发给Oauth Token Action。然后我获取该信息并返回用户信息以及令牌。

/**
 * @REST\Post("/authorize")
 */
public function loginAction(Request $request){
    $request->request->add( array(
        'grant_type' => 'password',
        'client_id' => $this->container->getParameter('oauth_client_id') . "_" . $this->container->getParameter('oauth_client_random_id'),
        'client_secret' => $this->container->getParameter('oauth_client_secret')
    ));
    $tokenAction = $this->get('fos_oauth_server.controller.token')->tokenAction($request);
    $tokenObject = json_decode( $tokenAction->getContent() );

    if(key_exists('error_description', $tokenObject)){
        return $this->view(["error" => $tokenObject->error_description], 401);
    };


    $user = $this->getDoctrine()->getRepository('\App\Entity\Oauth\AccessToken')->findOneBy( array('token' => $tokenObject->access_token ) )->getUser();
    $return = array(
        "roles" => $user->getUser()->getRoles(),
        "access_token" => $tokenObject->access_token,
        "expires_in" => $tokenObject->expires_in,
        "token_type" => $tokenObject->token_type,
        "scope" =>$tokenObject->scope,
        "refresh_token" => $tokenObject->refresh_token
    );
    return $this->view($return);
}

我使用此路由进行身份验证/令牌生成,而不是使用OAuthBundle附带的路由