Improved file downloading
This commit is contained in:
parent
3fb739c4e4
commit
59fb0eae4f
7 changed files with 83 additions and 196 deletions
37
app/Http/Controllers/Remote/RemoteController.php
Normal file
37
app/Http/Controllers/Remote/RemoteController.php
Normal file
|
@ -0,0 +1,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
|
||||
]);
|
||||
}
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue