public function statusAction($id)
 {
     $fileStatus = new File(self::PATH_DATA, $id . self::SUFFIX_STATUS);
     if ($fileStatus->exists()) {
         $status = new SpiderStatus();
         $status->read($fileStatus);
     } else {
         $status = null;
     }
     $view = new StatusView($status);
     $this->response->setView($view);
 }