Added user ID, description, languages and image link to the user details API call.

This commit is contained in:
Matt Amos 2009-08-31 23:11:15 +00:00
parent 737a36fada
commit ade96da19f
2 changed files with 27 additions and 1 deletions

View file

@ -246,7 +246,8 @@ class UserController < ApplicationController
end end
def api_details def api_details
render :text => @user.to_xml.to_s, :content_type => "text/xml" # moved implementation to a view.
render :layout => false
end end
def api_gpx_files def api_gpx_files

View file

@ -0,0 +1,25 @@
xml.instruct! :xml, :version => "1.0"
xml.osm("version" => API_VERSION, "generator" => GENERATOR) do
xml.tag! "user", :id => @user.id,
:display_name => @user.display_name,
:account_created => @user.creation_time.xmlschema do
if @user.description
xml.tag! "description", @user.description
end
if @user.home_lat and @user.home_lon
xml.tag! "home", :lat => @user.home_lat,
:lon => @user.home_lon,
:zoom => @user.home_zoom
end
if @user.image
# i'd love to use "url_for_file_column, :absolute=>true", but that doesn't seem
# to work with the file_column plugin version we're using.
xml.tag! "img", :href => ("http://" + SERVER_URL + url_for_file_column(@user, "image"))
end
if @user.languages
xml.tag! "languages" do
@user.languages.split(",") { |lang| xml.tag! "lang", lang }
end
end
end
end