mirror of
https://github.com/HDInnovations/UNIT3D-Community-Edition.git
synced 2026-03-17 02:20:58 -05:00
Also had to use `@style` directives inside /resources/views/components/user-tag.blade.php. Prettier was erroring when the `@if` directive was inside the html attribute otherwise. Seems to have always been an issue, but the CI must only be formatting files that changed and because the file was only just changed now, it never discovered it until now.
109 lines
4.1 KiB
PHP
109 lines
4.1 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 HDVinnie <hdinnovations@protonmail.com>
|
|
* @license https://www.gnu.org/licenses/agpl-3.0.en.html/ GNU Affero General Public License v3.0
|
|
*/
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
use App\Enums\ModerationStatus;
|
|
use App\Helpers\Bencode;
|
|
use App\Models\Scopes\ApprovedScope;
|
|
use App\Models\Torrent;
|
|
use App\Models\TorrentDownload;
|
|
use App\Models\User;
|
|
use Illuminate\Http\Request;
|
|
use Illuminate\Support\Facades\Storage;
|
|
|
|
class TorrentDownloadController extends Controller
|
|
{
|
|
/**
|
|
* Download Check.
|
|
*/
|
|
public function show(Request $request, int $id): \Illuminate\Contracts\View\Factory|\Illuminate\View\View
|
|
{
|
|
return view('torrent.download-check', [
|
|
'torrent' => Torrent::withoutGlobalScope(ApprovedScope::class)->findOrFail($id),
|
|
'user' => $request->user(),
|
|
]);
|
|
}
|
|
|
|
/**
|
|
* Download A Torrent.
|
|
*/
|
|
public function store(Request $request, int $id, ?string $rsskey = null): \Illuminate\Http\RedirectResponse|\Symfony\Component\HttpFoundation\StreamedResponse
|
|
{
|
|
$user = $request->user();
|
|
|
|
if (!$user && $rsskey) {
|
|
$user = User::where('rsskey', '=', $rsskey)->sole();
|
|
}
|
|
$torrent = Torrent::withoutGlobalScope(ApprovedScope::class)->findOrFail($id);
|
|
$hasHistory = $user->history()->where([['torrent_id', '=', $torrent->id], ['seeder', '=', 1]])->exists();
|
|
|
|
// User's ratio is too low
|
|
if ($user->ratio < config('other.ratio') && !($torrent->user_id === $user->id || $hasHistory)) {
|
|
return to_route('torrents.show', ['id' => $torrent->id])
|
|
->withErrors('Your Ratio Is Too Low To Download!');
|
|
}
|
|
|
|
// User's download rights are revoked
|
|
if ($user->can_download == 0 && !($torrent->user_id === $user->id || $hasHistory)) {
|
|
return to_route('torrents.show', ['id' => $torrent->id])
|
|
->withErrors('Your Download Rights Have Been Revoked!');
|
|
}
|
|
|
|
// Torrent Status Is Rejected
|
|
if ($torrent->status === ModerationStatus::REJECTED) {
|
|
return to_route('torrents.show', ['id' => $torrent->id])
|
|
->withErrors('This Torrent Has Been Rejected By Staff');
|
|
}
|
|
|
|
// The torrent file exist ?
|
|
if (!Storage::disk('torrent-files')->exists($torrent->file_name)) {
|
|
return to_route('torrents.show', ['id' => $torrent->id])
|
|
->withErrors('Torrent File Not Found! Please Report This Torrent!');
|
|
}
|
|
|
|
if (!$request->user() && !($rsskey && $user)) {
|
|
return to_route('login');
|
|
}
|
|
|
|
$torrentDownload = new TorrentDownload();
|
|
$torrentDownload->user_id = $user->id;
|
|
$torrentDownload->torrent_id = $id;
|
|
$torrentDownload->type = $rsskey ? 'RSS/API using '.$request->header('User-Agent') : 'Site using '.$request->header('User-Agent');
|
|
$torrentDownload->save();
|
|
|
|
return response()->streamDownload(
|
|
function () use ($id, $user, $torrent): void {
|
|
$dict = Bencode::bdecode(Storage::disk('torrent-files')->get($torrent->file_name));
|
|
|
|
// Set the announce key and add the user passkey
|
|
$dict['announce'] = route('announce', ['passkey' => $user->passkey]);
|
|
|
|
// Set link to torrent as the comment
|
|
if (config('torrent.comment')) {
|
|
$dict['comment'] = config('torrent.comment').'. '.route('torrents.show', ['id' => $id]);
|
|
} else {
|
|
$dict['comment'] = route('torrents.show', ['id' => $id]);
|
|
}
|
|
|
|
echo Bencode::bencode($dict);
|
|
},
|
|
str_replace([' ', '/', '\\'], ['.', '-', '-'], '['.config('torrent.source').']'.$torrent->name.'.torrent'),
|
|
['Content-Type' => 'application/x-bittorrent']
|
|
);
|
|
}
|
|
}
|