Sha256: 29f30b0f59e5fc8f25e9d8f934a682e46736036049aa6ec3861a04e4a939dba3

Contents?: true

Size: 1.59 KB

Versions: 11

Compression:

Stored size: 1.59 KB

Contents

class DocumentsController < ApplicationController
  include SocialStream::Controllers::Objects

  before_filter :profile_subject!, :only => :index

  def index
    respond_to do |format|
      format.html {
        collection

        if params[:no_layout].present?
          render :layout => false
        end
      }

      format.json { render :json => collection }
    end
  end
  
  def create
    super do |format|
      format.json { render :json => resource }
      format.all {redirect_to request.referer || home_path}
    end
  end

  def update
    update! do |success, failure|
      failure.html { render :action => :show }
      success.html { render :action => :show }
    end
  end

  def show
    respond_to do |format|
      format.json {render :json => resource }
      format.html {render :action => :show}
      format.any {
        path = resource.file.path(params[:style] || params[:format])

        head(:not_found) and return unless File.exist?(path)

        send_file path,
                 :filename => resource.file_file_name,
                 :disposition => "inline",
                 :type => request.format
      }
    end
  end

  #TODO: we have to add the mimetype as in videos_controller
  def download
    path = @document.file.path(params[:style])

    head(:not_found) and return unless File.exist?(path)

    send_file_options = {
      :filename => @document.file_file_name,
      :type => @document.file_content_type
    }

    send_file(path, send_file_options)
  end

  private

  class << self
    def index_object_type
      [ :Audio, :Video, :Picture, :Document ]
    end
  end
end

Version data entries

11 entries across 11 versions & 2 rubygems

Version Path
social_stream-0.29.0 documents/app/controllers/documents_controller.rb
social_stream-documents-0.17.0 app/controllers/documents_controller.rb
social_stream-0.28.4 documents/app/controllers/documents_controller.rb
social_stream-documents-0.16.1 app/controllers/documents_controller.rb
social_stream-0.28.1 documents/app/controllers/documents_controller.rb
social_stream-0.28.0 documents/app/controllers/documents_controller.rb
social_stream-documents-0.16.0 app/controllers/documents_controller.rb
social_stream-0.27.3 documents/app/controllers/documents_controller.rb
social_stream-0.27.2 documents/app/controllers/documents_controller.rb
social_stream-0.27.1 documents/app/controllers/documents_controller.rb
social_stream-documents-0.15.1 app/controllers/documents_controller.rb