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 cs.user_id!=user.id
141 return -2,"You cannot close that changeset because you're not the person who opened it."
142 elsif closecomment.empty?
145 cs.tags['comment']=closecomment
150 # open a new changeset
154 # smsm1 doesn't like the next two lines and thinks they need to be abstracted to the model more/better
155 cs.created_at = Time.now
156 cs.closed_at = Time.new + Changeset::IDLE_TIMEOUT
161 # Return presets (default tags, localisation etc.):
162 # uses POTLATCH_PRESETS global, set up in OSM::Potlatch.
164 def getpresets() #:doc:
165 return POTLATCH_PRESETS
169 # Find all the ways, POI nodes (i.e. not part of ways), and relations
170 # in a given bounding box. Nodes are returned in full; ways and relations
173 # return is of the form:
175 # [[way_id, way_version], ...],
176 # [[node_id, lat, lon, [tags, ...], node_version], ...],
177 # [[rel_id, rel_version], ...]]
178 # where the ways are any visible ways which refer to any visible
179 # nodes in the bbox, nodes are any visible nodes in the bbox but not
180 # used in any way, rel is any relation which refers to either a way
181 # or node that we're returning.
182 def whichways(xmin, ymin, xmax, ymax) #:doc:
183 xmin -= 0.01; ymin -= 0.01
184 xmax += 0.01; ymax += 0.01
186 # check boundary is sane and area within defined
187 # see /config/application.yml
188 check_boundaries(xmin, ymin, xmax, ymax)
190 if POTLATCH_USE_SQL then
191 ways = sql_find_ways_in_area(xmin, ymin, xmax, ymax)
192 points = sql_find_pois_in_area(xmin, ymin, xmax, ymax)
193 relations = sql_find_relations_in_area_and_ways(xmin, ymin, xmax, ymax, ways.collect {|x| x[0]})
195 # find the way ids in an area
196 nodes_in_area = Node.find_by_area(ymin, xmin, ymax, xmax, :conditions => ["current_nodes.visible = ?", true], :include => :ways)
197 ways = nodes_in_area.inject([]) { |sum, node|
198 visible_ways = node.ways.select { |w| w.visible? }
199 sum + visible_ways.collect { |w| [w.id,w.version] }
203 # find the node ids in an area that aren't part of ways
204 nodes_not_used_in_area = nodes_in_area.select { |node| node.ways.empty? }
205 points = nodes_not_used_in_area.collect { |n| [n.id, n.lon, n.lat, n.tags, n.version] }
207 # find the relations used by those nodes and ways
208 relations = Relation.find_for_nodes(nodes_in_area.collect { |n| n.id }, :conditions => {:visible => true}) +
209 Relation.find_for_ways(ways.collect { |w| w[0] }, :conditions => {:visible => true})
210 relations = relations.collect { |relation| [relation.id,relation.version] }.uniq
213 [0,ways, points, relations]
215 rescue Exception => err
216 [-2,"Sorry - I can't get the map for that area."]
219 # Find deleted ways in current bounding box (similar to whichways, but ways
220 # with a deleted node only - not POIs or relations).
222 def whichways_deleted(xmin, ymin, xmax, ymax) #:doc:
223 xmin -= 0.01; ymin -= 0.01
224 xmax += 0.01; ymax += 0.01
226 # check boundary is sane and area within defined
227 # see /config/application.yml
229 check_boundaries(xmin, ymin, xmax, ymax)
230 rescue Exception => err
231 return [-2,"Sorry - I can't get the map for that area."]
234 nodes_in_area = Node.find_by_area(ymin, xmin, ymax, xmax, :conditions => ["current_ways.visible = ?", false], :include => :ways_via_history)
235 way_ids = nodes_in_area.collect { |node| node.ways_via_history_ids }.flatten.uniq
240 # Get a way including nodes and tags.
241 # Returns the way id, a Potlatch-style array of points, a hash of tags, and the version number.
243 def getway(wayid) #:doc:
244 if POTLATCH_USE_SQL then
245 points = sql_get_nodes_in_way(wayid)
246 tags = sql_get_tags_in_way(wayid)
247 version = sql_get_way_version(wayid)
249 # Ideally we would do ":include => :nodes" here but if we do that
250 # then rails only seems to return the first copy of a node when a
251 # way includes a node more than once
253 way = Way.find(wayid)
254 rescue ActiveRecord::RecordNotFound
258 # check case where way has been deleted or doesn't exist
259 return [wayid,[],{}] if way.nil? or !way.visible
261 points = way.nodes.collect do |node|
263 nodetags.delete('created_by')
264 [node.lon, node.lat, node.id, nodetags, node.version]
267 version = way.version
270 [wayid, points, tags, version]
273 # Get an old version of a way, and all constituent nodes.
275 # For undelete (version<0), always uses the most recent version of each node,
276 # even if it's moved. For revert (version >= 0), uses the node in existence
277 # at the time, generating a new id if it's still visible and has been moved/
283 # 2. array of points,
286 # 5. is this the current, visible version? (boolean)
288 def getway_old(id, version) #:doc:
290 old_way = OldWay.find(:first, :conditions => ['visible = ? AND id = ?', true, id], :order => 'version DESC')
291 points = old_way.get_nodes_undelete unless old_way.nil?
293 old_way = OldWay.find(:first, :conditions => ['id = ? AND version = ?', id, version])
294 points = old_way.get_nodes_revert unless old_way.nil?
298 return [-1, id, [], {}, -1,0]
301 old_way.tags['history'] = "Retrieved from v#{old_way.version}"
302 return [0, id, points, old_way.tags, old_way.version, (curway.version==old_way.version and curway.visible)]
306 # Find history of a way. Returns 'way', id, and
307 # an array of previous versions.
309 def getway_history(wayid) #:doc:
311 history = Way.find(wayid).old_ways.reverse.collect do |old_way|
312 user_object = old_way.changeset.user
313 user = user_object.data_public? ? user_object.display_name : 'anonymous'
314 uid = user_object.data_public? ? user_object.id : 0
315 [old_way.version, old_way.timestamp.strftime("%d %b %Y, %H:%M"), old_way.visible ? 1 : 0, user, uid]
318 return ['way',wayid,history]
319 rescue ActiveRecord::RecordNotFound
320 return ['way', wayid, []]
324 # Find history of a node. Returns 'node', id, and
325 # an array of previous versions.
327 def getnode_history(nodeid) #:doc:
328 history = Node.find(nodeid).old_nodes.reverse.collect do |old_node|
329 user_object = old_node.changeset.user
330 user = user_object.data_public? ? user_object.display_name : 'anonymous'
331 uid = user_object.data_public? ? user_object.id : 0
332 [old_node.version, old_node.timestamp.strftime("%d %b %Y, %H:%M"), old_node.visible ? 1 : 0, user, uid]
335 return ['node',nodeid,history]
336 rescue ActiveRecord::RecordNotFound
337 return ['node', nodeid, []]
340 # Find GPS traces with specified name/id.
341 # Returns array listing GPXs, each one comprising id, name and description.
343 def findgpx(searchterm, usertoken)
344 uid = getuserid(usertoken)
345 if !uid then return -1,"You must be logged in to search for GPX traces." end
348 if searchterm.to_i>0 then
349 gpx = Trace.find(searchterm.to_i, :conditions => ["visible=? AND (public=? OR user_id=?)",true,true,uid] )
351 gpxs.push([gpx.id, gpx.name, gpx.description])
354 Trace.find(:all, :limit => 21, :conditions => ["visible=? AND (public=? OR user_id=?) AND MATCH(name) AGAINST (?)",true,true,uid,searchterm] ).each do |gpx|
355 gpxs.push([gpx.id, gpx.name, gpx.description])
361 # Get a relation with all tags and members.
365 # 2. list of members,
368 def getrelation(relid) #:doc:
370 rel = Relation.find(relid)
371 rescue ActiveRecord::RecordNotFound
372 return [relid, {}, []]
375 return [relid, {}, [], nil] if rel.nil? or !rel.visible
376 [relid, rel.tags, rel.members, rel.version]
379 # Find relations with specified name/id.
380 # Returns array of relations, each in same form as getrelation.
382 def findrelations(searchterm)
384 if searchterm.to_i>0 then
385 rel = Relation.find(searchterm.to_i)
386 if rel and rel.visible then
387 rels.push([rel.id, rel.tags, rel.members])
390 RelationTag.find(:all, :limit => 11, :conditions => ["match(v) against (?)", searchterm] ).each do |t|
391 if t.relation.visible then
392 rels.push([t.relation.id, t.relation.tags, t.relation.members])
402 # 1. original relation id (unchanged),
403 # 2. new relation id.
405 def putrelation(renumberednodes, renumberedways, usertoken, changeset, version, relid, tags, members, visible) #:doc:
406 user = getuserid(usertoken)
407 if !user then return -1,"You are not logged in, so the relation could not be saved." end
410 visible = (visible.to_i != 0)
414 Relation.transaction do
415 # create a new relation, or find the existing one
417 relation = Relation.find(relid)
419 # We always need a new node, based on the data that has been sent to us
420 new_relation = Relation.new
422 # check the members are all positive, and correctly type
427 mid = renumberednodes[mid] if m[0] == 'node'
428 mid = renumberedways[mid] if m[0] == 'way'
431 typedmembers << [m[0], mid, m[2]]
435 # assign new contents
436 new_relation.members = typedmembers
437 new_relation.tags = tags
438 new_relation.visible = visible
439 new_relation.changeset_id = changeset
440 new_relation.version = version
444 # We're creating the node
445 new_relation.create_with_history(user)
447 # We're updating the node
448 relation.update_from(new_relation, user)
450 # We're deleting the node
451 relation.delete_with_history!(new_relation, user)
456 return [0, relid, new_relation.id, new_relation.version]
458 return [0, relid, relation.id, relation.version]
460 rescue OSM::APIChangesetAlreadyClosedError => ex
461 return [-1, "The changeset #{ex.changeset.id} was closed at #{ex.changeset.closed_at}"]
462 rescue OSM::APIVersionMismatchError => ex
463 # Really need to check to see whether this is a server load issue, and the
464 # last version was in the same changeset, or belongs to the same user, then
465 # we can return something different
466 return [-3, "You have taken too long to edit, please reload the area"]
467 rescue OSM::APIAlreadyDeletedError => ex
468 return [-1, "The object has already been deleted"]
469 rescue OSM::APIError => ex
470 # Some error that we don't specifically catch
471 return [-2, "Something really bad happened :-()"]
474 # Save a way to the database, including all nodes. Any nodes in the previous
475 # version and no longer used are deleted.
478 # 0. hash of renumbered nodes
479 # 1. current user token (for authentication)
480 # 2. current changeset
483 # 5. list of nodes in way
484 # 6. hash of way tags
485 # 7. array of nodes to change (each one is [lon,lat,id,version,tags])
488 # 0. '0' (code for success),
489 # 1. original way id (unchanged),
491 # 3. hash of renumbered nodes (old id=>new id),
493 # 5. hash of node versions (node=>version)
495 def putway(renumberednodes, usertoken, changeset, version, originalway, pointlist, attributes, nodes) #:doc:
499 user = getuser(usertoken)
500 if !user then return -1,"You are not logged in, so the way could not be saved." end
501 if pointlist.length < 2 then return -2,"Server error - way is only #{points.length} points long." end
503 originalway = originalway.to_i
506 # -- Get unique nodes
511 way = Way.find(originalway)
512 uniques = way.unshared_node_ids
515 #Ê-- Update each changed node
523 if id == 0 then return -2,"Server error - node with id 0 found in way #{originalway}." end
524 if lat== 90 then return -2,"Server error - node with latitude -90 found in way #{originalway}." end
525 if renumberednodes[id] then id = renumberednodes[id] end
528 node.changeset_id = changeset
532 node.tags.delete('created_by')
533 node.version = version
535 # We're creating the node
536 node.create_with_history(user)
537 renumberednodes[id] = node.id
538 nodeversions[id] = node.version
540 # We're updating an existing node
541 previous=Node.find(id)
542 previous.update_from(node, user)
543 nodeversions[id] = previous.version
547 # -- Delete any unique nodes no longer used
549 uniques=uniques-pointlist
553 new_node.changeset_id = changeset
554 new_node.version = version
555 node.delete_with_history!(new_node, user)
558 # -- Save revised way
561 new_way.tags = attributes
562 new_way.nds = pointlist
563 new_way.changeset_id = changeset
564 new_way.version = version
566 new_way.create_with_history(user)
567 way=new_way # so we can get way.id and way.version
568 elsif way.tags!=attributes or way.nds!=pointlist or !way.visible?
569 way.update_from(new_way, user)
573 [0, originalway, way.id, renumberednodes, way.version, nodeversions]
574 rescue OSM::APIChangesetAlreadyClosedError => ex
575 return [-2, "Sorry, your changeset #{ex.changeset.id} has been closed (at #{ex.changeset.closed_at})."]
576 rescue OSM::APIVersionMismatchError => ex
577 # Really need to check to see whether this is a server load issue, and the
578 # last version was in the same changeset, or belongs to the same user, then
579 # we can return something different
580 return [-3, "Sorry, someone else has changed this way since you started editing - please reload the area"]
581 rescue OSM::APITooManyWayNodesError => ex
582 return [-1, "You have tried to upload a really long way with #{ex.provided} points: only #{ex.max} are allowed."]
583 rescue OSM::APIAlreadyDeletedError => ex
584 return [-1, "The object has already been deleted."]
585 rescue OSM::APIError => ex
586 # Some error that we don't specifically catch
587 return [-2, "Something really bad happened :-(."]
590 # Save POI to the database.
591 # Refuses save if the node has since become part of a way.
592 # Returns array with:
594 # 1. original node id (unchanged),
598 def putpoi(usertoken, changeset, version, id, lon, lat, tags, visible) #:doc:
599 user = getuser(usertoken)
600 if !user then return -1,"You are not logged in, so the point could not be saved." end
603 visible = (visible.to_i == 1)
611 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
612 deleteitemrelations(id, 'node')
615 # We always need a new node, based on the data that has been sent to us
618 new_node.changeset_id = changeset
619 new_node.version = version
624 # We're creating the node
625 new_node.create_with_history(user)
627 # We're updating the node
628 node.update_from(new_node, user)
630 # We're deleting the node
631 node.delete_with_history!(new_node, user)
636 return [0, id, new_node.id, new_node.version]
638 return [0, id, node.id, node.version]
640 rescue OSM::APIChangesetAlreadyClosedError => ex
641 return [-1, "The changeset #{ex.changeset.id} was closed at #{ex.changeset.closed_at}"]
642 rescue OSM::APIVersionMismatchError => ex
643 # Really need to check to see whether this is a server load issue, and the
644 # last version was in the same changeset, or belongs to the same user, then
645 # we can return something different
646 return [-3, "You have taken too long to edit, please reload the area"]
647 rescue OSM::APIAlreadyDeletedError => ex
648 return [-1, "The object has already been deleted"]
649 rescue OSM::APIError => ex
650 # Some error that we don't specifically catch
651 return [-2, "Something really bad happened :-()"]
654 # Read POI from database
655 # (only called on revert: POIs are usually read by whichways).
657 # Returns array of id, long, lat, hash of tags, version.
659 def getpoi(id,version) #:doc:
661 n = OldNode.find(id, :conditions=>['version=?',version])
667 return [n.id, n.lon, n.lat, n.tags, n.version]
669 return [nil, nil, nil, {}, nil]
673 # Delete way and all constituent nodes. Also removes from any relations.
677 # * the id of the way to change
678 # * the version of the way that was downloaded
679 # * a hash of the id and versions of all the nodes that are in the way, if any
680 # of the nodes have been changed by someone else then, there is a problem!
681 # Returns 0 (success), unchanged way id.
683 def deleteway(usertoken, changeset_id, way_id, way_version, node_id_version) #:doc:
684 user = getuser(usertoken)
685 unless user then return -1,"You are not logged in, so the way could not be deleted." end
688 # Need a transaction so that if one item fails to delete, the whole delete fails.
691 # FIXME: would be good not to make two history entries when removing
692 # two nodes from the same relation
693 old_way = Way.find(way_id)
694 #old_way.unshared_node_ids.each do |n|
695 # deleteitemrelations(n, 'node')
697 #deleteitemrelations(way_id, 'way')
700 #way.delete_with_relations_and_nodes_and_history(changeset_id.to_i)
701 old_way.unshared_node_ids.each do |node_id|
703 node = Node.find(node_id)
704 delete_node = Node.new
705 delete_node.version = node_id_version[node_id]
706 node.delete_with_history!(delete_node, user)
710 delete_way.version = way_version
711 old_way.delete_with_history!(delete_way, user)
714 rescue OSM::APIChangesetAlreadyClosedError => ex
715 return [-1, "The changeset #{ex.changeset.id} was closed at #{ex.changeset.closed_at}"]
716 rescue OSM::APIVersionMismatchError => ex
717 # Really need to check to see whether this is a server load issue, and the
718 # last version was in the same changeset, or belongs to the same user, then
719 # we can return something different
720 return [-3, "You have taken too long to edit, please reload the area"]
721 rescue OSM::APIAlreadyDeletedError => ex
722 return [-1, "The object has already been deleted"]
723 rescue OSM::APIError => ex
724 # Some error that we don't specifically catch
725 return [-2, "Something really bad happened :-()"]
729 # ====================================================================
732 # delete a way and its nodes that aren't part of other ways
733 # this functionality used to be in the model, however it is specific to amf
735 #def delete_unshared_nodes(changeset_id, way_id)
737 # Remove a node or way from all relations
738 # FIXME needs version, changeset, and user
739 # Fixme make sure this doesn't depend on anything and delete this, as potlatch
740 # itself should remove the relations first
741 def deleteitemrelations(objid, type, version) #:doc:
742 relations = RelationMember.find(:all,
743 :conditions => ['member_type = ? and member_id = ?', type, objid],
744 :include => :relation).collect { |rm| rm.relation }.uniq
746 relations.each do |rel|
747 rel.members.delete_if { |x| x[0] == type and x[1] == objid }
748 # FIXME need to create the new relation
749 new_rel = Relation.new
750 new_rel.version = version
751 new_rel.members = members
752 new_rel.changeset = changeset
753 rel.delete_with_history(new_rel, user)
757 # Break out node tags into a hash
758 # (should become obsolete as of API 0.6)
760 def tagstring_to_hash(a) #:doc:
762 Tags.split(a) do |k, v|
769 # (can also be of form user:pass)
770 # When we are writing to the api, we need the actual user model,
771 # not just the id, hence this abstraction
773 def getuser(token) #:doc:
774 if (token =~ /^(.+)\:(.+)$/) then
775 user = User.authenticate(:username => $1, :password => $2)
777 user = User.authenticate(:token => token)
783 user = getuser(token)
784 return user ? user.id : nil;
787 # Compare two floating-point numbers to within 0.0000001
789 def fpcomp(a,b) #:doc:
790 return ((a/0.0000001).round==(b/0.0000001).round)
795 def sendresponse(results)
796 a,b=results.length.divmod(256)
797 render :content_type => "application/x-amf", :text => proc { |response, output|
798 # ** move amf writing loop into here -
799 # basically we read the messages in first (into an array of some sort),
800 # then iterate through that array within here, and do all the AMF writing
801 output.write 0.chr+0.chr+0.chr+0.chr+a.chr+b.chr
802 results.each do |k,v|
809 # ====================================================================
810 # Alternative SQL queries for getway/whichways
812 def sql_find_ways_in_area(xmin,ymin,xmax,ymax)
814 SELECT DISTINCT current_ways.id AS wayid,current_ways.version AS version
815 FROM current_way_nodes
816 INNER JOIN current_nodes ON current_nodes.id=current_way_nodes.node_id
817 INNER JOIN current_ways ON current_ways.id =current_way_nodes.id
818 WHERE current_nodes.visible=TRUE
819 AND current_ways.visible=TRUE
820 AND #{OSM.sql_for_area(ymin, xmin, ymax, xmax, "current_nodes.")}
822 return ActiveRecord::Base.connection.select_all(sql).collect { |a| [a['wayid'].to_i,a['version'].to_i] }
825 def sql_find_pois_in_area(xmin,ymin,xmax,ymax)
828 SELECT current_nodes.id,current_nodes.latitude*0.0000001 AS lat,current_nodes.longitude*0.0000001 AS lon,current_nodes.version
830 LEFT OUTER JOIN current_way_nodes cwn ON cwn.node_id=current_nodes.id
831 WHERE current_nodes.visible=TRUE
833 AND #{OSM.sql_for_area(ymin, xmin, ymax, xmax, "current_nodes.")}
835 ActiveRecord::Base.connection.select_all(sql).each do |row|
837 ActiveRecord::Base.connection.select_all("SELECT k,v FROM current_node_tags WHERE id=#{row['id']}").each do |n|
838 poitags[n['k']]=n['v']
840 pois << [row['id'].to_i, row['lon'].to_f, row['lat'].to_f, poitags, row['version'].to_i]
845 def sql_find_relations_in_area_and_ways(xmin,ymin,xmax,ymax,way_ids)
846 # ** It would be more Potlatchy to get relations for nodes within ways
847 # during 'getway', not here
849 SELECT DISTINCT cr.id AS relid,cr.version AS version
850 FROM current_relations cr
851 INNER JOIN current_relation_members crm ON crm.id=cr.id
852 INNER JOIN current_nodes cn ON crm.member_id=cn.id AND crm.member_type='node'
853 WHERE #{OSM.sql_for_area(ymin, xmin, ymax, xmax, "cn.")}
855 unless way_ids.empty?
858 SELECT DISTINCT cr.id AS relid,cr.version AS version
859 FROM current_relations cr
860 INNER JOIN current_relation_members crm ON crm.id=cr.id
861 WHERE crm.member_type='way'
862 AND crm.member_id IN (#{way_ids.join(',')})
865 return ActiveRecord::Base.connection.select_all(sql).collect { |a| [a['relid'].to_i,a['version'].to_i] }
868 def sql_get_nodes_in_way(wayid)
871 SELECT latitude*0.0000001 AS lat,longitude*0.0000001 AS lon,current_nodes.id
872 FROM current_way_nodes,current_nodes
873 WHERE current_way_nodes.id=#{wayid.to_i}
874 AND current_way_nodes.node_id=current_nodes.id
875 AND current_nodes.visible=TRUE
878 ActiveRecord::Base.connection.select_all(sql).each do |row|
880 ActiveRecord::Base.connection.select_all("SELECT k,v FROM current_node_tags WHERE id=#{row['id']}").each do |n|
881 nodetags[n['k']]=n['v']
883 nodetags.delete('created_by')
884 points << [row['lon'].to_f,row['lat'].to_f,row['id'].to_i,nodetags]
889 def sql_get_tags_in_way(wayid)
891 ActiveRecord::Base.connection.select_all("SELECT k,v FROM current_way_tags WHERE id=#{wayid.to_i}").each do |row|
892 tags[row['k']]=row['v']
897 def sql_get_way_version(wayid)
898 ActiveRecord::Base.connection.select_one("SELECT version FROM current_ways WHERE id=#{wayid.to_i}")