116 lines
2.7 KiB
Ruby
116 lines
2.7 KiB
Ruby
class SeatsController < ApplicationController
|
|
before_action :set_seat, only: [:show, :edit, :update, :destroy,
|
|
:sit, :stand, :add_bot, :remove_bot, :empty,
|
|
:remove_player]
|
|
|
|
respond_to :html, :json
|
|
|
|
# GET /seats
|
|
# GET /seats.json
|
|
def index
|
|
@seats = Seat.all
|
|
end
|
|
|
|
# GET /seats/1
|
|
# GET /seats/1.json
|
|
def show
|
|
end
|
|
|
|
# GET /seats/new
|
|
def new
|
|
@seat = Seat.new
|
|
end
|
|
|
|
# GET /seats/1/edit
|
|
def edit
|
|
end
|
|
|
|
# POST /seats
|
|
# POST /seats.json
|
|
def create
|
|
@seat = Seat.new(seat_params)
|
|
|
|
respond_to do |format|
|
|
if @seat.save
|
|
format.html { redirect_to @seat, notice: 'Seat was successfully created.' }
|
|
format.json { render :show, status: :created, location: @seat }
|
|
else
|
|
format.html { render :new }
|
|
format.json { render json: @seat.errors, status: :unprocessable_entity }
|
|
end
|
|
end
|
|
end
|
|
|
|
# PATCH/PUT /seats/1
|
|
# PATCH/PUT /seats/1.json
|
|
def update
|
|
respond_to do |format|
|
|
if @seat.update(seat_params)
|
|
format.html { redirect_to @seat, notice: 'Seat was successfully updated.' }
|
|
format.json { render :show, status: :ok, location: @seat }
|
|
else
|
|
format.html { render :edit }
|
|
format.json { render json: @seat.errors, status: :unprocessable_entity }
|
|
end
|
|
end
|
|
end
|
|
|
|
# DELETE /seats/1
|
|
# DELETE /seats/1.json
|
|
def destroy
|
|
@seat.destroy
|
|
respond_to do |format|
|
|
format.html { redirect_to seats_url, notice: 'Seat was successfully destroyed.' }
|
|
format.json { head :no_content }
|
|
end
|
|
end
|
|
|
|
# POST /seats/1
|
|
def sit
|
|
@message = @seat.sit current_user
|
|
respond_to do |format|
|
|
if @seat.save
|
|
format.html { redirect_to @seat.table, notice: 'Seat was successfully sat in.' }
|
|
else
|
|
format.html { redirect_to @seat.table, notice: 'Failed to sit.' }
|
|
end
|
|
end
|
|
end
|
|
|
|
def stand
|
|
@message = @seat.stand current_user
|
|
redirect_to @seat.table, notice: @message
|
|
end
|
|
|
|
def add_bot
|
|
@message = @seat.add_bot
|
|
redirect_to @seat.table, notice: @message
|
|
end
|
|
|
|
def remove_bot
|
|
@message = @seat.remove_bot
|
|
redirect_to @seat.table, notice: @message
|
|
end
|
|
|
|
def empty
|
|
@message = @seat.empty
|
|
redirect_to @seat.table, notice: @message
|
|
end
|
|
|
|
def remove_player
|
|
@message = @seat.remove_player
|
|
redirect_to @seat.table, notice: @message
|
|
end
|
|
|
|
private
|
|
# Use callbacks to share common setup or constraints between actions.
|
|
def set_seat
|
|
@seat = Seat.find(params[:id])
|
|
end
|
|
|
|
# Never trust parameters from the scary internet, only allow the white list through.
|
|
def seat_params
|
|
params.require(:seat).permit(:position, :table_id, :user_id)
|
|
end
|
|
end
|