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.rb
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 # Note that this requires a patched version of composite_primary_keys 1.1.0
21 # (see http://groups.google.com/group/compositekeys/t/a00e7562b677e193)
22 # if you are to run with POTLATCH_USE_SQL=false .
26 # Any method that returns a status code (0 for ok) can also send:
27 # return(-1,"message") <-- just puts up a dialogue
28 # return(-2,"message") <-- also asks the user to e-mail me
29 # return(-3,["type",v],id) <-- version conflict
30 # return(-4,"type",id) <-- object not found
31 # -5 indicates the method wasn't called (due to a previous error)
33 # To write to the Rails log, use logger.info("message").
36 # * version conflict when POIs and ways are reverted
38 class AmfController < ApplicationController
41 # Help methods for checking boundary sanity and area size
44 skip_before_filter :verify_authenticity_token
45 before_filter :check_api_writable
47 # Main AMF handlers: process the raw AMF string (using AMF library) and
48 # calls each action (private method) accordingly.
53 self.content_type = Mime::AMF
54 self.response_body = Dispatcher.new(request.raw_post) do |message,*args|
55 logger.info("Executing AMF #{message}(#{args.join(',')})")
58 when 'getpresets'; result = getpresets(*args)
59 when 'whichways'; result = whichways(*args)
60 when 'whichways_deleted'; result = whichways_deleted(*args)
61 when 'getway'; result = getway(args[0].to_i)
62 when 'getrelation'; result = getrelation(args[0].to_i)
63 when 'getway_old'; result = getway_old(args[0].to_i,args[1])
64 when 'getway_history'; result = getway_history(args[0].to_i)
65 when 'getnode_history'; result = getnode_history(args[0].to_i)
66 when 'findgpx'; result = findgpx(*args)
67 when 'findrelations'; result = findrelations(*args)
68 when 'getpoi'; result = getpoi(*args)
74 render :nothing => true, :status => :method_not_allowed
80 renumberednodes = {} # Shared across repeated putways
81 renumberedways = {} # Shared across repeated putways
82 err = false # Abort batch on error
85 self.content_type = Mime::AMF
86 self.response_body = Dispatcher.new(request.raw_post) do |message,*args|
87 logger.info("Executing AMF #{message}")
93 when 'putway'; orn = renumberednodes.dup
94 result = putway(renumberednodes, *args)
95 result[4] = renumberednodes.reject { |k,v| orn.has_key?(k) }
96 if result[0] == 0 and result[2] != result[3] then renumberedways[result[2]] = result[3] end
97 when 'putrelation'; result = putrelation(renumberednodes, renumberedways, *args)
98 when 'deleteway'; result = deleteway(*args)
99 when 'putpoi'; result = putpoi(*args)
100 if result[0] == 0 and result[2] != result[3] then renumberednodes[result[2]] = result[3] end
101 when 'startchangeset'; result = startchangeset(*args)
104 err = true if result[0] == -3 # If a conflict is detected, don't execute any more writes
110 render :nothing => true, :status => :method_not_allowed
116 def amf_handle_error(call,rootobj,rootid)
118 rescue OSM::APIAlreadyDeletedError => ex
119 return [-4, ex.object, ex.object_id]
120 rescue OSM::APIVersionMismatchError => ex
121 return [-3, [rootobj, rootid], [ex.type.downcase, ex.id, ex.latest]]
122 rescue OSM::APIUserChangesetMismatchError => ex
124 rescue OSM::APIBadBoundingBox => ex
125 return [-2, "Sorry - I can't get the map for that area. The server said: #{ex.to_s}"]
126 rescue OSM::APIError => ex
128 rescue Exception => ex
129 return [-2, "An unusual error happened (in #{call}). The server said: #{ex.to_s}"]
132 def amf_handle_error_with_timeout(call,rootobj,rootid)
133 amf_handle_error(call,rootobj,rootid) do
134 Timeout::timeout(API_TIMEOUT, OSM::APITimeoutError) do
140 # Start new changeset
141 # Returns success_code,success_message,changeset id
143 def startchangeset(usertoken, cstags, closeid, closecomment, opennew)
144 amf_handle_error("'startchangeset'",nil,nil) do
145 user = getuser(usertoken)
146 if !user then return -1,"You are not logged in, so Potlatch can't write any changes to the database." end
147 unless user.active_blocks.empty? then return -1,t('application.setup_user_auth.blocked') end
148 if REQUIRE_TERMS_AGREED and user.terms_agreed.nil? then return -1,"You must accept the contributor terms before you can edit." end
151 if !tags_ok(cstags) then return -1,"One of the tags is invalid. Linux users may need to upgrade to Flash Player 10.1." end
152 cstags = strip_non_xml_chars cstags
155 # close previous changeset and add comment
157 cs = Changeset.find(closeid.to_i)
158 cs.set_closed_time_now
159 if cs.user_id!=user.id
160 raise OSM::APIUserChangesetMismatchError.new
161 elsif closecomment.empty?
164 cs.tags['comment']=closecomment
165 # in case closecomment has chars not allowed in xml
166 cs.tags = strip_non_xml_chars cs.tags
171 # open a new changeset
176 if !closecomment.empty?
177 cs.tags['comment']=closecomment
178 # in case closecomment has chars not allowed in xml
179 cs.tags = strip_non_xml_chars cs.tags
181 # smsm1 doesn't like the next two lines and thinks they need to be abstracted to the model more/better
182 cs.created_at = Time.now.getutc
183 cs.closed_at = cs.created_at + Changeset::IDLE_TIMEOUT
192 # Return presets (default tags, localisation etc.):
193 # uses POTLATCH_PRESETS global, set up in OSM::Potlatch.
195 def getpresets(usertoken,lang) #:doc:
196 user = getuser(usertoken)
198 if user && !user.languages.empty?
199 request.user_preferred_languages = user.languages
202 lang = request.compatible_language_from(getlocales)
203 (real_lang, localised) = getlocalized(lang)
205 # Tell Potlatch what language it's using
206 localised["__potlatch_locale"] = real_lang
208 # Get help from i18n but delete it so we won't pass it around
210 help = localised["help_html"]
211 localised.delete("help_html")
213 # Populate icon names
214 POTLATCH_PRESETS[10].each { |id|
215 POTLATCH_PRESETS[11][id] = localised["preset_icon_#{id}"]
216 localised.delete("preset_icon_#{id}")
219 return POTLATCH_PRESETS+[localised,help]
222 def getlocalized(lang)
223 # What we end up actually using. Reported in Potlatch's created_by=* string
226 # Load English defaults
227 en = YAML::load(File.open("#{Rails.root}/config/potlatch/locales/en.yml"))["en"]
230 return [loaded_lang, en]
232 # Use English as a fallback
234 other = YAML::load(File.open("#{Rails.root}/config/potlatch/locales/#{lang}.yml"))[lang]
240 # We have to return a flat list and some of the keys won't be
241 # translated (probably)
242 return [loaded_lang, en.merge(other)]
247 # Find all the ways, POI nodes (i.e. not part of ways), and relations
248 # in a given bounding box. Nodes are returned in full; ways and relations
251 # return is of the form:
252 # [success_code, success_message,
253 # [[way_id, way_version], ...],
254 # [[node_id, lat, lon, [tags, ...], node_version], ...],
255 # [[rel_id, rel_version], ...]]
256 # where the ways are any visible ways which refer to any visible
257 # nodes in the bbox, nodes are any visible nodes in the bbox but not
258 # used in any way, rel is any relation which refers to either a way
259 # or node that we're returning.
260 def whichways(xmin, ymin, xmax, ymax) #:doc:
261 amf_handle_error_with_timeout("'whichways'",nil,nil) do
262 enlarge = [(xmax-xmin)/8,0.01].min
263 xmin -= enlarge; ymin -= enlarge
264 xmax += enlarge; ymax += enlarge
266 # check boundary is sane and area within defined
267 # see /config/application.yml
268 check_boundaries(xmin, ymin, xmax, ymax)
270 if POTLATCH_USE_SQL then
271 ways = sql_find_ways_in_area(xmin, ymin, xmax, ymax)
272 points = sql_find_pois_in_area(xmin, ymin, xmax, ymax)
273 relations = sql_find_relations_in_area_and_ways(xmin, ymin, xmax, ymax, ways.collect {|x| x[0]})
275 # find the way ids in an area
276 nodes_in_area = Node.bbox(ymin, xmin, ymax, xmax).visible.includes(:ways)
277 ways = nodes_in_area.inject([]) { |sum, node|
278 visible_ways = node.ways.select { |w| w.visible? }
279 sum + visible_ways.collect { |w| [w.id,w.version] }
283 # find the node ids in an area that aren't part of ways
284 nodes_not_used_in_area = nodes_in_area.select { |node| node.ways.empty? }
285 points = nodes_not_used_in_area.collect { |n| [n.id, n.lon, n.lat, n.tags, n.version] }.uniq
287 # find the relations used by those nodes and ways
288 relations = Relation.nodes(nodes_in_area.collect { |n| n.id }).visible +
289 Relation.ways(ways.collect { |w| w[0] }).visible
290 relations = relations.collect { |relation| [relation.id,relation.version] }.uniq
293 [0, '', ways, points, relations]
297 # Find deleted ways in current bounding box (similar to whichways, but ways
298 # with a deleted node only - not POIs or relations).
300 def whichways_deleted(xmin, ymin, xmax, ymax) #:doc:
301 amf_handle_error_with_timeout("'whichways_deleted'",nil,nil) do
302 enlarge = [(xmax-xmin)/8,0.01].min
303 xmin -= enlarge; ymin -= enlarge
304 xmax += enlarge; ymax += enlarge
306 # check boundary is sane and area within defined
307 # see /config/application.yml
308 check_boundaries(xmin, ymin, xmax, ymax)
310 nodes_in_area = Node.bbox(ymin, xmin, ymax, xmax).joins(:ways_via_history).where(:current_ways => { :visible => false })
311 way_ids = nodes_in_area.collect { |node| node.ways_via_history.invisible.collect { |way| way.id } }.flatten.uniq
317 # Get a way including nodes and tags.
318 # Returns the way id, a Potlatch-style array of points, a hash of tags, the version number, and the user ID.
320 def getway(wayid) #:doc:
321 amf_handle_error_with_timeout("'getway' #{wayid}" ,'way',wayid) do
322 if POTLATCH_USE_SQL then
323 points = sql_get_nodes_in_way(wayid)
324 tags = sql_get_tags_in_way(wayid)
325 version = sql_get_way_version(wayid)
326 uid = sql_get_way_user(wayid)
328 # Ideally we would do ":include => :nodes" here but if we do that
329 # then rails only seems to return the first copy of a node when a
330 # way includes a node more than once
331 way = Way.where(:id => wayid).preload(:nodes => :node_tags).first
333 # check case where way has been deleted or doesn't exist
334 return [-4, 'way', wayid] if way.nil? or !way.visible
336 points = way.nodes.collect do |node|
338 nodetags.delete('created_by')
339 [node.lon, node.lat, node.id, nodetags, node.version]
342 version = way.version
343 uid = way.changeset.user.id
346 [0, '', wayid, points, tags, version, uid]
350 # Get an old version of a way, and all constituent nodes.
352 # For undelete (version<0), always uses the most recent version of each node,
353 # even if it's moved. For revert (version >= 0), uses the node in existence
354 # at the time, generating a new id if it's still visible and has been moved/
360 # 2. array of points,
363 # 5. is this the current, visible version? (boolean)
365 def getway_old(id, timestamp) #:doc:
366 amf_handle_error_with_timeout("'getway_old' #{id}, #{timestamp}", 'way',id) do
369 old_way = OldWay.where(:visible => true, :way_id => id).order("version DESC").first
370 points = old_way.get_nodes_undelete unless old_way.nil?
374 timestamp = DateTime.strptime(timestamp.to_s, "%d %b %Y, %H:%M:%S")
375 old_way = OldWay.where("way_id = ? AND timestamp <= ?", id, timestamp).order("timestamp DESC").first
377 points = old_way.get_nodes_revert(timestamp)
379 return [-1, "Sorry, the way was deleted at that time - please revert to a previous version.", id]
383 # thrown by date parsing method. leave old_way as nil for
384 # the error handler below.
389 return [-1, "Sorry, the server could not find a way at that time.", id]
392 old_way.tags['history'] = "Retrieved from v#{old_way.version}"
393 return [0, '', id, points, old_way.tags, curway.version, (curway.version==old_way.version and curway.visible)]
398 # Find history of a way.
399 # Returns 'way', id, and an array of previous versions:
400 # - formerly [old_way.version, old_way.timestamp.strftime("%d %b %Y, %H:%M"), old_way.visible ? 1 : 0, user, uid]
401 # - now [timestamp,user,uid]
403 # Heuristic: Find all nodes that have ever been part of the way;
404 # get a list of their revision dates; add revision dates of the way;
405 # sort and collapse list (to within 2 seconds); trim all dates before the
406 # start date of the way.
408 def getway_history(wayid) #:doc:
410 # Find list of revision dates for way and all constituent nodes
413 Way.find(wayid).old_ways.collect do |a|
414 revdates.push(a.timestamp)
415 unless revusers.has_key?(a.timestamp.to_i) then revusers[a.timestamp.to_i]=change_user(a) end
417 Node.find(n).old_nodes.collect do |o|
418 revdates.push(o.timestamp)
419 unless revusers.has_key?(o.timestamp.to_i) then revusers[o.timestamp.to_i]=change_user(o) end
423 waycreated=revdates[0]
428 # Remove any dates (from nodes) before first revision date of way
429 revdates.delete_if { |d| d<waycreated }
430 # Remove any elements where 2 seconds doesn't elapse before next one
431 revdates.delete_if { |d| revdates.include?(d+1) or revdates.include?(d+2) }
432 # Collect all in one nested array
433 revdates.collect! {|d| [d.succ.strftime("%d %b %Y, %H:%M:%S")] + revusers[d.to_i] }
436 return ['way', wayid, revdates]
437 rescue ActiveRecord::RecordNotFound
438 return ['way', wayid, []]
442 # Find history of a node. Returns 'node', id, and an array of previous versions as above.
444 def getnode_history(nodeid) #:doc:
446 history = Node.find(nodeid).old_nodes.reverse.collect do |old_node|
447 [old_node.timestamp.succ.strftime("%d %b %Y, %H:%M:%S")] + change_user(old_node)
449 return ['node', nodeid, history]
450 rescue ActiveRecord::RecordNotFound
451 return ['node', nodeid, []]
456 user_object = obj.changeset.user
457 user = user_object.data_public? ? user_object.display_name : 'anonymous'
458 uid = user_object.data_public? ? user_object.id : 0
462 # Find GPS traces with specified name/id.
463 # Returns array listing GPXs, each one comprising id, name and description.
465 def findgpx(searchterm, usertoken)
466 amf_handle_error_with_timeout("'findgpx'" ,nil,nil) do
467 user = getuser(usertoken)
468 if !user then return -1,"You must be logged in to search for GPX traces." end
469 unless user.active_blocks.empty? then return -1,t('application.setup_user_auth.blocked') end
471 query = Trace.visible_to(user)
472 if searchterm.to_i > 0 then
473 query = query.where(:id => searchterm.to_i)
475 query = query.where("MATCH(name) AGAINST (?)", searchterm).limit(21)
477 gpxs = query.collect do |gpx|
478 [gpx.id, gpx.name, gpx.description]
484 # Get a relation with all tags and members.
490 # 4. list of members,
493 def getrelation(relid) #:doc:
494 amf_handle_error("'getrelation' #{relid}" ,'relation',relid) do
495 rel = Relation.where(:id => relid).first
497 return [-4, 'relation', relid] if rel.nil? or !rel.visible
498 [0, '', relid, rel.tags, rel.members, rel.version]
502 # Find relations with specified name/id.
503 # Returns array of relations, each in same form as getrelation.
505 def findrelations(searchterm)
507 if searchterm.to_i>0 then
508 rel = Relation.where(:id => searchterm.to_i).first
509 if rel and rel.visible then
510 rels.push([rel.id, rel.tags, rel.members, rel.version])
513 RelationTag.where("v like ?", "%#{searchterm}%").limit(11).each do |t|
514 if t.relation.visible then
515 rels.push([t.relation.id, t.relation.tags, t.relation.members, t.relation.version])
525 # 1. original relation id (unchanged),
526 # 2. new relation id,
529 def putrelation(renumberednodes, renumberedways, usertoken, changeset_id, version, relid, tags, members, visible) #:doc:
530 amf_handle_error("'putrelation' #{relid}" ,'relation',relid) do
531 user = getuser(usertoken)
532 if !user then return -1,"You are not logged in, so the relation could not be saved." end
533 unless user.active_blocks.empty? then return -1,t('application.setup_user_auth.blocked') end
534 if REQUIRE_TERMS_AGREED and user.terms_agreed.nil? then return -1,"You must accept the contributor terms before you can edit." end
536 if !tags_ok(tags) then return -1,"One of the tags is invalid. Linux users may need to upgrade to Flash Player 10.1." end
537 tags = strip_non_xml_chars tags
540 visible = (visible.to_i != 0)
544 Relation.transaction do
545 # create a new relation, or find the existing one
547 relation = Relation.find(relid)
549 # We always need a new node, based on the data that has been sent to us
550 new_relation = Relation.new
552 # check the members are all positive, and correctly type
557 mid = renumberednodes[mid] if m[0] == 'Node'
558 mid = renumberedways[mid] if m[0] == 'Way'
561 typedmembers << [m[0], mid, m[2]]
565 # assign new contents
566 new_relation.members = typedmembers
567 new_relation.tags = tags
568 new_relation.visible = visible
569 new_relation.changeset_id = changeset_id
570 new_relation.version = version
573 # We're creating the relation
574 new_relation.create_with_history(user)
576 # We're updating the relation
577 new_relation.id = relid
578 relation.update_from(new_relation, user)
580 # We're deleting the relation
581 new_relation.id = relid
582 relation.delete_with_history!(new_relation, user)
587 return [0, '', relid, new_relation.id, new_relation.version]
589 return [0, '', relid, relid, relation.version]
594 # Save a way to the database, including all nodes. Any nodes in the previous
595 # version and no longer used are deleted.
598 # 0. hash of renumbered nodes (added by amf_controller)
599 # 1. current user token (for authentication)
600 # 2. current changeset
603 # 5. list of nodes in way
604 # 6. hash of way tags
605 # 7. array of nodes to change (each one is [lon,lat,id,version,tags]),
606 # 8. hash of nodes to delete (id->version).
609 # 0. '0' (code for success),
611 # 2. original way id (unchanged),
613 # 4. hash of renumbered nodes (old id=>new id),
615 # 6. hash of node versions (node=>version)
617 def putway(renumberednodes, usertoken, changeset_id, wayversion, originalway, pointlist, attributes, nodes, deletednodes) #:doc:
618 amf_handle_error("'putway' #{originalway}" ,'way',originalway) do
621 user = getuser(usertoken)
622 if !user then return -1,"You are not logged in, so the way could not be saved." end
623 unless user.active_blocks.empty? then return -1,t('application.setup_user_auth.blocked') end
624 if REQUIRE_TERMS_AGREED and user.terms_agreed.nil? then return -1,"You must accept the contributor terms before you can edit." end
626 if pointlist.length < 2 then return -2,"Server error - way is only #{points.length} points long." end
628 if !tags_ok(attributes) then return -1,"One of the tags is invalid. Linux users may need to upgrade to Flash Player 10.1." end
629 attributes = strip_non_xml_chars attributes
631 originalway = originalway.to_i
632 pointlist.collect! {|a| a.to_i }
634 way=nil # this is returned, so scope it outside the transaction
638 # -- Update each changed node
646 if id == 0 then return -2,"Server error - node with id 0 found in way #{originalway}." end
647 if lat== 90 then return -2,"Server error - node with latitude -90 found in way #{originalway}." end
648 if renumberednodes[id] then id = renumberednodes[id] end
651 node.changeset_id = changeset_id
656 # fixup node tags in a way as well
657 if !tags_ok(node.tags) then return -1,"One of the tags is invalid. Linux users may need to upgrade to Flash Player 10.1." end
658 node.tags = strip_non_xml_chars node.tags
660 node.tags.delete('created_by')
661 node.version = version
663 # We're creating the node
664 node.create_with_history(user)
665 renumberednodes[id] = node.id
666 nodeversions[node.id] = node.version
668 # We're updating an existing node
669 previous=Node.find(id)
671 previous.update_from(node, user)
672 nodeversions[previous.id] = previous.version
676 # -- Save revised way
678 pointlist.collect! {|a|
679 renumberednodes[a] ? renumberednodes[a]:a
682 new_way.tags = attributes
683 new_way.nds = pointlist
684 new_way.changeset_id = changeset_id
685 new_way.version = wayversion
687 new_way.create_with_history(user)
688 way=new_way # so we can get way.id and way.version
690 way = Way.find(originalway)
691 if way.tags!=attributes or way.nds!=pointlist or !way.visible?
692 new_way.id=originalway
693 way.update_from(new_way, user)
697 # -- Delete unwanted nodes
699 deletednodes.each do |id,v|
700 node = Node.find(id.to_i)
702 new_node.changeset_id = changeset_id
703 new_node.version = v.to_i
704 new_node.id = id.to_i
706 node.delete_with_history!(new_node, user)
707 rescue OSM::APIPreconditionFailedError => ex
708 # We don't do anything here as the node is being used elsewhere
709 # and we don't want to delete it
715 [0, '', originalway, way.id, renumberednodes, way.version, nodeversions, deletednodes]
719 # Save POI to the database.
720 # Refuses save if the node has since become part of a way.
721 # Returns array with:
723 # 1. success message,
724 # 2. original node id (unchanged),
728 def putpoi(usertoken, changeset_id, version, id, lon, lat, tags, visible) #:doc:
729 amf_handle_error("'putpoi' #{id}", 'node',id) do
730 user = getuser(usertoken)
731 if !user then return -1,"You are not logged in, so the point could not be saved." end
732 unless user.active_blocks.empty? then return -1,t('application.setup_user_auth.blocked') end
733 if REQUIRE_TERMS_AGREED and user.terms_agreed.nil? then return -1,"You must accept the contributor terms before you can edit." end
735 if !tags_ok(tags) then return -1,"One of the tags is invalid. Linux users may need to upgrade to Flash Player 10.1." end
736 tags = strip_non_xml_chars tags
739 visible = (visible.to_i == 1)
747 unless node.ways.empty? then return -1,"Point #{id} has since become part of a way, so you cannot save it as a POI.",id,id,version end
750 # We always need a new node, based on the data that has been sent to us
753 new_node.changeset_id = changeset_id
754 new_node.version = version
759 # We're creating the node
760 new_node.create_with_history(user)
762 # We're updating the node
764 node.update_from(new_node, user)
766 # We're deleting the node
768 node.delete_with_history!(new_node, user)
774 return [0, '', id, new_node.id, new_node.version]
776 return [0, '', id, node.id, node.version]
781 # Read POI from database
782 # (only called on revert: POIs are usually read by whichways).
784 # Returns array of id, long, lat, hash of tags, (current) version.
786 def getpoi(id,timestamp) #:doc:
787 amf_handle_error("'getpoi' #{id}" ,'node',id) do
791 unless timestamp == ''
792 n = OldNode.where("id = ? AND timestamp <= ?", id, timestamp).order("timestamp DESC").first
796 return [0, '', n.id, n.lon, n.lat, n.tags, v]
798 return [-4, 'node', id]
803 # Delete way and all constituent nodes.
807 # * the id of the way to change
808 # * the version of the way that was downloaded
809 # * a hash of the id and versions of all the nodes that are in the way, if any
810 # of the nodes have been changed by someone else then, there is a problem!
811 # Returns 0 (success), unchanged way id, new way version, new node versions.
813 def deleteway(usertoken, changeset_id, way_id, way_version, deletednodes) #:doc:
814 amf_handle_error("'deleteway' #{way_id}" ,'way', way_id) do
815 user = getuser(usertoken)
816 unless user then return -1,"You are not logged in, so the way could not be deleted." end
817 unless user.active_blocks.empty? then return -1,t('application.setup_user_auth.blocked') end
818 if REQUIRE_TERMS_AGREED and user.terms_agreed.nil? then return -1,"You must accept the contributor terms before you can edit." end
822 old_way=nil # returned, so scope it outside the transaction
823 # Need a transaction so that if one item fails to delete, the whole delete fails.
828 old_way = Way.find(way_id)
830 delete_way.version = way_version
831 delete_way.changeset_id = changeset_id
832 delete_way.id = way_id
833 old_way.delete_with_history!(delete_way, user)
835 # -- Delete unwanted nodes
837 deletednodes.each do |id,v|
838 node = Node.find(id.to_i)
840 new_node.changeset_id = changeset_id
841 new_node.version = v.to_i
842 new_node.id = id.to_i
844 node.delete_with_history!(new_node, user)
845 nodeversions[node.id]=node.version
846 rescue OSM::APIPreconditionFailedError => ex
847 # We don't do anything with the exception as the node is in use
848 # elsewhere and we don't want to delete it
853 [0, '', way_id, old_way.version, nodeversions]
858 # ====================================================================
862 # (can also be of form user:pass)
863 # When we are writing to the api, we need the actual user model,
864 # not just the id, hence this abstraction
866 def getuser(token) #:doc:
867 if (token =~ /^(.+)\:(.+)$/) then
868 user = User.authenticate(:username => $1, :password => $2)
870 user = User.authenticate(:token => token)
876 Dir.glob("#{Rails.root}/config/potlatch/locales/*").collect { |f| File.basename(f, ".yml") }
880 # check that all key-value pairs are valid UTF-8.
883 return false unless UTF8.valid? k
884 return false unless UTF8.valid? v
890 # strip characters which are invalid in XML documents from the strings
891 # in the +tags+ hash.
892 def strip_non_xml_chars(tags)
896 new_k = k.delete "\000-\037", "^\011\012\015"
897 new_v = v.delete "\000-\037", "^\011\012\015"
898 new_tags[new_k] = new_v
904 # ====================================================================
905 # Alternative SQL queries for getway/whichways
907 def sql_find_ways_in_area(xmin,ymin,xmax,ymax)
909 SELECT DISTINCT current_ways.id AS wayid,current_ways.version AS version
910 FROM current_way_nodes
911 INNER JOIN current_nodes ON current_nodes.id=current_way_nodes.node_id
912 INNER JOIN current_ways ON current_ways.id =current_way_nodes.id
913 WHERE current_nodes.visible=TRUE
914 AND current_ways.visible=TRUE
915 AND #{OSM.sql_for_area(ymin, xmin, ymax, xmax, "current_nodes.")}
917 return ActiveRecord::Base.connection.select_all(sql).collect { |a| [a['wayid'].to_i,a['version'].to_i] }
920 def sql_find_pois_in_area(xmin,ymin,xmax,ymax)
923 SELECT current_nodes.id,current_nodes.latitude*0.0000001 AS lat,current_nodes.longitude*0.0000001 AS lon,current_nodes.version
925 LEFT OUTER JOIN current_way_nodes cwn ON cwn.node_id=current_nodes.id
926 WHERE current_nodes.visible=TRUE
928 AND #{OSM.sql_for_area(ymin, xmin, ymax, xmax, "current_nodes.")}
930 ActiveRecord::Base.connection.select_all(sql).each do |row|
932 ActiveRecord::Base.connection.select_all("SELECT k,v FROM current_node_tags WHERE id=#{row['id']}").each do |n|
933 poitags[n['k']]=n['v']
935 pois << [row['id'].to_i, row['lon'].to_f, row['lat'].to_f, poitags, row['version'].to_i]
940 def sql_find_relations_in_area_and_ways(xmin,ymin,xmax,ymax,way_ids)
941 # ** It would be more Potlatchy to get relations for nodes within ways
942 # during 'getway', not here
944 SELECT DISTINCT cr.id AS relid,cr.version AS version
945 FROM current_relations cr
946 INNER JOIN current_relation_members crm ON crm.id=cr.id
947 INNER JOIN current_nodes cn ON crm.member_id=cn.id AND crm.member_type='Node'
948 WHERE #{OSM.sql_for_area(ymin, xmin, ymax, xmax, "cn.")}
950 unless way_ids.empty?
953 SELECT DISTINCT cr.id AS relid,cr.version AS version
954 FROM current_relations cr
955 INNER JOIN current_relation_members crm ON crm.id=cr.id
956 WHERE crm.member_type='Way'
957 AND crm.member_id IN (#{way_ids.join(',')})
960 ActiveRecord::Base.connection.select_all(sql).collect { |a| [a['relid'].to_i,a['version'].to_i] }
963 def sql_get_nodes_in_way(wayid)
966 SELECT latitude*0.0000001 AS lat,longitude*0.0000001 AS lon,current_nodes.id,current_nodes.version
967 FROM current_way_nodes,current_nodes
968 WHERE current_way_nodes.id=#{wayid.to_i}
969 AND current_way_nodes.node_id=current_nodes.id
970 AND current_nodes.visible=TRUE
973 ActiveRecord::Base.connection.select_all(sql).each do |row|
975 ActiveRecord::Base.connection.select_all("SELECT k,v FROM current_node_tags WHERE id=#{row['id']}").each do |n|
976 nodetags[n['k']]=n['v']
978 nodetags.delete('created_by')
979 points << [row['lon'].to_f,row['lat'].to_f,row['id'].to_i,nodetags,row['version'].to_i]
984 def sql_get_tags_in_way(wayid)
986 ActiveRecord::Base.connection.select_all("SELECT k,v FROM current_way_tags WHERE id=#{wayid.to_i}").each do |row|
987 tags[row['k']]=row['v']
992 def sql_get_way_version(wayid)
993 ActiveRecord::Base.connection.select_one("SELECT version FROM current_ways WHERE id=#{wayid.to_i}")['version']
996 def sql_get_way_user(wayid)
997 ActiveRecord::Base.connection.select_one("SELECT user FROM current_ways,changesets WHERE current_ways.id=#{wayid.to_i} AND current_ways.changeset=changesets.id")['user']