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]
9 around_action :api_call_handle_error
10 load_resource :only => :show
12 before_action :set_request_formats, :except => [:gpx_files]
15 raise OSM::APIBadUserInput, "The parameter users is required, and must be of the form users=id[,id[,id...]]" unless params["users"]
17 ids = params["users"].split(",").collect(&:to_i)
19 raise OSM::APIBadUserInput, "No users were given to search for" if ids.empty?
21 @users = User.visible.where(:id => ids).in_order_of(:id, ids)
24 respond_to do |format|
33 respond_to do |format|
45 respond_to do |format|
46 format.xml { render :show }
47 format.json { render :show }
52 @traces = current_user.traces.reload
53 render :content_type => "application/xml"
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