repository = $repository; $this->cache = $cache; } /** * @param UrlManager $manager * @param Request $request * @return bool|array * @throws UrlNormalizerRedirectException */ public function parseRequest($manager, $request): bool|array { $path = $request->pathInfo; $result = $this->cache->getOrSet(['post_route', 'path' => $path], function () use ($path) { if (!$post = $this->repository->findBySlug($this->getPathSlug($path))) { return ['id' => null, 'path' => null]; } return ['id' => $post->id, 'path' => $this->getPagePath($post)]; }, 1000); if (empty($result['id'])) { return false; } if ($path != $result['path']) { throw new UrlNormalizerRedirectException(['post/post', 'id' => $result['id']], 301); } return ['post/post', ['id' => $result['id']]]; } public function createUrl($manager, $route, $params) { if ($route == 'post/post') { if (empty($params['id'])) { throw new InvalidArgumentException('Empty id.'); } $id = $params['id']; $url = $this->cache->getOrSet(['post_route', 'id' => $id], function () use ($id) { if (!$post = $this->repository->find($id)) { return null; } return $this->getPagePath($post); }); if (!$url) { throw new InvalidArgumentException('Undefined id.'); } unset($params['id']); if (!empty($params) && ($query = http_build_query($params)) !== '') { $url .= '?' . $query; } return $url; } return false; } private function getPathSlug($path): string { $chunks = explode('/', $path); return end($chunks); } private function getPagePath(Post $post): string { $type = PostType::findOne($post->type_id); $chunks = [$type->name]; $chunks[] = $post->slug; return implode('/', $chunks); } }