Ban (for now at least) searching of nodes, and searching for a key
without giving a value as both of these will lock the server up for a long time.
This commit is contained in:
parent
d6f6e4c7c1
commit
90fa3e650b
1 changed files with 12 additions and 0 deletions
|
@ -30,6 +30,18 @@ class SearchController < ApplicationController
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
if do_nodes
|
||||||
|
response.headers['Error'] = "Searching of nodes is currently unavailable"
|
||||||
|
render :nothing => true, :status => :service_unavailable
|
||||||
|
return false
|
||||||
|
end
|
||||||
|
|
||||||
|
unless value
|
||||||
|
response.headers['Error'] = "Searching for a key without value is currently unavailable"
|
||||||
|
render :nothing => true, :status => :service_unavailable
|
||||||
|
return false
|
||||||
|
end
|
||||||
|
|
||||||
way_ids = Array.new
|
way_ids = Array.new
|
||||||
ways = Array.new
|
ways = Array.new
|
||||||
nodes = Array.new
|
nodes = Array.new
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue