]> git.openstreetmap.org Git - rails.git/blob - app/controllers/user_preference_controller.rb
Fix UTF-8 encoding error char in source file that RichardF introduced
[rails.git] / app / controllers / user_preference_controller.rb
1 # Update and read user preferences, which are arbitrayr key/val pairs
2 class UserPreferenceController < ApplicationController
3   before_filter :authorize
4
5   def read_one
6     pref = UserPreference.find(@user.id, params[:preference_key])
7
8     render :text => pref.v.to_s
9   rescue ActiveRecord::RecordNotFound => ex
10     render :text => 'OH NOES! PREF NOT FOUND!', :status => :not_found
11   end
12
13   def update_one
14     begin
15       pref = UserPreference.find(@user.id, params[:preference_key])
16       pref.v = request.raw_post.chomp
17       pref.save
18     rescue ActiveRecord::RecordNotFound 
19       pref = UserPreference.new
20       pref.user = @user
21       pref.k = params[:preference_key]
22       pref.v = request.raw_post.chomp
23       pref.save
24     end
25
26     render :nothing => true
27   end
28
29   def delete_one
30     UserPreference.delete(@user.id, params[:preference_key])
31
32     render :nothing => true
33   rescue ActiveRecord::RecordNotFound => ex
34     render :text => "param: #{params[:preference_key]} not found", :status => :not_found
35   end
36
37   # print out all the preferences as a big xml block
38   def read
39     doc = OSM::API.new.get_xml_doc
40
41     prefs = @user.preferences
42
43     el1 = XML::Node.new 'preferences'
44
45     prefs.each do |pref|
46       el1 <<  pref.to_xml_node
47     end
48
49     doc.root << el1
50     render :text => doc.to_s, :content_type => "text/xml"
51   end
52
53   # update the entire set of preferences
54   def update
55     p = XML::Parser.new
56     p.string = request.raw_post
57     doc = p.parse
58
59     prefs = []
60
61     keyhash = {}
62
63     doc.find('//preferences/preference').each do |pt|
64       pref = UserPreference.new
65
66       unless keyhash[pt['k']].nil? # already have that key
67         render :text => 'OH NOES! CAN HAS UNIQUE KEYS?', :status => :not_acceptable
68       end
69
70       keyhash[pt['k']] = 1
71
72       pref.k = pt['k']
73       pref.v = pt['v']
74       pref.user_id = @user.id
75       prefs << pref
76     end
77
78     if prefs.size > 150
79       render :text => 'Too many preferences', :status => :request_entity_too_large
80     end
81
82     # kill the existing ones
83     UserPreference.delete_all(['user_id = ?', @user.id])
84
85     # save the new ones
86     prefs.each do |pref|
87       pref.save!
88     end
89     render :nothing => true
90
91   rescue Exception => ex
92     render :text => 'OH NOES! FAIL!: ' + ex.to_s, :status => :internal_server_error
93   end
94 end