]> git.openstreetmap.org Git - rails.git/blob - app/controllers/amf_controller.rb
retab amf controller, it was getting annoying
[rails.git] / app / controllers / amf_controller.rb
1 class AmfController < ApplicationController
2   require 'stringio'
3
4   session :off
5   before_filter :check_write_availability
6
7   # AMF controller for Potlatch
8   # ---------------------------
9   # All interaction between Potlatch (as a .SWF application) and the 
10   # OSM database takes place using this controller. Messages are 
11   # encoded in the Actionscript Message Format (AMF).
12   #
13   # Public domain. Set your tab width to 4 to read this document. :)
14   # editions Systeme D / Richard Fairhurst 2004-2008
15   #
16   # All in/out parameters are floats unless explicitly stated.
17   # Note that in getway/getway_old, SWF object name and way id are
18   #ĂŠidentical and one could probably be eliminated.
19   # 
20   # to trap errors (getway_old,putway,putpoi,deleteway only):
21   #   return(-1,"message")              <-- just puts up a dialogue
22   #   return(-2,"message")              <-- also asks the user to e-mail me
23   # to log:
24   #   RAILS_DEFAULT_LOGGER.error("Args: #{args[0]}, #{args[1]}, #{args[2]}, #{args[3]}")
25
26   # ====================================================================
27   # Main AMF handler
28
29   # ---- talk   process AMF request
30
31   def talk
32     req=StringIO.new(request.raw_post+0.chr)    # Get POST data as request
33     # (cf http://www.ruby-forum.com/topic/122163)
34     req.read(2)                                                                 # Skip version indicator and client ID
35     results={}                                                                  # Results of each body
36     renumberednodes={}                                                  # Shared across repeated putways
37
38     # -------------
39     # Parse request
40
41     headers=getint(req)                                 # Read number of headers
42
43     headers.times do                                # Read each header
44       name=getstring(req)                               #  |
45       req.getc                                  #  | skip boolean
46       value=getvalue(req)                               #  |
47       header["name"]=value                              #  |
48     end
49
50     bodies=getint(req)                                  # Read number of bodies
51     bodies.times do                                     # Read each body
52       message=getstring(req)                    #  | get message name
53       index=getstring(req)                              #  | get index in response sequence
54       bytes=getlong(req)                                #  | get total size in bytes
55       args=getvalue(req)                                #  | get response (probably an array)
56
57       case message
58       when 'getpresets';                results[index]=putdata(index,getpresets)
59       when 'whichways';                 results[index]=putdata(index,whichways(args))
60       when 'whichways_deleted'; results[index]=putdata(index,whichways_deleted(args))
61       when 'getway';                    results[index]=putdata(index,getway(args))
62       when 'getway_old';                results[index]=putdata(index,getway_old(args))
63       when 'getway_history';    results[index]=putdata(index,getway_history(args))
64       when 'putway';                    r=putway(args,renumberednodes)
65         renumberednodes=r[3]
66         results[index]=putdata(index,r)
67       when 'deleteway';                 results[index]=putdata(index,deleteway(args))
68       when 'putpoi';                    results[index]=putdata(index,putpoi(args))
69       when 'getpoi';                    results[index]=putdata(index,getpoi(args))
70       end
71     end
72
73     # ------------------
74     # Write out response
75
76     RAILS_DEFAULT_LOGGER.info("  Response: start")
77     a,b=results.length.divmod(256)
78     render :content_type => "application/x-amf", :text => proc { |response, output| 
79       output.write 0.chr+0.chr+0.chr+0.chr+a.chr+b.chr
80       results.each do |k,v|
81         output.write(v)
82       end
83     }
84     RAILS_DEFAULT_LOGGER.info("  Response: end")
85
86   end
87
88   private
89
90
91   # ====================================================================
92   # Remote calls
93
94   # ----- getpresets
95   #               in:   none
96   #               does: reads tag preset menus, colours, and autocomplete config files
97   #           out:  [0] presets, [1] presetmenus, [2] presetnames,
98   #                             [3] colours, [4] casing, [5] areas, [6] autotags
99   #                             (all hashes)
100
101   def getpresets
102     RAILS_DEFAULT_LOGGER.info("  Message: getpresets")
103
104     # Read preset menus
105     presets={}
106     presetmenus={}; presetmenus['point']=[]; presetmenus['way']=[]; presetmenus['POI']=[]
107     presetnames={}; presetnames['point']={}; presetnames['way']={}; presetnames['POI']={}
108     presettype=''
109     presetcategory=''
110     #   StringIO.open(txt) do |file|
111     File.open("#{RAILS_ROOT}/config/potlatch/presets.txt") do |file|
112       file.each_line {|line|
113         t=line.chomp
114         if (t=~/(\w+)\/(\w+)/) then
115           presettype=$1
116           presetcategory=$2
117           presetmenus[presettype].push(presetcategory)
118           presetnames[presettype][presetcategory]=["(no preset)"]
119         elsif (t=~/^(.+):\s?(.+)$/) then
120           pre=$1; kv=$2
121           presetnames[presettype][presetcategory].push(pre)
122           presets[pre]={}
123           kv.split(',').each {|a|
124             if (a=~/^(.+)=(.*)$/) then presets[pre][$1]=$2 end
125           }
126         end
127       }
128     end
129
130     # Read colours/styling
131     colours={}; casing={}; areas={}
132     File.open("#{RAILS_ROOT}/config/potlatch/colours.txt") do |file|
133       file.each_line {|line|
134         t=line.chomp
135         if (t=~/(\w+)\s+([^\s]+)\s+([^\s]+)\s+([^\s]+)/) then
136           tag=$1
137           if ($2!='-') then colours[tag]=$2.hex end
138           if ($3!='-') then casing[tag]=$3.hex end
139           if ($4!='-') then areas[tag]=$4.hex end
140         end
141       }
142     end
143
144     # Read auto-complete
145     autotags={}; autotags['point']={}; autotags['way']={}; autotags['POI']={};
146     File.open("#{RAILS_ROOT}/config/potlatch/autocomplete.txt") do |file|
147       file.each_line {|line|
148         t=line.chomp
149         if (t=~/^(\w+)\/(\w+)\s+(.+)$/) then
150           tag=$1; type=$2; values=$3
151           if values=='-' then autotags[type][tag]=[]
152           else autotags[type][tag]=values.split(',').sort.reverse end
153         end
154       }
155     end
156
157     [presets,presetmenus,presetnames,colours,casing,areas,autotags]
158   end
159
160   # ----- whichways
161   #               return array of ways in current bounding box
162
163   #               in:   [0] xmin, [1] ymin, [2] xmax, [3] ymax (bbox in degrees)
164   #                             [4] baselong (longitude of SWF map origin),
165   #                             [5] basey (projected latitude of SWF map origin),
166   #                             [6] masterscale (SWF map scale)
167   #               does: finds all ways and POI nodes in bounding box
168   #                             at present, instead of using correct (=more complex) SQL to find
169   #                             corner-crossing ways, it simply enlarges the bounding box
170   #               out:  [0] array of way ids,
171   #                             [1] array of POIs
172   #                             (where each POI is an array containing:
173   #                              [0] id, [1] projected long, [2] projected lat, [3] hash of tags)
174
175   def whichways(args)
176     xmin = args[0].to_f-0.01
177     ymin = args[1].to_f-0.01
178     xmax = args[2].to_f+0.01
179     ymax = args[3].to_f+0.01
180     baselong    = args[4]
181     basey       = args[5]
182     masterscale = args[6]
183
184     RAILS_DEFAULT_LOGGER.info("  Message: whichways, bbox=#{xmin},#{ymin},#{xmax},#{ymax}")
185
186     waylist = ActiveRecord::Base.connection.select_all("SELECT DISTINCT current_way_nodes.id AS wayid"+
187        "  FROM current_way_nodes,current_nodes,current_ways "+
188        " WHERE current_nodes.id=current_way_nodes.node_id "+
189        "   AND current_nodes.visible=1 "+
190        "   AND current_ways.id=current_way_nodes.id "+
191        "   AND current_ways.visible=1 "+
192        "   AND "+OSM.sql_for_area(ymin, xmin, ymax, xmax, "current_nodes."))
193
194     ways = waylist.collect {|a| a['wayid'].to_i } # get an array of way IDs
195
196     pointlist = ActiveRecord::Base.connection.select_all("SELECT current_nodes.id,current_nodes.latitude*0.0000001 AS lat,current_nodes.longitude*0.0000001 AS lng,current_nodes.tags "+
197        "  FROM current_nodes "+
198        "  LEFT OUTER JOIN current_way_nodes cwn ON cwn.node_id=current_nodes.id "+
199        " WHERE "+OSM.sql_for_area(ymin, xmin, ymax, xmax, "current_nodes.")+
200        "   AND cwn.id IS NULL "+
201        "   AND current_nodes.visible=1")
202
203     points = pointlist.collect {|a| [a['id'],long2coord(a['lng'].to_f,baselong,masterscale),lat2coord(a['lat'].to_f,basey,masterscale),tag2array(a['tags'])]    } # get a list of node ids and their tags
204
205     [ways,points]
206   end
207
208   # ----- whichways_deleted
209   #               return array of deleted ways in current bounding box
210
211   #               in:   as whichways
212   #               does: finds all deleted ways with a deleted node in bounding box
213   #               out:  [0] array of way ids
214
215   def whichways_deleted(args)
216     xmin = args[0].to_f-0.01
217     ymin = args[1].to_f-0.01
218     xmax = args[2].to_f+0.01
219     ymax = args[3].to_f+0.01
220     baselong    = args[4]
221     basey       = args[5]
222     masterscale = args[6]
223
224     sql=<<-EOF
225      SELECT DISTINCT current_ways.id 
226        FROM current_nodes,way_nodes,current_ways 
227       WHERE #{OSM.sql_for_area(ymin, xmin, ymax, xmax, "current_nodes.")} 
228       AND way_nodes.node_id=current_nodes.id 
229       AND way_nodes.id=current_ways.id 
230       AND current_nodes.visible=0 
231       AND current_ways.visible=0 
232   EOF
233     waylist = ActiveRecord::Base.connection.select_all(sql)
234     ways = waylist.collect {|a| a['id'].to_i }
235     [ways]
236   end
237
238   # ----- getway
239   #               in:   [0] SWF object name, 
240   #                             [1] way id, [2] baselong, [3] basey, [4] masterscale
241   #               does: gets way and all nodes
242   #               out:  [0] SWF object name (unchanged),
243   #                             [1] array of points
244   #                                     (where each point is an array containing
245   #                                      [0] projected long, [1] projected lat, [2] node id,
246   #                                      [3] null, [4] hash of node tags),
247   #                             [2] xmin, [3] xmax, [4] ymin, [5] ymax (unprojected bbox)
248
249   def getway(args)
250     objname,wayid,baselong,basey,masterscale=args
251     wayid = wayid.to_i
252     points = []
253     xmin = ymin =  999999
254     xmax = ymax = -999999
255
256     RAILS_DEFAULT_LOGGER.info("  Message: getway, id=#{wayid}")
257
258     readwayquery(wayid,true).each {|row|
259       points<<[long2coord(row['longitude'].to_f,baselong,masterscale),lat2coord(row['latitude'].to_f,basey,masterscale),row['id'].to_i,nil,tag2array(row['tags'])]
260       xmin = [xmin,row['longitude'].to_f].min
261       xmax = [xmax,row['longitude'].to_f].max
262       ymin = [ymin,row['latitude'].to_f].min
263       ymax = [ymax,row['latitude'].to_f].max
264     }
265
266     attributes={}
267     attrlist=ActiveRecord::Base.connection.select_all "SELECT k,v FROM current_way_tags WHERE id=#{wayid}"
268     attrlist.each {|a| attributes[a['k'].gsub(':','|')]=a['v'] }
269
270     [objname,points,attributes,xmin,xmax,ymin,ymax]
271   end
272
273   # ----- getway_old
274   #               returns old version of way
275
276   #               in:   [0] SWF object name, [1] way id,
277   #                             [2] way version to get (or -1 for "last deleted version")
278   #                             [3] baselong, [4] basey, [5] masterscale
279   #               does: gets old version of way and all constituent nodes
280   #                             for undelete, always uses the most recent version of each node
281   #                               (even if it's moved)
282   #                             for revert, uses the historic version of each node, but if that node is
283   #                               still visible and has been changed since, generates a new node id
284   #               out:  [0] 0 (code for success), [1] SWF object name,
285   #                             [2] array of points (as getway _except_ [3] is node.visible?, 0 or 1),
286   #                             [4] xmin, [5] xmax, [6] ymin, [7] ymax (unprojected bbox),
287   #                             [8] way version
288
289   def getway_old(args)
290     RAILS_DEFAULT_LOGGER.info("  Message: getway_old (server is #{SERVER_URL})")
291     #   if SERVER_URL=="www.openstreetmap.org" then return -1,"Revert is not currently enabled on the OpenStreetMap server." end
292
293     objname,wayid,version,baselong,basey,masterscale=args
294     wayid = wayid.to_i
295     version = version.to_i
296     xmin = ymin =  999999
297     xmax = ymax = -999999
298     points=[]
299     if version<0
300       historic=false
301       version=getlastversion(wayid,version)
302     else
303       historic=true
304     end
305     readwayquery_old(wayid,version,historic).each { |row|
306       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)]
307       xmin=[xmin,row['longitude'].to_f].min
308       xmax=[xmax,row['longitude'].to_f].max
309       ymin=[ymin,row['latitude' ].to_f].min
310       ymax=[ymax,row['latitude' ].to_f].max
311     }
312
313     # get tags from this version
314     attributes={}
315     attrlist=ActiveRecord::Base.connection.select_all "SELECT k,v FROM way_tags WHERE id=#{wayid} AND version=#{version}"
316     attrlist.each {|a| attributes[a['k'].gsub(':','|')]=a['v'] }
317     attributes['history']="Retrieved from v"+version.to_s
318
319     [0,objname,points,attributes,xmin,xmax,ymin,ymax,version]
320   end
321
322   # ----- getway_history
323   #               find history of a way
324
325   #               in:   [0] way id
326   #               does: finds history of a way
327   #               out:  [0] array of previous versions (where each is
328   #                                     [0] version, [1] db timestamp (string),
329   #                                     [2] visible 0 or 1,
330   #                                     [3] username or 'anonymous' (string))
331
332   def getway_history(args)
333     wayid=args[0]
334     history=[]
335     sql=<<-EOF
336   SELECT version,timestamp,visible,display_name,data_public
337     FROM ways,users
338    WHERE ways.id=#{wayid}
339      AND ways.user_id=users.id
340      AND ways.visible=1
341    ORDER BY version DESC
342   EOF
343     histlist=ActiveRecord::Base.connection.select_all(sql)
344     histlist.each { |row|
345       if row['data_public'].to_i==1 then user=row['display_name'] else user='anonymous' end
346       history<<[row['version'],row['timestamp'],row['visible'],user]
347     }
348     [history]
349   end
350
351   # ----- putway
352   #               saves a way to the database
353
354   #               in:   [0] user token (string),
355   #                             [1] original way id (may be negative), 
356   #                             [2] array of points (as getway/getway_old),
357   #                             [3] hash of way tags,
358   #                             [4] original way version (0 if not a reverted/undeleted way),
359   #                             [5] baselong, [6] basey, [7] masterscale
360   #               does: saves way to the database
361   #                             all constituent nodes are created/updated as necessary
362   #                             (or deleted if they were in the old version and are otherwise unused)
363   #               out:  [0] 0 (code for success), [1] original way id (unchanged),
364   #                             [2] new way id, [3] hash of renumbered nodes (old id=>new id),
365   #                             [4] xmin, [5] xmax, [6] ymin, [7] ymax (unprojected bbox)
366
367   def putway(args,renumberednodes)
368     RAILS_DEFAULT_LOGGER.info("  putway started")
369     usertoken,originalway,points,attributes,oldversion,baselong,basey,masterscale=args
370     uid=getuserid(usertoken)
371     if !uid then return -1,"You are not logged in, so the way could not be saved." end
372
373     RAILS_DEFAULT_LOGGER.info("  putway authenticated happily")
374     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
375     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
376     ActiveRecord::Base.connection.execute("SET #{db_now}=NOW()")
377     originalway=originalway.to_i
378     oldversion=oldversion.to_i
379
380     RAILS_DEFAULT_LOGGER.info("  Message: putway, id=#{originalway}")
381
382     # -- Temporary check for null IDs
383
384     points.each do |a|
385       if a[2]==0 or a[2].nil? then return -2,"Server error - node with id 0 found in way #{originalway}." end
386     end
387
388     # -- 3.     read original way into memory
389
390     xc={}; yc={}; tagc={}; vc={}
391     if originalway>0
392       way=originalway
393       if oldversion==0 then r=readwayquery(way,false)
394       else r=readwayquery_old(way,oldversion,true) end
395       r.each { |row|
396         id=row['id'].to_i
397         if (id>0) then
398           xc[id]=row['longitude'].to_f
399           yc[id]=row['latitude' ].to_f
400           tagc[id]=row['tags']
401           vc[id]=row['visible'].to_i
402         end
403       }
404       ActiveRecord::Base.connection.update("UPDATE current_ways SET timestamp=#{db_now},user_id=#{uid},visible=1 WHERE id=#{way}")
405     else
406       way=ActiveRecord::Base.connection.insert("INSERT INTO current_ways (user_id,timestamp,visible) VALUES (#{uid},#{db_now},1)")
407     end
408
409     # -- 4.     get version by inserting new row into ways
410
411     version=ActiveRecord::Base.connection.insert("INSERT INTO ways (id,user_id,timestamp,visible) VALUES (#{way},#{uid},#{db_now},1)")
412
413     # -- 5. compare nodes and update xmin,xmax,ymin,ymax
414
415     xmin=ymin= 999999
416     xmax=ymax=-999999
417     insertsql=''
418     nodelist=[]
419
420     points.each_index do |i|
421       xs=coord2long(points[i][0],masterscale,baselong)
422       ys=coord2lat(points[i][1],masterscale,basey)
423       xmin=[xs,xmin].min; xmax=[xs,xmax].max
424       ymin=[ys,ymin].min; ymax=[ys,ymax].max
425       node=points[i][2].to_i
426       tagstr=array2tag(points[i][4])
427       tagsql="'"+sqlescape(tagstr)+"'"
428       lat=(ys * 10000000).round
429       long=(xs * 10000000).round
430       tile=QuadTile.tile_for_point(ys, xs)
431
432       # compare node
433       if node<0
434         # new node - create
435         if renumberednodes[node.to_s].nil?
436           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})")
437           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})")
438           points[i][2]=newnode
439           nodelist.push(newnode)
440           renumberednodes[node.to_s]=newnode.to_s
441         else
442           points[i][2]=renumberednodes[node.to_s].to_i
443         end
444
445       elsif xc.has_key?(node)
446         nodelist.push(node)
447         # old node from original way - update
448         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)
449           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})")
450           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}")
451         end
452       else
453         # old node, created in another way and now added to this way
454       end
455     end
456
457
458     # -- 6a. delete any nodes not in modified way
459
460     createuniquenodes(way,db_uqn,nodelist)      # nodes which appear in this way but no other
461
462     sql=<<-EOF
463   INSERT INTO nodes (id,latitude,longitude,timestamp,user_id,visible,tile)  
464   SELECT DISTINCT cn.id,cn.latitude,cn.longitude,#{db_now},#{uid},0,cn.tile
465     FROM current_nodes AS cn,#{db_uqn}
466    WHERE cn.id=node_id
467     EOF
468     ActiveRecord::Base.connection.insert(sql)
469
470     sql=<<-EOF
471       UPDATE current_nodes AS cn, #{db_uqn}
472          SET cn.timestamp=#{db_now},cn.visible=0,cn.user_id=#{uid} 
473        WHERE cn.id=node_id
474     EOF
475     ActiveRecord::Base.connection.update(sql)
476
477     deleteuniquenoderelations(db_uqn,uid,db_now)
478     ActiveRecord::Base.connection.execute("DROP TEMPORARY TABLE #{db_uqn}")
479
480     #   6b. insert new version of route into way_nodes
481
482     insertsql =''
483     currentsql=''
484     sequence  =1
485     points.each do |p|
486       if insertsql !='' then insertsql +=',' end
487       if currentsql!='' then currentsql+=',' end
488       insertsql +="(#{way},#{p[2]},#{sequence},#{version})"
489       currentsql+="(#{way},#{p[2]},#{sequence})"
490       sequence  +=1
491     end
492
493     ActiveRecord::Base.connection.execute("DELETE FROM current_way_nodes WHERE id=#{way}");
494     ActiveRecord::Base.connection.insert( "INSERT INTO         way_nodes (id,node_id,sequence_id,version) VALUES #{insertsql}");
495     ActiveRecord::Base.connection.insert( "INSERT INTO current_way_nodes (id,node_id,sequence_id        ) VALUES #{currentsql}");
496
497     # -- 7. insert new way tags
498
499     insertsql =''
500     currentsql=''
501     attributes.each do |k,v|
502       if v=='' or v.nil? then next end
503       if v[0,6]=='(type ' then next end
504       if insertsql !='' then insertsql +=',' end
505       if currentsql!='' then currentsql+=',' end
506       insertsql +="(#{way},'"+sqlescape(k.gsub('|',':'))+"','"+sqlescape(v)+"',#{version})"
507       currentsql+="(#{way},'"+sqlescape(k.gsub('|',':'))+"','"+sqlescape(v)+"')"
508     end
509
510     ActiveRecord::Base.connection.execute("DELETE FROM current_way_tags WHERE id=#{way}")
511     if (insertsql !='') then ActiveRecord::Base.connection.insert("INSERT INTO way_tags (id,k,v,version) VALUES #{insertsql}" ) end
512     if (currentsql!='') then ActiveRecord::Base.connection.insert("INSERT INTO current_way_tags (id,k,v) VALUES #{currentsql}") end
513
514     [0,originalway,way,renumberednodes,xmin,xmax,ymin,ymax]
515   end
516
517   # ----- putpoi
518   #               save POI to the database
519
520   #               in:   [0] user token (string),
521   #                             [1] original node id (may be negative),
522   #                             [2] projected longitude, [3] projected latitude,
523   #                             [4] hash of tags, [5] visible (0 to delete, 1 otherwise), 
524   #                             [6] baselong, [7] basey, [8] masterscale
525   #               does: saves POI node to the database
526   #                             refuses save if the node has since become part of a way
527   #               out:  [0] 0 (success), [1] original node id (unchanged),
528   #                             [2] new node id
529
530   def putpoi(args)
531     usertoken,id,x,y,tags,visible,baselong,basey,masterscale=args
532     uid=getuserid(usertoken)
533     if !uid then return -1,"You are not logged in, so the point could not be saved." end
534
535     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
536     ActiveRecord::Base.connection.execute("SET #{db_now}=NOW()")
537
538     id=id.to_i
539     visible=visible.to_i
540     if visible==0 then
541       # if deleting, check node hasn't become part of a way 
542       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")
543       unless inway.nil? then return -1,"The point has since become part of a way, so you cannot save it as a POI." end
544       deleteitemrelations(id,'node',uid,db_now)
545     end
546
547     x=coord2long(x.to_f,masterscale,baselong)
548     y=coord2lat(y.to_f,masterscale,basey)
549     tagsql="'"+sqlescape(array2tag(tags))+"'"
550     lat=(y * 10000000).round
551     long=(x * 10000000).round
552     tile=QuadTile.tile_for_point(y, x)
553
554     if (id>0) then
555       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})");
556       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}");
557       newid=id
558     else
559       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})");
560       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})");
561     end
562     [0,id,newid]
563   end
564
565   # ----- getpoi
566   #               read POI from database
567   #               (only called on revert: POIs are usually read by whichways)
568
569   #               in:   [0] node id, [1] baselong, [2] basey, [3] masterscale
570   #               does: reads POI
571   #               out:  [0] id (unchanged), [1] projected long, [2] projected lat,
572   #                             [3] hash of tags
573
574   def getpoi(args)
575     id,baselong,basey,masterscale=args; id=id.to_i
576     poi=ActiveRecord::Base.connection.select_one("SELECT latitude*0.0000001 AS lat,longitude*0.0000001 AS lng,tags "+
577     "FROM current_nodes WHERE visible=1 AND id=#{id}")
578     if poi.nil? then return [nil,nil,nil,''] end
579     [id,
580       long2coord(poi['lng'].to_f,baselong,masterscale),
581       lat2coord(poi['lat'].to_f,basey,masterscale),
582       tag2array(poi['tags'])]
583   end
584
585   # ----- deleteway
586   #               delete way and constituent nodes from database
587
588   #               in:   [0] user token (string), [1] way id
589   #               does: deletes way from db and any constituent nodes not used elsewhere
590   #                             also removes ways/nodes from any relations they're in
591   #               out:  [0] 0 (success), [1] way id (unchanged)
592
593   def deleteway(args)
594     usertoken,way=args
595
596     RAILS_DEFAULT_LOGGER.info("  Message: deleteway, id=#{way}")
597     uid=getuserid(usertoken)
598     if !uid then return -1,"You are not logged in, so the way could not be deleted." end
599
600     way=way.to_i
601     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
602     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
603     ActiveRecord::Base.connection.execute("SET #{db_now}=NOW()")
604
605     # - delete any otherwise unused nodes
606
607     createuniquenodes(way,db_uqn,[])
608
609     #   unless (preserve.empty?) then
610     #           ActiveRecord::Base.connection.execute("DELETE FROM #{db_uqn} WHERE node_id IN ("+preserve.join(',')+")")
611     #   end
612
613     sql=<<-EOF
614   INSERT INTO nodes (id,latitude,longitude,timestamp,user_id,visible,tile)
615   SELECT DISTINCT cn.id,cn.latitude,cn.longitude,#{db_now},#{uid},0,cn.tile
616     FROM current_nodes AS cn,#{db_uqn}
617    WHERE cn.id=node_id
618     EOF
619     ActiveRecord::Base.connection.insert(sql)
620
621     sql=<<-EOF
622       UPDATE current_nodes AS cn, #{db_uqn}
623          SET cn.timestamp=#{db_now},cn.visible=0,cn.user_id=#{uid} 
624        WHERE cn.id=node_id
625     EOF
626     ActiveRecord::Base.connection.update(sql)
627
628     deleteuniquenoderelations(db_uqn,uid,db_now)
629     ActiveRecord::Base.connection.execute("DROP TEMPORARY TABLE #{db_uqn}")
630
631     # - delete way
632
633     ActiveRecord::Base.connection.insert("INSERT INTO ways (id,user_id,timestamp,visible) VALUES (#{way},#{uid},#{db_now},0)")
634     ActiveRecord::Base.connection.update("UPDATE current_ways SET user_id=#{uid},timestamp=#{db_now},visible=0 WHERE id=#{way}")
635     ActiveRecord::Base.connection.execute("DELETE FROM current_way_nodes WHERE id=#{way}")
636     ActiveRecord::Base.connection.execute("DELETE FROM current_way_tags WHERE id=#{way}")
637     deleteitemrelations(way,'way',uid,db_now)
638     [0,way]
639   end
640
641
642
643   # ====================================================================
644   # Support functions for remote calls
645
646   def readwayquery(id,insistonvisible)
647     sql=<<-EOF
648     SELECT latitude*0.0000001 AS latitude,longitude*0.0000001 AS longitude,current_nodes.id,tags,visible 
649       FROM current_way_nodes,current_nodes 
650      WHERE current_way_nodes.id=#{id} 
651        AND current_way_nodes.node_id=current_nodes.id 
652   EOF
653     if insistonvisible then sql+=" AND current_nodes.visible=1 " end
654     sql+=" ORDER BY sequence_id"
655     ActiveRecord::Base.connection.select_all(sql)
656   end
657
658   def getlastversion(id,version)
659     row=ActiveRecord::Base.connection.select_one("SELECT version FROM ways WHERE id=#{id} AND visible=1 ORDER BY version DESC LIMIT 1")
660     row['version']
661   end
662
663   def readwayquery_old(id,version,historic)
664     # Node handling on undelete (historic=false):
665     # - always use the node specified, even if it's moved
666
667     # Node handling on revert (historic=true):
668     # - if it's a visible node, use a new node id (i.e. not mucking up the old one)
669     #   which means the SWF needs to allocate new ids
670     # - if it's an invisible node, we can reuse the old node id
671
672     # get node list from specified version of way,
673     # and the _current_ lat/long/tags of each node
674
675     row=ActiveRecord::Base.connection.select_one("SELECT timestamp FROM ways WHERE version=#{version} AND id=#{id}")
676     waytime=row['timestamp']
677
678     sql=<<-EOF
679   SELECT cn.id,visible,latitude*0.0000001 AS latitude,longitude*0.0000001 AS longitude,tags 
680     FROM way_nodes wn,current_nodes cn 
681    WHERE wn.version=#{version} 
682      AND wn.id=#{id} 
683      AND wn.node_id=cn.id 
684    ORDER BY sequence_id
685   EOF
686     rows=ActiveRecord::Base.connection.select_all(sql)
687
688     # if historic (full revert), get the old version of each node
689     # - if it's in another way now, generate a new id
690     # - if it's not in another way, use the old ID
691     if historic then
692       rows.each_index do |i|
693         sql=<<-EOF
694     SELECT latitude*0.0000001 AS latitude,longitude*0.0000001 AS longitude,tags,cwn.id AS currentway 
695       FROM nodes n
696    LEFT JOIN current_way_nodes cwn
697       ON cwn.node_id=n.id
698      WHERE n.id=#{rows[i]['id']} 
699        AND n.timestamp<="#{waytime}" 
700      AND cwn.id!=#{id} 
701      ORDER BY n.timestamp DESC 
702      LIMIT 1
703     EOF
704         row=ActiveRecord::Base.connection.select_one(sql)
705         unless row.nil? then
706           nx=row['longitude'].to_f
707           ny=row['latitude'].to_f
708           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
709           rows[i]['longitude']=nx
710           rows[i]['latitude' ]=ny
711           rows[i]['tags'     ]=row['tags']
712         end
713       end
714     end
715     rows
716   end
717
718   def createuniquenodes(way,uqn_name,nodelist)
719     # Find nodes which appear in this way but no others
720     sql=<<-EOF
721   CREATE TEMPORARY TABLE #{uqn_name}
722           SELECT a.node_id
723             FROM (SELECT DISTINCT node_id FROM current_way_nodes
724               WHERE id=#{way}) a
725          LEFT JOIN current_way_nodes b
726             ON b.node_id=a.node_id
727              AND b.id!=#{way}
728            WHERE b.node_id IS NULL
729   EOF
730     unless nodelist.empty? then
731       sql+="AND a.node_id NOT IN ("+nodelist.join(',')+")"
732     end
733     ActiveRecord::Base.connection.execute(sql)
734   end
735
736
737
738   # ====================================================================
739   # Relations handling
740   # deleteuniquenoderelations(uqn_name,uid,db_now)
741   # deleteitemrelations(way|node,'way'|'node',uid,db_now)
742
743   def deleteuniquenoderelations(uqn_name,uid,db_now)
744     sql=<<-EOF
745   SELECT node_id,cr.id FROM #{uqn_name},current_relation_members crm,current_relations cr 
746    WHERE crm.member_id=node_id 
747      AND crm.member_type='node' 
748      AND crm.id=cr.id 
749      AND cr.visible=1
750   EOF
751
752     relnodes=ActiveRecord::Base.connection.select_all(sql)
753     relnodes.each do |a|
754       removefromrelation(a['node_id'],'node',a['id'],uid,db_now)
755     end
756   end
757
758   def deleteitemrelations(objid,type,uid,db_now)
759     sql=<<-EOF
760   SELECT cr.id FROM current_relation_members crm,current_relations cr 
761    WHERE crm.member_id=#{objid} 
762      AND crm.member_type='#{type}' 
763      AND crm.id=cr.id 
764      AND cr.visible=1
765   EOF
766
767     relways=ActiveRecord::Base.connection.select_all(sql)
768     relways.each do |a|
769       removefromrelation(objid,type,a['id'],uid,db_now)
770     end
771   end
772
773   def removefromrelation(objid,type,relation,uid,db_now)
774     rver=ActiveRecord::Base.connection.insert("INSERT INTO relations (id,user_id,timestamp,visible) VALUES (#{relation},#{uid},#{db_now},1)")
775
776     tagsql=<<-EOF
777   INSERT INTO relation_tags (id,k,v,version) 
778   SELECT id,k,v,#{rver} FROM current_relation_tags 
779    WHERE id=#{relation} 
780   EOF
781     ActiveRecord::Base.connection.insert(tagsql)
782
783     membersql=<<-EOF
784   INSERT INTO relation_members (id,member_type,member_id,member_role,version) 
785   SELECT id,member_type,member_id,member_role,#{rver} FROM current_relation_members 
786    WHERE id=#{relation} 
787      AND (member_id!=#{objid} OR member_type!='#{type}')
788   EOF
789     ActiveRecord::Base.connection.insert(membersql)
790
791     ActiveRecord::Base.connection.update("UPDATE current_relations SET user_id=#{uid},timestamp=#{db_now} WHERE id=#{relation}")
792     ActiveRecord::Base.connection.execute("DELETE FROM current_relation_members WHERE id=#{relation} AND member_type='#{type}' AND member_id=#{objid}")
793   end
794
795
796   def sqlescape(a)
797     a.gsub(/[\000-\037]/,"").gsub("'","''").gsub(92.chr) {92.chr+92.chr}
798   end
799
800   def tag2array(a)
801     tags={}
802     Tags.split(a) do |k, v|
803       tags[k.gsub(':','|')]=v
804     end
805     tags
806   end
807
808   def array2tag(a)
809     tags = []
810     a.each do |k,v|
811       if v=='' then next end
812       if v[0,6]=='(type ' then next end
813       tags << [k.gsub('|',':'), v]
814     end
815     return Tags.join(tags)
816   end
817
818   def getuserid(token)
819     if (token =~ /^(.+)\+(.+)$/) then
820       user = User.authenticate(:username => $1, :password => $2)
821     else
822       user = User.authenticate(:token => token)
823     end
824
825     return user ? user.id : nil;
826   end
827
828
829
830   # ====================================================================
831   # AMF read subroutines
832
833   # -----       getint          return two-byte integer
834   # -----       getlong         return four-byte long
835   # -----       getstring       return string with two-byte length
836   # ----- getdouble     return eight-byte double-precision float
837   # ----- getobject     return object/hash
838   # ----- getarray      return numeric array
839
840   def getint(s)
841     s.getc*256+s.getc
842   end
843
844   def getlong(s)
845     ((s.getc*256+s.getc)*256+s.getc)*256+s.getc
846   end
847
848   def getstring(s)
849     len=s.getc*256+s.getc
850     s.read(len)
851   end
852
853   def getdouble(s)
854     a=s.read(8).unpack('G')                     # G big-endian, E little-endian
855     a[0]
856   end
857
858   def getarray(s)
859     len=getlong(s)
860     arr=[]
861     for i in (0..len-1)
862       arr[i]=getvalue(s)
863     end
864     arr
865   end
866
867   def getobject(s)
868     arr={}
869     while (key=getstring(s))
870       if (key=='') then break end
871       arr[key]=getvalue(s)
872     end
873     s.getc              # skip the 9 'end of object' value
874     arr
875   end
876
877   # -----       getvalue        parse and get value
878
879   def getvalue(s)
880     case s.getc
881     when 0;     return getdouble(s)                     # number
882     when 1;     return s.getc                           # boolean
883     when 2;     return getstring(s)                     # string
884     when 3;     return getobject(s)                     # object/hash
885     when 5;     return nil                                      # null
886     when 6;     return nil                                      # undefined
887     when 8;     s.read(4)                                       # mixedArray
888       return getobject(s)                       #  |
889     when 10;return getarray(s)                  # array
890     else;       return nil                                      # error
891     end
892   end
893
894   # ====================================================================
895   # AMF write subroutines
896
897   # -----       putdata         envelope data into AMF writeable form
898   # -----       encodevalue     pack variables as AMF
899
900   def putdata(index,n)
901     d =encodestring(index+"/onResult")
902     d+=encodestring("null")
903     d+=[-1].pack("N")
904     d+=encodevalue(n)
905   end
906
907   def encodevalue(n)
908     case n.class.to_s
909     when 'Array'
910       a=10.chr+encodelong(n.length)
911       n.each do |b|
912         a+=encodevalue(b)
913       end
914       a
915     when 'Hash'
916       a=3.chr
917       n.each do |k,v|
918         a+=encodestring(k)+encodevalue(v)
919       end
920       a+0.chr+0.chr+9.chr
921     when 'String'
922       2.chr+encodestring(n)
923     when 'Bignum','Fixnum','Float'
924       0.chr+encodedouble(n)
925     when 'NilClass'
926       5.chr
927     else
928       RAILS_DEFAULT_LOGGER.error("Unexpected Ruby type for AMF conversion: "+n.class.to_s)
929     end
930   end
931
932   # -----       encodestring    encode string with two-byte length
933   # -----       encodedouble    encode number as eight-byte double precision float
934   # -----       encodelong              encode number as four-byte long
935
936   def encodestring(n)
937     a,b=n.size.divmod(256)
938     a.chr+b.chr+n
939   end
940
941   def encodedouble(n)
942     [n].pack('G')
943   end
944
945   def encodelong(n)
946     [n].pack('N')
947   end
948
949   # ====================================================================
950   # Co-ordinate conversion
951
952   def lat2coord(a,basey,masterscale)
953     -(lat2y(a)-basey)*masterscale+250
954   end
955
956   def long2coord(a,baselong,masterscale)
957     (a-baselong)*masterscale+350
958   end
959
960   def lat2y(a)
961     180/Math::PI * Math.log(Math.tan(Math::PI/4+a*(Math::PI/180)/2))
962   end
963
964   def coord2lat(a,masterscale,basey)
965     y2lat((a-250)/-masterscale+basey)
966   end
967
968   def coord2long(a,masterscale,baselong)
969     (a-350)/masterscale+baselong
970   end
971
972   def y2lat(a)
973     180/Math::PI * (2*Math.atan(Math.exp(a*Math::PI/180))-Math::PI/2)
974   end
975
976 end