1 class NotesController < ApplicationController
2 layout "site", :only => [:mine]
4 before_filter :check_api_readable
5 before_filter :authorize_web, :only => [:mine]
6 before_filter :setup_user_auth, :only => [:create, :comment]
7 before_filter :authorize, :only => [:close, :reopen, :destroy]
8 before_filter :require_moderator, :only => [:destroy]
9 before_filter :check_api_writable, :only => [:create, :comment, :close, :reopen, :destroy]
10 before_filter :require_allow_write_notes, :only => [:create, :comment, :close, :reopen, :destroy]
11 before_filter :set_locale
12 after_filter :compress_output
13 around_filter :api_call_handle_error, :api_call_timeout
16 # Return a list of notes in a given area
18 # Figure out the bbox - we prefer a bbox argument but also
19 # support the old, deprecated, method with four arguments
21 bbox = BoundingBox.from_bbox_params(params)
23 fail OSM::APIBadUserInput.new("No l was given") unless params[:l]
24 fail OSM::APIBadUserInput.new("No r was given") unless params[:r]
25 fail OSM::APIBadUserInput.new("No b was given") unless params[:b]
26 fail OSM::APIBadUserInput.new("No t was given") unless params[:t]
28 bbox = BoundingBox.from_lrbt_params(params)
31 # Get any conditions that need to be applied
32 notes = closed_condition(Note.all)
34 # Check that the boundaries are valid
37 # Check the the bounding box is not too big
38 bbox.check_size(MAX_NOTE_REQUEST_AREA)
40 # Find the notes we want to return
41 @notes = notes.bbox(bbox).order("updated_at DESC").limit(result_limit).preload(:comments)
44 respond_to do |format|
56 fail OSM::APIAccessDenied if Acl.no_note_comment(request.remote_ip)
58 # Check the arguments are sane
59 fail OSM::APIBadUserInput.new("No lat was given") unless params[:lat]
60 fail OSM::APIBadUserInput.new("No lon was given") unless params[:lon]
61 fail OSM::APIBadUserInput.new("No text was given") if params[:text].blank?
63 # Extract the arguments
64 lon = OSM.parse_float(params[:lon], OSM::APIBadUserInput, "lon was not a number")
65 lat = OSM.parse_float(params[:lat], OSM::APIBadUserInput, "lat was not a number")
66 comment = params[:text]
68 # Include in a transaction to ensure that there is always a note_comment for every note
71 @note = Note.create(:lat => lat, :lon => lon)
72 fail OSM::APIBadUserInput.new("The note is outside this world") unless @note.in_world?
77 # Add a comment to the note
78 add_comment(@note, comment, "opened")
81 # Return a copy of the new note
82 respond_to do |format|
83 format.xml { render :action => :show }
84 format.json { render :action => :show }
89 # Add a comment to an existing note
92 fail OSM::APIAccessDenied if Acl.no_note_comment(request.remote_ip)
94 # Check the arguments are sane
95 fail OSM::APIBadUserInput.new("No id was given") unless params[:id]
96 fail OSM::APIBadUserInput.new("No text was given") if params[:text].blank?
98 # Extract the arguments
100 comment = params[:text]
102 # Find the note and check it is valid
103 @note = Note.find(id)
104 fail OSM::APINotFoundError unless @note
105 fail OSM::APIAlreadyDeletedError.new("note", @note.id) unless @note.visible?
106 fail OSM::APINoteAlreadyClosedError.new(@note) if @note.closed?
108 # Add a comment to the note
110 add_comment(@note, comment, "commented")
113 # Return a copy of the updated note
114 respond_to do |format|
115 format.xml { render :action => :show }
116 format.json { render :action => :show }
123 # Check the arguments are sane
124 fail OSM::APIBadUserInput.new("No id was given") unless params[:id]
126 # Extract the arguments
127 id = params[:id].to_i
128 comment = params[:text]
130 # Find the note and check it is valid
131 @note = Note.find_by_id(id)
132 fail OSM::APINotFoundError unless @note
133 fail OSM::APIAlreadyDeletedError.new("note", @note.id) unless @note.visible?
134 fail OSM::APINoteAlreadyClosedError.new(@note) if @note.closed?
136 # Close the note and add a comment
140 add_comment(@note, comment, "closed")
143 # Return a copy of the updated note
144 respond_to do |format|
145 format.xml { render :action => :show }
146 format.json { render :action => :show }
153 # Check the arguments are sane
154 fail OSM::APIBadUserInput.new("No id was given") unless params[:id]
156 # Extract the arguments
157 id = params[:id].to_i
158 comment = params[:text]
160 # Find the note and check it is valid
161 @note = Note.find_by_id(id)
162 fail OSM::APINotFoundError unless @note
163 fail OSM::APIAlreadyDeletedError.new("note", @note.id) unless @note.visible? || @user.moderator?
164 fail OSM::APINoteAlreadyOpenError.new(@note) unless @note.closed? || !@note.visible?
166 # Reopen the note and add a comment
170 add_comment(@note, comment, "reopened")
173 # Return a copy of the updated note
174 respond_to do |format|
175 format.xml { render :action => :show }
176 format.json { render :action => :show }
181 # Get a feed of recent notes and comments
183 # Get any conditions that need to be applied
184 notes = closed_condition(Note.all)
188 bbox = BoundingBox.from_bbox_params(params)
190 bbox.check_boundaries
191 bbox.check_size(MAX_NOTE_REQUEST_AREA)
193 notes = notes.bbox(bbox)
196 # Find the comments we want to return
197 @comments = NoteComment.where(:note_id => notes).order("created_at DESC").limit(result_limit).preload(:note)
200 respond_to do |format|
208 # Check the arguments are sane
209 fail OSM::APIBadUserInput.new("No id was given") unless params[:id]
211 # Find the note and check it is valid
212 @note = Note.find(params[:id])
213 fail OSM::APINotFoundError unless @note
214 fail OSM::APIAlreadyDeletedError.new("note", @note.id) unless @note.visible?
217 respond_to do |format|
226 # Delete (hide) a note
228 # Check the arguments are sane
229 fail OSM::APIBadUserInput.new("No id was given") unless params[:id]
231 # Extract the arguments
232 id = params[:id].to_i
233 comment = params[:text]
235 # Find the note and check it is valid
236 @note = Note.find(id)
237 fail OSM::APINotFoundError unless @note
238 fail OSM::APIAlreadyDeletedError.new("note", @note.id) unless @note.visible?
240 # Mark the note as hidden
242 @note.status = "hidden"
245 add_comment(@note, comment, "hidden", false)
248 # Return a copy of the updated note
249 respond_to do |format|
250 format.xml { render :action => :show }
251 format.json { render :action => :show }
256 # Return a list of notes matching a given string
258 # Check the arguments are sane
259 fail OSM::APIBadUserInput.new("No query string was given") unless params[:q]
261 # Get any conditions that need to be applied
262 @notes = closed_condition(Note.all)
263 @notes = @notes.joins(:comments).where("to_tsvector('english', note_comments.body) @@ plainto_tsquery('english', ?)", params[:q])
265 # Find the notes we want to return
266 @notes = @notes.order("updated_at DESC").limit(result_limit).preload(:comments)
269 respond_to do |format|
270 format.rss { render :action => :index }
271 format.xml { render :action => :index }
272 format.json { render :action => :index }
273 format.gpx { render :action => :index }
278 # Display a list of notes by a specified user
280 if params[:display_name]
281 if @this_user = User.active.find_by_display_name(params[:display_name])
282 @title = t "note.mine.title", :user => @this_user.display_name
283 @heading = t "note.mine.heading", :user => @this_user.display_name
284 @description = t "note.mine.subheading", :user => render_to_string(:partial => "user", :object => @this_user)
285 @page = (params[:page] || 1).to_i
287 @notes = @this_user.notes.order("updated_at DESC, id").uniq.offset((@page - 1) * @page_size).limit(@page_size).preload(:comments => :author).to_a
289 @title = t "user.no_such_user.title"
290 @not_found_user = params[:display_name]
292 render :template => "user/no_such_user", :status => :not_found
299 #------------------------------------------------------------
300 # utility functions below.
301 #------------------------------------------------------------
304 # Render an OK response
306 if params[:format] == "js"
307 render :text => "osbResponse();", :content_type => "text/javascript"
309 render :text => "ok " + @note.id.to_s + "\n", :content_type => "text/plain" if @note
310 render :text => "ok\n", :content_type => "text/plain" unless @note
315 # Get the maximum number of results to return
318 if params[:limit].to_i > 0 && params[:limit].to_i <= 10000
321 fail OSM::APIBadUserInput.new("Note limit must be between 1 and 10000")
329 # Generate a condition to choose which bugs we want based
330 # on their status and the user's request parameters
331 def closed_condition(notes)
333 closed_since = params[:closed].to_i
339 notes = notes.where("status != 'hidden'")
340 elsif closed_since > 0
341 notes = notes.where("(status = 'open' OR (status = 'closed' AND closed_at > '#{Time.now - closed_since.days}'))")
343 notes = notes.where("status = 'open'")
350 # Add a comment to a note
351 def add_comment(note, text, event, notify = true)
352 attributes = { :visible => true, :event => event, :body => text }
355 attributes[:author_id] = @user.id
357 attributes[:author_ip] = request.remote_ip
360 comment = note.comments.create(attributes)
362 note.comments.map(&:author).uniq.each do |user|
363 if notify && user && user != @user
364 Notifier.note_comment_notification(comment, user).deliver_now