cache = $cache; } /** * Configure a reference to a file to download in the cache so that when the * user hits the Daemon and it verifies with the Panel they'll actually be able * to download that file. * * Returns the token that needs to be used when downloading the file. * * @param \Pterodactyl\Http\Requests\Api\Client\Servers\Files\DownloadFileRequest $request * @return \Illuminate\Http\JsonResponse * @throws \Exception */ public function download(DownloadFileRequest $request): JsonResponse { /** @var \Pterodactyl\Models\Server $server */ $server = $request->getModel(Server::class); $token = Uuid::uuid4()->toString(); $this->cache->put( 'Server:Downloads:' . $token, ['server' => $server->uuid, 'path' => $request->route()->parameter('file')], Carbon::now()->addMinutes(5) ); return JsonResponse::create(['token' => $token]); } }