Symfony和API平台-通过slug或userToken或不同于ID的任何其他字段检索数据

时间:2019-02-13 23:09:47

标签: php api symfony doctrine api-platform.com

我想做的是:

  • 从前端向API自定义网址发送请求以激活用户帐户(/ account / activate / someTokenValue)
  • 通过confirmationToken值检索用户表单数据库
  • 激活用户帐户并将其保存到数据库
  • 返回激活信息(或某些错误,例如令牌无效)

所以我定义了:

* @ApiResource(itemOperations={
 *     "get",
 *     "activate_account"={
 *         "method"="get",
 *         "path"="/account/activate/{confirmationToken}",
 *         "controller"=UserActivate::class
 *     }
 * })
 */

在我的User实体类中,有UserActivate控制器和UserActivateHandler控制器调用的UserActivate。 我已将ApiProperty identifier的ID设置为false,并将confirmationToken的ID设置为true

   /**
     * @ORM\Id()
     * @ORM\GeneratedValue()
     * @ORM\Column(type="integer")
     * @ApiProperty(identifier=false)
     *
     */
    private $id;

    /**
      * 
      * @ORM\Column(type="string", nullable=true)
      * @ApiProperty(identifier=true)
      */
    protected $confirmationToken;

但是API平台仍然需要ID,并且似乎看不到confirmationToken参数。

基本上我的问题是,在这种情况下,如何通过confirmationToken来检索对象?

1 个答案:

答案 0 :(得分:1)

我遇到了同样的问题,即通过与标识为标识符的属性不同的属性来获取实体;您在属性注释方面做得很好:

@ApiProperty(identifier=false) 
@ApiProperty(identifier=true)

,但同时您必须保留路径中的{id},因此请更改

"path"="/account/activate/{confirmationToken}",

"path"="/account/activate/{id}"