X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/8e19a9bf7dde121903cd4135515f363a1a6c9d0d..3ce4de1295ecec082313740a3cdf25c2831164f7:/app/views/user/api_read.builder diff --git a/app/views/user/api_read.builder b/app/views/user/api_read.builder new file mode 100644 index 000000000..145607446 --- /dev/null +++ b/app/views/user/api_read.builder @@ -0,0 +1,28 @@ +xml.instruct! :xml, :version => "1.0" +xml.osm("version" => API_VERSION, "generator" => GENERATOR) do + xml.tag! "user", :id => @this_user.id, + :display_name => @this_user.display_name, + :account_created => @this_user.creation_time.xmlschema do + if @this_user.description + xml.tag! "description", @this_user.description + end + xml.tag! "contributor-terms", + :agreed => !!@this_user.terms_agreed, + :pd => !!@this_user.consider_pd + if @this_user.image.file? + xml.tag! "img", :href => "http://#{SERVER_URL}#{@this_user.image.url}" + end + if @user && @user == @this_user + if @this_user.home_lat and @this_user.home_lon + xml.tag! "home", :lat => @this_user.home_lat, + :lon => @this_user.home_lon, + :zoom => @this_user.home_zoom + end + if @this_user.languages + xml.tag! "languages" do + @this_user.languages.split(",") { |lang| xml.tag! "lang", lang } + end + end + end + end +end