adopt-a-hydrant/app/controllers/hydrants_controller.rb

37 lines
920 B
Ruby
Raw Normal View History

2011-03-08 08:44:27 +00:00
class HydrantsController < ApplicationController
2011-03-27 18:45:58 +00:00
def show
@hydrant = Hydrant.find_by_id(params[:hydrant_id])
if @hydrant.adopted?
if user_signed_in? && current_user.id == @hydrant.user_id
render(:partial => "users/thank_you")
else
render(:partial => "users/profile")
end
else
if user_signed_in?
render(:partial => "adopt")
else
render(:partial => "users/new")
end
end
end
2011-03-08 08:44:27 +00:00
2011-03-27 18:45:58 +00:00
def list
@hydrants = Hydrant.find_closest(params[:lat], params[:lng])
unless @hydrants.blank?
2011-03-27 18:45:58 +00:00
render(:json => @hydrants)
else
render(:json => {"errors" => {"address" => ["Could not find address."]}})
end
end
2011-03-08 08:44:27 +00:00
def update
@hydrant = Hydrant.find(params[:id])
if @hydrant.update_attributes(params[:hydrant])
render(:json => @hydrant)
2011-03-08 08:44:27 +00:00
else
render(:json => {"errors" => @hydrant.errors})
end
end
end