74 lines
1.9 KiB
Ruby
74 lines
1.9 KiB
Ruby
class DocumentsController < ApplicationController
|
|
before_action :authenticate_user!
|
|
before_filter :find_documentable, except: :destroy
|
|
before_filter :prepare_new_document, only: :new
|
|
before_filter :prepare_document_for_creation, only: :create
|
|
|
|
before_filter :validate_upload, only: :upload
|
|
load_and_authorize_resource :except => [:upload]
|
|
skip_authorization_check :only => [:upload]
|
|
|
|
def preload
|
|
end
|
|
|
|
def new
|
|
end
|
|
|
|
def create
|
|
if @document.save
|
|
flash[:notice] = t "documents.actions.create.notice"
|
|
redirect_to params[:from]
|
|
else
|
|
flash[:alert] = t "documents.actions.create.alert"
|
|
render :new
|
|
end
|
|
end
|
|
|
|
def destroy
|
|
if @document.destroy
|
|
flash[:notice] = t "documents.actions.destroy.notice"
|
|
else
|
|
flash[:alert] = t "documents.actions.destroy.alert"
|
|
end
|
|
redirect_to params[:from]
|
|
end
|
|
|
|
def upload
|
|
document = Document.new(documentable: @documentable, attachment: params[:file].tempfile, title: "faketitle", user: current_user )
|
|
debugger
|
|
# We only are intested in attachment validators. We set some fake data to get attachment errors only
|
|
if document.valid?
|
|
# TODO: Store file on tmp cache
|
|
msg = { status: 200, msg: "OK" }
|
|
else
|
|
msg = { status: 422, msg: document.errors[:attachment].join(', ') }
|
|
end
|
|
render :json => msg
|
|
end
|
|
|
|
private
|
|
|
|
def find_documentable
|
|
@documentable = params[:documentable_type].constantize.find(params[:documentable_id])
|
|
end
|
|
|
|
def prepare_new_document
|
|
@document = Document.new(documentable: @documentable, user_id: @documentable.author_id)
|
|
end
|
|
|
|
def prepare_document_for_creation
|
|
@document = Document.new(document_params)
|
|
@document.documentable = @documentable
|
|
@document.user = current_user
|
|
end
|
|
|
|
def document_params
|
|
params.require(:document).permit(:title, :documentable_type, :documentable_id, :attachment)
|
|
end
|
|
|
|
def validate_upload
|
|
if @documentable.present?
|
|
end
|
|
end
|
|
end
|