1 # amf_controller is a semi-standalone API for Flash clients, particularly
2 # Potlatch. All interaction between Potlatch (as a .SWF application) and the
3 # OSM database takes place using this controller. Messages are
4 # encoded in the Actionscript Message Format (AMF).
6 # Helper functions are in /lib/potlatch.
8 # Author:: editions Systeme D / Richard Fairhurst 2004-2008
9 # Licence:: public domain.
11 # == General structure
13 # Apart from the amf_read and amf_write methods (which distribute the requests
14 # from the AMF message), each method generally takes arguments in the order
15 # they were sent by the Potlatch SWF. Do not assume typing has been preserved.
16 # Methods all return an array to the SWF.
20 # 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
24 # To write to the Rails log, use RAILS_DEFAULT_LOGGER.info("message").
26 class AmfController < ApplicationController
32 before_filter :check_write_availability
34 # Main AMF handlers: process the raw AMF string (using AMF library) and
35 # calls each action (private method) accordingly.
36 # ** FIXME: refactor to reduce duplication of code across read/write
39 req=StringIO.new(request.raw_post+0.chr)# Get POST data as request
40 # (cf http://www.ruby-forum.com/topic/122163)
41 req.read(2) # Skip version indicator and client ID
42 results={} # Results of each body
46 headers=AMF.getint(req) # Read number of headers
48 headers.times do # Read each header
49 name=AMF.getstring(req) # |
50 req.getc # | skip boolean
51 value=AMF.getvalue(req) # |
52 header["name"]=value # |
55 bodies=AMF.getint(req) # Read number of bodies
56 bodies.times do # Read each body
57 message=AMF.getstring(req) # | get message name
58 index=AMF.getstring(req) # | get index in response sequence
59 bytes=AMF.getlong(req) # | get total size in bytes
60 args=AMF.getvalue(req) # | get response (probably an array)
63 when 'getpresets'; results[index]=AMF.putdata(index,getpresets())
64 when 'whichways'; results[index]=AMF.putdata(index,whichways(*args))
65 when 'whichways_deleted'; results[index]=AMF.putdata(index,whichways_deleted(*args))
66 when 'getway'; results[index]=AMF.putdata(index,getway(args[0].to_i))
67 when 'getrelation'; results[index]=AMF.putdata(index,getrelation(args[0].to_i))
68 when 'getway_old'; results[index]=AMF.putdata(index,getway_old(args[0].to_i,args[1].to_i))
69 when 'getway_history'; results[index]=AMF.putdata(index,getway_history(args[0].to_i))
70 when 'getnode_history'; results[index]=AMF.putdata(index,getnode_history(args[0].to_i))
71 when 'findrelations'; results[index]=AMF.putdata(index,findrelations(*args))
72 when 'getpoi'; results[index]=AMF.putdata(index,getpoi(*args))
79 req=StringIO.new(request.raw_post+0.chr)
82 renumberednodes={} # Shared across repeated putways
83 renumberedways={} # Shared across repeated putways
85 headers=AMF.getint(req) # Read number of headers
86 headers.times do # Read each header
87 name=AMF.getstring(req) # |
88 req.getc # | skip boolean
89 value=AMF.getvalue(req) # |
90 header["name"]=value # |
93 bodies=AMF.getint(req) # Read number of bodies
94 bodies.times do # Read each body
95 message=AMF.getstring(req) # | get message name
96 index=AMF.getstring(req) # | get index in response sequence
97 bytes=AMF.getlong(req) # | get total size in bytes
98 args=AMF.getvalue(req) # | get response (probably an array)
101 when 'putway'; r=putway(renumberednodes,*args)
104 renumberedways[r[1]] = r[2]
106 results[index]=AMF.putdata(index,r)
107 when 'putrelation'; results[index]=AMF.putdata(index,putrelation(renumberednodes, renumberedways, *args))
108 when 'deleteway'; results[index]=AMF.putdata(index,deleteway(args[0],args[1].to_i))
109 when 'putpoi'; results[index]=AMF.putdata(index,putpoi(*args))
112 sendresponse(results)
117 # Return presets (default tags, localisation etc.):
118 # uses POTLATCH_PRESETS global, set up in OSM::Potlatch.
120 def getpresets() #:doc:
121 return POTLATCH_PRESETS
124 # Find all the ways, POI nodes (i.e. not part of ways), and relations
125 # in a given bounding box. Nodes are returned in full; ways and relations
128 def whichways(xmin, ymin, xmax, ymax) #:doc:
129 enlarge = [(xmax-xmin)/8,0.01].min
130 xmin -= enlarge; ymin -= enlarge
131 xmax += enlarge; ymax += enlarge
133 if POTLATCH_USE_SQL then
134 way_ids = sql_find_way_ids_in_area(xmin, ymin, xmax, ymax)
135 points = sql_find_pois_in_area(xmin, ymin, xmax, ymax)
136 relation_ids = sql_find_relations_in_area_and_ways(xmin, ymin, xmax, ymax, way_ids)
138 # find the way ids in an area
139 nodes_in_area = Node.find_by_area(ymin, xmin, ymax, xmax, :conditions => "current_nodes.visible = 1", :include => :ways)
140 way_ids = nodes_in_area.collect { |node| node.way_ids }.flatten.uniq
142 # find the node ids in an area that aren't part of ways
143 nodes_not_used_in_area = nodes_in_area.select { |node| node.ways.empty? }
144 points = nodes_not_used_in_area.collect { |n| [n.id, n.lon, n.lat, n.tags_as_hash] }
146 # find the relations used by those nodes and ways
147 relations = Relation.find_for_nodes(nodes_in_area.collect { |n| n.id }, :conditions => "visible = 1") +
148 Relation.find_for_ways(way_ids, :conditions => "visible = 1")
149 relation_ids = relations.collect { |relation| relation.id }.uniq
152 [way_ids, points, relation_ids]
155 # Find deleted ways in current bounding box (similar to whichways, but ways
156 # with a deleted node only - not POIs or relations).
158 def whichways_deleted(xmin, ymin, xmax, ymax) #:doc:
159 xmin -= 0.01; ymin -= 0.01
160 xmax += 0.01; ymax += 0.01
162 nodes_in_area = Node.find_by_area(ymin, xmin, ymax, xmax, :conditions => "current_nodes.visible = 0 AND current_ways.visible = 0", :include => :ways_via_history)
163 way_ids = nodes_in_area.collect { |node| node.ways_via_history_ids }.flatten.uniq
168 # Get a way including nodes and tags.
169 # Returns 0 (success), a Potlatch-style array of points, and a hash of tags.
171 def getway(wayid) #:doc:
172 if POTLATCH_USE_SQL then
173 points = sql_get_nodes_in_way(wayid)
174 tags = sql_get_tags_in_way(wayid)
176 # Ideally we would do ":include => :nodes" here but if we do that
177 # then rails only seems to return the first copy of a node when a
178 # way includes a node more than once
179 way = Way.find(wayid)
180 points = way.nodes.collect do |node|
181 nodetags=node.tags_as_hash
182 nodetags.delete('created_by')
183 [node.lon, node.lat, node.id, nodetags]
188 [wayid, points, tags]
191 # Get an old version of a way, and all constituent nodes.
193 # For undelete (version=0), always uses the most recent version of each node,
194 # even if it's moved. For revert (version=1+), uses the node in existence
195 # at the time, generating a new id if it's still visible and has been moved/
198 def getway_old(id, version) #:doc:
200 old_way = OldWay.find(:first, :conditions => ['visible = 1 AND id = ?', id], :order => 'version DESC')
201 points = old_way.get_nodes_undelete
203 old_way = OldWay.find(:first, :conditions => ['id = ? AND version = ?', id, version])
204 points = old_way.get_nodes_revert
207 old_way.tags['history'] = "Retrieved from v#{old_way.version}"
209 [0, id, points, old_way.tags, old_way.version]
212 # Find history of a way. Returns 'way', id, and
213 # an array of previous versions.
215 def getway_history(wayid) #:doc:
216 history = Way.find(wayid).old_ways.reverse.collect do |old_way|
217 user = old_way.user.data_public? ? old_way.user.display_name : 'anonymous'
218 uid = old_way.user.data_public? ? old_way.user.id : 0
219 [old_way.version, old_way.timestamp.strftime("%d %b %Y, %H:%M"), old_way.visible ? 1 : 0, user, uid]
222 ['way',wayid,history]
225 # Find history of a node. Returns 'node', id, and
226 # an array of previous versions.
228 def getnode_history(nodeid) #:doc:
229 history = Node.find(nodeid).old_nodes.reverse.collect do |old_node|
230 user = old_node.user.data_public? ? old_node.user.display_name : 'anonymous'
231 uid = old_node.user.data_public? ? old_node.user.id : 0
232 [old_node.timestamp.to_i, old_node.timestamp.strftime("%d %b %Y, %H:%M"), old_node.visible ? 1 : 0, user, uid]
235 ['node',nodeid,history]
238 # Get a relation with all tags and members.
242 # 2. list of members.
244 def getrelation(relid) #:doc:
245 rel = Relation.find(relid)
247 [relid, rel.tags, rel.members]
250 # Find relations with specified name/id.
251 # Returns array of relations, each in same form as getrelation.
253 def findrelations(searchterm)
255 if searchterm.to_i>0 then
256 rel = Relation.find(searchterm.to_i)
257 if rel and rel.visible then
258 rels.push([rel.id, rel.tags, rel.members])
261 RelationTag.find(:all, :limit => 11, :conditions => ["match(v) against (?)", searchterm] ).each do |t|
262 if t.relation.visible then
263 rels.push([t.relation.id, t.relation.tags, t.relation.members])
273 # 1. original relation id (unchanged),
274 # 2. new relation id.
276 def putrelation(renumberednodes, renumberedways, usertoken, relid, tags, members, visible) #:doc:
277 uid = getuserid(usertoken)
278 if !uid then return -1,"You are not logged in, so the relation could not be saved." end
281 visible = visible.to_i
283 # create a new relation, or find the existing one
287 rel = Relation.find(relid)
290 # check the members are all positive, and correctly type
295 mid = renumberednodes[mid] if m[0] == 'node'
296 mid = renumberedways[mid] if m[0] == 'way'
299 typedmembers << [m[0], mid, m[2]]
303 # assign new contents
304 rel.members = typedmembers
306 rel.visible = visible
309 # check it then save it
310 # BUG: the following is commented out because it always fails on my
311 # install. I think it's a Rails bug.
313 #if !rel.preconditions_ok?
314 # return -2, "Relation preconditions failed"
316 rel.save_with_history!
322 # Save a way to the database, including all nodes. Any nodes in the previous
323 # version and no longer used are deleted.
326 # 0. '0' (code for success),
327 # 1. original way id (unchanged),
329 # 3. hash of renumbered nodes (old id=>new id)
331 def putway(renumberednodes, usertoken, originalway, points, attributes) #:doc:
333 # -- Initialise and carry out checks
335 uid = getuserid(usertoken)
336 if !uid then return -1,"You are not logged in, so the way could not be saved." end
338 originalway = originalway.to_i
341 if a[2] == 0 or a[2].nil? then return -2,"Server error - node with id 0 found in way #{originalway}." end
342 if a[1] == 90 then return -2,"Server error - node with lat -90 found in way #{originalway}." end
345 if points.length < 2 then return -2,"Server error - way is only #{points.length} points long." end
347 # -- Get unique nodes
353 way = Way.find(originalway)
354 uniques = way.unshared_node_ids
357 # -- Compare nodes and save changes to any that have changed
367 if renumberednodes[id]
368 id = renumberednodes[id]
375 nodetags=node.tags_as_hash
376 nodetags.delete('created_by')
377 if !fpcomp(lat, node.lat) or !fpcomp(lon, node.lon) or
378 n[4] != nodetags or !node.visible?
387 node.tags = Tags.join(n[4])
389 node.save_with_history!
392 renumberednodes[id] = node.id
397 uniques = uniques - [id]
401 # -- Save revised way
403 way.tags = attributes
407 way.save_with_history!
409 # -- Delete any unique nodes
412 deleteitemrelations(n, 'node')
417 node.save_with_history!
420 [0, originalway, way.id, renumberednodes]
423 # Save POI to the database.
424 # Refuses save if the node has since become part of a way.
427 # 1. original node id (unchanged),
430 def putpoi(usertoken, id, lon, lat, tags, visible) #:doc:
431 uid = getuserid(usertoken)
432 if !uid then return -1,"You are not logged in, so the point could not be saved." end
435 visible = (visible.to_i == 1)
441 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
442 deleteitemrelations(id, 'node')
451 node.tags = Tags.join(tags)
452 node.visible = visible
453 node.save_with_history!
458 # Read POI from database
459 # (only called on revert: POIs are usually read by whichways).
461 # Returns array of id, long, lat, hash of tags.
463 def getpoi(id,timestamp) #:doc:
465 n = OldNode.find(id, :conditions=>['UNIX_TIMESTAMP(timestamp)=?',timestamp])
471 return [n.id, n.lon, n.lat, n.tags_as_hash]
473 return [nil, nil, nil, '']
477 # Delete way and all constituent nodes. Also removes from any relations.
478 # Returns 0 (success), unchanged way id.
480 def deleteway(usertoken, way_id) #:doc:
481 uid = getuserid(usertoken)
482 if !uid then return -1,"You are not logged in, so the way could not be deleted." end
484 # FIXME: would be good not to make two history entries when removing
485 # two nodes from the same relation
486 user = User.find(uid)
487 way = Way.find(way_id)
488 way.unshared_node_ids.each do |n|
489 deleteitemrelations(n, 'node')
491 deleteitemrelations(way_id, 'way')
493 way.delete_with_relations_and_nodes_and_history(user)
499 # ====================================================================
502 # Remove a node or way from all relations
504 def deleteitemrelations(objid, type) #:doc:
505 relations = RelationMember.find(:all,
506 :conditions => ['member_type = ? and member_id = ?', type, objid],
507 :include => :relation).collect { |rm| rm.relation }.uniq
509 relations.each do |rel|
510 rel.members.delete_if { |x| x[0] == type and x[1] == objid }
511 rel.save_with_history!
515 # Break out node tags into a hash
516 # (should become obsolete as of API 0.6)
518 def tagstring_to_hash(a) #:doc:
520 Tags.split(a) do |k, v|
527 # (could be removed if no-one uses the username+password form)
529 def getuserid(token) #:doc:
530 if (token =~ /^(.+)\+(.+)$/) then
531 user = User.authenticate(:username => $1, :password => $2)
533 user = User.authenticate(:token => token)
536 return user ? user.id : nil;
539 # Compare two floating-point numbers to within 0.0000001
541 def fpcomp(a,b) #:doc:
542 return ((a/0.0000001).round==(b/0.0000001).round)
547 def sendresponse(results)
548 a,b=results.length.divmod(256)
549 render :content_type => "application/x-amf", :text => proc { |response, output|
550 output.write 0.chr+0.chr+0.chr+0.chr+a.chr+b.chr
551 results.each do |k,v|
558 # ====================================================================
559 # Alternative SQL queries for getway/whichways
561 def sql_find_way_ids_in_area(xmin,ymin,xmax,ymax)
563 SELECT DISTINCT current_way_nodes.id AS wayid
564 FROM current_way_nodes
565 INNER JOIN current_nodes ON current_nodes.id=current_way_nodes.node_id
566 INNER JOIN current_ways ON current_ways.id =current_way_nodes.id
567 WHERE current_nodes.visible=1
568 AND current_ways.visible=1
569 AND #{OSM.sql_for_area(ymin, xmin, ymax, xmax, "current_nodes.")}
571 return ActiveRecord::Base.connection.select_all(sql).collect { |a| a['wayid'].to_i }
574 def sql_find_pois_in_area(xmin,ymin,xmax,ymax)
576 SELECT current_nodes.id,current_nodes.latitude*0.0000001 AS lat,current_nodes.longitude*0.0000001 AS lon,current_nodes.tags
578 LEFT OUTER JOIN current_way_nodes cwn ON cwn.node_id=current_nodes.id
579 WHERE current_nodes.visible=1
581 AND #{OSM.sql_for_area(ymin, xmin, ymax, xmax, "current_nodes.")}
583 return ActiveRecord::Base.connection.select_all(sql).collect { |n| [n['id'].to_i,n['lon'].to_f,n['lat'].to_f,tagstring_to_hash(n['tags'])] }
586 def sql_find_relations_in_area_and_ways(xmin,ymin,xmax,ymax,way_ids)
587 # ** It would be more Potlatchy to get relations for nodes within ways
588 # during 'getway', not here
590 SELECT DISTINCT cr.id AS relid
591 FROM current_relations cr
592 INNER JOIN current_relation_members crm ON crm.id=cr.id
593 INNER JOIN current_nodes cn ON crm.member_id=cn.id AND crm.member_type='node'
594 WHERE #{OSM.sql_for_area(ymin, xmin, ymax, xmax, "cn.")}
596 unless way_ids.empty?
599 SELECT DISTINCT cr.id AS relid
600 FROM current_relations cr
601 INNER JOIN current_relation_members crm ON crm.id=cr.id
602 WHERE crm.member_type='way'
603 AND crm.member_id IN (#{way_ids.join(',')})
606 return ActiveRecord::Base.connection.select_all(sql).collect { |a| a['relid'].to_i }.uniq
609 def sql_get_nodes_in_way(wayid)
612 SELECT latitude*0.0000001 AS lat,longitude*0.0000001 AS lon,current_nodes.id,tags
613 FROM current_way_nodes,current_nodes
614 WHERE current_way_nodes.id=#{wayid.to_i}
615 AND current_way_nodes.node_id=current_nodes.id
616 AND current_nodes.visible=1
619 ActiveRecord::Base.connection.select_all(sql).each do |row|
620 nodetags=tagstring_to_hash(row['tags'])
621 nodetags.delete('created_by')
622 points << [row['lon'].to_f,row['lat'].to_f,row['id'].to_i,nodetags]
627 def sql_get_tags_in_way(wayid)
629 ActiveRecord::Base.connection.select_all("SELECT k,v FROM current_way_tags WHERE id=#{wayid.to_i}").each do |row|
630 tags[row['k']]=row['v']
638 # indent-tabs-mode: t