]> git.openstreetmap.org Git - rails.git/commitdiff
Add some extra information to user API responses
authorTom Hughes <tom@compton.nu>
Wed, 19 Sep 2012 18:27:13 +0000 (19:27 +0100)
committerTom Hughes <tom@compton.nu>
Mon, 24 Sep 2012 17:44:11 +0000 (18:44 +0100)
app/views/user/api_read.builder

index 145607446884b18bf70443cc3a8ac7a3cc9780e9..d25ff9f64046b2b84cd22629ff2dffbcde36a9a6 100644 (file)
@@ -12,6 +12,21 @@ xml.osm("version" => API_VERSION, "generator" => GENERATOR) do
     if @this_user.image.file?
       xml.tag! "img", :href => "http://#{SERVER_URL}#{@this_user.image.url}"
     end
+    xml.tag! "roles" do
+      @this_user.roles.each do |role|
+        xml.tag! role.role
+      end
+    end
+    xml.tag! "changesets", :count => @this_user.changesets.size
+    xml.tag! "traces", :count => @this_user.traces.size
+    xml.tag! "blocks" do
+      xml.tag! "received", :count => @this_user.blocks.size,
+                           :active => @this_user.blocks.active.size
+      if @this_user.moderator?
+        xml.tag! "issued", :count => @this_user.blocks_created.size,
+                           :active => @this_user.blocks_created.active.size
+      end
+    end
     if @user && @user == @this_user
       if @this_user.home_lat and @this_user.home_lon
         xml.tag! "home", :lat => @this_user.home_lat,