- # Check the arguments are sane
- raise OSM::APIBadUserInput, "No id was given" unless params[:id]
-
- # Find the note and check it is valid
- @note = Note.find(params[:id])
- raise OSM::APINotFoundError unless @note
- raise OSM::APIAlreadyDeletedError.new("note", @note.id) unless @note.visible? || current_user&.moderator?
-
- # Render the result
- respond_to do |format|
- format.xml
- format.rss
- format.json
- format.gpx
- end
- end
-
- ##
- # Delete (hide) a note
- def destroy
- # Check the arguments are sane
- raise OSM::APIBadUserInput, "No id was given" unless params[:id]
-
- # Extract the arguments
- id = params[:id].to_i
- comment = params[:text]
-
- # Find the note and check it is valid
- @note = Note.find(id)
- raise OSM::APINotFoundError unless @note
- raise OSM::APIAlreadyDeletedError.new("note", @note.id) unless @note.visible?
-
- # Mark the note as hidden
- Note.transaction do
- @note.status = "hidden"
- @note.save
-
- add_comment(@note, comment, "hidden", false)
- end
-
- # Return a copy of the updated note
- respond_to do |format|
- format.xml { render :action => :show }
- format.json { render :action => :show }
- end
- end
-
- ##
- # Return a list of notes matching a given string
- def search
- # Filter either by the name or the id of the user
- if params[:display_name]
- @user = User.find_by(:display_name => params[:display_name])
- elsif params[:id]
- @user = User.find_by(:id => params[:id])
- end
-
- if @user
- @notes = @user.notes
- @notes = closed_condition(@notes)
- elsif params[:display_name] || params[:id]
- # Return an error message because obviously the user could not be found
- raise OSM::APIBadUserInput, "The user could not be found"
- else
- @notes = closed_condition(Note.all)
- end
-
- # Filter by a given string
- if params[:q]
- @notes = @notes.joins(:comments)
- if @user
- @notes = @notes.where("to_tsvector('english', comments_notes.body) @@ plainto_tsquery('english', ?)", params[:q])
- else
- @notes = @notes.where("to_tsvector('english', note_comments.body) @@ plainto_tsquery('english', ?)", params[:q])
- end
- end
-
- # Filter by a given start date and an optional end date
- if params[:from]
- begin
- from = Time.parse(params[:from])
- to = if params[:to]
- Time.parse(params[:to])
- else
- Time.now
- end
- rescue ArgumentError
- # return a more generic error so that everybody knows what is wrong
- raise OSM::APIBadUserInput, "The date is in a wrong format"
- end
-
- @notes = @notes.where("(created_at > '#{from}' AND created_at < '#{to}')")
- end
-
- # Find the notes we want to return
- @notes = @notes.order("updated_at DESC").distinct.limit(result_limit).preload(:comments)
-
- # Render the result
- respond_to do |format|
- format.rss { render :action => :index }
- format.xml { render :action => :index }
- format.json { render :action => :index }
- format.gpx { render :action => :index }
- end
- end
-
- ##
- # Display a list of notes by a specified user
- def mine
- if params[:display_name]
- if @user = User.active.find_by(:display_name => params[:display_name])
- @params = params.permit(:display_name)
- @title = t "notes.mine.title", :user => @user.display_name
- @heading = t "notes.mine.heading", :user => @user.display_name
- @description = t "notes.mine.subheading", :user => render_to_string(:partial => "user", :object => @user)
- @page = (params[:page] || 1).to_i
- @page_size = 10
- @notes = @user.notes
- @notes = @notes.visible unless current_user&.moderator?
- @notes = @notes.order("updated_at DESC, id").distinct.offset((@page - 1) * @page_size).limit(@page_size).preload(:comments => :author).to_a
- else
- @title = t "users.no_such_user.title"
- @not_found_user = params[:display_name]
-
- render :template => "users/no_such_user", :status => :not_found
- end
- end
- end