]> git.openstreetmap.org Git - rails.git/blob - app/controllers/browse_controller.rb
Introducing a new /browse/{node,way,relation,changeset}/{id}/map page
[rails.git] / app / controllers / browse_controller.rb
1 class BrowseController < ApplicationController
2   layout 'site'
3
4   before_filter :authorize_web  
5   before_filter :set_locale 
6   before_filter { |c| c.check_database_readable(true) }
7
8   def start 
9   end
10   
11   
12   
13   def relation
14     @relation = Relation.find(params[:id])
15     @next = Relation.find(:first, :order => "id ASC", :conditions => [ "visible = true AND id > :id", { :id => @relation.id }] )
16     @prev = Relation.find(:first, :order => "id DESC", :conditions => [ "visible = true AND id < :id", { :id => @relation.id }] )
17   rescue ActiveRecord::RecordNotFound
18     @type = "relation"
19     render :action => "not_found", :status => :not_found
20   end
21   
22   def relation_history
23     @relation = Relation.find(params[:id])
24   rescue ActiveRecord::RecordNotFound
25     @type = "relation"
26     render :action => "not_found", :status => :not_found
27   end
28
29   def relation_map
30     @relation = Relation.find(params[:id])
31   rescue ActiveRecord::RecordNotFound
32     @type = "relation"
33     render :action => "not_found", :status => :not_found
34   end
35   
36   def way
37     @way = Way.find(params[:id], :include => [:way_tags, {:changeset => :user}, {:nodes => [:node_tags, {:ways => :way_tags}]}, :containing_relation_members])
38     @next = Way.find(:first, :order => "id ASC", :conditions => [ "visible = true AND id > :id", { :id => @way.id }] )
39     @prev = Way.find(:first, :order => "id DESC", :conditions => [ "visible = true AND id < :id", { :id => @way.id }] )
40
41     # Used for edit link, takes approx middle node of way
42     @midnode = @way.nodes[@way.nodes.length/2]
43   rescue ActiveRecord::RecordNotFound
44     @type = "way"
45     render :action => "not_found", :status => :not_found
46   end
47   
48   def way_history
49     @way = Way.find(params[:id], :include => [:way_tags, {:old_ways => {:changeset => :user}}])
50   rescue ActiveRecord::RecordNotFound
51     @type = "way"
52     render :action => "not_found", :status => :not_found
53   end
54
55   def way_map
56     @way = Way.find(params[:id])
57   rescue ActiveRecord::RecordNotFound
58     @type = "way"
59     render :action => "not_found", :status => :not_found
60   end
61
62   def node
63     @node = Node.find(params[:id])
64     @next = Node.find(:first, :order => "id ASC", :conditions => [ "visible = true AND id > :id", { :id => @node.id }] )
65     @prev = Node.find(:first, :order => "id DESC", :conditions => [ "visible = true AND id < :id", { :id => @node.id }] )
66   rescue ActiveRecord::RecordNotFound
67     @type = "node"
68     render :action => "not_found", :status => :not_found
69   end
70   
71   def node_history
72     @node = Node.find(params[:id])
73   rescue ActiveRecord::RecordNotFound
74     @type = "way"
75     render :action => "not_found", :status => :not_found
76   end
77
78   def node_map
79     @node = Node.find(params[:id])
80   rescue ActiveRecord::RecordNotFound
81     @type = "node"
82     render :action => "not_found", :status => :not_found
83   end
84   
85   def changeset
86     @changeset = Changeset.find(params[:id])
87     @node_pages, @nodes = paginate(:old_nodes, :conditions => {:changeset_id => @changeset.id}, :per_page => 20, :parameter => 'node_page')
88     @way_pages, @ways = paginate(:old_ways, :conditions => {:changeset_id => @changeset.id}, :per_page => 20, :parameter => 'way_page')
89     @relation_pages, @relations = paginate(:old_relations, :conditions => {:changeset_id => @changeset.id}, :per_page => 20, :parameter => 'relation_page')
90       
91     @title = "#{I18n.t('browse.changeset.title')} | #{@changeset.id}"
92     @next = Changeset.find(:first, :order => "id ASC", :conditions => [ "id > :id", { :id => @changeset.id }] ) 
93     @prev = Changeset.find(:first, :order => "id DESC", :conditions => [ "id < :id", { :id => @changeset.id }] ) 
94   rescue ActiveRecord::RecordNotFound
95     @type = "changeset"
96     render :action => "not_found", :status => :not_found
97   end
98
99   def changeset_map
100     @changeset = Changeset.find(params[:id])
101   rescue ActiveRecord::RecordNotFound
102     @type = "changeset"
103     render :action => "not_found", :status => :not_found
104   end
105 end