1 class BrowseController < ApplicationController
4 before_action :authorize_web
5 before_action :set_locale
6 before_action :except => [:query] { |c| c.check_database_readable(true) }
7 before_action :require_oauth
8 around_action :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 if @user && @user.moderator?
62 @comments = @changeset.comments.unscope(:where => :visible).includes(:author)
64 @comments = @changeset.comments.includes(:author)
66 @node_pages, @nodes = paginate(:old_nodes, :conditions => { :changeset_id => @changeset.id }, :per_page => 20, :parameter => "node_page")
67 @way_pages, @ways = paginate(:old_ways, :conditions => { :changeset_id => @changeset.id }, :per_page => 20, :parameter => "way_page")
68 @relation_pages, @relations = paginate(:old_relations, :conditions => { :changeset_id => @changeset.id }, :per_page => 20, :parameter => "relation_page")
69 if @changeset.user.data_public?
70 @next_by_user = @changeset.user.changesets.where("id > ?", @changeset.id).reorder(:id => :asc).first
71 @prev_by_user = @changeset.user.changesets.where("id < ?", @changeset.id).reorder(:id => :desc).first
73 rescue ActiveRecord::RecordNotFound
74 render :action => "not_found", :status => :not_found
79 @note = Note.find(params[:id])
80 rescue ActiveRecord::RecordNotFound
81 render :action => "not_found", :status => :not_found