/** * @param KTeam $team * @return bool */ public function canHandleTeam(KTeam $team) { $user = \Auth::user(); if ($team->tournament->isRegistrationOpen() == 6 || $team->tournament->isRegistrationOpen() == 5) { return false; } /** * If Manager */ if ($user->canManageTournament($team->tournament)) { return true; } // Donot allow if team is not approved if (!$team->isApproved()) { return false; } if ($team->playerspivot()->where('user_id', $user->id)->where('user_status', '>', 3)->first()) { return true; } return false; }
/** * @param $slug * @param $id * @param Request $request * @return $this|\Illuminate\Http\RedirectResponse */ public function postCalculateMatchFinal($slug, $id, Request $request) { $tournament = KTournament::enabled()->whereSlug($slug)->first(); $match = KMatch::find($id); if (!$tournament || !$match) { abort(404); } //If has enough permissions or not if (!$request->user()->canManageTournament($tournament)) { return redirect()->home(); } if ($match->has_been_played) { return redirect()->route('tournament.bracket.show', [$tournament->slug])->with('error', "Error! Already calculated, Plz contact admin for support"); } if ($request->overall_winner_id == "0" && $tournament->bracket_type > 0) { return redirect()->route('tournament.bracket.show', [$tournament->slug])->with('error', "Error! Tie only supported in Round Robin Tournament"); } // Check is On. Turn off only for testing if (true) { //Check if all team1_p1_score is present foreach ($request->team1_p1_score as $x) { if ($x == null || $x == "") { return redirect()->route('tournament.match.getcalculate', [$tournament->slug, $match->id])->with('error', "Error! Something is not correct. Please retry."); } } //Check if all team1_p2_score is present foreach ($request->team1_p2_score as $x) { if ($x == null || $x == "") { return redirect()->route('tournament.match.getcalculate', [$tournament->slug, $match->id])->with('error', "Error! Something is not correct. Please retry."); } } //Check if all team2_p1_score is present foreach ($request->team2_p1_score as $x) { if ($x == null || $x == "") { return redirect()->route('tournament.match.getcalculate', [$tournament->slug, $match->id])->with('error', "Error! Something is not correct. Please retry."); } } //Check if all team2_p2_score is present foreach ($request->team2_p2_score as $x) { if ($x == null || $x == "") { return redirect()->route('tournament.match.getcalculate', [$tournament->slug, $match->id])->with('error', "Error! Something is not correct. Please retry."); } } if ($tournament->tournament_type == 2) { //Check if all team1_p3_score is present foreach ($request->team1_p3_score as $x) { if ($x == null || $x == "") { return redirect()->route('tournament.match.getcalculate', [$tournament->slug, $match->id])->with('error', "Error! Something is not correct. Please retry."); } } //Check if all team2_p3_score is present foreach ($request->team2_p3_score as $x) { if ($x == null || $x == "") { return redirect()->route('tournament.match.getcalculate', [$tournament->slug, $match->id])->with('error', "Error! Something is not correct. Please retry."); } } } //Check if all team1_p1_score is present foreach ($request->winner as $x) { if ($x == null || $x == "") { return redirect()->route('tournament.match.getcalculate', [$tournament->slug, $match->id])->with('error', "Error! Something is not correct. Please retry."); } } } // Now Insertions will be here... //First insert game_id in Match Table //Check if all game_id is present $i = 1; foreach ($request->game_id as $x) { $match->{"game" . $i . "_id"} = $x; $i++; } /** * GAME WIN OUTCOMES * 0 -> Team 1 Wins * 1 -> Team 2 Wins * 2 -> A Tie * 3 -> None */ $team1_w = 0; $team2_w = 0; $tie_w = 0; $no_w = 0; $i = 1; foreach ($request->winner as $x) { $match->{"game" . $i . "_id_outcome"} = $x; $i++; switch ($x) { case 0: $team1_w++; break; case 1: $team2_w++; break; case 2: $tie_w++; break; case 3: $no_w++; break; default: break; } } if ($team1_w > $team2_w) { $match->winner_team_won_by = $team1_w . " - " . $team2_w; } else { $match->winner_team_won_by = $team2_w . " - " . $team1_w; } /*$collection = collect($request->winner); $items = ($collection->groupBy(function($item,$key){ return $item; })); dd($match->winner_team_won_by); foreach($items as $item) { dd($item->count()); }*/ /** * If tournament type is 3v3 then take 3 players else only 2 * @TODO: Change if 1v1 implemented */ if ($tournament->tournament_type == 2) { $team1_p1_score_sum = array_sum($request->team1_p1_score); $team1_p2_score_sum = array_sum($request->team1_p2_score); $team1_p3_score_sum = array_sum($request->team1_p3_score); $team2_p1_score_sum = array_sum($request->team2_p1_score); $team2_p2_score_sum = array_sum($request->team2_p2_score); $team2_p3_score_sum = array_sum($request->team2_p3_score); $team1_total_score = $team1_p1_score_sum + $team1_p2_score_sum + $team1_p3_score_sum; $team2_total_score = $team2_p1_score_sum + $team2_p2_score_sum + $team2_p3_score_sum; } else { $team1_p1_score_sum = array_sum($request->team1_p1_score); $team1_p2_score_sum = array_sum($request->team1_p2_score); $team2_p1_score_sum = array_sum($request->team2_p1_score); $team2_p2_score_sum = array_sum($request->team2_p2_score); $team1_total_score = $team1_p1_score_sum + $team1_p2_score_sum; $team2_total_score = $team2_p1_score_sum + $team2_p2_score_sum; } $match->k_team1_total_score = $team1_total_score; $match->k_team2_total_score = $team2_total_score; if ($request->overall_winner_id != "-1" && $request->overall_winner_id != "0" && $request->overall_winner_id != $match->team1->id && $request->overall_winner_id != $match->team2->id) { return redirect()->home()->with("error", "Error! Don't mess up with codes."); } $match->winner_team_id = $request->overall_winner_id; $match->has_been_played = true; //SAVE MATCH $match->save(); $team1 = $match->team1; $team2 = $match->team2; $team1->total_score += $team1_total_score; $team2->total_score += $team2_total_score; //If winner is team 1 if ($request->overall_winner_id == $team1->id) { $team1->total_wins += 1; $team2->total_lost += 1; $team1->points += 2; $team2->points -= 2; } elseif ($request->overall_winner_id == $team2->id) { $team2->total_wins += 1; $team1->total_lost += 1; $team2->points += 2; $team1->points -= 2; } elseif ($request->overall_winner_id == "0") { $team2->total_tie += 1; $team1->total_tie += 1; $team1->points += 1; $team2->points += 1; } else { } //SAVE TEAMS $team1->save(); $team2->save(); //SAVE INDI PLAYER STATS if ($tournament->tournament_type == 0) { $team1_p1 = $match->team1->playerselected->first(); $team1_p2 = $match->team1->playerselected->last(); $team2_p1 = $match->team2->playerselected->first(); $team2_p2 = $match->team2->playerselected->last(); $match->team1->givescoretouser($team1_p1, $team1_p1_score_sum); $match->team1->givescoretouser($team1_p2, $team1_p2_score_sum); $match->team2->givescoretouser($team2_p1, $team2_p1_score_sum); $match->team2->givescoretouser($team2_p2, $team2_p2_score_sum); } else { if ($tournament->tournament_type == 2) { $i = 1; foreach ($match->team1->playerselected as $player) { //${'team1_p'.$i} = $player; $match->team1->givescoretouser($player, ${'team1_p' . $i . '_score_sum'}); $i++; } $y = 1; foreach ($match->team2->playerselected as $player) { //${'team2_p'.$i} = $player; $match->team2->givescoretouser($player, ${'team2_p' . $y . '_score_sum'}); $y++; } } } //@TODO: Add else here for 1v1 //FOR DE/SE ONLY //Check all match id (TBA) and change to team id as per match schedule if ($tournament->bracket_type > 0) { // Check for all matches with has this match index for team 1... $team1_from_match_indexes = KMatch::where('team1_from_match_index', $match->match_index)->get(); foreach ($team1_from_match_indexes as $team1_from_match_index) { if ($team1_from_match_index->team1_from_match_rank == 1) { $team1_from_match_index->k_team1_id = $match->winner_team_id; $team1_from_match_index->save(); } elseif ($team1_from_match_index->team1_from_match_rank == 2) { $team1_from_match_index->k_team1_id = $team1->id == $match->winner_team_id ? $team2->id : $team1->id; $team1_from_match_index->save(); } } // Check for all matches with has this match index for team 2... $team2_from_match_indexes = KMatch::where('team2_from_match_index', $match->match_index)->get(); foreach ($team2_from_match_indexes as $team2_from_match_index) { if ($team2_from_match_index->team2_from_match_rank == 1) { $team2_from_match_index->k_team2_id = $match->winner_team_id; $team2_from_match_index->save(); } elseif ($team2_from_match_index->team2_from_match_rank == 2) { $team2_from_match_index->k_team2_id = $team1->id == $match->winner_team_id ? $team2->id : $team1->id; $team2_from_match_index->save(); } } } //Dispatch Notifications //If match is cancelled if ($request->winner_team_id == "-1") { // Create notification with Stream $not = new Notification(); $not->from($request->user())->withType('TournamentMatchCancelled')->withSubject('Match is cancelled in a tournament')->withBody(link_to_route('tournament.show', $tournament->name, $tournament->slug) . " : Match between " . link_to_route('tournament.team.show', $match->team1->name, [$tournament->slug, $match->team1->id]) . " and " . link_to_route('tournament.team.show', $match->team2->name, [$tournament->slug, $match->team2->id]) . " was <span class='text-danger notify-bold'>cancelled</span>")->withStream(true)->regarding($tournament)->deliver(); } else { if ($request->winner_team_id == "0") { $not = new Notification(); $not->from($request->user())->withType('TournamentMatchTie')->withSubject('Match is tie in a tournament')->withBody(link_to_route('tournament.show', $tournament->name, $tournament->slug) . " : Match between " . link_to_route('tournament.team.show', $match->team1->name, [$tournament->slug, $match->team1->id]) . " and " . link_to_route('tournament.team.show', $match->team2->name, [$tournament->slug, $match->team2->id]) . " <span class='text-danger notify-bold'>tied</span> by " . $request->winner_team_won_by)->withStream(true)->regarding($tournament)->deliver(); } else { $not = new Notification(); $not->from($request->user())->withType('TournamentMatchPlayed')->withSubject('Match is played in a tournament')->withBody(link_to_route('tournament.show', $tournament->name, $tournament->slug) . " : " . $match->getWinningTextForNotifications())->withStream(true)->regarding($tournament)->deliver(); } } //RANK THE TEAMS //@TODO: Its TEMP CHANGE IT $teams = KTeam::where('team_status', 1)->orderBy('points', 'desc')->orderBy('total_wins', 'desc')->orderBy('total_lost', 'asc')->orderBy('total_tie', 'desc')->orderBy('total_score', 'desc')->get(); $i = 0; foreach ($teams as $team) { $team->team_position = ++$i; $team->save(); } return redirect()->route('tournament.show', [$tournament->slug])->with('message', "Success! Match data has been recorded."); }
/** * @param $slug * @param $id * @param Request $request * @return \Illuminate\Http\RedirectResponse */ public function handleTeamsForManager($slug, $id, Request $request) { if ($request->team_id != $id) { return redirect()->home(); } if (!($request->action_id == 0 || $request->action_id == 1 || $request->action_id == 2 || $request->action_id == 3)) { return redirect()->back()->with('error', 'Error! Invalid action'); } $tournament = KTournament::whereSlug($slug)->firstOrFail(); $team = KTeam::findOrFail($request->team_id); // Only if team belongs to this tour if ($team->k_tournament_id != $tournament->id) { return redirect()->home(); } // Tournament has not begun or has ended or disabled then return if ($tournament->isRegistrationOpen() == 6 || $tournament->isRegistrationOpen() == 5 || $tournament->isRegistrationOpen() == 4) { return redirect()->back()->with('error', 'Error! Cannot modify team now.'); } // Only if user has enough power if (!$request->user()->canManageTournament($tournament)) { return redirect()->back()->with('error', 'Error! Not Authorised'); } // If Tournament is full if ($request->action_id == 1 && $tournament->isFullParticipants()) { return redirect()->back()->with('error', 'Error! Tournament already have maximum qualified participants.'); } $old_action_id = $team->team_status; $team->team_status = $request->action_id; $team->save(); // Stream Notifications. // Approved if ($request->action_id == 1 && $request->action_id != $old_action_id) { $not = new Notification(); $not->from($request->user())->withType('TeamRequestApproved')->withSubject('Team has approved to join tournament')->withBody(link_to_route('user.show', $request->user()->displayName(), $request->user()->username) . " has <span class='text-green notify-bold'>approved</span> team " . link_to_route('tournament.team.show', $team->name, [$tournament->slug, $team->id]) . " request to join " . link_to_route('tournament.show', $tournament->name, $tournament->slug))->withStream(true)->regarding($team)->deliver(); } elseif ($request->action_id == 2 && $request->action_id != $old_action_id) { $not = new Notification(); $not->from($request->user())->withType('TeamRequestDisqualified')->withSubject('Team has set to disqualified to join tournament')->withBody(link_to_route('user.show', $request->user()->displayName(), $request->user()->username) . " has <span class='text-danger notify-bold'>disqualified</span> team " . link_to_route('tournament.team.show', $team->name, [$tournament->slug, $team->id]) . " from " . link_to_route('tournament.show', $tournament->name, $tournament->slug))->withStream(true)->regarding($team)->deliver(); } elseif ($request->action_id == 3 && $request->action_id != $old_action_id) { $not = new Notification(); $not->from($request->user())->withType('TeamRequestNoteligible')->withSubject('Team has set not eligible to join tournament')->withBody(link_to_route('user.show', $request->user()->displayName(), $request->user()->username) . " has changed team " . link_to_route('tournament.team.show', $team->name, [$tournament->slug, $team->id]) . " status to <span class='text-danger notify-bold'>not eligible</span> in " . link_to_route('tournament.show', $tournament->name, $tournament->slug))->withStream(true)->regarding($team)->deliver(); } elseif ($request->action_id == 0 && $request->action_id != $old_action_id) { $not = new Notification(); $not->from($request->user())->withType('TeamRequestPending')->withSubject('Team has set pending to join tournament')->withBody(link_to_route('user.show', $request->user()->displayName(), $request->user()->username) . " has changed team " . link_to_route('tournament.team.show', $team->name, [$tournament->slug, $team->id]) . " status to <span class='text-warning notify-bold'>pending</span> in " . link_to_route('tournament.show', $tournament->name, $tournament->slug))->withStream(true)->regarding($team)->deliver(); } return redirect()->back()->with('message', 'Success! Team status changed'); }