Sha256: 2736f81f595fa246b6142c08605339d66f0b5caf0fa97e40c40708d8fbd5e59e

Contents?: true

Size: 1012 Bytes

Versions: 1

Compression:

Stored size: 1012 Bytes

Contents

module MobileWorkflow
  module S3Storable
    if Object.const_defined?("Aws::S3")
      extend ActiveSupport::Concern
      
      def binary_urls(object)
        return unless params["binaries"]
    
        params["binaries"].collect do |binary|
          property = binary["identifier"].split('/')[0] # i.e. image/jpg --> image, video/mp4 --> video
      
          {
            "identifier" => binary["identifier"],
            "url" => presigned_url("#{object.class.name.underscore}/#{object.id}/#{property}"),
            "method" => "PUT"
          }
        end
      end
  
      private
      def presigned_url(key)
        presigner.presigned_url(:put_object, bucket: ENV['AWS_BUCKET_NAME'], key: key, metadata: {})
      end
  
      def presigner
        Aws::S3::Presigner.new(client: s3_client)
      end
  
      def s3_client
        Aws::S3::Client.new(region: ENV['AWS_REGION'], access_key_id: ENV['AWS_ACCESS_ID'], secret_access_key: ENV['AWS_SECRET_KEY'])
      end
      
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
mobile_workflow-0.1.0 app/controllers/concerns/mobile_workflow/s3_storable.rb