1 class BrowseController < ApplicationController
4 before_filter :authorize_web
5 before_filter :set_locale
6 before_filter { |c| c.check_database_readable(true) }
7 before_filter :require_oauth
8 around_filter :web_timeout
12 @feature = Relation.find(params[:id])
14 rescue ActiveRecord::RecordNotFound
15 render :action => "not_found", :status => :not_found
20 @feature = Relation.find(params[:id])
22 rescue ActiveRecord::RecordNotFound
23 render :action => "not_found", :status => :not_found
28 @feature = Way.preload(:way_tags, :containing_relation_members, :changeset => :user, :nodes => [:node_tags, :ways => :way_tags]).find(params[:id])
30 rescue ActiveRecord::RecordNotFound
31 render :action => "not_found", :status => :not_found
36 @feature = Way.preload(:way_tags, :old_ways => { :changeset => :user }).find(params[:id])
38 rescue ActiveRecord::RecordNotFound
39 render :action => "not_found", :status => :not_found
44 @feature = Node.find(params[:id])
46 rescue ActiveRecord::RecordNotFound
47 render :action => "not_found", :status => :not_found
52 @feature = Node.find(params[:id])
54 rescue ActiveRecord::RecordNotFound
55 render :action => "not_found", :status => :not_found
60 @changeset = Changeset.find(params[:id])
61 @node_pages, @nodes = paginate(:old_nodes, :conditions => {:changeset_id => @changeset.id}, :per_page => 20, :parameter => 'node_page')
62 @way_pages, @ways = paginate(:old_ways, :conditions => {:changeset_id => @changeset.id}, :per_page => 20, :parameter => 'way_page')
63 @relation_pages, @relations = paginate(:old_relations, :conditions => {:changeset_id => @changeset.id}, :per_page => 20, :parameter => 'relation_page')
64 if @changeset.user.data_public?
65 @next_by_user = @changeset.user.changesets.where("id > ?", @changeset.id).reorder(:id => :asc).first
66 @prev_by_user = @changeset.user.changesets.where("id < ?", @changeset.id).reorder(:id => :desc).first
68 rescue ActiveRecord::RecordNotFound
69 render :action => "not_found", :status => :not_found
74 @note = Note.find(params[:id])
75 rescue ActiveRecord::RecordNotFound
76 render :action => "not_found", :status => :not_found