Sha256: 48fef6838c0e1597f8db7f08bf5cecf8155c7a5c0dd7a06a70ded95cf4081198
Contents?: true
Size: 1.37 KB
Versions: 1
Compression:
Stored size: 1.37 KB
Contents
# frozen_string_literal: true module CarrierWave module Storage class AliyunFile < CarrierWave::SanitizedFile attr_reader :path def initialize(uploader, base, path) @uploader = uploader @path = URI.encode(path) @base = base end def read object, body = bucket.get(@path) @headers = object.headers body end def delete bucket.delete(@path) true rescue => e # If the file's not there, don't panic puts "carrierwave-aliyun delete file failed: #{e}" nil end ## # Generate file url # params # :thumb - Aliyun OSS Image Processor option, etc: @100w_200h_95q # def url(opts = {}) if bucket.mode == :private bucket.private_get_url(@path, opts) else bucket.path_to_url(@path, opts) end end def content_type headers[:content_type] end def content_type=(new_content_type) headers[:content_type] = new_content_type end def store(file, headers = {}) bucket.put(@path, file, headers) end def headers @headers ||= {} end private def bucket return @bucket if defined? @bucket @bucket = CarrierWave::Aliyun::Bucket.new(@uploader) end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
carrierwave-aliyun-1.0.0 | lib/carrierwave/storage/aliyun_file.rb |