Fix a few user preferences bugs

This commit is contained in:
Tom Hughes 2013-05-10 00:50:24 +01:00
parent d4776b59a1
commit f495da8fda

View file

@ -4,11 +4,12 @@ class UserPreferenceController < ApplicationController
before_filter :authorize before_filter :authorize
before_filter :require_allow_read_prefs, :only => [:read_one, :read] before_filter :require_allow_read_prefs, :only => [:read_one, :read]
before_filter :require_allow_write_prefs, :except => [:read_one, :read] before_filter :require_allow_write_prefs, :except => [:read_one, :read]
around_filter :api_call_handle_error
def read_one def read_one
pref = UserPreference.find(@user.id, params[:preference_key]) pref = UserPreference.find(@user.id, params[:preference_key])
render :text => pref.v.to_s render :text => pref.v.to_s, :content_type => "text/plain"
rescue ActiveRecord::RecordNotFound => ex rescue ActiveRecord::RecordNotFound => ex
render :text => 'OH NOES! PREF NOT FOUND!', :status => :not_found render :text => 'OH NOES! PREF NOT FOUND!', :status => :not_found
end end
@ -26,13 +27,13 @@ class UserPreferenceController < ApplicationController
pref.save pref.save
end end
render :nothing => true render :nothing => true, :content_type => "text/plain"
end end
def delete_one def delete_one
UserPreference.delete(@user.id, params[:preference_key]) UserPreference.find(@user.id, params[:preference_key]).delete
render :nothing => true render :nothing => true, :content_type => "text/plain"
rescue ActiveRecord::RecordNotFound => ex rescue ActiveRecord::RecordNotFound => ex
render :text => "param: #{params[:preference_key]} not found", :status => :not_found render :text => "param: #{params[:preference_key]} not found", :status => :not_found
end end
@ -55,12 +56,7 @@ class UserPreferenceController < ApplicationController
# update the entire set of preferences # update the entire set of preferences
def update def update
begin doc = XML::Parser.string(request.raw_post).parse
p = XML::Parser.string(request.raw_post)
rescue LibXML::XML::Error, ArgumentError => ex
raise OSM::APIBadXMLError.new("preferences", xml, ex.message)
end
doc = p.parse
prefs = [] prefs = []
@ -70,7 +66,8 @@ class UserPreferenceController < ApplicationController
pref = UserPreference.new pref = UserPreference.new
unless keyhash[pt['k']].nil? # already have that key unless keyhash[pt['k']].nil? # already have that key
render :text => 'OH NOES! CAN HAS UNIQUE KEYS?', :status => :not_acceptable render :text => 'OH NOES! CAN HAS UNIQUE KEYS?', :status => :not_acceptable, :content_type => "text/plain"
return
end end
keyhash[pt['k']] = 1 keyhash[pt['k']] = 1
@ -82,7 +79,8 @@ class UserPreferenceController < ApplicationController
end end
if prefs.size > 150 if prefs.size > 150
render :text => 'Too many preferences', :status => :request_entity_too_large render :text => 'Too many preferences', :status => :request_entity_too_large, :content_type => "text/plain"
return
end end
# kill the existing ones # kill the existing ones
@ -92,9 +90,7 @@ class UserPreferenceController < ApplicationController
prefs.each do |pref| prefs.each do |pref|
pref.save! pref.save!
end end
render :nothing => true
rescue Exception => ex render :nothing => true, :content_type => "text/plain"
render :text => 'OH NOES! FAIL!: ' + ex.to_s, :status => :internal_server_error
end end
end end