Sha256: d85d5ac61957f5be236929a3170bd59e84419118017e8178dee3f6d74ec32595

Contents?: true

Size: 1.24 KB

Versions: 3

Compression:

Stored size: 1.24 KB

Contents

class Backend::AssetsController < Backend::BaseController
  include Concerns::PaginationController

  before_action :find_model, only: [:show, :edit, :update, :destroy]
  before_action -> { breadcrumb.add t('b.files'), backend_assets_path }

  def index
    @search = Asset.ransack params[:q]
    @assets = @search.result(distinct: true).order('id DESC').page(page_number).per_page(per_page)
  end

  def show
    send_data(
      File.open(@model.filename.path).read,
      filename: @model.read_attribute(:filename),
      type: @model.content_type
    )
  end

  def new
    @model = Asset.new
  end

  def create
    @model = Asset.new allowed_params

    if @model.save
      redirect_to backend_assets_path, notice: translate_notice(:added, :file)
    else
      render :new
    end
  end

  def update
    if @model.update_attributes allowed_params
      redirect_to backend_assets_path, notice: translate_notice(:edited, :file)
    else
      render :edit
    end
  end

  def destroy
    @model.destroy if @model.deletable?
    redirect_to backend_assets_path, notice: translate_notice(:deleted, :file)
  end

  private

  def find_model
    @model = Asset.find params[:id]
  end

  def allowed_params
    params[:asset].permit(:filename, :description)
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
udongo-7.6.2 app/controllers/backend/assets_controller.rb
udongo-7.6.1 app/controllers/backend/assets_controller.rb
udongo-7.6.0 app/controllers/backend/assets_controller.rb