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