-
Notifications
You must be signed in to change notification settings - Fork 399
/
Copy pathModerationController.php
167 lines (137 loc) · 6.8 KB
/
ModerationController.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
<?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\Staff;
use App\Helpers\TorrentHelper;
use App\Http\Controllers\Controller;
use App\Http\Requests\Staff\UpdateModerationRequest;
use App\Models\Conversation;
use App\Models\PrivateMessage;
use App\Models\Scopes\ApprovedScope;
use App\Models\Torrent;
use App\Repositories\ChatRepository;
use App\Services\Unit3dAnnounce;
/**
* @see \Tests\Todo\Feature\Http\Controllers\Staff\ModerationControllerTest
*/
class ModerationController extends Controller
{
/**
* ModerationController Constructor.
*/
public function __construct(private readonly ChatRepository $chatRepository)
{
}
/**
* Torrent Moderation Panel.
*/
public function index(): \Illuminate\Contracts\View\Factory|\Illuminate\View\View
{
abort_unless(auth()->user()->group->is_torrent_modo, 403);
return view('Staff.moderation.index', [
'current' => now(),
'pending' => Torrent::withoutGlobalScope(ApprovedScope::class)
->with(['user.group', 'category', 'type', 'resolution'])
->where('status', '=', Torrent::PENDING)
->get(),
'postponed' => Torrent::withoutGlobalScope(ApprovedScope::class)
->with(['user.group', 'moderated.group', 'category', 'type', 'resolution'])
->where('status', '=', Torrent::POSTPONED)
->get(),
'rejected' => Torrent::withoutGlobalScope(ApprovedScope::class)
->with(['user.group', 'moderated.group', 'category', 'type', 'resolution'])
->where('status', '=', Torrent::REJECTED)
->get(),
]);
}
/**
* Update a torrent's moderation status.
*/
public function update(UpdateModerationRequest $request, int $id): \Illuminate\Http\RedirectResponse
{
abort_unless(auth()->user()->group->is_torrent_modo, 403);
$torrent = Torrent::withoutGlobalScope(ApprovedScope::class)->with('user')->findOrFail($id);
if ($request->integer('old_status') !== $torrent->status) {
return to_route('torrents.show', ['id' => $id])
->withInput()
->withErrors('Torrent has already been moderated since this page was loaded.');
}
if ($request->integer('status') === $torrent->status) {
return to_route('torrents.show', ['id' => $id])
->withInput()
->withErrors(
match ($torrent->status) {
Torrent::PENDING => 'Torrent already pending.',
Torrent::APPROVED => 'Torrent already approved.',
Torrent::REJECTED => 'Torrent already rejected.',
Torrent::POSTPONED => 'Torrent already postponed.',
default => 'Invalid moderation status.'
}
);
}
$staff = auth()->user();
switch ($request->status) {
case Torrent::APPROVED:
// Announce To Shoutbox
if ($torrent->anon === 0) {
$this->chatRepository->systemMessage(
\sprintf('User [url=%s/users/', config('app.url')).$torrent->user->username.']'.$torrent->user->username.\sprintf('[/url] has uploaded a new '.$torrent->category->name.'. [url=%s/torrents/', config('app.url')).$id.']'.$torrent->name.'[/url], grab it now!'
);
} else {
$this->chatRepository->systemMessage(
\sprintf('An anonymous user has uploaded a new '.$torrent->category->name.'. [url=%s/torrents/', config('app.url')).$id.']'.$torrent->name.'[/url], grab it now!'
);
}
TorrentHelper::approveHelper($id);
return to_route('staff.moderation.index')
->withSuccess('Torrent Approved');
case Torrent::REJECTED:
$torrent->update([
'status' => Torrent::REJECTED,
'moderated_at' => now(),
'moderated_by' => $staff->id,
]);
$conversation = Conversation::create(['subject' => 'Your upload, '.$torrent->name.', has been rejected by '.$staff->username]);
$conversation->users()->sync([$staff->id => ['read' => true], $torrent->user_id]);
PrivateMessage::create([
'conversation_id' => $conversation->id,
'sender_id' => $staff->id,
'message' => "Greetings, \n\nYour upload, [url=/torrents/".$id.']'.$torrent->name."[/url], has been rejected. Please see below the message from the staff member.\n\n[quote=".$staff->username.']'.$request->message.'[/quote]',
]);
cache()->forget('announce-torrents:by-infohash:'.$torrent->info_hash);
Unit3dAnnounce::addTorrent($torrent);
return to_route('staff.moderation.index')
->withSuccess('Torrent Rejected');
case Torrent::POSTPONED:
$torrent->update([
'status' => Torrent::POSTPONED,
'moderated_at' => now(),
'moderated_by' => $staff->id,
]);
$conversation = Conversation::create(['subject' => 'Your upload, '.$torrent->name.', has been postponed by '.$staff->username]);
$conversation->users()->sync([$staff->id => ['read' => true], $torrent->user_id]);
PrivateMessage::create([
'conversation_id' => $conversation->id,
'sender_id' => $staff->id,
'message' => "Greetings, \n\nYour upload, [url=/torrents/".$id.']'.$torrent->name."[/url], has been postponed. Please see below the message from the staff member.\n\n[quote=".$staff->username.']'.$request->message.'[/quote]',
]);
cache()->forget('announce-torrents:by-infohash:'.$torrent->info_hash);
Unit3dAnnounce::addTorrent($torrent);
return to_route('staff.moderation.index')
->withSuccess('Torrent Postponed');
default: // Undefined status
return to_route('torrents.show', ['id' => $id])
->withErrors('Invalid moderation status.');
}
}
}