mirror of
https://github.com/HDInnovations/UNIT3D-Community-Edition.git
synced 2026-03-17 10:53:00 -05:00
Prevents the need for manually setting higher memory limits. Also removed the empty check to simplify logic and transactions, and an empty zip is completely normal.
93 lines
3.5 KiB
PHP
93 lines
3.5 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/**
|
|
* NOTICE OF LICENSE.
|
|
*
|
|
* UNIT3D Community Edition is open-sourced software licensed under the GNU Affero General Public License v3.0
|
|
* The details is bundled with this project in the file LICENSE.txt.
|
|
*
|
|
* @project UNIT3D Community Edition
|
|
*
|
|
* @author Roardom <roardom@protonmail.com>
|
|
* @license https://www.gnu.org/licenses/agpl-3.0.en.html/ GNU Affero General Public License v3.0
|
|
*/
|
|
|
|
namespace App\Http\Controllers\User;
|
|
|
|
use App\Helpers\Bencode;
|
|
use App\Http\Controllers\Controller;
|
|
use App\Models\Torrent;
|
|
use App\Models\User;
|
|
use Illuminate\Http\Request;
|
|
use Illuminate\Support\Facades\File;
|
|
use Illuminate\Support\Facades\Storage;
|
|
use ZipStream\ZipStream;
|
|
|
|
class TorrentZipController extends Controller
|
|
{
|
|
/**
|
|
* Show zip file containing all torrents user has history of.
|
|
*/
|
|
public function show(Request $request, User $user): \Illuminate\Http\RedirectResponse|\Symfony\Component\HttpFoundation\StreamedResponse
|
|
{
|
|
// Extend The Maximum Execution Time
|
|
set_time_limit(1200);
|
|
|
|
// Authorized User
|
|
abort_unless($request->user()->is($user), 403);
|
|
|
|
// Get Users History Or Peers
|
|
if ($request->boolean('type') === true) {
|
|
$zipFileName = $user->username.'-peers'.'.zip';
|
|
} else {
|
|
$zipFileName = $user->username.'-history'.'.zip';
|
|
}
|
|
|
|
return response()->streamDownload(
|
|
function () use ($zipFileName, $user, $request): void {
|
|
$zip = new ZipStream(outputName: sanitize_filename($zipFileName));
|
|
|
|
$announceUrl = route('announce', ['passkey' => $user->passkey]);
|
|
|
|
Torrent::query()
|
|
->when(
|
|
$request->boolean('type'),
|
|
fn ($query) => $query
|
|
->whereRelation('peers', 'user_id', '=', $user->id)
|
|
->whereRelation('peers', 'active', '=', true)
|
|
->whereRelation('peers', 'visible', '=', true),
|
|
fn ($query) => $query->whereRelation('history', 'user_id', '=', $user->id),
|
|
)
|
|
->chunk(100, function ($torrents) use ($announceUrl, $zip): void {
|
|
foreach ($torrents as $torrent) {
|
|
if (Storage::disk('torrent-files')->exists($torrent->file_name)) {
|
|
$dict = Bencode::bdecode(Storage::disk('torrent-files')->get($torrent->file_name));
|
|
|
|
// Set the announce key and add the user passkey
|
|
$dict['announce'] = $announceUrl;
|
|
|
|
// Set link to torrent as the comment
|
|
if (config('torrent.comment')) {
|
|
$dict['comment'] = config('torrent.comment').'. '.route('torrents.show', ['id' => $torrent->id]);
|
|
} else {
|
|
$dict['comment'] = route('torrents.show', ['id' => $torrent->id]);
|
|
}
|
|
|
|
$fileToDownload = Bencode::bencode($dict);
|
|
|
|
$filename = sanitize_filename('['.config('torrent.source').']'.$torrent->name.'.torrent');
|
|
|
|
$zip->addFile($filename, $fileToDownload);
|
|
}
|
|
}
|
|
});
|
|
|
|
$zip->finish();
|
|
},
|
|
sanitize_filename($zipFileName),
|
|
);
|
|
}
|
|
}
|