Skip to content

Commit 6aa1774

Browse files
committed
refactor: use laravel notifications for system user private messages
1 parent 46026bf commit 6aa1774

32 files changed

+1007
-122
lines changed

app/Console/Commands/AutoRemoveExpiredDonors.php

+4-6
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,12 @@
1717
namespace App\Console\Commands;
1818

1919
use App\Models\User;
20+
use App\Notifications\DonationExpired;
2021
use App\Services\Unit3dAnnounce;
2122
use Exception;
2223
use Illuminate\Console\Command;
2324
use Illuminate\Support\Carbon;
25+
use Illuminate\Support\Facades\Notification;
2426
use Throwable;
2527

2628
class AutoRemoveExpiredDonors extends Command
@@ -53,16 +55,12 @@ final public function handle(): void
5355
$query->where('ends_at', '>', Carbon::now());
5456
})->get();
5557

58+
Notification::send($expiredDonors, new DonationExpired());
59+
5660
foreach ($expiredDonors as $user) {
5761
$user->is_donor = false;
5862
$user->save();
5963

60-
User::sendSystemNotificationTo(
61-
userId: $user->id,
62-
subject: 'Your Donor Status Has Expired',
63-
message: 'Your donor status has expired. Feel free to donate again to regain your donor status. Thank you for your support!',
64-
);
65-
6664
cache()->forget('user:'.$user->passkey);
6765
Unit3dAnnounce::addUser($user);
6866
}

app/Console/Commands/AutoRemovePersonalFreeleech.php

+3-6
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,12 @@
1818

1919
use App\Models\PersonalFreeleech;
2020
use App\Models\User;
21+
use App\Notifications\PersonalFreeleechDeleted;
2122
use App\Services\Unit3dAnnounce;
2223
use Exception;
2324
use Illuminate\Console\Command;
2425
use Illuminate\Support\Carbon;
26+
use Illuminate\Support\Facades\Notification;
2527
use Throwable;
2628

2729
class AutoRemovePersonalFreeleech extends Command
@@ -51,12 +53,7 @@ final public function handle(): void
5153
$personalFreeleech = PersonalFreeleech::where('created_at', '<', $current->copy()->subDays(1))->get();
5254

5355
foreach ($personalFreeleech as $pfl) {
54-
// Send Private Message
55-
User::sendSystemNotificationTo(
56-
userId: $pfl->user_id,
57-
subject: 'Personal 24 Hour Freeleech Expired',
58-
message: 'Your [b]Personal 24 Hour Freeleech[/b] has expired! Feel free to reenable it in the BON Store!',
59-
);
56+
Notification::send(new User(['id' => $pfl->user_id]), new PersonalFreeleechDeleted());
6057

6158
// Delete The Record From DB
6259
$pfl->delete();

app/Console/Commands/AutoRewardResurrection.php

+2-4
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
namespace App\Console\Commands;
1818

1919
use App\Models\Resurrection;
20+
use App\Notifications\ResurrectionCompleted;
2021
use App\Repositories\ChatRepository;
2122
use App\Services\Unit3dAnnounce;
2223
use Exception;
@@ -96,10 +97,7 @@ final public function handle(): void
9697
Unit3dAnnounce::addTorrent($resurrection->torrent);
9798

9899
// Send Private Message
99-
$resurrection->user->sendSystemNotification(
100-
subject: 'Successful Graveyard Resurrection',
101-
message: \sprintf('You have successfully resurrected [url=%s/torrents/', $appurl).$resurrection->torrent->id.']'.$resurrection->torrent->name.'[/url] ! Thank you for bringing a torrent back from the dead! Enjoy the freeleech tokens!',
102-
);
100+
$resurrection->user->notify(new ResurrectionCompleted($resurrection->torrent));
103101
}
104102
});
105103

app/Http/Controllers/TorrentController.php

+6-7
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@
3737
use App\Models\Tv;
3838
use App\Models\Type;
3939
use App\Models\User;
40+
use App\Notifications\TorrentDeleted;
4041
use App\Repositories\ChatRepository;
4142
use App\Services\Tmdb\TMDBScraper;
4243
use App\Services\Unit3dAnnounce;
@@ -46,6 +47,7 @@
4647
use MarcReichel\IGDBLaravel\Models\Game;
4748
use MarcReichel\IGDBLaravel\Models\PlatformLogo;
4849
use Exception;
50+
use Illuminate\Support\Facades\Notification;
4951
use ReflectionException;
5052
use JsonException;
5153

@@ -298,13 +300,10 @@ public function destroy(Request $request, int $id): \Illuminate\Http\RedirectRes
298300

299301
abort_unless($user->group->is_modo || ($user->id === $torrent->user_id && Carbon::now()->lt($torrent->created_at->addDay())), 403);
300302

301-
foreach (History::where('torrent_id', '=', $torrent->id)->pluck('user_id') as $user_id) {
302-
User::sendSystemNotificationTo(
303-
userId: $user_id,
304-
subject: 'Torrent Deleted! - '.$torrent->name,
305-
message: '[b]Attention:[/b] Torrent '.$torrent->name." has been removed from our site. Our system shows that you were either the uploader, a seeder or a leecher on said torrent. We just wanted to let you know you can safely remove it from your client.\n\n[b]Removal Reason:[/b] ".$request->message,
306-
);
307-
}
303+
Notification::send(
304+
User::query()->whereHas('history', fn ($query) => $query->where('torrent_id', '=', $torrent->id))->get(),
305+
new TorrentDeleted($torrent, $request->message),
306+
);
308307

309308
// Reset Requests
310309
$torrent->requests()->update([

app/Http/Controllers/User/ApikeyController.php

+2-4
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818

1919
use App\Http\Controllers\Controller;
2020
use App\Models\User;
21+
use App\Notifications\ApikeyReset;
2122
use Illuminate\Http\Request;
2223
use Illuminate\Support\Facades\DB;
2324
use Illuminate\Support\Str;
@@ -45,10 +46,7 @@ protected function update(Request $request, User $user): \Illuminate\Http\Redire
4546
$user->apikeys()->create(['content' => $user->api_token]);
4647

4748
if ($changedByStaff) {
48-
$user->sendSystemNotification(
49-
subject: 'ATTENTION - Your API key has been reset',
50-
message: "Your API key has been reset by staff. You will need to update your API key in all your scripts to continue using the API.\n\nFor more information, please create a helpdesk ticket.",
51-
);
49+
$user->notify(new ApikeyReset());
5250
}
5351
});
5452

app/Http/Controllers/User/PasskeyController.php

+2-4
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818

1919
use App\Http\Controllers\Controller;
2020
use App\Models\User;
21+
use App\Notifications\PasskeyReset;
2122
use App\Services\Unit3dAnnounce;
2223
use Illuminate\Http\Request;
2324
use Illuminate\Support\Facades\DB;
@@ -62,10 +63,7 @@ protected function update(Request $request, User $user): \Illuminate\Http\Redire
6263
$user->passkeys()->create(['content' => $user->passkey]);
6364

6465
if ($changedByStaff) {
65-
$user->sendSystemNotification(
66-
subject: 'ATTENTION - Your passkey has been reset',
67-
message: "Your passkey has been reset by staff. You will need to update your passkey in all your torrent clients to continue seeding.\n\nFor more information, please create a helpdesk ticket.",
68-
);
66+
$user->notify(new PasskeyReset());
6967
}
7068
});
7169

app/Http/Controllers/User/PasswordController.php

+2-4
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818

1919
use App\Http\Controllers\Controller;
2020
use App\Models\User;
21+
use App\Notifications\PasswordUpdate;
2122
use Illuminate\Http\Request;
2223
use Illuminate\Support\Facades\DB;
2324
use Illuminate\Support\Facades\Hash;
@@ -57,10 +58,7 @@ protected function update(Request $request, User $user): \Illuminate\Http\Redire
5758
$user->passwordResetHistories()->create();
5859

5960
if ($changedByStaff) {
60-
$user->sendSystemNotification(
61-
subject: 'ATTENTION - Your password has been changed',
62-
message: "Your password has been changed by staff. You will need to update your password manager with the new password.\n\nFor more information, please create a helpdesk ticket.",
63-
);
61+
$user->notify(new PasswordUpdate());
6462
}
6563
});
6664

app/Http/Controllers/User/RsskeyController.php

+2-4
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818

1919
use App\Http\Controllers\Controller;
2020
use App\Models\User;
21+
use App\Notifications\RsskeyReset;
2122
use Illuminate\Http\Request;
2223
use Illuminate\Support\Facades\DB;
2324

@@ -44,10 +45,7 @@ protected function update(Request $request, User $user): \Illuminate\Http\Redire
4445
$user->rsskeys()->create(['content' => $user->rsskey]);
4546

4647
if ($changedByStaff) {
47-
$user->sendSystemNotification(
48-
subject: 'ATTENTION - Your RSS key has been reset',
49-
message: "Your RSS key has been reset by staff. You will need to update your RSS key in your torrent client to continue receiving new torrents.\n\nFor more information, please create a helpdesk ticket.",
50-
);
48+
$user->notify(new RsskeyReset());
5149
}
5250
});
5351

app/Http/Controllers/User/TransactionController.php

+2-5
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@
2222
use App\Models\BonTransactions;
2323
use App\Models\PersonalFreeleech;
2424
use App\Models\User;
25+
use App\Notifications\PersonalFreeleechCreated;
2526
use App\Services\Unit3dAnnounce;
2627
use Illuminate\Http\Request;
27-
use Illuminate\Support\Carbon;
2828
use Illuminate\Support\Facades\DB;
2929

3030
/**
@@ -97,10 +97,7 @@ public function store(StoreTransactionRequest $request, User $user): \Illuminate
9797

9898
Unit3dAnnounce::addPersonalFreeleech($user->id);
9999

100-
$user->sendSystemNotification(
101-
subject: trans('bon.pm-subject'),
102-
message: \sprintf(trans('bon.pm-message'), Carbon::now()->addDays(1)->toDayDateTimeString()).config('app.timezone').'[/b]!',
103-
);
100+
$user->notify(new PersonalFreeleechCreated());
104101

105102
break;
106103
case $bonExchange->invite:

app/Http/Controllers/User/WarningController.php

+6-12
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,9 @@
1919
use App\Http\Controllers\Controller;
2020
use App\Models\User;
2121
use App\Models\Warning;
22+
use App\Notifications\WarningCreated;
23+
use App\Notifications\WarningTorrentDeleted;
24+
use App\Notifications\WarningsDeleted;
2225
use Illuminate\Http\Request;
2326
use Exception;
2427
use Illuminate\Support\Carbon;
@@ -44,10 +47,7 @@ protected function store(Request $request, User $user): \Illuminate\Http\Redirec
4447
'active' => true,
4548
]);
4649

47-
$user->sendSystemNotification(
48-
subject: 'Received warning',
49-
message: 'You have received a [b]warning[/b]. Reason: '.$request->string('message'),
50-
);
50+
$user->notify(new WarningCreated($request->string('message')->toString()));
5151

5252
return to_route('users.show', ['user' => $user])
5353
->with('success', 'Warning issued successfully!');
@@ -65,10 +65,7 @@ public function destroy(Request $request, User $user, Warning $warning): \Illumi
6565

6666
$staff = $request->user();
6767

68-
$user->sendSystemNotification(
69-
subject: 'Hit and Run Warning Deleted',
70-
message: $staff->username.' has decided to delete your warning for torrent '.$warning->torrent.' You lucked out!',
71-
);
68+
$user->notify(new WarningTorrentDeleted($staff, $warning));
7269

7370
$warning->update([
7471
'deleted_by' => $staff->id,
@@ -95,10 +92,7 @@ public function massDestroy(Request $request, User $user): \Illuminate\Http\Redi
9592

9693
$user->warnings()->delete();
9794

98-
$user->sendSystemNotification(
99-
subject: 'All Hit and Run Warnings Deleted',
100-
message: $staff->username.' has decided to delete all of your warnings. You lucked out!',
101-
);
95+
$user->notify(new WarningsDeleted($staff));
10296

10397
return to_route('users.show', ['user' => $user])
10498
->with('success', 'All Warnings Were Successfully Deleted');

app/Http/Livewire/SimilarTorrent.php

+3-16
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,11 @@
2727
use App\Models\TorrentRequest;
2828
use App\Models\Tv;
2929
use App\Models\Type;
30-
use App\Models\User;
30+
use App\Notifications\TorrentsDeleted;
3131
use App\Services\Unit3dAnnounce;
3232
use App\Traits\CastLivewireProperties;
3333
use App\Traits\LivewireSort;
34+
use Illuminate\Support\Facades\Notification;
3435
use Livewire\Attributes\Computed;
3536
use Livewire\Attributes\Url;
3637
use Livewire\Component;
@@ -420,7 +421,6 @@ final public function deleteRecords(): void
420421
}
421422

422423
$torrents = Torrent::whereKey($this->checked)->get();
423-
$names = [];
424424
$users = [];
425425
$title = match (true) {
426426
$this->category->movie_meta => ($movie = Movie::find($this->tmdbId))->title.' ('.$movie->release_date->format('Y').')',
@@ -430,8 +430,6 @@ final public function deleteRecords(): void
430430
};
431431

432432
foreach ($torrents as $torrent) {
433-
$names[] = $torrent->name;
434-
435433
foreach (History::where('torrent_id', '=', $torrent->id)->get() as $pm) {
436434
if (!\in_array($pm->user_id, $users)) {
437435
$users[] = $pm->user_id;
@@ -471,18 +469,7 @@ final public function deleteRecords(): void
471469
$torrent->delete();
472470
}
473471

474-
foreach ($users as $user) {
475-
User::sendSystemNotificationTo(
476-
userId: $user,
477-
subject: 'Bulk Torrents Deleted - '.$title.'! ',
478-
message: '[b]Attention: [/b] The following torrents have been removed from our site.
479-
[list]
480-
[*]'.implode(' [*]', $names).'
481-
[/list]
482-
Our system shows that you were either the uploader, a seeder or a leecher on said torrent. We just wanted to let you know you can safely remove it from your client.
483-
[b]Removal Reason: [/b] '.$this->reason,
484-
);
485-
}
472+
Notification::send($users, new TorrentsDeleted($torrents, $title, $this->reason));
486473

487474
$this->checked = [];
488475
$this->selectPage = false;

app/Http/Livewire/UserWarnings.php

+10-20
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,11 @@
1818

1919
use App\Models\User;
2020
use App\Models\Warning;
21+
use App\Notifications\WarningCreated;
22+
use App\Notifications\WarningDeactivated;
23+
use App\Notifications\WarningsDeactivated;
24+
use App\Notifications\WarningsDeleted;
25+
use App\Notifications\WarningTorrentDeleted;
2126
use App\Traits\LivewireSort;
2227
use Illuminate\Support\Carbon;
2328
use Livewire\Attributes\Computed;
@@ -118,10 +123,7 @@ final public function store(): void
118123
'active' => true,
119124
]);
120125

121-
$this->user->sendSystemNotification(
122-
subject: 'Received warning',
123-
message: 'You have received a [b]warning[/b]. Reason: '.$this->message,
124-
);
126+
$this->user->notify(new WarningCreated($this->message));
125127

126128
$this->message = '';
127129

@@ -142,10 +144,7 @@ final public function deactivate(Warning $warning): void
142144
'active' => false,
143145
]);
144146

145-
$this->user->sendSystemNotification(
146-
subject: 'Hit and Run Warning Deleted',
147-
message: $staff->username.' has decided to deactivate your warning for torrent '.$warning->torrent.' You lucked out!',
148-
);
147+
$this->user->notify(new WarningDeactivated($staff, $warning));
149148

150149
$this->dispatch('success', type: 'success', message: 'Warning Was Successfully Deactivated');
151150
}
@@ -182,10 +181,7 @@ final public function massDeactivate(): void
182181
'active' => false,
183182
]);
184183

185-
$this->user->sendSystemNotification(
186-
subject: 'All Hit and Run Warnings Deleted',
187-
message: $staff->username.' has decided to deactivate all of your warnings. You lucked out!',
188-
);
184+
$this->user->notify(new WarningsDeactivated($staff));
189185

190186
$this->dispatch('success', type: 'success', message: 'All Warnings Were Successfully Deactivated');
191187
}
@@ -207,10 +203,7 @@ final public function destroy(Warning $warning): void
207203

208204
$warning->delete();
209205

210-
$this->user->sendSystemNotification(
211-
subject: 'Hit and Run Warning Deleted',
212-
message: $staff->username.' has decided to delete your warning for torrent '.$warning->torrent.' You lucked out!',
213-
);
206+
$this->user->notify(new WarningTorrentDeleted($staff, $warning));
214207

215208
$this->dispatch('success', type: 'success', message: 'Warning Was Successfully Deleted');
216209
}
@@ -232,10 +225,7 @@ final public function massDestroy(): void
232225

233226
$this->user->warnings()->delete();
234227

235-
$this->user->sendSystemNotification(
236-
subject: 'All Hit and Run Warnings Deleted',
237-
message: $staff->username.' has decided to delete all of your warnings. You lucked out!',
238-
);
228+
$this->user->notify(new WarningsDeleted($staff));
239229

240230
$this->dispatch('success', type: 'success', message: 'All Warnings Were Successfully Deleted');
241231
}

0 commit comments

Comments
 (0)