Files
UNIT3D/app/Http/Controllers/Staff/PollController.php
Roardom 868ad35aa4 refactor: swap magic RedirectResponse withX('Y') to with('X', 'Y')
Allows ctrl+clicking to access the underlying function unlike the previous magic implementation. Probably also negligibly faster.

Swapped all instances of `>withSuccess(` -> `>with('success', `, `>withWarning(` -> `>with('warning', `, and `>withInfo(` -> `>with('info', ` with ide's find and replace.
2025-01-21 16:05:11 +00:00

131 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 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\Http\Controllers\Controller;
use App\Http\Requests\StorePoll;
use App\Http\Requests\UpdatePollRequest;
use App\Models\Poll;
use App\Repositories\ChatRepository;
use Exception;
use Illuminate\Support\Arr;
/**
* @see \Tests\Todo\Feature\Http\Controllers\Staff\PollControllerTest
*/
class PollController extends Controller
{
/**
* PollController Constructor.
*/
public function __construct(private readonly ChatRepository $chatRepository)
{
}
/**
* Display All Polls.
*/
public function index(): \Illuminate\Contracts\View\Factory|\Illuminate\View\View
{
return view('Staff.poll.index', [
'polls' => Poll::latest()->paginate(25),
]);
}
/**
* Show A Poll.
*/
public function show(Poll $poll): \Illuminate\Contracts\View\Factory|\Illuminate\View\View
{
return view('Staff.poll.show', [
'poll' => $poll,
]);
}
/**
* Poll Add Form.
*/
public function create(): \Illuminate\Contracts\View\Factory|\Illuminate\View\View
{
return view('Staff.poll.create');
}
/**
* Store A New Poll.
*/
public function store(StorePoll $request): \Illuminate\Http\RedirectResponse
{
$poll = Poll::create(['user_id' => $request->user()->id] + $request->safe()->only(['title', 'expires_at', 'multiple_choice']));
$poll->options()->upsert($request->validated('options'), ['id'], []);
$this->chatRepository->systemMessage(
\sprintf('A new poll has been created [url=%s]%s[/url] vote on it now!', href_poll($poll), $poll->title)
);
return to_route('staff.polls.index')
->with('success', 'Your poll has been created.');
}
/**
* Poll Edit Form.
*/
public function edit(Poll $poll): \Illuminate\Contracts\View\Factory|\Illuminate\View\View
{
return view('Staff.poll.edit', [
'poll' => $poll,
]);
}
/**
* Update A New Poll.
*
* @throws Exception
*/
public function update(UpdatePollRequest $request, Poll $poll): \Illuminate\Http\RedirectResponse
{
$poll->update($request->safe()->only(['title', 'expires_at', 'multiple_choice']));
$poll->options()
->whereNotIn('id', Arr::flatten($request->validated('options.*.id')))
->delete();
$poll->options()->upsert($request->validated('options'), ['id'], ['name']);
$this->chatRepository->systemMessage(
\sprintf('A poll has been updated [url=%s]%s[/url] vote on it now!', href_poll($poll), $poll->title)
);
return to_route('staff.polls.index')
->with('success', 'Your poll has been edited.');
}
/**
* Delete A Poll.
*
* @throws Exception
*/
public function destroy(Poll $poll): \Illuminate\Http\RedirectResponse
{
$poll->options()->delete();
$poll->delete();
return to_route('staff.polls.index')
->with('success', 'Poll has successfully been deleted');
}
}