mirror of
				https://github.com/pelican-dev/panel.git
				synced 2025-11-04 03:36:53 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			56 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			56 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
/**
 | 
						|
 * Pterodactyl - Panel
 | 
						|
 * Copyright (c) 2015 - 2017 Dane Everitt <dane@daneeveritt.com>.
 | 
						|
 *
 | 
						|
 * This software is licensed under the terms of the MIT license.
 | 
						|
 * https://opensource.org/licenses/MIT
 | 
						|
 */
 | 
						|
 | 
						|
namespace Pterodactyl\Http\Controllers\Server\Files;
 | 
						|
 | 
						|
use Illuminate\Http\Request;
 | 
						|
use Illuminate\Cache\Repository;
 | 
						|
use Illuminate\Http\RedirectResponse;
 | 
						|
use Pterodactyl\Http\Controllers\Controller;
 | 
						|
 | 
						|
class DownloadController extends Controller
 | 
						|
{
 | 
						|
    /**
 | 
						|
     * @var \Illuminate\Cache\Repository
 | 
						|
     */
 | 
						|
    protected $cache;
 | 
						|
 | 
						|
    /**
 | 
						|
     * DownloadController constructor.
 | 
						|
     *
 | 
						|
     * @param \Illuminate\Cache\Repository $cache
 | 
						|
     */
 | 
						|
    public function __construct(Repository $cache)
 | 
						|
    {
 | 
						|
        $this->cache = $cache;
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Setup a unique download link for a user to download a file from.
 | 
						|
     *
 | 
						|
     * @param \Illuminate\Http\Request $request
 | 
						|
     * @param string                   $uuid
 | 
						|
     * @param string                   $file
 | 
						|
     * @return \Illuminate\Http\RedirectResponse
 | 
						|
     *
 | 
						|
     * @throws \Illuminate\Auth\Access\AuthorizationException
 | 
						|
     */
 | 
						|
    public function index(Request $request, string $uuid, string $file): RedirectResponse
 | 
						|
    {
 | 
						|
        $server = $request->attributes->get('server');
 | 
						|
        $this->authorize('download-files', $server);
 | 
						|
 | 
						|
        $token = str_random(40);
 | 
						|
        $node = $server->getRelation('node');
 | 
						|
        $this->cache->tags(['Server:Downloads'])->put($token, ['server' => $server->uuid, 'path' => $file], 5);
 | 
						|
 | 
						|
        return redirect(sprintf('%s://%s:%s/v1/server/file/download/%s', $node->scheme, $node->fqdn, $node->daemonListen, $token));
 | 
						|
    }
 | 
						|
}
 |