- before_filter :authorize_web
- layout 'site'
-
- def relation_view
- begin
- @relation = Relation.find(params[:id])
-
- @name = @relation.tags['name'].to_s
- if @name.length == 0:
- @name = "#" + @relation.id.to_s
- end
-
- @title = 'Relation | ' + (@name)
- rescue ActiveRecord::RecordNotFound
- render :nothing => true, :status => :not_found
- end
+ layout :map_layout
+
+ before_action :authorize_web
+ before_action :set_locale
+ before_action :except => [:query] { |c| c.check_database_readable(true) }
+ before_action :require_oauth
+ around_action :web_timeout
+
+ def relation
+ @type = "relation"
+ @feature = Relation.find(params[:id])
+ render "feature"
+ rescue ActiveRecord::RecordNotFound
+ render :action => "not_found", :status => :not_found
+ end
+
+ def relation_history
+ @type = "relation"
+ @feature = Relation.find(params[:id])
+ render "history"
+ rescue ActiveRecord::RecordNotFound
+ render :action => "not_found", :status => :not_found
+ end
+
+ def way
+ @type = "way"
+ @feature = Way.preload(:way_tags, :containing_relation_members, :changeset => :user, :nodes => [:node_tags, :ways => :way_tags]).find(params[:id])
+ render "feature"
+ rescue ActiveRecord::RecordNotFound
+ render :action => "not_found", :status => :not_found
+ end
+
+ def way_history
+ @type = "way"
+ @feature = Way.preload(:way_tags, :old_ways => { :changeset => :user }).find(params[:id])
+ render "history"
+ rescue ActiveRecord::RecordNotFound
+ render :action => "not_found", :status => :not_found
+ end
+
+ def node
+ @type = "node"
+ @feature = Node.find(params[:id])
+ render "feature"
+ rescue ActiveRecord::RecordNotFound
+ render :action => "not_found", :status => :not_found
+ end
+
+ def node_history
+ @type = "node"
+ @feature = Node.find(params[:id])
+ render "history"
+ rescue ActiveRecord::RecordNotFound
+ render :action => "not_found", :status => :not_found