public function showFile($id, $fileId)
 {
     return ['file' => base64_encode(file_get_contents($this->service->getFilePath($fileId))), 'size' => filesize($this->service->getFilePath($fileId)), 'name' => $this->service->getFileName($fileId)];
 }