Sha256: 318f7a0e179617c90c981d177174bafe88a237f6e074ee77ba39b407bf7c4539

Contents?: true

Size: 729 Bytes

Versions: 6

Compression:

Stored size: 729 Bytes

Contents

module Pageflow
  class FilesController < Pageflow::ApplicationController
    include PublicHttpsMode
    include EntryPasswordProtection

    before_filter :check_public_https_mode

    def show
      respond_to do |format|
        format.html do
          entry = PublishedEntry.find(params[:entry_id], entry_request_scope)
          @file = entry.files(file_type.model).find(params[:id])

          check_entry_password_protection(entry)
        end
      end
    end

    protected

    def file_type
      @file_type ||= Pageflow.config.file_types.find_by_collection_name!(params[:collection_name])
    end

    def entry_request_scope
      Pageflow.config.public_entry_request_scope.call(Entry, request)
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
pageflow-0.11.4 app/controllers/pageflow/files_controller.rb
pageflow-0.11.3 app/controllers/pageflow/files_controller.rb
pageflow-0.11.2 app/controllers/pageflow/files_controller.rb
pageflow-0.11.1 app/controllers/pageflow/files_controller.rb
pageflow-0.11.0 app/controllers/pageflow/files_controller.rb
pageflow-0.10.0 app/controllers/pageflow/files_controller.rb