]> git.openstreetmap.org Git - rails.git/blob - app/controllers/api/user_preferences_controller.rb
Merge remote-tracking branch 'upstream/pull/2440'
[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 < ApiController
4     before_action :authorize
5
6     authorize_resource
7
8     around_action :api_call_handle_error
9
10     ##
11     # return all the preferences as an XML document
12     def index
13       @user_preferences = current_user.preferences
14
15       render :formats => [:xml]
16     end
17
18     ##
19     # return the value for a single preference
20     def show
21       pref = UserPreference.find([current_user.id, params[:preference_key]])
22
23       render :plain => pref.v.to_s
24     end
25
26     # update the entire set of preferences
27     def update_all
28       old_preferences = current_user.preferences.each_with_object({}) do |preference, preferences|
29         preferences[preference.k] = preference
30       end
31
32       new_preferences = {}
33
34       doc = XML::Parser.string(request.raw_post, :options => XML::Parser::Options::NOERROR).parse
35
36       doc.find("//preferences/preference").each do |pt|
37         if preference = old_preferences.delete(pt["k"])
38           preference.v = pt["v"]
39         elsif new_preferences.include?(pt["k"])
40           raise OSM::APIDuplicatePreferenceError, pt["k"]
41         else
42           preference = current_user.preferences.build(:k => pt["k"], :v => pt["v"])
43         end
44
45         new_preferences[preference.k] = preference
46       end
47
48       old_preferences.each_value(&:delete)
49
50       new_preferences.each_value(&:save!)
51
52       render :plain => ""
53     end
54
55     ##
56     # update the value of a single preference
57     def update
58       begin
59         pref = UserPreference.find([current_user.id, params[:preference_key]])
60       rescue ActiveRecord::RecordNotFound
61         pref = UserPreference.new
62         pref.user = current_user
63         pref.k = params[:preference_key]
64       end
65
66       pref.v = request.raw_post.chomp
67       pref.save!
68
69       render :plain => ""
70     end
71
72     ##
73     # delete a single preference
74     def destroy
75       UserPreference.find([current_user.id, params[:preference_key]]).delete
76
77       render :plain => ""
78     end
79   end
80 end