]> git.openstreetmap.org Git - rails.git/blob - app/controllers/api/users_controller.rb
Merge remote-tracking branch 'upstream/pull/5242'
[rails.git] / app / controllers / api / users_controller.rb
1 module Api
2   class UsersController < ApiController
3     before_action :disable_terms_redirect, :only => [:details]
4     before_action :setup_user_auth, :only => [:show, :index]
5     before_action :authorize, :only => [:details, :gpx_files]
6
7     authorize_resource
8
9     around_action :api_call_handle_error
10     load_resource :only => :show
11
12     before_action :set_request_formats, :except => [:gpx_files]
13
14     def index
15       raise OSM::APIBadUserInput, "The parameter users is required, and must be of the form users=id[,id[,id...]]" unless params["users"]
16
17       ids = params["users"].split(",").collect(&:to_i)
18
19       raise OSM::APIBadUserInput, "No users were given to search for" if ids.empty?
20
21       @users = User.visible.where(:id => ids).in_order_of(:id, ids)
22
23       # Render the result
24       respond_to do |format|
25         format.xml
26         format.json
27       end
28     end
29
30     def show
31       if @user.visible?
32         # Render the result
33         respond_to do |format|
34           format.xml
35           format.json
36         end
37       else
38         head :gone
39       end
40     end
41
42     def details
43       @user = current_user
44       # Render the result
45       respond_to do |format|
46         format.xml { render :show }
47         format.json { render :show }
48       end
49     end
50
51     def gpx_files
52       @traces = current_user.traces.reload
53       render :content_type => "application/xml"
54     end
55
56     private
57
58     def disable_terms_redirect
59       # this is necessary otherwise going to the user terms page, when
60       # having not agreed already would cause an infinite redirect loop.
61       # it's .now so that this doesn't propagate to other pages.
62       flash.now[:skip_terms] = true
63     end
64   end
65 end