1 # amf_controller is a semi-standalone API for Flash clients, particularly
2 # Potlatch. All interaction between Potlatch (as a .SWF application) and the
3 # OSM database takes place using this controller. Messages are
4 # encoded in the Actionscript Message Format (AMF).
6 # Helper functions are in /lib/potlatch.rb
8 # Author:: editions Systeme D / Richard Fairhurst 2004-2008
9 # Licence:: public domain.
11 # == General structure
13 # Apart from the amf_read and amf_write methods (which distribute the requests
14 # from the AMF message), each method generally takes arguments in the order
15 # they were sent by the Potlatch SWF. Do not assume typing has been preserved.
16 # Methods all return an array to the SWF.
20 # Note that this requires a patched version of composite_primary_keys 1.1.0
21 # (see http://groups.google.com/group/compositekeys/t/a00e7562b677e193)
22 # if you are to run with POTLATCH_USE_SQL=false .
26 # Any method that returns a status code (0 for ok) can also send:
27 # return(-1,"message") <-- just puts up a dialogue
28 # return(-2,"message") <-- also asks the user to e-mail me
30 # To write to the Rails log, use RAILS_DEFAULT_LOGGER.info("message").
32 class AmfController < ApplicationController
37 # Help methods for checking boundary sanity and area size
41 before_filter :check_write_availability
43 # Main AMF handlers: process the raw AMF string (using AMF library) and
44 # calls each action (private method) accordingly.
45 # ** FIXME: refactor to reduce duplication of code across read/write
48 req=StringIO.new(request.raw_post+0.chr)# Get POST data as request
49 # (cf http://www.ruby-forum.com/topic/122163)
50 req.read(2) # Skip version indicator and client ID
51 results={} # Results of each body
55 headers=AMF.getint(req) # Read number of headers
57 headers.times do # Read each header
58 name=AMF.getstring(req) # |
59 req.getc # | skip boolean
60 value=AMF.getvalue(req) # |
61 header["name"]=value # |
64 bodies=AMF.getint(req) # Read number of bodies
65 bodies.times do # Read each body
66 message=AMF.getstring(req) # | get message name
67 index=AMF.getstring(req) # | get index in response sequence
68 bytes=AMF.getlong(req) # | get total size in bytes
69 args=AMF.getvalue(req) # | get response (probably an array)
70 logger.info "Executing AMF #{message}:#{index}"
73 when 'getpresets'; results[index]=AMF.putdata(index,getpresets())
74 when 'whichways'; results[index]=AMF.putdata(index,whichways(*args))
75 when 'whichways_deleted'; results[index]=AMF.putdata(index,whichways_deleted(*args))
76 when 'getway'; results[index]=AMF.putdata(index,getway(args[0].to_i))
77 when 'getrelation'; results[index]=AMF.putdata(index,getrelation(args[0].to_i))
78 when 'getway_old'; results[index]=AMF.putdata(index,getway_old(args[0].to_i,args[1].to_i))
79 when 'getway_history'; results[index]=AMF.putdata(index,getway_history(args[0].to_i))
80 when 'getnode_history'; results[index]=AMF.putdata(index,getnode_history(args[0].to_i))
81 when 'findgpx'; results[index]=AMF.putdata(index,findgpx(*args))
82 when 'findrelations'; results[index]=AMF.putdata(index,findrelations(*args))
83 when 'getpoi'; results[index]=AMF.putdata(index,getpoi(*args))
86 logger.info("encoding AMF results")
91 req=StringIO.new(request.raw_post+0.chr)
94 renumberednodes={} # Shared across repeated putways
95 renumberedways={} # Shared across repeated putways
97 headers=AMF.getint(req) # Read number of headers
98 headers.times do # Read each header
99 name=AMF.getstring(req) # |
100 req.getc # | skip boolean
101 value=AMF.getvalue(req) # |
102 header["name"]=value # |
105 bodies=AMF.getint(req) # Read number of bodies
106 bodies.times do # Read each body
107 message=AMF.getstring(req) # | get message name
108 index=AMF.getstring(req) # | get index in response sequence
109 bytes=AMF.getlong(req) # | get total size in bytes
110 args=AMF.getvalue(req) # | get response (probably an array)
113 when 'putway'; r=putway(renumberednodes,*args)
115 if r[1] != r[2] then renumberedways[r[1]] = r[2] end
116 results[index]=AMF.putdata(index,r)
117 when 'putrelation'; results[index]=AMF.putdata(index,putrelation(renumberednodes, renumberedways, *args))
118 when 'deleteway'; results[index]=AMF.putdata(index,deleteway(*args))
119 when 'putpoi'; r=putpoi(*args)
120 if r[1] != r[2] then renumberednodes[r[1]] = r[2] end
121 results[index]=AMF.putdata(index,r)
122 when 'startchangeset'; results[index]=AMF.putdata(index,startchangeset(*args))
125 sendresponse(results)
130 # Start new changeset
132 def startchangeset(usertoken, cstags, closeid, closecomment)
133 user = getuserid(usertoken)
134 if !user then return -1,"You are not logged in, so Potlatch can't write any changes to the database." end
136 # close previous changeset and add comment
138 cs = Changeset.find(closeid)
139 cs.set_closed_time_now
140 if closecomment.empty?
143 cs.tags['comment']=closecomment
148 # open a new changeset
152 # Don't like the next two lines. These need to be abstracted to the model more/better
153 cs.created_at = Time.now
154 cs.closed_at = Time.new + Changeset::IDLE_TIMEOUT
159 # Return presets (default tags, localisation etc.):
160 # uses POTLATCH_PRESETS global, set up in OSM::Potlatch.
162 def getpresets() #:doc:
163 return POTLATCH_PRESETS
167 # Find all the ways, POI nodes (i.e. not part of ways), and relations
168 # in a given bounding box. Nodes are returned in full; ways and relations
171 # return is of the form:
173 # [[way_id, way_version], ...],
174 # [[node_id, lat, lon, [tags, ...], node_version], ...],
175 # [[rel_id, rel_version], ...]]
176 # where the ways are any visible ways which refer to any visible
177 # nodes in the bbox, nodes are any visible nodes in the bbox but not
178 # used in any way, rel is any relation which refers to either a way
179 # or node that we're returning.
180 def whichways(xmin, ymin, xmax, ymax) #:doc:
181 xmin -= 0.01; ymin -= 0.01
182 xmax += 0.01; ymax += 0.01
184 # check boundary is sane and area within defined
185 # see /config/application.yml
186 check_boundaries(xmin, ymin, xmax, ymax)
188 if POTLATCH_USE_SQL then
189 ways = sql_find_ways_in_area(xmin, ymin, xmax, ymax)
190 points = sql_find_pois_in_area(xmin, ymin, xmax, ymax)
191 relations = sql_find_relations_in_area_and_ways(xmin, ymin, xmax, ymax, ways.collect {|x| x[0]})
193 # find the way ids in an area
194 nodes_in_area = Node.find_by_area(ymin, xmin, ymax, xmax, :conditions => ["current_nodes.visible = ?", true], :include => :ways)
195 ways = nodes_in_area.inject([]) { |sum, node|
196 visible_ways = node.ways.select { |w| w.visible? }
197 sum + visible_ways.collect { |w| [w.id,w.version] }
201 # find the node ids in an area that aren't part of ways
202 nodes_not_used_in_area = nodes_in_area.select { |node| node.ways.empty? }
203 points = nodes_not_used_in_area.collect { |n| [n.id, n.lon, n.lat, n.tags, n.version] }
205 # find the relations used by those nodes and ways
206 relations = Relation.find_for_nodes(nodes_in_area.collect { |n| n.id }, :conditions => {:visible => true}) +
207 Relation.find_for_ways(ways.collect { |w| w[0] }, :conditions => {:visible => true})
208 relations = relations.collect { |relation| [relation.id,relation.version] }.uniq
211 [0,ways, points, relations]
213 rescue Exception => err
214 [-2,"Sorry - I can't get the map for that area."]
217 # Find deleted ways in current bounding box (similar to whichways, but ways
218 # with a deleted node only - not POIs or relations).
220 def whichways_deleted(xmin, ymin, xmax, ymax) #:doc:
221 xmin -= 0.01; ymin -= 0.01
222 xmax += 0.01; ymax += 0.01
224 # check boundary is sane and area within defined
225 # see /config/application.yml
227 check_boundaries(xmin, ymin, xmax, ymax)
228 rescue Exception => err
229 return [-2,"Sorry - I can't get the map for that area."]
232 nodes_in_area = Node.find_by_area(ymin, xmin, ymax, xmax, :conditions => ["current_ways.visible = ?", false], :include => :ways_via_history)
233 way_ids = nodes_in_area.collect { |node| node.ways_via_history_ids }.flatten.uniq
238 # Get a way including nodes and tags.
239 # Returns the way id, a Potlatch-style array of points, a hash of tags, and the version number.
241 def getway(wayid) #:doc:
242 if POTLATCH_USE_SQL then
243 points = sql_get_nodes_in_way(wayid)
244 tags = sql_get_tags_in_way(wayid)
245 version = sql_get_way_version(wayid)
247 # Ideally we would do ":include => :nodes" here but if we do that
248 # then rails only seems to return the first copy of a node when a
249 # way includes a node more than once
251 way = Way.find(wayid)
252 rescue ActiveRecord::RecordNotFound
256 # check case where way has been deleted or doesn't exist
257 return [wayid,[],{}] if way.nil? or !way.visible
259 points = way.nodes.collect do |node|
261 nodetags.delete('created_by')
262 [node.lon, node.lat, node.id, nodetags]
265 version = way.version
268 [wayid, points, tags, version]
271 # Get an old version of a way, and all constituent nodes.
273 # For undelete (version<0), always uses the most recent version of each node,
274 # even if it's moved. For revert (version >= 0), uses the node in existence
275 # at the time, generating a new id if it's still visible and has been moved/
281 # 2. array of points,
284 # 5. is this the current, visible version? (boolean)
286 def getway_old(id, version) #:doc:
288 old_way = OldWay.find(:first, :conditions => ['visible = ? AND id = ?', true, id], :order => 'version DESC')
289 points = old_way.get_nodes_undelete unless old_way.nil?
291 old_way = OldWay.find(:first, :conditions => ['id = ? AND version = ?', id, version])
292 points = old_way.get_nodes_revert unless old_way.nil?
296 return [-1, id, [], {}, -1,0]
299 old_way.tags['history'] = "Retrieved from v#{old_way.version}"
300 return [0, id, points, old_way.tags, old_way.version, (curway.version==old_way.version and curway.visible)]
304 # Find history of a way. Returns 'way', id, and
305 # an array of previous versions.
307 def getway_history(wayid) #:doc:
309 history = Way.find(wayid).old_ways.reverse.collect do |old_way|
310 user_object = old_way.changeset.user
311 user = user_object.data_public? ? user_object.display_name : 'anonymous'
312 uid = user_object.data_public? ? user_object.id : 0
313 [old_way.version, old_way.timestamp.strftime("%d %b %Y, %H:%M"), old_way.visible ? 1 : 0, user, uid]
316 return ['way',wayid,history]
317 rescue ActiveRecord::RecordNotFound
318 return ['way', wayid, []]
322 # Find history of a node. Returns 'node', id, and
323 # an array of previous versions.
325 def getnode_history(nodeid) #:doc:
326 history = Node.find(nodeid).old_nodes.reverse.collect do |old_node|
327 user_object = old_node.changeset.user
328 user = user_object.data_public? ? user_object.display_name : 'anonymous'
329 uid = user_object.data_public? ? user_object.id : 0
330 [old_node.version, old_node.timestamp.strftime("%d %b %Y, %H:%M"), old_node.visible ? 1 : 0, user, uid]
333 return ['node',nodeid,history]
334 rescue ActiveRecord::RecordNotFound
335 return ['node', nodeid, []]
338 # Find GPS traces with specified name/id.
339 # Returns array listing GPXs, each one comprising id, name and description.
341 def findgpx(searchterm, usertoken)
342 uid = getuserid(usertoken)
343 if !uid then return -1,"You must be logged in to search for GPX traces." end
346 if searchterm.to_i>0 then
347 gpx = Trace.find(searchterm.to_i, :conditions => ["visible=? AND (public=? OR user_id=?)",true,true,uid] )
349 gpxs.push([gpx.id, gpx.name, gpx.description])
352 Trace.find(:all, :limit => 21, :conditions => ["visible=? AND (public=? OR user_id=?) AND MATCH(name) AGAINST (?)",true,true,uid,searchterm] ).each do |gpx|
353 gpxs.push([gpx.id, gpx.name, gpx.description])
359 # Get a relation with all tags and members.
363 # 2. list of members,
366 def getrelation(relid) #:doc:
368 rel = Relation.find(relid)
369 rescue ActiveRecord::RecordNotFound
370 return [relid, {}, []]
373 return [relid, {}, [], nil] if rel.nil? or !rel.visible
374 [relid, rel.tags, rel.members, rel.version]
377 # Find relations with specified name/id.
378 # Returns array of relations, each in same form as getrelation.
380 def findrelations(searchterm)
382 if searchterm.to_i>0 then
383 rel = Relation.find(searchterm.to_i)
384 if rel and rel.visible then
385 rels.push([rel.id, rel.tags, rel.members])
388 RelationTag.find(:all, :limit => 11, :conditions => ["match(v) against (?)", searchterm] ).each do |t|
389 if t.relation.visible then
390 rels.push([t.relation.id, t.relation.tags, t.relation.members])
400 # 1. original relation id (unchanged),
401 # 2. new relation id.
403 def putrelation(renumberednodes, renumberedways, usertoken, changeset, version, relid, tags, members, visible) #:doc:
404 user = getuserid(usertoken)
405 if !user then return -1,"You are not logged in, so the relation could not be saved." end
408 visible = (visible.to_i != 0)
412 Relation.transaction do
413 # create a new relation, or find the existing one
415 relation = Relation.find(relid)
417 # We always need a new node, based on the data that has been sent to us
418 new_relation = Relation.new
420 # check the members are all positive, and correctly type
425 mid = renumberednodes[mid] if m[0] == 'node'
426 mid = renumberedways[mid] if m[0] == 'way'
429 typedmembers << [m[0], mid, m[2]]
433 # assign new contents
434 new_relation.members = typedmembers
435 new_relation.tags = tags
436 new_relation.visible = visible
437 new_relation.changeset_id = changeset
438 new_relation.version = version
442 # We're creating the node
443 new_relation.create_with_history(user)
445 # We're updating the node
446 relation.update_from(new_relation, user)
448 # We're deleting the node
449 relation.delete_with_history!(new_relation, user)
454 return [0, relid, new_relation.id, new_relation.version]
456 return [0, relid, relation.id, relation.version]
458 rescue OSM::APIChangesetAlreadyClosedError => ex
459 return [-1, "The changeset #{ex.changeset.id} was closed at #{ex.changeset.closed_at}"]
460 rescue OSM::APIVersionMismatchError => ex
461 # Really need to check to see whether this is a server load issue, and the
462 # last version was in the same changeset, or belongs to the same user, then
463 # we can return something different
464 return [-3, "You have taken too long to edit, please reload the area"]
465 rescue OSM::APIAlreadyDeletedError => ex
466 return [-1, "The object has already been deleted"]
467 rescue OSM::APIError => ex
468 # Some error that we don't specifically catch
469 return [-2, "Something really bad happened :-()"]
472 # Save a way to the database, including all nodes. Any nodes in the previous
473 # version and no longer used are deleted.
476 # 0. '0' (code for success),
477 # 1. original way id (unchanged),
479 # 3. hash of renumbered nodes (old id=>new id),
482 def putway(renumberednodes, usertoken, changeset, version, originalway, points, attributes) #:doc:
484 # -- Initialise and carry out checks
486 user = getuser(usertoken)
487 if !user then return -1,"You are not logged in, so the way could not be saved." end
489 originalway = originalway.to_i
492 if a[2] == 0 or a[2].nil? then return -2,"Server error - node with id 0 found in way #{originalway}." end
493 if a[1] == 90 then return -2,"Server error - node with lat -90 found in way #{originalway}." end
496 if points.length < 2 then return -2,"Server error - way is only #{points.length} points long." end
498 # -- Get unique nodes
506 way = Way.find(originalway)
507 uniques = way.unshared_node_ids
511 # -- Compare nodes and save changes to any that have changed
519 version = n[3].to_i # FIXME which index does the version come in on????
521 # We always need a new node if we are saving it
524 if renumberednodes[id]
525 id = renumberednodes[id]
531 # Don't modify this node, make any changes you want to the new_node above
534 nodetags.delete('created_by')
535 if !fpcomp(lat, node.lat) or !fpcomp(lon, node.lon) or
536 n[4] != nodetags or !node.visible?
542 new_node.changeset_id = changeset
546 new_node.version = version
548 # We're creating the node
549 new_node.create_with_history(user)
551 # We're updating the node (no delete here)
552 node.update_from(new_node, user)
556 renumberednodes[id] = node.id
561 uniques = uniques - [id]
565 # -- Delete any unique nodes
568 #deleteitemrelations(n, 'node')
572 new_node.changeset_id = changeset
573 new_node.version = version
574 node.delete_with_history!(new_node, user)
577 # -- Save revised way
579 if way.tags!=attributes or way.nds!=nodes or !way.visible?
581 new_way.tags = attributes
583 new_way.changeset_id = changeset
584 new_way.version = version
585 way.update_from(new_way, user)
589 [0, originalway, way.id, renumberednodes, way.version]
590 rescue OSM::APIChangesetAlreadyClosedError => ex
591 return [-1, "The changeset #{ex.changeset.id} was closed at #{ex.changeset.closed_at}"]
592 rescue OSM::APIVersionMismatchError => ex
593 # Really need to check to see whether this is a server load issue, and the
594 # last version was in the same changeset, or belongs to the same user, then
595 # we can return something different
596 return [-3, "You have taken too long to edit, please reload the area"]
597 rescue OSM::APITooManyWayNodesError => ex
598 return [-1, "You have tried to upload a way with #{ex.provided}, however only #{ex.max} are allowed."]
599 rescue OSM::APIAlreadyDeletedError => ex
600 return [-1, "The object has already been deleted"]
601 rescue OSM::APIError => ex
602 # Some error that we don't specifically catch
603 return [-2, "Something really bad happened :-()"]
606 # Save POI to the database.
607 # Refuses save if the node has since become part of a way.
608 # Returns array with:
610 # 1. original node id (unchanged),
614 def putpoi(usertoken, changeset, version, id, lon, lat, tags, visible) #:doc:
615 user = getuser(usertoken)
616 if !user then return -1,"You are not logged in, so the point could not be saved." end
619 visible = (visible.to_i == 1)
627 unless node.ways.empty? then return -1,"The point has since become part of a way, so you cannot save it as a POI." end
628 deleteitemrelations(id, 'node')
631 # We always need a new node, based on the data that has been sent to us
634 new_node.changeset_id = changeset
635 new_node.version = version
640 # We're creating the node
641 new_node.create_with_history(user)
643 # We're updating the node
644 node.update_from(new_node, user)
646 # We're deleting the node
647 node.delete_with_history!(new_node, user)
652 return [0, id, new_node.id, new_node.version]
654 return [0, id, node.id, node.version]
656 rescue OSM::APIChangesetAlreadyClosedError => ex
657 return [-1, "The changeset #{ex.changeset.id} was closed at #{ex.changeset.closed_at}"]
658 rescue OSM::APIVersionMismatchError => ex
659 # Really need to check to see whether this is a server load issue, and the
660 # last version was in the same changeset, or belongs to the same user, then
661 # we can return something different
662 return [-3, "You have taken too long to edit, please reload the area"]
663 rescue OSM::APIAlreadyDeletedError => ex
664 return [-1, "The object has already been deleted"]
665 rescue OSM::APIError => ex
666 # Some error that we don't specifically catch
667 return [-2, "Something really bad happened :-()"]
670 # Read POI from database
671 # (only called on revert: POIs are usually read by whichways).
673 # Returns array of id, long, lat, hash of tags, version.
675 def getpoi(id,version) #:doc:
677 n = OldNode.find(id, :conditions=>['version=?',version])
683 return [n.id, n.lon, n.lat, n.tags, n.version]
685 return [nil, nil, nil, {}, nil]
689 # Delete way and all constituent nodes. Also removes from any relations.
693 # * the id of the way to change
694 # * the version of the way that was downloaded
695 # * a hash of the id and versions of all the nodes that are in the way, if any
696 # of the nodes have been changed by someone else then, there is a problem!
697 # Returns 0 (success), unchanged way id.
699 def deleteway(usertoken, changeset_id, way_id, way_version, node_id_version) #:doc:
700 user = getuser(usertoken)
701 unless user then return -1,"You are not logged in, so the way could not be deleted." end
704 # Need a transaction so that if one item fails to delete, the whole delete fails.
707 # FIXME: would be good not to make two history entries when removing
708 # two nodes from the same relation
709 old_way = Way.find(way_id)
710 #old_way.unshared_node_ids.each do |n|
711 # deleteitemrelations(n, 'node')
713 #deleteitemrelations(way_id, 'way')
716 #way.delete_with_relations_and_nodes_and_history(changeset_id.to_i)
717 old_way.unshared_node_ids.each do |node_id|
719 node = Node.find(node_id)
720 delete_node = Node.new
721 delete_node.version = node_id_version[node_id]
722 node.delete_with_history!(delete_node, user)
726 delete_way.version = way_version
727 old_way.delete_with_history!(delete_way, user)
730 rescue OSM::APIChangesetAlreadyClosedError => ex
731 return [-1, "The changeset #{ex.changeset.id} was closed at #{ex.changeset.closed_at}"]
732 rescue OSM::APIVersionMismatchError => ex
733 # Really need to check to see whether this is a server load issue, and the
734 # last version was in the same changeset, or belongs to the same user, then
735 # we can return something different
736 return [-3, "You have taken too long to edit, please reload the area"]
737 rescue OSM::APIAlreadyDeletedError => ex
738 return [-1, "The object has already been deleted"]
739 rescue OSM::APIError => ex
740 # Some error that we don't specifically catch
741 return [-2, "Something really bad happened :-()"]
745 # ====================================================================
748 # delete a way and its nodes that aren't part of other ways
749 # this functionality used to be in the model, however it is specific to amf
751 #def delete_unshared_nodes(changeset_id, way_id)
753 # Remove a node or way from all relations
754 # FIXME needs version, changeset, and user
755 # Fixme make sure this doesn't depend on anything and delete this, as potlatch
756 # itself should remove the relations first
757 def deleteitemrelations(objid, type, version) #:doc:
758 relations = RelationMember.find(:all,
759 :conditions => ['member_type = ? and member_id = ?', type, objid],
760 :include => :relation).collect { |rm| rm.relation }.uniq
762 relations.each do |rel|
763 rel.members.delete_if { |x| x[0] == type and x[1] == objid }
764 # FIXME need to create the new relation
765 new_rel = Relation.new
766 new_rel.version = version
767 new_rel.members = members
768 new_rel.changeset = changeset
769 rel.delete_with_history(new_rel, user)
773 # Break out node tags into a hash
774 # (should become obsolete as of API 0.6)
776 def tagstring_to_hash(a) #:doc:
778 Tags.split(a) do |k, v|
785 # (can also be of form user:pass)
786 # When we are writing to the api, we need the actual user model,
787 # not just the id, hence this abstraction
789 def getuser(token) #:doc:
790 if (token =~ /^(.+)\:(.+)$/) then
791 user = User.authenticate(:username => $1, :password => $2)
793 user = User.authenticate(:token => token)
799 user = getuser(token)
800 return user ? user.id : nil;
803 # Compare two floating-point numbers to within 0.0000001
805 def fpcomp(a,b) #:doc:
806 return ((a/0.0000001).round==(b/0.0000001).round)
811 def sendresponse(results)
812 a,b=results.length.divmod(256)
813 render :content_type => "application/x-amf", :text => proc { |response, output|
814 # ** move amf writing loop into here -
815 # basically we read the messages in first (into an array of some sort),
816 # then iterate through that array within here, and do all the AMF writing
817 output.write 0.chr+0.chr+0.chr+0.chr+a.chr+b.chr
818 results.each do |k,v|
825 # ====================================================================
826 # Alternative SQL queries for getway/whichways
828 def sql_find_ways_in_area(xmin,ymin,xmax,ymax)
830 SELECT DISTINCT current_ways.id AS wayid,current_ways.version AS version
831 FROM current_way_nodes
832 INNER JOIN current_nodes ON current_nodes.id=current_way_nodes.node_id
833 INNER JOIN current_ways ON current_ways.id =current_way_nodes.id
834 WHERE current_nodes.visible=TRUE
835 AND current_ways.visible=TRUE
836 AND #{OSM.sql_for_area(ymin, xmin, ymax, xmax, "current_nodes.")}
838 return ActiveRecord::Base.connection.select_all(sql).collect { |a| [a['wayid'].to_i,a['version'].to_i] }
841 def sql_find_pois_in_area(xmin,ymin,xmax,ymax)
844 SELECT current_nodes.id,current_nodes.latitude*0.0000001 AS lat,current_nodes.longitude*0.0000001 AS lon,current_nodes.version
846 LEFT OUTER JOIN current_way_nodes cwn ON cwn.node_id=current_nodes.id
847 WHERE current_nodes.visible=TRUE
849 AND #{OSM.sql_for_area(ymin, xmin, ymax, xmax, "current_nodes.")}
851 ActiveRecord::Base.connection.select_all(sql).each do |row|
853 ActiveRecord::Base.connection.select_all("SELECT k,v FROM current_node_tags WHERE id=#{row['id']}").each do |n|
854 poitags[n['k']]=n['v']
856 pois << [row['id'].to_i, row['lon'].to_f, row['lat'].to_f, poitags, row['version'].to_i]
861 def sql_find_relations_in_area_and_ways(xmin,ymin,xmax,ymax,way_ids)
862 # ** It would be more Potlatchy to get relations for nodes within ways
863 # during 'getway', not here
865 SELECT DISTINCT cr.id AS relid,cr.version AS version
866 FROM current_relations cr
867 INNER JOIN current_relation_members crm ON crm.id=cr.id
868 INNER JOIN current_nodes cn ON crm.member_id=cn.id AND crm.member_type='node'
869 WHERE #{OSM.sql_for_area(ymin, xmin, ymax, xmax, "cn.")}
871 unless way_ids.empty?
874 SELECT DISTINCT cr.id AS relid,cr.version AS version
875 FROM current_relations cr
876 INNER JOIN current_relation_members crm ON crm.id=cr.id
877 WHERE crm.member_type='way'
878 AND crm.member_id IN (#{way_ids.join(',')})
881 return ActiveRecord::Base.connection.select_all(sql).collect { |a| [a['relid'].to_i,a['version'].to_i] }
884 def sql_get_nodes_in_way(wayid)
887 SELECT latitude*0.0000001 AS lat,longitude*0.0000001 AS lon,current_nodes.id
888 FROM current_way_nodes,current_nodes
889 WHERE current_way_nodes.id=#{wayid.to_i}
890 AND current_way_nodes.node_id=current_nodes.id
891 AND current_nodes.visible=TRUE
894 ActiveRecord::Base.connection.select_all(sql).each do |row|
896 ActiveRecord::Base.connection.select_all("SELECT k,v FROM current_node_tags WHERE id=#{row['id']}").each do |n|
897 nodetags[n['k']]=n['v']
899 nodetags.delete('created_by')
900 points << [row['lon'].to_f,row['lat'].to_f,row['id'].to_i,nodetags]
905 def sql_get_tags_in_way(wayid)
907 ActiveRecord::Base.connection.select_all("SELECT k,v FROM current_way_tags WHERE id=#{wayid.to_i}").each do |row|
908 tags[row['k']]=row['v']
913 def sql_get_way_version(wayid)
914 ActiveRecord::Base.connection.select_one("SELECT version FROM current_ways WHERE id=#{wayid.to_i}")