forked from pterodactyl/panel
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRemoteController.php
More file actions
37 lines (29 loc) · 875 Bytes
/
RemoteController.php
File metadata and controls
37 lines (29 loc) · 875 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<?php
namespace Pterodactyl\Http\Controllers\Remote;
use Pterodactyl\Models\Download;
use Pterodactyl\Exceptions\DisplayException;
use Pterodactyl\Http\Controllers\Controller;
use Illuminate\Http\Request;
class RemoteController extends Controller
{
/**
* Controller Constructor
*/
public function __construct()
{
// No middleware for this route.
}
public function postDownload(Request $request) {
$download = Download::where('token', $request->input('token', '00'))->first();
if (!$download) {
return response()->json([
'error' => 'An invalid request token was recieved with this request.'
], 403);
}
$download->delete();
return response()->json([
'path' => $download->path,
'server' => $download->server
]);
}
}