Sha256: a66a2cb4f25367247a594976ff5236a84f140792d3d1eeee76a4532304f85573

Contents?: true

Size: 1.88 KB

Versions: 16

Compression:

Stored size: 1.88 KB

Contents

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

  before_filter :profile_subject!, :only => :index

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

        render collection if request.xhr?
      }

      format.json { render :json => collection }
    end
  end
  
  def create
    super do |format|
      format.json { render :json => resource }
      format.js
      format.all {
        if resource.new_record?
          render action: :new
        else
          redirect = 
            ( request.referer.present? ?
              ( request.referer =~ /new$/ ?
                resource :
                request.referer ) :
              home_path )

          redirect_to redirect
        end
      }
    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.html {render :action => :show}
      format.json {render :json => resource }
      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

  def allowed_params
    [ :file ]
  end

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

Version data entries

16 entries across 16 versions & 2 rubygems

Version Path
social_stream-2.2.1 documents/app/controllers/documents_controller.rb
social_stream-2.2.0 documents/app/controllers/documents_controller.rb
social_stream-documents-2.2.0 app/controllers/documents_controller.rb
social_stream-2.1.1 documents/app/controllers/documents_controller.rb
social_stream-2.1.0 documents/app/controllers/documents_controller.rb
social_stream-documents-2.1.0 app/controllers/documents_controller.rb
social_stream-2.0.4 documents/app/controllers/documents_controller.rb
social_stream-documents-2.0.4 app/controllers/documents_controller.rb
social_stream-2.0.3 documents/app/controllers/documents_controller.rb
social_stream-documents-2.0.3 app/controllers/documents_controller.rb
social_stream-2.0.2 documents/app/controllers/documents_controller.rb
social_stream-documents-2.0.2 app/controllers/documents_controller.rb
social_stream-2.0.1 documents/app/controllers/documents_controller.rb
social_stream-documents-2.0.1 app/controllers/documents_controller.rb
social_stream-2.0.0 documents/app/controllers/documents_controller.rb
social_stream-documents-2.0.0 app/controllers/documents_controller.rb