ensl.org/app/controllers/match_proposals_controller.rb

73 lines
2.2 KiB
Ruby
Raw Normal View History

2017-05-01 14:57:32 +00:00
class MatchProposalsController < ApplicationController
before_filter :get_match
2017-05-01 14:57:32 +00:00
def index
raise AccessError unless @match.user_in_match?(cuser)
2017-05-01 14:57:32 +00:00
end
def new
# Don't allow creation of new proposals if there is a confirmed one already
if MatchProposal.exists?(
match_id: @match.id,
status: MatchProposal::STATUS_CONFIRMED
)
flash[:error] = 'Cannot create a new proposal if there is already a confirmed one'
redirect_to(match_proposals_path(@match)) && return
end
@proposal = MatchProposal.new
@proposal.match = @match
raise AccessError unless @proposal.can_create? cuser
2017-05-01 14:57:32 +00:00
end
def create
@proposal = MatchProposal.new(params[:match_proposal])
@proposal.match = @match
raise AccessError unless @proposal.can_create? cuser
@proposal.team = cuser.team
@proposal.status = MatchProposal::STATUS_PENDING
2017-06-11 14:36:10 +00:00
if @proposal.save
flash[:notice] = 'Created new proposal'
2017-06-11 14:36:10 +00:00
redirect_to(match_proposals_path(@match))
else
render :new
end
2017-05-01 14:57:32 +00:00
end
def update
raise AccessError unless request.xhr? # Only respond to ajax requests
rjson = {}
proposal = MatchProposal.find(params[:id])
unless proposal
rjson[:error] = {
code: 404,
message: "No proposal with id #{params[:id]}"
}
render(json: rjson, status: :not_found) && return
end
unless proposal.can_update?(cuser, params[:match_proposal])
rjson[:error] = {
code: 403,
message: "You are not allowed to update the state to #{MatchProposal.status_strings[params[:match_proposal][:status].to_i]}"
}
render(json: rjson, status: :forbidden) && return
end
proposal.status = params[:match_proposal][:status]
if proposal.save
rjson[:status] = MatchProposal.status_strings[proposal.status]
rjson[:message] = "Successfully updated status to #{MatchProposal.status_strings[proposal.status]}"
render(json: rjson, status: :accepted)
2017-06-11 14:36:10 +00:00
else
rjson[:error] = {
code: 500,
message: 'Something went wrong! Please try again.'
}
render(json: rjson, status: 500)
2017-06-11 14:36:10 +00:00
end
end
private
def get_match
@match = Match.find params[:match_id]
end
2017-05-01 14:57:32 +00:00
end