78 lines
1.3 KiB
Ruby
78 lines
1.3 KiB
Ruby
class GamesController < ApplicationController
|
|
before_action :set_game, only: [:show, :edit, :update, :destroy]
|
|
|
|
respond_to :html
|
|
|
|
def index
|
|
@games = Game.all
|
|
respond_with(@games)
|
|
end
|
|
|
|
def show
|
|
respond_with(@game)
|
|
end
|
|
|
|
def new
|
|
@game = Game.new
|
|
respond_with(@game)
|
|
end
|
|
|
|
def edit
|
|
end
|
|
|
|
def create
|
|
@game = Game.new(title: game_params[:title])
|
|
if game_params[:player_ids]
|
|
game_params[:player_ids].each do |user_id|
|
|
@game.players.new(user_id: user_id)
|
|
end
|
|
end
|
|
@game.save
|
|
respond_with(@game)
|
|
end
|
|
|
|
def update
|
|
@game.update(game_params)
|
|
respond_with(@game)
|
|
end
|
|
|
|
def destroy
|
|
@game.destroy
|
|
respond_with(@game)
|
|
end
|
|
|
|
def join
|
|
@game = Game.find(params[:game_id])
|
|
@game.add_player_from_user(current_user)
|
|
flash[:notice] = "Successfully joined game..."
|
|
redirect_to(@game)
|
|
end
|
|
|
|
def start
|
|
@game = Game.find(params[:game_id])
|
|
|
|
begin
|
|
@game.start
|
|
rescue StandardError => e
|
|
@game.errors.messages.each do |key,msg|
|
|
flash[key] = msg.join
|
|
end
|
|
redirect_to(@game)
|
|
return
|
|
end
|
|
flash[:notice] = "Game started."
|
|
|
|
redirect_to(@game)
|
|
end
|
|
|
|
private
|
|
|
|
def set_game
|
|
@game = Game.find(params[:id])
|
|
end
|
|
|
|
def game_params
|
|
params.require(:game).permit(:title, player_ids: [])
|
|
end
|
|
end
|