1 class BrowseController < ApplicationController
4 before_filter :authorize_web
5 before_filter :set_locale
6 before_filter { |c| c.check_database_readable(true) }
7 around_filter :web_timeout, :except => [:start]
10 render :partial => "sidebar"
15 @relation = Relation.find(params[:id])
16 @next = Relation.visible.where("id > ?", @relation.id).order("id ASC").first
17 @prev = Relation.visible.where("id < ?", @relation.id).order("id DESC").first
18 rescue ActiveRecord::RecordNotFound
19 render :action => "not_found", :status => :not_found
24 @relation = Relation.find(params[:id])
25 rescue ActiveRecord::RecordNotFound
26 render :action => "not_found", :status => :not_found
31 @way = Way.find(params[:id], :include => [:way_tags, {:changeset => :user}, {:nodes => [:node_tags, {:ways => :way_tags}]}, :containing_relation_members])
32 @next = Way.visible.where("id > ?", @way.id).order("id ASC").first
33 @prev = Way.visible.where("id < ?", @way.id).order("id DESC").first
35 # Used for edit link, takes approx middle node of way
36 @midnode = @way.nodes[@way.nodes.length/2]
37 rescue ActiveRecord::RecordNotFound
38 render :action => "not_found", :status => :not_found
43 @way = Way.find(params[:id], :include => [:way_tags, {:old_ways => {:changeset => :user}}])
44 rescue ActiveRecord::RecordNotFound
45 render :action => "not_found", :status => :not_found
50 @node = Node.find(params[:id])
51 @next = Node.visible.where("id > ?", @node.id).order("id ASC").first
52 @prev = Node.visible.where("id < ?", @node.id).order("id DESC").first
53 rescue ActiveRecord::RecordNotFound
54 render :action => "not_found", :status => :not_found
59 @node = Node.find(params[:id])
60 rescue ActiveRecord::RecordNotFound
61 render :action => "not_found", :status => :not_found
67 @changeset = Changeset.find(params[:id])
68 @node_pages, @nodes = paginate(:old_nodes, :conditions => {:changeset_id => @changeset.id}, :per_page => 20, :parameter => 'node_page')
69 @way_pages, @ways = paginate(:old_ways, :conditions => {:changeset_id => @changeset.id}, :per_page => 20, :parameter => 'way_page')
70 @relation_pages, @relations = paginate(:old_relations, :conditions => {:changeset_id => @changeset.id}, :per_page => 20, :parameter => 'relation_page')
72 @title = "#{I18n.t('browse.changeset.title')} | #{@changeset.id}"
73 @next = Changeset.where("id > ?", @changeset.id).order("id ASC").first
74 @prev = Changeset.where("id < ?", @changeset.id).order("id DESC").first
76 if @changeset.user.data_public?
77 @next_by_user = Changeset.where("user_id = ? AND id > ?", @changeset.user_id, @changeset.id).order("id ASC").first
78 @prev_by_user = Changeset.where("user_id = ? AND id < ?", @changeset.user_id, @changeset.id).order("id DESC").first
80 rescue ActiveRecord::RecordNotFound
81 render :action => "not_found", :status => :not_found