api plateform, fix out iri converter

1.1k Views Asked by At

I'm looking for approach to find out retrieve an resource not depending on it's id but something like username, GET /api/user/{username}.

So I did something like this:

/**
* @ApiRessource({
*     itemOperations={
*         "get"={
*             "normalization_context"={"groups"={"user:read"}},
*             "path"="/user/{username}", "read"=false,
*             "controller"=ApiUser::class,
*             "openapi_context"={
*                  "summary" = "Récupérer un freehelper en particulier par son nom"
*              },
*          },
})
*/
class User{
{
    /**
     * @Groups({"user:read"})
     * @ORM\Id()
     * @ORM\GeneratedValue()
     * @ORM\Column(type="integer")
     * @ApiProperty(identifier=false)
     */
    private $id;

    /**
     * @Groups({"user:read"})
     * @ORM\Column(type="string", length=56, unique=true)
     * @ApiProperty(identifier=true)
     */
    private $username;
....
}

and then I write and dataproider as described here, so I got this error

"detail": "Unable to generate an IRI for \"App\\Entity\\User\".",

Can you help me understanding how to do that?

1

There are 1 best solutions below

4
On

You can create a function in ApiUser controller like that:

/**
 * @Route("/user/{username}", name="api_user_username", methods={"GET"})
 */
public function getByUsername($username)
{
    $event = $this->em->getRepository(User::class)
                ->findOneBy(["username" => $username));

    return $this->httpKernel
                ->handle($subRequest, HttpKernelInterface::SUB_REQUEST, false);
}