1 # Update and read user preferences, which are arbitrayr key/val pairs
2 class UserPreferenceController < ApplicationController
3 before_filter :authorize
6 pref = UserPreference.find(@user.id, params[:preference_key])
9 render :text => pref.v.to_s
11 render :text => 'OH NOES! PREF NOT FOUND!', :status => 404
17 pref = UserPreference.find(@user.id, params[:preference_key])
18 pref.v = request.raw_post.chomp
20 rescue ActiveRecord::RecordNotFound
21 pref = UserPreference.new
23 pref.k = params[:preference_key]
24 pref.v = request.raw_post.chomp
28 render :nothing => true
32 UserPreference.delete(@user.id, params[:preference_key])
34 render :nothing => true
37 # print out all the preferences as a big xml block
39 doc = OSM::API.new.get_xml_doc
41 prefs = @user.preferences
43 el1 = XML::Node.new 'preferences'
46 el1 << pref.to_xml_node
50 render :text => doc.to_s, :content_type => "text/xml"
53 # update the entire set of preferences
57 p.string = request.raw_post
64 doc.find('//preferences/preference').each do |pt|
65 pref = UserPreference.new
67 unless keyhash[pt['k']].nil? # already have that key
68 render :text => 'OH NOES! CAN HAS UNIQUE KEYS?', :status => :not_acceptable
76 pref.user_id = @user.id
81 render :text => 'Too many preferences', :status => :request_entity_too_large
85 # kill the existing ones
86 UserPreference.delete_all(['user_id = ?', @user.id])
93 rescue Exception => ex
94 render :text => 'OH NOES! FAIL!: ' + ex.to_s, :status => :internal_server_error
98 render :nothing => true