registry || !\count($this->registry->getManagers())) { return false; } // Check, if option class was set in configuration if (null === $configuration->getClass()) { return false; } // Get actual entity manager for class $em = $this->registry->getManagerForClass($configuration->getClass()); // Check, if class name is what we need if (null !== $em && User::class !== $em->getClassMetadata($configuration->getClass())->getName()) { return false; } return true; } /** * {@inheritdoc} * * Applies converting * * @throws \InvalidArgumentException When route attributes are missing * @throws NotFoundHttpException When object not found */ public function apply(Request $request, ParamConverter $configuration): bool { $username = $request->attributes->get('username'); $feedToken = $request->attributes->get('token'); if (!$request->attributes->has('username') || !$request->attributes->has('token')) { return false; } // Get actual entity manager for class $em = $this->registry->getManagerForClass($configuration->getClass()); if (null === $em) { return false; } /** @var UserRepository $userRepository */ $userRepository = $em->getRepository($configuration->getClass()); // Try to find user by its username and config feed_token $user = $userRepository->findOneByUsernameAndFeedtoken($username, $feedToken); if (null === $user || !($user instanceof User)) { throw new NotFoundHttpException(\sprintf('%s not found.', $configuration->getClass())); } // Map found user to the route's parameter $request->attributes->set($configuration->getName(), $user); return true; } }