1 # AMF Controller is a semi-standalone API for Flash clients, particularly Potlatch.
2 # 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 # See Also Potlatch::Potlatch and Potlatch::AMF
9 # editions Systeme D / Richard Fairhurst 2004-2008
11 # All in/out parameters are floats unless explicitly stated.
13 # to trap errors (getway_old,putway,putpoi,deleteway only):
14 # return(-1,"message") <-- just puts up a dialogue
15 # return(-2,"message") <-- also asks the user to e-mail me
17 # RAILS_DEFAULT_LOGGER.error("Args: #{args[0]}, #{args[1]}, #{args[2]}, #{args[3]}")
18 class AmfController < ApplicationController
24 before_filter :check_write_availability
26 # Main AMF handler. Tha talk method takes in AMF, figures out what to do and dispatched to the appropriate private method
28 req=StringIO.new(request.raw_post+0.chr) # Get POST data as request
29 # (cf http://www.ruby-forum.com/topic/122163)
30 req.read(2) # Skip version indicator and client ID
31 results={} # Results of each body
32 renumberednodes={} # Shared across repeated putways
37 headers=AMF.getint(req) # Read number of headers
39 headers.times do # Read each header
40 name=AMF.getstring(req) # |
41 req.getc # | skip boolean
42 value=AMF.getvalue(req) # |
43 header["name"]=value # |
46 bodies=AMF.getint(req) # Read number of bodies
47 bodies.times do # Read each body
48 message=AMF.getstring(req) # | get message name
49 index=AMF.getstring(req) # | get index in response sequence
50 bytes=AMF.getlong(req) # | get total size in bytes
51 args=AMF.getvalue(req) # | get response (probably an array)
54 when 'getpresets'; results[index]=AMF.putdata(index,getpresets)
55 when 'whichways'; results[index]=AMF.putdata(index,whichways(args))
56 when 'whichways_deleted'; results[index]=AMF.putdata(index,whichways_deleted(args))
57 when 'getway'; results[index]=AMF.putdata(index,getway(args))
58 when 'getway_old'; results[index]=AMF.putdata(index,getway_old(args))
59 when 'getway_history'; results[index]=AMF.putdata(index,getway_history(args))
60 when 'putway'; r=putway(args,renumberednodes)
62 results[index]=AMF.putdata(index,r)
63 when 'deleteway'; results[index]=AMF.putdata(index,deleteway(args))
64 when 'putpoi'; results[index]=AMF.putdata(index,putpoi(args))
65 when 'getpoi'; results[index]=AMF.putdata(index,getpoi(args))
72 RAILS_DEFAULT_LOGGER.info(" Response: start")
73 a,b=results.length.divmod(256)
74 render :content_type => "application/x-amf", :text => proc { |response, output|
75 output.write 0.chr+0.chr+0.chr+0.chr+a.chr+b.chr
80 RAILS_DEFAULT_LOGGER.info(" Response: end")
85 # Return presets (default tags and crap) to potlatch.
86 # Uses POTLATCH_PRESETS global, set up in OSM::Potlatch
88 return POTLATCH_PRESETS
92 # Find all the way ids and nodes (including tags and projected lat/lng) which aren't part of those ways in an are
94 # The argument is an array containing the following, in order:
95 # 0. minimum longitude
97 # 2. maximum longitude
99 # 4. baselong, 5. basey, 6. masterscale as above
100 def whichways(args) #:doc:
101 xmin = args[0].to_f-0.01
102 ymin = args[1].to_f-0.01
103 xmax = args[2].to_f+0.01
104 ymax = args[3].to_f+0.01
107 masterscale = args[6]
109 RAILS_DEFAULT_LOGGER.info(" Message: whichways, bbox=#{xmin},#{ymin},#{xmax},#{ymax}")
111 # find the way ids in an area
112 nodes_in_area = Node.find_by_area(ymin, xmin, ymax, xmax, :conditions => "current_nodes.visible = 1", :include => :ways)
113 way_ids = nodes_in_area.collect { |node| node.way_ids }.flatten.uniq
115 # find the node ids in an area that aren't part of ways
116 nodes_not_used_in_area = nodes_in_area.select { |node| node.ways.empty? }
117 points = nodes_not_used_in_area.collect { |n| [n.id, n.lon_potlatch(baselong,masterscale), n.lat_potlatch(basey,masterscale), n.tags_as_hash] }
122 # ----- whichways_deleted
123 # return array of deleted ways in current bounding box
125 # does: finds all deleted ways with a deleted node in bounding box
126 # out: [0] array of way ids
127 def whichways_deleted(args) #:doc:
128 xmin = args[0].to_f-0.01
129 ymin = args[1].to_f-0.01
130 xmax = args[2].to_f+0.01
131 ymax = args[3].to_f+0.01
134 masterscale = args[6]
137 SELECT DISTINCT current_ways.id
138 FROM current_nodes,way_nodes,current_ways
139 WHERE #{OSM.sql_for_area(ymin, xmin, ymax, xmax, "current_nodes.")}
140 AND way_nodes.node_id=current_nodes.id
141 AND way_nodes.id=current_ways.id
142 AND current_nodes.visible=0
143 AND current_ways.visible=0
145 waylist = ActiveRecord::Base.connection.select_all(sql)
146 ways = waylist.collect {|a| a['id'].to_i }
151 # Get a way with all of it's nodes and tags
152 # The input is an array with the following components, in order:
153 # 0. wayid - the ID of the way to get
154 # 1. baselong - origin of SWF map (longitude)
155 # 2. basey - origin of SWF map (latitude)
156 # 3. masterscale - SWF map scale
158 # The output is an array which contains all the nodes (with projected
159 # latitude and longitude) and tags for a way (and all the nodes tags).
160 # It also has the way's unprojected (WGS84) bbox.
162 # FIXME: The server really shouldn't be figuring out a ways bounding box and doing projection for potlatch
163 # FIXME: the argument splitting should be done in the 'talk' method, not here
164 def getway(args) #:doc:
165 wayid,baselong,basey,masterscale = args
168 RAILS_DEFAULT_LOGGER.info(" Message: getway, id=#{wayid}")
170 way = Way.find(wayid, :include => :nodes)
175 way.nodes.each do |node|
176 projected_longitude = node.lon_potlatch(baselong,masterscale) # do projection for potlatch
177 projected_latitude = node.lat_potlatch(basey,masterscale)
179 tags_hash = node.tags_as_hash
181 points << [projected_longitude, projected_latitude, id, nil, tags_hash]
182 long_array << projected_longitude
183 lat_array << projected_latitude
186 [wayid,points,way.tags,long_array.min,long_array.max,lat_array.min,lat_array.max]
190 # returns old version of way
192 # [1] way version to get (or -1 for "last deleted version")
193 # [2] baselong, [3] basey, [4] masterscale
194 # does: gets old version of way and all constituent nodes
195 # for undelete, always uses the most recent version of each node
196 # (even if it's moved)
197 # for revert, uses the historic version of each node, but if that node is
198 # still visible and has been changed since, generates a new node id
199 # out: [0] 0 (code for success), [1] SWF object name,
200 # [2] array of points (as getway _except_ [3] is node.visible?, 0 or 1),
201 # [4] xmin, [5] xmax, [6] ymin, [7] ymax (unprojected bbox),
203 def getway_old(args) #:doc:
204 RAILS_DEFAULT_LOGGER.info(" Message: getway_old (server is #{SERVER_URL})")
205 # if SERVER_URL=="www.openstreetmap.org" then return -1,"Revert is not currently enabled on the OpenStreetMap server." end
207 wayid,version,baselong,basey,masterscale=args
209 version = version.to_i
211 xmax = ymax = -999999
215 version=getlastversion(wayid,version)
219 readwayquery_old(wayid,version,historic).each { |row|
220 points<<[long2coord(row['longitude'].to_f,baselong,masterscale),lat2coord(row['latitude'].to_f,basey,masterscale),row['id'].to_i,row['visible'].to_i,tag2array(row['tags'].to_s)]
221 xmin=[xmin,row['longitude'].to_f].min
222 xmax=[xmax,row['longitude'].to_f].max
223 ymin=[ymin,row['latitude' ].to_f].min
224 ymax=[ymax,row['latitude' ].to_f].max
227 # get tags from this version
229 attrlist=ActiveRecord::Base.connection.select_all "SELECT k,v FROM way_tags WHERE id=#{wayid} AND version=#{version}"
230 attrlist.each {|a| attributes[a['k'].gsub(':','|')]=a['v'] }
231 attributes['history']="Retrieved from v"+version.to_s
233 [0,wayid,points,attributes,xmin,xmax,ymin,ymax,version]
236 # ----- getway_history
237 # find history of a way
239 # does: finds history of a way
240 # out: [0] array of previous versions (where each is
241 # [0] version, [1] db timestamp (string),
242 # [2] visible 0 or 1,
243 # [3] username or 'anonymous' (string))
244 def getway_history(args) #:doc:
248 SELECT version,timestamp,visible,display_name,data_public
250 WHERE ways.id=#{wayid}
251 AND ways.user_id=users.id
253 ORDER BY version DESC
255 histlist=ActiveRecord::Base.connection.select_all(sql)
256 histlist.each { |row|
257 if row['data_public'].to_i==1 then user=row['display_name'] else user='anonymous' end
258 history<<[row['version'],row['timestamp'],row['visible'],user]
264 # saves a way to the database
265 # in: [0] user token (string),
266 # [1] original way id (may be negative),
267 # [2] array of points (as getway/getway_old),
268 # [3] hash of way tags,
269 # [4] original way version (0 if not a reverted/undeleted way),
270 # [5] baselong, [6] basey, [7] masterscale
271 # does: saves way to the database
272 # all constituent nodes are created/updated as necessary
273 # (or deleted if they were in the old version and are otherwise unused)
274 # out: [0] 0 (code for success), [1] original way id (unchanged),
275 # [2] new way id, [3] hash of renumbered nodes (old id=>new id),
276 # [4] xmin, [5] xmax, [6] ymin, [7] ymax (unprojected bbox)
277 def putway(args,renumberednodes) #:doc:
278 RAILS_DEFAULT_LOGGER.info(" putway started")
279 usertoken,originalway,points,attributes,oldversion,baselong,basey,masterscale=args
280 uid=getuserid(usertoken)
281 if !uid then return -1,"You are not logged in, so the way could not be saved." end
283 RAILS_DEFAULT_LOGGER.info(" putway authenticated happily")
284 db_uqn='unin'+(rand*100).to_i.to_s+uid.to_s+originalway.to_i.abs.to_s+Time.new.to_i.to_s # temp uniquenodes table name, typically 51 chars
285 db_now='@now'+(rand*100).to_i.to_s+uid.to_s+originalway.to_i.abs.to_s+Time.new.to_i.to_s # 'now' variable name, typically 51 chars
286 ActiveRecord::Base.connection.execute("SET #{db_now}=NOW()")
287 originalway=originalway.to_i
288 oldversion=oldversion.to_i
290 RAILS_DEFAULT_LOGGER.info(" Message: putway, id=#{originalway}")
292 # -- Temporary check for null IDs
295 if a[2]==0 or a[2].nil? then return -2,"Server error - node with id 0 found in way #{originalway}." end
298 # -- 3. read original way into memory
300 xc={}; yc={}; tagc={}; vc={}
303 if oldversion==0 then r=readwayquery(way,false)
304 else r=readwayquery_old(way,oldversion,true) end
308 xc[id]=row['longitude'].to_f
309 yc[id]=row['latitude' ].to_f
311 vc[id]=row['visible'].to_i
314 ActiveRecord::Base.connection.update("UPDATE current_ways SET timestamp=#{db_now},user_id=#{uid},visible=1 WHERE id=#{way}")
316 way=ActiveRecord::Base.connection.insert("INSERT INTO current_ways (user_id,timestamp,visible) VALUES (#{uid},#{db_now},1)")
319 # -- 4. get version by inserting new row into ways
321 version=ActiveRecord::Base.connection.insert("INSERT INTO ways (id,user_id,timestamp,visible) VALUES (#{way},#{uid},#{db_now},1)")
323 # -- 5. compare nodes and update xmin,xmax,ymin,ymax
330 points.each_index do |i|
331 xs=coord2long(points[i][0],masterscale,baselong)
332 ys=coord2lat(points[i][1],masterscale,basey)
333 xmin=[xs,xmin].min; xmax=[xs,xmax].max
334 ymin=[ys,ymin].min; ymax=[ys,ymax].max
335 node=points[i][2].to_i
336 tagstr=array2tag(points[i][4])
337 tagsql="'"+sqlescape(tagstr)+"'"
338 lat=(ys * 10000000).round
339 long=(xs * 10000000).round
340 tile=QuadTile.tile_for_point(ys, xs)
345 if renumberednodes[node.to_s].nil?
346 newnode=ActiveRecord::Base.connection.insert("INSERT INTO current_nodes ( latitude,longitude,timestamp,user_id,visible,tags,tile) VALUES ( #{lat},#{long},#{db_now},#{uid},1,#{tagsql},#{tile})")
347 ActiveRecord::Base.connection.insert("INSERT INTO nodes (id,latitude,longitude,timestamp,user_id,visible,tags,tile) VALUES (#{newnode},#{lat},#{long},#{db_now},#{uid},1,#{tagsql},#{tile})")
349 nodelist.push(newnode)
350 renumberednodes[node.to_s]=newnode.to_s
352 points[i][2]=renumberednodes[node.to_s].to_i
355 elsif xc.has_key?(node)
357 # old node from original way - update
358 if ((xs/0.0000001).round!=(xc[node]/0.0000001).round or (ys/0.0000001).round!=(yc[node]/0.0000001).round or tagstr!=tagc[node] or vc[node]==0)
359 ActiveRecord::Base.connection.insert("INSERT INTO nodes (id,latitude,longitude,timestamp,user_id,visible,tags,tile) VALUES (#{node},#{lat},#{long},#{db_now},#{uid},1,#{tagsql},#{tile})")
360 ActiveRecord::Base.connection.update("UPDATE current_nodes SET latitude=#{lat},longitude=#{long},timestamp=#{db_now},user_id=#{uid},tags=#{tagsql},visible=1,tile=#{tile} WHERE id=#{node}")
363 # old node, created in another way and now added to this way
367 # -- 6a. delete any nodes not in modified way
369 createuniquenodes(way,db_uqn,nodelist) # nodes which appear in this way but no other
372 INSERT INTO nodes (id,latitude,longitude,timestamp,user_id,visible,tile)
373 SELECT DISTINCT cn.id,cn.latitude,cn.longitude,#{db_now},#{uid},0,cn.tile
374 FROM current_nodes AS cn,#{db_uqn}
377 ActiveRecord::Base.connection.insert(sql)
380 UPDATE current_nodes AS cn, #{db_uqn}
381 SET cn.timestamp=#{db_now},cn.visible=0,cn.user_id=#{uid}
384 ActiveRecord::Base.connection.update(sql)
386 deleteuniquenoderelations(db_uqn,uid,db_now)
387 ActiveRecord::Base.connection.execute("DROP TEMPORARY TABLE #{db_uqn}")
389 # 6b. insert new version of route into way_nodes
395 if insertsql !='' then insertsql +=',' end
396 if currentsql!='' then currentsql+=',' end
397 insertsql +="(#{way},#{p[2]},#{sequence},#{version})"
398 currentsql+="(#{way},#{p[2]},#{sequence})"
402 ActiveRecord::Base.connection.execute("DELETE FROM current_way_nodes WHERE id=#{way}");
403 ActiveRecord::Base.connection.insert( "INSERT INTO way_nodes (id,node_id,sequence_id,version) VALUES #{insertsql}");
404 ActiveRecord::Base.connection.insert( "INSERT INTO current_way_nodes (id,node_id,sequence_id ) VALUES #{currentsql}");
406 # -- 7. insert new way tags
410 attributes.each do |k,v|
411 if v=='' or v.nil? then next end
412 if v[0,6]=='(type ' then next end
413 if insertsql !='' then insertsql +=',' end
414 if currentsql!='' then currentsql+=',' end
415 insertsql +="(#{way},'"+sqlescape(k.gsub('|',':'))+"','"+sqlescape(v)+"',#{version})"
416 currentsql+="(#{way},'"+sqlescape(k.gsub('|',':'))+"','"+sqlescape(v)+"')"
419 ActiveRecord::Base.connection.execute("DELETE FROM current_way_tags WHERE id=#{way}")
420 if (insertsql !='') then ActiveRecord::Base.connection.insert("INSERT INTO way_tags (id,k,v,version) VALUES #{insertsql}" ) end
421 if (currentsql!='') then ActiveRecord::Base.connection.insert("INSERT INTO current_way_tags (id,k,v) VALUES #{currentsql}") end
423 [0,originalway,way,renumberednodes,xmin,xmax,ymin,ymax]
427 # save POI to the database
428 # in: [0] user token (string),
429 # [1] original node id (may be negative),
430 # [2] projected longitude, [3] projected latitude,
431 # [4] hash of tags, [5] visible (0 to delete, 1 otherwise),
432 # [6] baselong, [7] basey, [8] masterscale
433 # does: saves POI node to the database
434 # refuses save if the node has since become part of a way
435 # out: [0] 0 (success), [1] original node id (unchanged),
437 def putpoi(args) #:doc:
438 usertoken,id,x,y,tags,visible,baselong,basey,masterscale=args
439 uid=getuserid(usertoken)
440 if !uid then return -1,"You are not logged in, so the point could not be saved." end
442 db_now='@now'+(rand*100).to_i.to_s+uid.to_s+id.to_i.abs.to_s+Time.new.to_i.to_s # 'now' variable name, typically 51 chars
443 ActiveRecord::Base.connection.execute("SET #{db_now}=NOW()")
448 # if deleting, check node hasn't become part of a way
449 inway=ActiveRecord::Base.connection.select_one("SELECT cw.id FROM current_ways cw,current_way_nodes cwn WHERE cw.id=cwn.id AND cw.visible=1 AND cwn.node_id=#{id} LIMIT 1")
450 unless inway.nil? then return -1,"The point has since become part of a way, so you cannot save it as a POI." end
451 deleteitemrelations(id,'node',uid,db_now)
454 x=coord2long(x.to_f,masterscale,baselong)
455 y=coord2lat(y.to_f,masterscale,basey)
456 tagsql="'"+sqlescape(array2tag(tags))+"'"
457 lat=(y * 10000000).round
458 long=(x * 10000000).round
459 tile=QuadTile.tile_for_point(y, x)
462 ActiveRecord::Base.connection.insert("INSERT INTO nodes (id,latitude,longitude,timestamp,user_id,visible,tags,tile) VALUES (#{id},#{lat},#{long},#{db_now},#{uid},#{visible},#{tagsql},#{tile})");
463 ActiveRecord::Base.connection.update("UPDATE current_nodes SET latitude=#{lat},longitude=#{long},timestamp=#{db_now},user_id=#{uid},visible=#{visible},tags=#{tagsql},tile=#{tile} WHERE id=#{id}");
466 newid=ActiveRecord::Base.connection.insert("INSERT INTO current_nodes (latitude,longitude,timestamp,user_id,visible,tags,tile) VALUES (#{lat},#{long},#{db_now},#{uid},#{visible},#{tagsql},#{tile})");
467 ActiveRecord::Base.connection.update("INSERT INTO nodes (id,latitude,longitude,timestamp,user_id,visible,tags,tile) VALUES (#{newid},#{lat},#{long},#{db_now},#{uid},#{visible},#{tagsql},#{tile})");
473 # read POI from database
474 # (only called on revert: POIs are usually read by whichways)
475 # in: [0] node id, [1] baselong, [2] basey, [3] masterscale
477 # out: [0] id (unchanged), [1] projected long, [2] projected lat,
479 def getpoi(args) #:doc:
480 id,baselong,basey,masterscale = args
482 n = Node.find(id.to_i)
484 return [n.id, n.long_potlatch(baselong,masterscale), n.lat_potlatch(basey,masterscale), n.tags_as_hash]
486 return [nil,nil,nil,'']
491 # delete way and constituent nodes from database
492 # in: [0] user token (string), [1] way id
493 # does: deletes way from db and any constituent nodes not used elsewhere
494 # also removes ways/nodes from any relations they're in
495 # out: [0] 0 (success), [1] way id (unchanged)
496 def deleteway(args) #:doc:
500 RAILS_DEFAULT_LOGGER.info(" Message: deleteway, id=#{way}")
501 uid=getuserid(usertoken)
502 if !uid then return -1,"You are not logged in, so the way could not be deleted." end
505 db_uqn='unin'+(rand*100).to_i.to_s+uid.to_s+way.to_i.abs.to_s+Time.new.to_i.to_s # temp uniquenodes table name, typically 51 chars
506 db_now='@now'+(rand*100).to_i.to_s+uid.to_s+way.to_i.abs.to_s+Time.new.to_i.to_s # 'now' variable name, typically 51 chars
507 ActiveRecord::Base.connection.execute("SET #{db_now}=NOW()")
509 # - delete any otherwise unused nodes
511 createuniquenodes(way,db_uqn,[])
513 # unless (preserve.empty?) then
514 # ActiveRecord::Base.connection.execute("DELETE FROM #{db_uqn} WHERE node_id IN ("+preserve.join(',')+")")
518 INSERT INTO nodes (id,latitude,longitude,timestamp,user_id,visible,tile)
519 SELECT DISTINCT cn.id,cn.latitude,cn.longitude,#{db_now},#{uid},0,cn.tile
520 FROM current_nodes AS cn,#{db_uqn}
523 ActiveRecord::Base.connection.insert(sql)
526 UPDATE current_nodes AS cn, #{db_uqn}
527 SET cn.timestamp=#{db_now},cn.visible=0,cn.user_id=#{uid}
530 ActiveRecord::Base.connection.update(sql)
532 deleteuniquenoderelations(db_uqn,uid,db_now)
533 ActiveRecord::Base.connection.execute("DROP TEMPORARY TABLE #{db_uqn}")
537 ActiveRecord::Base.connection.insert("INSERT INTO ways (id,user_id,timestamp,visible) VALUES (#{way},#{uid},#{db_now},0)")
538 ActiveRecord::Base.connection.update("UPDATE current_ways SET user_id=#{uid},timestamp=#{db_now},visible=0 WHERE id=#{way}")
539 ActiveRecord::Base.connection.execute("DELETE FROM current_way_nodes WHERE id=#{way}")
540 ActiveRecord::Base.connection.execute("DELETE FROM current_way_tags WHERE id=#{way}")
541 deleteitemrelations(way,'way',uid,db_now)
545 def readwayquery(id,insistonvisible) #:doc:
547 SELECT latitude*0.0000001 AS latitude,longitude*0.0000001 AS longitude,current_nodes.id,tags,visible
548 FROM current_way_nodes,current_nodes
549 WHERE current_way_nodes.id=#{id}
550 AND current_way_nodes.node_id=current_nodes.id
552 if insistonvisible then sql+=" AND current_nodes.visible=1 " end
553 sql+=" ORDER BY sequence_id"
554 ActiveRecord::Base.connection.select_all(sql)
557 # Get the latest version id of a way
558 def getlastversion(id,version) #:doc:
559 old_way = OldWay.find(:first, :conditions => ['id = ?' , id], :order => 'version DESC')
563 def readwayquery_old(id,version,historic) #:doc:
564 # Node handling on undelete (historic=false):
565 # - always use the node specified, even if it's moved
567 # Node handling on revert (historic=true):
568 # - if it's a visible node, use a new node id (i.e. not mucking up the old one)
569 # which means the SWF needs to allocate new ids
570 # - if it's an invisible node, we can reuse the old node id
572 # get node list from specified version of way,
573 # and the _current_ lat/long/tags of each node
575 row=ActiveRecord::Base.connection.select_one("SELECT timestamp FROM ways WHERE version=#{version} AND id=#{id}")
576 waytime=row['timestamp']
579 SELECT cn.id,visible,latitude*0.0000001 AS latitude,longitude*0.0000001 AS longitude,tags
580 FROM way_nodes wn,current_nodes cn
581 WHERE wn.version=#{version}
586 rows=ActiveRecord::Base.connection.select_all(sql)
588 # if historic (full revert), get the old version of each node
589 # - if it's in another way now, generate a new id
590 # - if it's not in another way, use the old ID
592 rows.each_index do |i|
594 SELECT latitude*0.0000001 AS latitude,longitude*0.0000001 AS longitude,tags,cwn.id AS currentway
596 LEFT JOIN current_way_nodes cwn
598 WHERE n.id=#{rows[i]['id']}
599 AND n.timestamp<="#{waytime}"
601 ORDER BY n.timestamp DESC
604 row=ActiveRecord::Base.connection.select_one(sql)
606 nx=row['longitude'].to_f
607 ny=row['latitude'].to_f
608 if (row['currentway'] && (nx!=rows[i]['longitude'].to_f or ny!=rows[i]['latitude'].to_f or row['tags']!=rows[i]['tags'])) then rows[i]['id']=-1 end
609 rows[i]['longitude']=nx
610 rows[i]['latitude' ]=ny
611 rows[i]['tags' ]=row['tags']
618 def createuniquenodes(way,uqn_name,nodelist) #:doc:
619 # Find nodes which appear in this way but no others
621 CREATE TEMPORARY TABLE #{uqn_name}
623 FROM (SELECT DISTINCT node_id FROM current_way_nodes
625 LEFT JOIN current_way_nodes b
626 ON b.node_id=a.node_id
628 WHERE b.node_id IS NULL
630 unless nodelist.empty? then
631 sql+="AND a.node_id NOT IN ("+nodelist.join(',')+")"
633 ActiveRecord::Base.connection.execute(sql)
638 # ====================================================================
640 # deleteuniquenoderelations(uqn_name,uid,db_now)
641 # deleteitemrelations(way|node,'way'|'node',uid,db_now)
643 def deleteuniquenoderelations(uqn_name,uid,db_now) #:doc:
645 SELECT node_id,cr.id FROM #{uqn_name},current_relation_members crm,current_relations cr
646 WHERE crm.member_id=node_id
647 AND crm.member_type='node'
652 relnodes=ActiveRecord::Base.connection.select_all(sql)
654 removefromrelation(a['node_id'],'node',a['id'],uid,db_now)
658 def deleteitemrelations(objid,type,uid,db_now) #:doc:
660 SELECT cr.id FROM current_relation_members crm,current_relations cr
661 WHERE crm.member_id=#{objid}
662 AND crm.member_type='#{type}'
667 relways=ActiveRecord::Base.connection.select_all(sql)
669 removefromrelation(objid,type,a['id'],uid,db_now)
673 def removefromrelation(objid,type,relation,uid,db_now) #:doc:
674 rver=ActiveRecord::Base.connection.insert("INSERT INTO relations (id,user_id,timestamp,visible) VALUES (#{relation},#{uid},#{db_now},1)")
677 INSERT INTO relation_tags (id,k,v,version)
678 SELECT id,k,v,#{rver} FROM current_relation_tags
681 ActiveRecord::Base.connection.insert(tagsql)
684 INSERT INTO relation_members (id,member_type,member_id,member_role,version)
685 SELECT id,member_type,member_id,member_role,#{rver} FROM current_relation_members
687 AND (member_id!=#{objid} OR member_type!='#{type}')
689 ActiveRecord::Base.connection.insert(membersql)
691 ActiveRecord::Base.connection.update("UPDATE current_relations SET user_id=#{uid},timestamp=#{db_now} WHERE id=#{relation}")
692 ActiveRecord::Base.connection.execute("DELETE FROM current_relation_members WHERE id=#{relation} AND member_type='#{type}' AND member_id=#{objid}")
695 def sqlescape(a) #:doc:
696 a.gsub(/[\000-\037]/,"").gsub("'","''").gsub(92.chr) {92.chr+92.chr}
699 def tag2array(a) #:doc:
701 Tags.split(a) do |k, v|
702 tags[k.gsub(':','|')]=v
707 def array2tag(a) #:doc:
710 if v=='' then next end
711 if v[0,6]=='(type ' then next end
712 tags << [k.gsub('|',':'), v]
714 return Tags.join(tags)
717 def getuserid(token) #:doc:
718 if (token =~ /^(.+)\+(.+)$/) then
719 user = User.authenticate(:username => $1, :password => $2)
721 user = User.authenticate(:token => token)
724 return user ? user.id : nil;
727 # ====================================================================
728 # Co-ordinate conversion
730 def lat2coord(a,basey,masterscale) #:doc:
731 -(lat2y(a)-basey)*masterscale
734 def long2coord(a,baselong,masterscale) #:doc:
735 (a-baselong)*masterscale
739 180/Math::PI * Math.log(Math.tan(Math::PI/4+a*(Math::PI/180)/2))
742 def coord2lat(a,masterscale,basey) #:doc:
743 y2lat(a/-masterscale+basey)
746 def coord2long(a,masterscale,baselong) #:doc:
747 a/masterscale+baselong
751 180/Math::PI * (2*Math.atan(Math.exp(a*Math::PI/180))-Math::PI/2)