Skip to content

Commit 04f5ecb

Browse files
authored
Merge pull request #3648 from HDInnovations/Request-3647
(Add) Request #3647
2 parents 7997033 + 52e499c commit 04f5ecb

File tree

2 files changed

+69
-14
lines changed

2 files changed

+69
-14
lines changed

app/Http/Controllers/User/TorrentZipController.php

+19-7
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,24 @@ public function show(Request $request, User $user): \Illuminate\Http\RedirectRes
3434
// Authorized User
3535
abort_unless($request->user()->is($user), 403);
3636

37+
// Get Users History Or Peers
38+
if ($request->boolean('type') === true) {
39+
$torrents = Torrent::whereRelation('peers', 'user_id', '=', $user->id)
40+
->whereRelation('peers', 'active', '=', true)
41+
->whereRelation('peers', 'visible', '=', true)
42+
->get();
43+
44+
$zipFileName = $user->username.'-peers'.'.zip';
45+
} else {
46+
$torrents = Torrent::whereRelation('history', 'user_id', '=', $user->id)->get();
47+
48+
$zipFileName = $user->username.'-history'.'.zip';
49+
}
50+
51+
if ($torrents->isEmpty()) {
52+
return redirect()->back()->withErrors('No Torrents Found');
53+
}
54+
3755
// Define Dir For Zip
3856
$zipPath = getcwd().'/files/tmp_zip/';
3957

@@ -42,19 +60,13 @@ public function show(Request $request, User $user): \Illuminate\Http\RedirectRes
4260
File::makeDirectory($zipPath, 0755, true, true);
4361
}
4462

45-
// Zip File Name
46-
$zipFileName = $user->username.'.zip';
47-
4863
// Create ZipArchive Obj
4964
$zipArchive = new ZipArchive();
5065

51-
// Get Users History
52-
$historyTorrents = Torrent::whereRelation('history', 'user_id', '=', $user->id)->get();
53-
5466
if ($zipArchive->open($zipPath.$zipFileName, ZipArchive::CREATE | ZipArchive::OVERWRITE) === true) {
5567
$announceUrl = route('announce', ['passkey' => $user->passkey]);
5668

57-
foreach ($historyTorrents as $torrent) {
69+
foreach ($torrents as $torrent) {
5870
if (file_exists(getcwd().'/files/torrents/'.$torrent->file_name)) {
5971
$dict = Bencode::bdecode(file_get_contents(getcwd().'/files/torrents/'.$torrent->file_name));
6072

resources/views/user/buttons/user.blade.php

+50-7
Original file line numberDiff line numberDiff line change
@@ -256,13 +256,56 @@ class="nav-tab__link"
256256
{{ __('staff.flush-ghost-peers') }}
257257
</button>
258258
</form>
259-
<li class="nav-tabV2">
260-
<a
261-
class="nav-tab__link"
262-
href="{{ route('users.torrent_zip.show', ['user' => $user]) }}"
263-
>
264-
{{ __('torrent.download-all') }}
265-
</a>
259+
<li class="nav-tabV2" x-data="dialog">
260+
<a class="nav-tab__link" x-bind="showDialog">Download Torrent Files</a>
261+
262+
<dialog class="dialog" x-bind="dialogElement">
263+
<h3 class="dialog__heading">Download Torrent Files</h3>
264+
<form
265+
class="dialog__form"
266+
action="{{ route('users.torrent_zip.show', ['user' => $user]) }}"
267+
x-bind="dialogForm"
268+
>
269+
<fieldset>
270+
<legend>Select download type:</legend>
271+
272+
<div>
273+
<input
274+
class="form__radio"
275+
type="radio"
276+
id="history"
277+
name="type"
278+
value="false"
279+
checked
280+
/>
281+
<label for="history">All History</label>
282+
</div>
283+
284+
<div>
285+
<input
286+
class="form__radio"
287+
type="radio"
288+
id="peer"
289+
name="type"
290+
value="true"
291+
/>
292+
<label for="peer">Active Peers</label>
293+
</div>
294+
</fieldset>
295+
<p class="form__group">
296+
<button class="form__button form__button--filled">
297+
{{ __('common.download') }}
298+
</button>
299+
<button
300+
formmethod="dialog"
301+
formnovalidate
302+
class="form__button form__button--outlined"
303+
>
304+
{{ __('common.cancel') }}
305+
</button>
306+
</p>
307+
</form>
308+
</dialog>
266309
</li>
267310
@endif
268311
</ul>

0 commit comments

Comments
 (0)