]> git.openstreetmap.org Git - rails.git/blob - app/controllers/api/user_preferences_controller.rb
Move the api trace methods into a separate controller under the api namespace
[rails.git] / app / controllers / api / user_preferences_controller.rb
1 # Update and read user preferences, which are arbitrayr key/val pairs
2 module Api
3   class UserPreferencesController < ApplicationController
4     skip_before_action :verify_authenticity_token
5     before_action :authorize
6
7     authorize_resource
8
9     around_action :api_call_handle_error
10
11     ##
12     # return all the preferences as an XML document
13     def read
14       doc = OSM::API.new.get_xml_doc
15
16       prefs = current_user.preferences
17
18       el1 = XML::Node.new "preferences"
19
20       prefs.each do |pref|
21         el1 << pref.to_xml_node
22       end
23
24       doc.root << el1
25       render :xml => doc.to_s
26     end
27
28     ##
29     # return the value for a single preference
30     def read_one
31       pref = UserPreference.find([current_user.id, params[:preference_key]])
32
33       render :plain => pref.v.to_s
34     end
35
36     # update the entire set of preferences
37     def update
38       old_preferences = current_user.preferences.each_with_object({}) do |preference, preferences|
39         preferences[preference.k] = preference
40       end
41
42       new_preferences = {}
43
44       doc = XML::Parser.string(request.raw_post, :options => XML::Parser::Options::NOERROR).parse
45
46       doc.find("//preferences/preference").each do |pt|
47         if preference = old_preferences.delete(pt["k"])
48           preference.v = pt["v"]
49         elsif new_preferences.include?(pt["k"])
50           raise OSM::APIDuplicatePreferenceError, pt["k"]
51         else
52           preference = current_user.preferences.build(:k => pt["k"], :v => pt["v"])
53         end
54
55         new_preferences[preference.k] = preference
56       end
57
58       old_preferences.each_value(&:delete)
59
60       new_preferences.each_value(&:save!)
61
62       render :plain => ""
63     end
64
65     ##
66     # update the value of a single preference
67     def update_one
68       begin
69         pref = UserPreference.find([current_user.id, params[:preference_key]])
70       rescue ActiveRecord::RecordNotFound
71         pref = UserPreference.new
72         pref.user = current_user
73         pref.k = params[:preference_key]
74       end
75
76       pref.v = request.raw_post.chomp
77       pref.save!
78
79       render :plain => ""
80     end
81
82     ##
83     # delete a single preference
84     def delete_one
85       UserPreference.find([current_user.id, params[:preference_key]]).delete
86
87       render :plain => ""
88     end
89   end
90 end