]> git.openstreetmap.org Git - rails.git/blob - app/controllers/amf_controller.rb
cosmetic tweaks to diary interface. icon for new entries link
[rails.git] / app / controllers / amf_controller.rb
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).
5 #
6 # Helper functions are in /lib/potlatch.
7 #
8 # Author::      editions Systeme D / Richard Fairhurst 2004-2008
9 # Licence::     public domain.
10 #
11 # == General structure
12 #
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.
17 #
18 # == API 0.6
19 #
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 .
23
24 # == Debugging
25
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
29
30 # To write to the Rails log, use RAILS_DEFAULT_LOGGER.info("message").
31
32 class AmfController < ApplicationController
33   require 'stringio'
34
35   include Potlatch
36
37   # Help methods for checking boundary sanity and area size
38   include MapBoundary
39
40   session :off
41   before_filter :check_write_availability
42
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
46   
47   def amf_read
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
52
53     # Parse request
54
55     headers=AMF.getint(req)                                     # Read number of headers
56
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                                      #  |
62     end
63
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}"
71
72       case message
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))
84       end
85     end
86     logger.info("encoding AMF results")
87     sendresponse(results)
88   end
89
90   def amf_write
91     req=StringIO.new(request.raw_post+0.chr)
92     req.read(2)
93     results={}
94     renumberednodes={}                                          # Shared across repeated putways
95     renumberedways={}                                           # Shared across repeated putways
96
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                                      #  |
103     end
104
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)
111
112       case message
113         when 'putway';                          
114           r=putway(renumberednodes,*args)
115           renumberednodes=r[3]
116           if r[1] != r[2]
117             renumberedways[r[1]] = r[2]
118           end
119           results[index]=AMF.putdata(index,r)
120         when 'putrelation';                     results[index]=AMF.putdata(index,putrelation(renumberednodes, renumberedways, *args))
121         when 'deleteway';                       results[index]=AMF.putdata(index,deleteway(*args))
122         when 'putpoi';                          results[index]=AMF.putdata(index,putpoi(*args))
123         when 'startchangeset';          results[index]=AMF.putdata(index,startchangeset(*args))
124       end
125     end
126     sendresponse(results)
127   end
128
129   private
130
131   # Start new changeset
132   
133   def startchangeset(usertoken, cstags, closeid, closecomment)
134     uid = getuserid(usertoken)
135     if !uid then return -1,"You are not logged in, so Potlatch can't write any changes to the database." end
136
137     # close previous changeset and add comment
138     if closeid
139       cs = Changeset.find(closeid)
140       cs.set_closed_time_now
141       if closecomment.empty?
142         cs.save!
143       else
144         cs.tags['comment']=closecomment
145         cs.save_with_tags!
146       end
147     end
148         
149     # open a new changeset
150     cs = Changeset.new
151     cs.tags = cstags
152     cs.user_id = uid
153     # Don't like the next two lines. These need to be abstracted to the model more/better
154     cs.created_at = Time.now
155     cs.closed_at = Time.new + Changeset::IDLE_TIMEOUT
156     cs.save_with_tags!
157     return [0,cs.id]
158   end
159
160   # Return presets (default tags, localisation etc.):
161   # uses POTLATCH_PRESETS global, set up in OSM::Potlatch.
162
163   def getpresets() #:doc:
164     return POTLATCH_PRESETS
165   end
166
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 
169   # are IDs only. 
170
171   def whichways(xmin, ymin, xmax, ymax) #:doc:
172     xmin -= 0.01; ymin -= 0.01
173     xmax += 0.01; ymax += 0.01
174     
175     # check boundary is sane and area within defined
176     # see /config/application.yml
177     begin
178       check_boundaries(xmin, ymin, xmax, ymax)
179     rescue Exception => err
180       return [-2,"Sorry - I can't get the map for that area."]
181     end
182
183     if POTLATCH_USE_SQL then
184       ways = sql_find_ways_in_area(xmin, ymin, xmax, ymax)
185       points = sql_find_pois_in_area(xmin, ymin, xmax, ymax)
186       relations = sql_find_relations_in_area_and_ways(xmin, ymin, xmax, ymax, ways.collect {|x| x[0]})
187     else
188       # find the way ids in an area
189       nodes_in_area = Node.find_by_area(ymin, xmin, ymax, xmax, :conditions => ["current_nodes.visible = ?", true], :include => :ways)
190       ways = nodes_in_area.collect { |node| 
191         node.ways.collect { |w| [w.id,w.version] }.flatten
192       }.uniq
193       ways.delete([])
194
195       # find the node ids in an area that aren't part of ways
196       nodes_not_used_in_area = nodes_in_area.select { |node| node.ways.empty? }
197       points = nodes_not_used_in_area.collect { |n| [n.id, n.lon, n.lat, n.tags] }
198
199       # find the relations used by those nodes and ways
200       relations = Relation.find_for_nodes(nodes_in_area.collect { |n| n.id }, :conditions => {:visible => true}) +
201                   Relation.find_for_ways(ways.collect { |w| w[0] }, :conditions => {:visible => true})
202       relations = relations.collect { |relation| [relation.id,relation.version] }.uniq
203     end
204
205     [0,ways, points, relations]
206   end
207
208   # Find deleted ways in current bounding box (similar to whichways, but ways
209   # with a deleted node only - not POIs or relations).
210
211   def whichways_deleted(xmin, ymin, xmax, ymax) #:doc:
212     xmin -= 0.01; ymin -= 0.01
213     xmax += 0.01; ymax += 0.01
214
215     # check boundary is sane and area within defined
216     # see /config/application.yml
217     begin
218       check_boundaries(xmin, ymin, xmax, ymax)
219     rescue Exception => err
220       return [-2,"Sorry - I can't get the map for that area."]
221     end
222
223     nodes_in_area = Node.find_by_area(ymin, xmin, ymax, xmax, :conditions => ["current_ways.visible = ?", false], :include => :ways_via_history)
224     way_ids = nodes_in_area.collect { |node| node.ways_via_history_ids }.flatten.uniq
225
226     [0,way_ids]
227   end
228
229   # Get a way including nodes and tags.
230   # Returns the way id, a Potlatch-style array of points, a hash of tags, and the version number.
231
232   def getway(wayid) #:doc:
233     if POTLATCH_USE_SQL then
234       points = sql_get_nodes_in_way(wayid)
235       tags = sql_get_tags_in_way(wayid)
236       version = sql_get_way_version(wayid)
237       else
238         # Ideally we would do ":include => :nodes" here but if we do that
239         # then rails only seems to return the first copy of a node when a
240         # way includes a node more than once
241         begin
242           way = Way.find(wayid)
243         rescue ActiveRecord::RecordNotFound
244           return [wayid,[],{}]
245         end
246
247         # check case where way has been deleted or doesn't exist
248         return [wayid,[],{}] if way.nil? or !way.visible
249
250         points = way.nodes.collect do |node|
251         nodetags=node.tags
252         nodetags.delete('created_by')
253         [node.lon, node.lat, node.id, nodetags]
254       end
255       tags = way.tags
256       version = way.version
257     end
258
259     [wayid, points, tags, version]
260   end
261
262   # Get an old version of a way, and all constituent nodes.
263   #
264   # For undelete (version<0), always uses the most recent version of each node, 
265   # even if it's moved.  For revert (version >= 0), uses the node in existence 
266   # at the time, generating a new id if it's still visible and has been moved/
267   # retagged.
268   #
269   # Returns:
270   # 0. success code, 
271   # 1. id, 
272   # 2. array of points, 
273   # 3. hash of tags, 
274   # 4. version, 
275   # 5. is this the current, visible version? (boolean)
276
277   def getway_old(id, version) #:doc:
278     if version < 0
279       old_way = OldWay.find(:first, :conditions => ['visible = ? AND id = ?', true, id], :order => 'version DESC')
280       points = old_way.get_nodes_undelete unless old_way.nil?
281     else
282       old_way = OldWay.find(:first, :conditions => ['id = ? AND version = ?', id, version])
283       points = old_way.get_nodes_revert unless old_way.nil?
284     end
285
286     if old_way.nil?
287       return [-1, id, [], {}, -1,0]
288     else
289       curway=Way.find(id)
290       old_way.tags['history'] = "Retrieved from v#{old_way.version}"
291       return [0, id, points, old_way.tags, old_way.version, (curway.version==old_way.version and curway.visible)]
292     end
293   end
294   
295   # Find history of a way. Returns 'way', id, and 
296   # an array of previous versions.
297
298   def getway_history(wayid) #:doc:
299     begin
300       history = Way.find(wayid).old_ways.reverse.collect do |old_way|
301         user_object = old_way.changeset.user
302         user = user_object.data_public? ? user_object.display_name : 'anonymous'
303         uid  = user_object.data_public? ? user_object.id : 0
304         [old_way.version, old_way.timestamp.strftime("%d %b %Y, %H:%M"), old_way.visible ? 1 : 0, user, uid]
305       end
306
307       return ['way',wayid,history]
308     rescue ActiveRecord::RecordNotFound
309       return ['way', wayid, []]
310     end
311   end
312
313   # Find history of a node. Returns 'node', id, and 
314   # an array of previous versions.
315
316   def getnode_history(nodeid) #:doc:
317     begin
318           history = Node.find(nodeid).old_nodes.reverse.collect do |old_node|
319         user_object = old_node.changeset.user
320         user = user_object.data_public? ? user_object.display_name : 'anonymous'
321         uid  = user_object.data_public? ? user_object.id : 0
322         [old_node.version, old_node.timestamp.strftime("%d %b %Y, %H:%M"), old_node.visible ? 1 : 0, user, uid]
323       end
324
325       return ['node',nodeid,history]
326     rescue ActiveRecord::RecordNotFound
327       return ['node', nodeid, []]
328     end
329   end
330
331   # Find GPS traces with specified name/id.
332   # Returns array listing GPXs, each one comprising id, name and description.
333   
334   def findgpx(searchterm, usertoken)
335     uid = getuserid(usertoken)
336     if !uid then return -1,"You must be logged in to search for GPX traces." end
337
338     gpxs = []
339     if searchterm.to_i>0 then
340       gpx = Trace.find(searchterm.to_i, :conditions => ["visible=? AND (public=? OR user_id=?)",true,true,uid] )
341       if gpx then
342         gpxs.push([gpx.id, gpx.name, gpx.description])
343       end
344     else
345       Trace.find(:all, :limit => 21, :conditions => ["visible=? AND (public=? OR user_id=?) AND MATCH(name) AGAINST (?)",true,true,uid,searchterm] ).each do |gpx|
346       gpxs.push([gpx.id, gpx.name, gpx.description])
347           end
348         end
349     gpxs
350   end
351
352   # Get a relation with all tags and members.
353   # Returns:
354   # 0. relation id,
355   # 1. hash of tags,
356   # 2. list of members,
357   # 3. version.
358   
359   def getrelation(relid) #:doc:
360     begin
361       rel = Relation.find(relid)
362     rescue ActiveRecord::RecordNotFound
363       return [relid, {}, []]
364     end
365
366     return [relid, {}, [], nil] if rel.nil? or !rel.visible
367     [relid, rel.tags, rel.members, rel.version]
368   end
369
370   # Find relations with specified name/id.
371   # Returns array of relations, each in same form as getrelation.
372   
373   def findrelations(searchterm)
374     rels = []
375     if searchterm.to_i>0 then
376       rel = Relation.find(searchterm.to_i)
377       if rel and rel.visible then
378         rels.push([rel.id, rel.tags, rel.members])
379       end
380     else
381       RelationTag.find(:all, :limit => 11, :conditions => ["match(v) against (?)", searchterm] ).each do |t|
382       if t.relation.visible then
383               rels.push([t.relation.id, t.relation.tags, t.relation.members])
384             end
385           end
386         end
387     rels
388   end
389
390   # Save a relation.
391   # Returns
392   # 0. 0 (success),
393   # 1. original relation id (unchanged),
394   # 2. new relation id.
395
396   def putrelation(renumberednodes, renumberedways, usertoken, changeset, relid, tags, members, visible) #:doc:
397     uid = getuserid(usertoken)
398     if !uid then return -1,"You are not logged in, so the relation could not be saved." end
399
400     relid = relid.to_i
401     visible = (visible.to_i != 0)
402
403     # create a new relation, or find the existing one
404     if relid <= 0
405       rel = Relation.new
406       rel.version = 0
407     else
408       rel = Relation.find(relid)
409     end
410
411     # check the members are all positive, and correctly type
412     typedmembers = []
413     members.each do |m|
414       mid = m[1].to_i
415       if mid < 0
416         mid = renumberednodes[mid] if m[0] == 'node'
417         mid = renumberedways[mid] if m[0] == 'way'
418       end
419       if mid
420         typedmembers << [m[0], mid, m[2]]
421       end
422     end
423
424     # assign new contents
425     rel.members = typedmembers
426     rel.tags = tags
427     rel.visible = visible
428     rel.changeset_id = changeset
429
430     # check it then save it
431     # BUG: the following is commented out because it always fails on my
432     #  install. I think it's a Rails bug.
433
434     #if !rel.preconditions_ok?
435     #  return -2, "Relation preconditions failed"
436     #else
437     rel.save_with_history!
438     #end
439
440     [0, relid, rel.id]
441   end
442
443   # Save a way to the database, including all nodes. Any nodes in the previous
444   # version and no longer used are deleted.
445   # 
446   # Returns:
447   # 0. '0' (code for success),
448   # 1. original way id (unchanged),
449   # 2. new way id,
450   # 3. hash of renumbered nodes (old id=>new id),
451   # 4. version
452
453   def putway(renumberednodes, usertoken, changeset, originalway, points, attributes) #:doc:
454
455     # -- Initialise and carry out checks
456         
457     uid = getuserid(usertoken)
458     if !uid then return -1,"You are not logged in, so the way could not be saved." end
459
460     originalway = originalway.to_i
461
462     points.each do |a|
463       if a[2] == 0 or a[2].nil? then return -2,"Server error - node with id 0 found in way #{originalway}." end
464       if a[1] == 90 then return -2,"Server error - node with lat -90 found in way #{originalway}." end
465     end
466
467     if points.length < 2 then return -2,"Server error - way is only #{points.length} points long." end
468
469     # -- Get unique nodes
470
471     if originalway < 0
472       way = Way.new
473       way.version = 0   # otherwise +=1 breaks
474       uniques = []
475     else
476       way = Way.find(originalway)
477       uniques = way.unshared_node_ids
478     end
479
480     # -- Compare nodes and save changes to any that have changed
481
482     nodes = []
483
484     points.each do |n|
485       lon = n[0].to_f
486       lat = n[1].to_f
487       id = n[2].to_i
488       savenode = false
489
490       if renumberednodes[id]
491         id = renumberednodes[id]
492       elsif id < 0
493         # Create new node
494         node = Node.new
495         node.version = 0        # otherwise +=1 breaks
496         savenode = true
497       else
498         node = Node.find(id)
499         nodetags=node.tags
500         nodetags.delete('created_by')
501         if !fpcomp(lat, node.lat) or !fpcomp(lon, node.lon) or
502            n[4] != nodetags or !node.visible?
503           savenode = true
504         end
505       end
506
507       if savenode
508         node.changeset_id = changeset
509         node.lat = lat
510         node.lon = lon
511         node.tags = n[4]
512         node.visible = true
513         node.save_with_history!
514
515         if id != node.id
516           renumberednodes[id] = node.id
517           id = node.id
518         end
519       end
520
521       uniques = uniques - [id]
522       nodes.push(id)
523     end
524
525     # -- Delete any unique nodes
526         
527     uniques.each do |n|
528       deleteitemrelations(n, 'node')
529
530       node = Node.find(n)
531       node.changeset_id = changeset
532       node.visible = false
533       node.save_with_history!
534     end
535
536     # -- Save revised way
537
538     if way.tags!=attributes or way.nds!=nodes or !way.visible?
539       way.tags = attributes
540       way.nds = nodes
541       way.changeset_id = changeset
542       way.visible = true
543       way.save_with_history!
544     end
545
546     [0, originalway, way.id, renumberednodes, way.version]
547   end
548
549   # Save POI to the database.
550   # Refuses save if the node has since become part of a way.
551   # Returns:
552   # 0. 0 (success),
553   # 1. original node id (unchanged),
554   # 2. new node id,
555   # 3. version.
556
557   def putpoi(usertoken, changeset, id, lon, lat, tags, visible) #:doc:
558     uid = getuserid(usertoken)
559     if !uid then return -1,"You are not logged in, so the point could not be saved." end
560
561     id = id.to_i
562     visible = (visible.to_i == 1)
563
564     if id > 0 then
565       node = Node.find(id)
566
567       if !visible then
568         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
569         deleteitemrelations(id, 'node')
570       end
571     else
572       node = Node.new
573       node.version = 0
574     end
575
576     node.changeset_id = changeset
577     node.lat = lat
578     node.lon = lon
579     node.tags = tags
580     node.visible = visible
581     node.save_with_history!
582
583     [0, id, node.id, node.version]
584   end
585
586   # Read POI from database
587   # (only called on revert: POIs are usually read by whichways).
588   #
589   # Returns array of id, long, lat, hash of tags, version.
590
591   def getpoi(id,version) #:doc:
592     if version>0 then
593         n = OldNode.find(id, :conditions=>['version=?',version])
594     else
595       n = Node.find(id)
596     end
597
598     if n
599       return [n.id, n.lon, n.lat, n.tags, n.version]
600     else
601       return [nil, nil, nil, {}, nil]
602     end
603   end
604
605   # Delete way and all constituent nodes. Also removes from any relations.
606   # Returns 0 (success), unchanged way id.
607
608   def deleteway(usertoken, changeset_id, way_id) #:doc:
609     if !getuserid(usertoken) then return -1,"You are not logged in, so the way could not be deleted." end
610
611     way_id = way_id.to_i
612
613     # FIXME: would be good not to make two history entries when removing
614     #            two nodes from the same relation
615     way = Way.find(way_id)
616     way.unshared_node_ids.each do |n|
617       deleteitemrelations(n, 'node')
618     end
619     deleteitemrelations(way_id, 'way')
620
621     way.delete_with_relations_and_nodes_and_history(changeset_id.to_i)
622
623     [0, way_id]
624   end
625
626
627   # ====================================================================
628   # Support functions
629
630   # Remove a node or way from all relations
631
632   def deleteitemrelations(objid, type) #:doc:
633     relations = RelationMember.find(:all, 
634                                                                         :conditions => ['member_type = ? and member_id = ?', type, objid], 
635                                                                         :include => :relation).collect { |rm| rm.relation }.uniq
636
637     relations.each do |rel|
638       rel.members.delete_if { |x| x[0] == type and x[1] == objid }
639       rel.save_with_history!
640     end
641   end
642
643   # Break out node tags into a hash
644   # (should become obsolete as of API 0.6)
645
646   def tagstring_to_hash(a) #:doc:
647     tags={}
648     Tags.split(a) do |k, v|
649       tags[k]=v
650     end
651     tags
652   end
653
654   # Authenticate token
655   # (can also be of form user:pass)
656
657   def getuserid(token) #:doc:
658     if (token =~ /^(.+)\:(.+)$/) then
659       user = User.authenticate(:username => $1, :password => $2)
660     else
661       user = User.authenticate(:token => token)
662     end
663
664     return user ? user.id : nil;
665   end
666
667   # Compare two floating-point numbers to within 0.0000001
668
669   def fpcomp(a,b) #:doc:
670     return ((a/0.0000001).round==(b/0.0000001).round)
671   end
672
673   # Send AMF response
674   
675   def sendresponse(results)
676     a,b=results.length.divmod(256)
677     render :content_type => "application/x-amf", :text => proc { |response, output| 
678       # ** move amf writing loop into here - 
679       # basically we read the messages in first (into an array of some sort),
680       # then iterate through that array within here, and do all the AMF writing
681       output.write 0.chr+0.chr+0.chr+0.chr+a.chr+b.chr
682       results.each do |k,v|
683         output.write(v)
684       end
685     }
686   end
687
688
689   # ====================================================================
690   # Alternative SQL queries for getway/whichways
691
692   def sql_find_ways_in_area(xmin,ymin,xmax,ymax)
693     sql=<<-EOF
694     SELECT DISTINCT current_ways.id AS wayid,current_ways.version AS version
695       FROM current_way_nodes
696     INNER JOIN current_nodes ON current_nodes.id=current_way_nodes.node_id
697     INNER JOIN current_ways  ON current_ways.id =current_way_nodes.id
698        WHERE current_nodes.visible=TRUE 
699        AND current_ways.visible=TRUE 
700        AND #{OSM.sql_for_area(ymin, xmin, ymax, xmax, "current_nodes.")}
701     EOF
702     return ActiveRecord::Base.connection.select_all(sql).collect { |a| [a['wayid'].to_i,a['version'].to_i] }
703   end
704         
705   def sql_find_pois_in_area(xmin,ymin,xmax,ymax)
706     pois=[]
707     sql=<<-EOF
708                   SELECT current_nodes.id,current_nodes.latitude*0.0000001 AS lat,current_nodes.longitude*0.0000001 AS lon,current_nodes.version 
709                         FROM current_nodes 
710        LEFT OUTER JOIN current_way_nodes cwn ON cwn.node_id=current_nodes.id 
711                    WHERE current_nodes.visible=TRUE
712                          AND cwn.id IS NULL
713                          AND #{OSM.sql_for_area(ymin, xmin, ymax, xmax, "current_nodes.")}
714     EOF
715     ActiveRecord::Base.connection.select_all(sql).each do |row|
716       poitags={}
717       ActiveRecord::Base.connection.select_all("SELECT k,v FROM current_node_tags WHERE id=#{row['id']}").each do |n|
718         poitags[n['k']]=n['v']
719       end
720       pois << [row['id'].to_i, row['lon'].to_f, row['lat'].to_f, poitags, row['version'].to_i]
721     end
722     pois
723   end
724         
725   def sql_find_relations_in_area_and_ways(xmin,ymin,xmax,ymax,way_ids)
726     # ** It would be more Potlatchy to get relations for nodes within ways
727     #    during 'getway', not here
728     sql=<<-EOF
729       SELECT DISTINCT cr.id AS relid,cr.version AS version 
730       FROM current_relations cr
731       INNER JOIN current_relation_members crm ON crm.id=cr.id 
732       INNER JOIN current_nodes cn ON crm.member_id=cn.id AND crm.member_type='node' 
733        WHERE #{OSM.sql_for_area(ymin, xmin, ymax, xmax, "cn.")}
734       EOF
735     unless way_ids.empty?
736       sql+=<<-EOF
737        UNION
738         SELECT DISTINCT cr.id AS relid,cr.version AS version
739         FROM current_relations cr
740         INNER JOIN current_relation_members crm ON crm.id=cr.id
741          WHERE crm.member_type='way' 
742          AND crm.member_id IN (#{way_ids.join(',')})
743         EOF
744     end
745     return ActiveRecord::Base.connection.select_all(sql).collect { |a| [a['relid'].to_i,a['version'].to_i] }
746   end
747         
748   def sql_get_nodes_in_way(wayid)
749     points=[]
750     sql=<<-EOF
751       SELECT latitude*0.0000001 AS lat,longitude*0.0000001 AS lon,current_nodes.id 
752       FROM current_way_nodes,current_nodes 
753        WHERE current_way_nodes.id=#{wayid.to_i} 
754                    AND current_way_nodes.node_id=current_nodes.id 
755                    AND current_nodes.visible=TRUE
756       ORDER BY sequence_id
757           EOF
758     ActiveRecord::Base.connection.select_all(sql).each do |row|
759       nodetags={}
760       ActiveRecord::Base.connection.select_all("SELECT k,v FROM current_node_tags WHERE id=#{row['id']}").each do |n|
761         nodetags[n['k']]=n['v']
762       end
763       nodetags.delete('created_by')
764       points << [row['lon'].to_f,row['lat'].to_f,row['id'].to_i,nodetags]
765     end
766     points
767   end
768         
769   def sql_get_tags_in_way(wayid)
770     tags={}
771     ActiveRecord::Base.connection.select_all("SELECT k,v FROM current_way_tags WHERE id=#{wayid.to_i}").each do |row|
772       tags[row['k']]=row['v']
773     end
774     tags
775   end
776
777   def sql_get_way_version(wayid)
778     ActiveRecord::Base.connection.select_one("SELECT version FROM current_ways WHERE id=#{wayid.to_i}")
779   end
780 end
781