]> git.openstreetmap.org Git - rails.git/blob - app/controllers/api/users_controller.rb
Merge branch 'pull/5338'
[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     load_resource :only => :show
10
11     before_action :set_request_formats, :except => [:gpx_files]
12
13     def index
14       raise OSM::APIBadUserInput, "The parameter users is required, and must be of the form users=id[,id[,id...]]" unless params["users"]
15
16       ids = params["users"].split(",").collect(&:to_i)
17
18       raise OSM::APIBadUserInput, "No users were given to search for" if ids.empty?
19
20       @users = User.visible.where(:id => ids).in_order_of(:id, ids)
21
22       # Render the result
23       respond_to do |format|
24         format.xml
25         format.json
26       end
27     end
28
29     def show
30       if @user.visible?
31         # Render the result
32         respond_to do |format|
33           format.xml
34           format.json
35         end
36       else
37         head :gone
38       end
39     end
40
41     def details
42       @user = current_user
43       # Render the result
44       respond_to do |format|
45         format.xml { render :show }
46         format.json { render :show }
47       end
48     end
49
50     def gpx_files
51       @traces = current_user.traces.reload
52       render :content_type => "application/xml"
53     end
54
55     private
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