Sha256: bc96e5f99a96e38f694d5e469136a934259d73b429195d840fc9930ccd4d65cd

Contents?: true

Size: 1.37 KB

Versions: 2

Compression:

Stored size: 1.37 KB

Contents

class S3UploadsController < ApplicationController
  # GET /source_files
  # GET /source_files.json
  def index
    @source_files = SourceFile.all

    respond_to do |format|
      format.html # index.html.erb
      format.json { render json: @source_files.map{|sf| sf.to_jq_upload } }
    end
  end

  # POST /source_files
  # POST /source_files.json
  def create
    @source_file = SourceFile.new(params[:source_file])
    respond_to do |format|
      if @source_file.save
        format.html {
          render :json => @source_file.to_jq_upload,
          :content_type => 'text/html',
          :layout => false
        }
        format.json { render json: @source_file.to_jq_upload, status: :created }
      else
        format.html { render action: "new" }
        format.json { render json: @source_file.errors, status: :unprocessable_entity }
      end
    end
  end

  # DELETE /source_files/1
  # DELETE /source_files/1.json
  def destroy
    @source_file = SourceFile.find(params[:id])
    @source_file.destroy

    respond_to do |format|
      format.html { redirect_to source_files_url }
      format.json { head :no_content }
      format.xml { head :no_content }
    end
  end

  # used for s3_uploader
  def generate_key
    uid = SecureRandom.uuid.gsub(/-/,'')

    render json: {
      key: "uploads/#{uid}/#{params[:filename]}",
      success_action_redirect: "/"
    }
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
s3_cors_fileupload-0.1.5 lib/generators/s3_cors_fileupload/install/templates/s3_uploads_controller.rb
s3_cors_fileupload-0.1.4 lib/generators/s3_cors_fileupload/install/templates/s3_uploads_controller.rb