Files
danbooru/app/controllers/notes_controller.rb
evazion 3f7e05316d api: refactor default options for xml responses.
In xml responses, if the result is an empty array we want the response
to look like this:

   <posts type="array"/>

not like this (the default):

   <nil-classes type="array"/>

This refactors controllers so that this is done automatically instead of
having to manually call `@things.to_xml(root: "things")` everywhere. We
do this by overriding the behavior of `respond_with` in `ApplicationResponder`
to set the `root` option by default in xml responses.
2019-09-08 15:32:31 -05:00

70 lines
1.8 KiB
Ruby

class NotesController < ApplicationController
respond_to :html, :xml, :json, :js
before_action :member_only, :except => [:index, :show, :search]
def search
end
def index
@notes = Note.includes(:creator).search(search_params).paginate(params[:page], :limit => params[:limit], :search_count => params[:search])
@notes = @notes.includes(:creator) if request.format.html?
respond_with(@notes)
end
def show
@note = Note.find(params[:id])
respond_with(@note) do |format|
format.html { redirect_to(post_path(@note.post, anchor: "note-#{@note.id}")) }
end
end
def create
@note = Note.create(note_params(:create))
respond_with(@note) do |fmt|
fmt.json do
if @note.errors.any?
render :json => {:success => false, :reasons => @note.errors.full_messages}.to_json, :status => 422
else
render :json => @note.to_json(:methods => [:html_id])
end
end
end
end
def update
@note = Note.find(params[:id])
@note.update(note_params(:update))
respond_with(@note) do |format|
format.json do
if @note.errors.any?
render :json => {:success => false, :reasons => @note.errors.full_messages}.to_json, :status => 422
else
render :json => @note.to_json
end
end
end
end
def destroy
@note = Note.find(params[:id])
@note.update(is_active: false)
respond_with(@note)
end
def revert
@note = Note.find(params[:id])
@version = @note.versions.find(params[:version_id])
@note.revert_to!(@version)
respond_with(@note)
end
private
def note_params(context)
permitted_params = %i[x y width height body]
permitted_params += %i[post_id html_id] if context == :create
params.require(:note).permit(permitted_params)
end
end