]> git.openstreetmap.org Git - rails.git/blob - app/controllers/api/users_controller.rb
Simplify deny_access handling
[rails.git] / app / controllers / api / users_controller.rb
1 module Api
2   class UsersController < ApiController
3     layout "site", :except => [:api_details]
4
5     before_action :disable_terms_redirect, :only => [:api_details]
6     before_action :authorize, :only => [:api_details, :api_gpx_files]
7
8     authorize_resource
9
10     before_action :check_api_readable
11     around_action :api_call_handle_error
12     before_action :lookup_user_by_id, :only => [:api_read]
13
14     def api_read
15       if @user.visible?
16         render :action => :api_read, :content_type => "text/xml"
17       else
18         head :gone
19       end
20     end
21
22     def api_details
23       @user = current_user
24       render :action => :api_read, :content_type => "text/xml"
25     end
26
27     def api_users
28       raise OSM::APIBadUserInput, "The parameter users is required, and must be of the form users=id[,id[,id...]]" unless params["users"]
29
30       ids = params["users"].split(",").collect(&:to_i)
31
32       raise OSM::APIBadUserInput, "No users were given to search for" if ids.empty?
33
34       @users = User.visible.find(ids)
35
36       render :action => :api_users, :content_type => "text/xml"
37     end
38
39     def api_gpx_files
40       doc = OSM::API.new.get_xml_doc
41       current_user.traces.reload.each do |trace|
42         doc.root << trace.to_xml_node
43       end
44       render :xml => doc.to_s
45     end
46
47     private
48
49     ##
50     # ensure that there is a "user" instance variable
51     def lookup_user_by_id
52       @user = User.find(params[:id])
53     end
54
55     ##
56     #
57     def disable_terms_redirect
58       # this is necessary otherwise going to the user terms page, when
59       # having not agreed already would cause an infinite redirect loop.
60       # it's .now so that this doesn't propagate to other pages.
61       flash.now[:skip_terms] = true
62     end
63   end
64 end