]> git.openstreetmap.org Git - rails.git/blobdiff - app/controllers/old_segment_controller.rb
Allow the API to be taken offline completely as well as being put into
[rails.git] / app / controllers / old_segment_controller.rb
index e07026fa46f61883734a16ff62fef7f46040054e..410760f2b51938224d197c176ef119948f5a05c1 100644 (file)
@@ -1,2 +1,25 @@
 class OldSegmentController < ApplicationController
 class OldSegmentController < ApplicationController
+  require 'xml/libxml'
+
+  session :off
+  before_filter :check_read_availability
+  after_filter :compress_output
+
+  def history
+    begin
+      segment = Segment.find(params[:id])
+
+      doc = OSM::API.new.get_xml_doc
+
+      segment.old_segments.each do |old_segment|
+        doc.root << old_segment.to_xml_node
+      end
+
+     render :text => doc.to_s, :content_type => "text/xml"
+    rescue ActiveRecord::RecordNotFound
+      render :nothing => true, :status => :not_found
+    rescue
+      render :nothing => true, :status => :internal_server_error
+    end
+  end
 end
 end