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