mirror of
https://github.com/HDInnovations/UNIT3D-Community-Edition.git
synced 2026-01-20 11:00:38 -06:00
This breaks the pint CI currently. This is probably due to the next version of php (8.4) adding opcache optimizations to sprintf and our config requiring pre-slashing native functions.
111 lines
3.5 KiB
PHP
111 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\Http\Controllers\Controller;
|
|
use App\Http\Requests\StoreGiftRequest;
|
|
use App\Models\Gift;
|
|
use App\Models\User;
|
|
use App\Notifications\NewBon;
|
|
use App\Repositories\ChatRepository;
|
|
use Illuminate\Http\Request;
|
|
use Illuminate\Support\Facades\DB;
|
|
|
|
class GiftController extends Controller
|
|
{
|
|
/**
|
|
* UserGiftController Constructor.
|
|
*/
|
|
public function __construct(private readonly ChatRepository $chatRepository)
|
|
{
|
|
}
|
|
|
|
/**
|
|
* Show previous gift history.
|
|
*/
|
|
public function index(Request $request, User $user): \Illuminate\Contracts\View\Factory|\Illuminate\View\View
|
|
{
|
|
abort_unless($request->user()->is($user) || $request->user()->group->is_modo, 403);
|
|
|
|
return view('user.gift.index', [
|
|
'user' => $user,
|
|
'gifts' => Gift::with([
|
|
'sender' => fn ($query) => $query->withTrashed()->with('group'),
|
|
'recipient' => fn ($query) => $query->withTrashed()->with('group'),
|
|
])
|
|
->where('sender_id', '=', $user->id)
|
|
->orWhere('recipient_id', '=', $user->id)
|
|
->latest()
|
|
->paginate(25),
|
|
'bon' => $user->formatted_seedbonus,
|
|
'sentGifts' => $user->sentGifts()->sum('bon'),
|
|
'receivedGifts' => $user->receivedGifts()->sum('bon'),
|
|
]);
|
|
}
|
|
|
|
/**
|
|
* Show gift form.
|
|
*/
|
|
public function create(Request $request, User $user): \Illuminate\Contracts\View\Factory|\Illuminate\View\View
|
|
{
|
|
abort_unless($request->user()->is($user), 403);
|
|
|
|
return view('user.gift.create', [
|
|
'user' => $user,
|
|
'bon' => $user->formatted_seedbonus,
|
|
]);
|
|
}
|
|
|
|
/**
|
|
* Gift points to a user.
|
|
*/
|
|
public function store(StoreGiftRequest $request): \Illuminate\Http\RedirectResponse
|
|
{
|
|
$sender = $request->user();
|
|
$receiver = User::where('username', '=', $request->recipient_username)->sole();
|
|
|
|
DB::transaction(function () use ($sender, $receiver, $request): void {
|
|
$sender->decrement('seedbonus', $request->bon);
|
|
$receiver->increment('seedbonus', $request->bon);
|
|
|
|
$gift = Gift::create([
|
|
'bon' => $request->bon,
|
|
'sender_id' => $sender->id,
|
|
'recipient_id' => $receiver->id,
|
|
'message' => $request->message,
|
|
]);
|
|
|
|
if ($receiver->acceptsNotification($sender, $receiver, 'bon', 'show_bon_gift')) {
|
|
$receiver->notify((new NewBon($gift))->afterCommit());
|
|
}
|
|
});
|
|
|
|
$this->chatRepository->systemMessage(
|
|
\sprintf(
|
|
'[url=%s]%s[/url] has gifted %s BON to [url=%s]%s[/url]',
|
|
href_profile($sender),
|
|
$sender->username,
|
|
$request->bon,
|
|
href_profile($receiver),
|
|
$receiver->username
|
|
)
|
|
);
|
|
|
|
return redirect()->back()->withSuccess(trans('bon.gift-sent'));
|
|
}
|
|
}
|