]> git.openstreetmap.org Git - rails.git/blobdiff - app/controllers/search_controller.rb
Test some missing cases in the way controller
[rails.git] / app / controllers / search_controller.rb
index dd7c2febe89a48fc8575a8e359a8f0e7ace5ce7b..8a632e6a2c2cebd9526afec79371a91cddc6e0fb 100644 (file)
@@ -2,42 +2,43 @@ class SearchController < ApplicationController
   # Support searching for nodes, ways, or all
   # Can search by tag k, v, or both (type->k,value->v)
   # Can search by name (k=name,v=....)
-  skip_before_filter :verify_authenticity_token
-  after_filter :compress_output
+  skip_before_action :verify_authenticity_token
 
   def search_all
-    do_search(true,true,true)
+    do_search(true, true, true)
   end
 
   def search_ways
-    do_search(true,false,false)
+    do_search(true, false, false)
   end
+
   def search_nodes
-    do_search(false,true,false)
+    do_search(false, true, false)
   end
+
   def search_relations
-    do_search(false,false,true)
+    do_search(false, false, true)
   end
 
-  def do_search(do_ways,do_nodes,do_relations)
-    type = params['type']
-    value = params['value']
-    unless type or value
-      name = params['name']
+  def do_search(do_ways, do_nodes, do_relations)
+    type = params["type"]
+    value = params["value"]
+    unless type || value
+      name = params["name"]
       if name
-        type = 'name'
+        type = "name"
         value = name
       end
     end
 
     if do_nodes
-      response.headers['Error'] = "Searching of nodes is currently unavailable"
+      response.headers["Error"] = "Searching of nodes is currently unavailable"
       render :text => "", :status => :service_unavailable
       return false
     end
 
     unless value
-      response.headers['Error'] = "Searching for a key without value is currently unavailable"
+      response.headers["Error"] = "Searching for a key without value is currently unavailable"
       render :text => "", :status => :service_unavailable
       return false
     end
@@ -49,7 +50,7 @@ class SearchController < ApplicationController
       nodes = nodes.where(:current_node_tags => { :v => value }) if value
       nodes = nodes.limit(100)
     else
-      nodes = Array.new
+      nodes = []
     end
 
     # Matching for way tags table
@@ -59,7 +60,7 @@ class SearchController < ApplicationController
       ways = ways.where(:current_way_tags => { :v => value }) if value
       ways = ways.limit(100)
     else
-      ways = Array.new
+      ways = []
     end
 
     # Matching for relation tags table
@@ -69,11 +70,11 @@ class SearchController < ApplicationController
       relations = relations.where(:current_relation_tags => { :v => value }) if value
       relations = relations.limit(2000)
     else
-      relations = Array.new
+      relations = []
     end
 
     # Fetch any node needed for our ways (only have matching nodes so far)
-    nodes += Node.find(ways.collect { |w| w.nds }.uniq)
+    nodes += Node.find(ways.collect(&:nds).uniq)
 
     # Print
     visible_nodes = {}