Files
UNIT3D-Community-Edition/app/Http/Controllers/PollController.php
Laravel Shift 0e48e34c8a Adopt PSR-2 coding style
The Laravel framework adopts the PSR-2 coding style in version 5.1.
Laravel apps *should* adopt this coding style as well. Read the
[PSR-2 coding style guide][1] for more details and check out [PHPCS][2]
to use as a code formatting tool.

[1]: https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-2-coding-style-guide.md
[2]: https://github.com/squizlabs/PHP_CodeSniffer
2018-01-18 01:04:19 +00:00

90 lines
2.3 KiB
PHP

<?php
/**
* NOTICE OF LICENSE
*
* UNIT3D is open-sourced software licensed under the GNU General Public License v3.0
* The details is bundled with this project in the file LICENSE.txt.
*
* @project UNIT3D
* @license https://choosealicense.com/licenses/gpl-3.0/ GNU General Public License v3.0
* @author HDVinnie
*/
namespace App\Http\Controllers;
use App\Poll;
use App\Option;
use App\Voter;
use Illuminate\Http\Request;
use Illuminate\Support\Facades\Auth;
use App\Http\Requests;
use App\Http\Requests\StorePoll;
use App\Http\Requests\VoteOnPoll;
use \Toastr;
class PollController extends Controller
{
/**
* Display a listing of the resource.
*
* @return \Illuminate\Http\Response
*/
public function index()
{
$polls = Poll::orderBy('created_at', 'desc')->paginate(15);
return view('poll.latest', compact('polls'));
}
/**
* Display the specified resource.
*
* @param int $id
* @return \Illuminate\Http\Response
*/
public function show(Request $request, $slug)
{
$poll = Poll::whereSlug($slug)->firstOrFail();
return view('poll.show', compact('poll'));
}
public function vote(VoteOnPoll $request)
{
$user = Auth::user();
$poll = Option::findOrFail($request->input('option.0'))->poll;
foreach ($request->input('option') as $option) {
Option::findOrFail($option)->increment('votes');
}
if (Voter::where('user_id', '=', $user->id)->where('poll_id', '=', $poll->id)->exists()) {
Toastr::error('Bro have already vote on this poll. Your vote has not been counted.', 'Whoops!', ['options']);
return redirect('poll/' . $poll->slug . '/result');
}
if ($poll->ip_checking == 1) {
$voter = Voter::create([
'poll_id' => $poll->id,
'user_id' => $user->id,
'ip_address' => $request->ip()
]);
}
Toastr::success('Your vote has been counted.', 'Yay!', ['options']);
return redirect('poll/' . $poll->slug . '/result');
}
public function result($slug)
{
$poll = Poll::whereSlug($slug)->firstOrFail();
return view('poll.result', compact('poll'));
}
}