mirror of
https://github.com/jcwimer/wrestlingApp
synced 2026-03-25 01:14:43 +00:00
101 lines
2.9 KiB
Ruby
101 lines
2.9 KiB
Ruby
class WeightsController < ApplicationController
|
|
before_action :set_weight, only: [:show, :edit, :update, :destroy]
|
|
before_filter :check_access, only: [:new,:create,:update,:destroy,:edit]
|
|
|
|
|
|
# GET /weights/1
|
|
# GET /weights/1.json
|
|
def show
|
|
if params[:wrestler]
|
|
Wrestler.update(params[:wrestler].keys, params[:wrestler].values)
|
|
redirect_to @weight.tournament
|
|
end
|
|
@wrestlers = @weight.wrestlers
|
|
@tournament = @weight.tournament
|
|
end
|
|
|
|
# GET /weights/new
|
|
def new
|
|
@weight = Weight.new
|
|
if params[:tournament]
|
|
@tournament = Tournament.find(params[:tournament])
|
|
end
|
|
end
|
|
|
|
# GET /weights/1/edit
|
|
def edit
|
|
@tournament = Tournament.find(@weight.tournament_id)
|
|
@mats = @tournament.mats
|
|
end
|
|
|
|
# POST /weights
|
|
# POST /weights.json
|
|
def create
|
|
@weight = Weight.new(weight_params)
|
|
@tournament = Tournament.find(weight_params[:tournament_id])
|
|
respond_to do |format|
|
|
if @weight.save
|
|
format.html { redirect_to @tournament, notice: 'Weight was successfully created.' }
|
|
format.json { render action: 'show', status: :created, location: @weight }
|
|
else
|
|
format.html { render action: 'new' }
|
|
format.json { render json: @weight.errors, status: :unprocessable_entity }
|
|
end
|
|
end
|
|
end
|
|
|
|
# PATCH/PUT /weights/1
|
|
# PATCH/PUT /weights/1.json
|
|
def update
|
|
@tournament = Tournament.find(@weight.tournament_id)
|
|
respond_to do |format|
|
|
if @weight.update(weight_params)
|
|
format.html { redirect_to @tournament, notice: 'Weight was successfully updated.' }
|
|
format.json { head :no_content }
|
|
else
|
|
format.html { render action: 'edit' }
|
|
format.json { render json: @weight.errors, status: :unprocessable_entity }
|
|
end
|
|
end
|
|
end
|
|
|
|
# DELETE /weights/1
|
|
# DELETE /weights/1.json
|
|
def destroy
|
|
@tournament = Tournament.find(@weight.tournament_id)
|
|
if current_user != @tournament.user
|
|
redirect_to root_path
|
|
end
|
|
@weight.destroy
|
|
respond_to do |format|
|
|
format.html { redirect_to @tournament }
|
|
format.json { head :no_content }
|
|
end
|
|
end
|
|
|
|
private
|
|
# Use callbacks to share common setup or constraints between actions.
|
|
def set_weight
|
|
@weight = Weight.where(:id => params[:id]).includes(:tournament,:wrestlers).first
|
|
end
|
|
|
|
# Never trust parameters from the scary internet, only allow the white list through.
|
|
def weight_params
|
|
params.require(:weight).permit(:max, :tournament_id, :mat_id)
|
|
end
|
|
def check_access
|
|
if params[:tournament]
|
|
@tournament = Tournament.find(params[:tournament])
|
|
elsif params[:weight]
|
|
@tournament = Tournament.find(params[:weight]["tournament_id"])
|
|
elsif @weight
|
|
@tournament = @weight.tournament
|
|
end
|
|
if current_user != @tournament.user
|
|
redirect_to '/static_pages/not_allowed'
|
|
end
|
|
end
|
|
|
|
|
|
end
|