*/ class ViewController { protected function getViewOptions(Request $request, Application $app, $gist, $commit) { $gist = GistQuery::create()->findOneByFile($gist); if (null === $gist) { return null; } $history = $app['gist']->getHistory($gist); if (empty($history)) { return null; } $content = $this->getContentByCommit($app, $gist, $commit, $history); return array( 'gist' => $gist, 'type' => $gist->getType(), 'history' => $history, 'commit' => $commit, 'raw_content' => $content, 'content' => $app['gist']->highlight($gist->getType(), $content), ); } public function viewAction(Request $request, Application $app, $gist, $commit) { $viewOptions = $this->getViewOptions($request, $app, $gist, $commit); if (is_array($viewOptions)) { return $app['twig']->render('View/view.html.twig', $viewOptions); } else { return $this->notFoundResponse($app); } } public function rawAction(Request $request, Application $app, $gist, $commit) { $viewOptions = $this->getViewOptions($request, $app, $gist, $commit); if (is_array($viewOptions)) { return new Response( $viewOptions['raw_content'], 200, array( 'Content-Type' => 'text/plain', ) ); } else { return $this->notFoundResponse($app); } } public function downloadAction(Request $request, Application $app, $gist, $commit) { $viewOptions = $this->getViewOptions($request, $app, $gist, $commit); if (is_array($viewOptions)) { $gist = $viewOptions['gist']; $file = $app['gist_path'].'/'.$gist->getFile(); return new Response( $viewOptions['raw_content'], 200, array( 'Content-Disposition' => sprintf('filename=%s.%s', $gist->getFile(), $gist->getTypeAsExtension()), 'Content-Length' => filesize($file), 'Content-Type' => 'application/force-download', ) ); } else { return $this->notFoundResponse($app); } } public function revisionsAction(Request $request, Application $app, $gist) { $gist = GistQuery::create()->findOneByFile($gist); if (null === $gist) { return $this->notFoundResponse($app); } $history = $app['gist']->getHistory($gist); if (empty($history)) { return $this->notFoundResponse($app); } return $app['twig']->render( 'View/revisions.html.twig', array( 'gist' => $gist, 'history' => $history, ) ); } protected function notFoundResponse(Application $app) { return $app['twig']->render('View/notFound.html.twig'); } protected function getContentByCommit(Application $app, Gist $gist, &$commit, $history) { if ($commit === 0) { $commit = $history[0]['commit']; } else { $commitExists = false; foreach ($history as $ci) { if ($commit === $ci['commit']) { $commitExists = true; } } if (!$commitExists) { return null; } } return $app['gist']->getContent($gist, $commit); } }