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_main_route', 'path' => $path ], function () use ( $path ) { if ( ! $type = $this->repository->findByName( $this->getPathName( $path ) ) ) { return [ 'tid' => null, 'path' => null ]; } return [ 'tid' => $type->id, 'path' => $this->getPagePath( $type ) ]; }, 1000 ); if ( empty( $result['tid'] ) ) { return false; } if ( $path != $result['path'] ) { throw new UrlNormalizerRedirectException( [ 'post/index', 'tid' => $result['tid'] ], 301 ); } return [ 'post/index', [ 'tid' => $result['tid'] ] ]; } public function createUrl($manager, $route, $params) { if ($route == 'post/index') { if (empty($params['tid'])) { throw new InvalidArgumentException('Empty type.'); } $tid = $params['tid']; $url = $this->cache->getOrSet(['post_main_route', 'tid' => $tid], function () use ($tid) { if (!$type = $this->repository->find($tid)) { return null; } return $this->getPagePath($type); }); if (!$url) { throw new InvalidArgumentException('Undefined id.'); } unset($params['tid']); if (!empty($params) && ($query = http_build_query($params)) !== '') { $url .= '?' . $query; } return $url; } return false; } private function getPathName($path): string { $chunks = explode('/', $path); return end($chunks); } private function getPagePath(PostType $type): string { $chunks = ['post', $type->name]; return implode('/', $chunks); } }