/**
  * Завантажити файл
  * @param $id
  */
 public function downloadAction($id)
 {
     $torrent = TorrentData::getFile($id);
     if ($torrent) {
         FileHelper::downloadFile($torrent);
     } else {
         $this->render('errorNotFile');
     }
 }