X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/00375024263970a43ea7d39e3c65dfd0f32e8869..0a3aba7f891ba55a5500f02907cec15d44554eae:/app/controllers/notes_controller.rb diff --git a/app/controllers/notes_controller.rb b/app/controllers/notes_controller.rb index fe3615d7a..5a0934247 100644 --- a/app/controllers/notes_controller.rb +++ b/app/controllers/notes_controller.rb @@ -3,8 +3,8 @@ class NotesController < ApplicationController layout 'site', :only => [:mine] before_filter :check_api_readable - before_filter :authorize_web, :only => [:create, :close, :update, :delete, :mine] - before_filter :check_api_writable, :only => [:create, :close, :update, :delete] + before_filter :authorize_web, :only => [:create, :comment, :close, :destroy, :mine] + before_filter :check_api_writable, :only => [:create, :comment, :close, :destroy] before_filter :set_locale, :only => [:mine] after_filter :compress_output around_filter :api_call_handle_error, :api_call_timeout @@ -66,20 +66,6 @@ class NotesController < ApplicationController @note = Note.create(:lat => lat, :lon => lon) raise OSM::APIBadUserInput.new("The note is outside this world") unless @note.in_world? - #TODO: move this into a helper function - begin - url = "http://nominatim.openstreetmap.org/reverse?lat=" + lat.to_s + "&lon=" + lon.to_s + "&zoom=16" - response = REXML::Document.new(Net::HTTP.get(URI.parse(url))) - - if result = response.get_text("reversegeocode/result") - @note.nearby_place = result.to_s - else - @note.nearby_place = "unknown" - end - rescue Exception => err - @note.nearby_place = "unknown" - end - # Save the note @note.save! @@ -87,8 +73,11 @@ class NotesController < ApplicationController add_comment(@note, comment, name, "opened") end - # Send an OK response - render_ok + # Return a copy of the new note + respond_to do |format| + format.xml { render :action => :show } + format.json { render :action => :show } + end end ## @@ -104,17 +93,20 @@ class NotesController < ApplicationController name = params[:name] or "NoName" # Find the note and check it is valid - note = Note.find(id) - raise OSM::APINotFoundError unless note - raise OSM::APIAlreadyDeletedError unless note.visible? + @note = Note.find(id) + raise OSM::APINotFoundError unless @note + raise OSM::APIAlreadyDeletedError unless @note.visible? # Add a comment to the note Note.transaction do - add_comment(note, comment, name, "commented") + add_comment(@note, comment, name, "commented") end - # Send an OK response - render_ok + # Return a copy of the updated note + respond_to do |format| + format.xml { render :action => :show } + format.json { render :action => :show } + end end ## @@ -125,22 +117,26 @@ class NotesController < ApplicationController # Extract the arguments id = params[:id].to_i + comment = params[:text] name = params[:name] # Find the note and check it is valid - note = Note.find_by_id(id) - raise OSM::APINotFoundError unless note - raise OSM::APIAlreadyDeletedError unless note.visible? + @note = Note.find_by_id(id) + raise OSM::APINotFoundError unless @note + raise OSM::APIAlreadyDeletedError unless @note.visible? # Close the note and add a comment Note.transaction do - note.close + @note.close - add_comment(note, nil, name, "closed") + add_comment(@note, comment, name, "closed") end - # Send an OK response - render_ok + # Return a copy of the updated note + respond_to do |format| + format.xml { render :action => :show } + format.json { render :action => :show } + end end ## @@ -319,11 +315,11 @@ private attributes[:author_name] = name + " (a)" end - note.comments.create(attributes, :without_protection => true) + comment = note.comments.create(attributes, :without_protection => true) note.comments.map { |c| c.author }.uniq.each do |user| if user and user != @user - Notifier.deliver_note_comment_notification(comment, user) + Notifier.note_comment_notification(comment, user).deliver end end end