Sha256: 3f1814c36f20362d3db5bdfe0ce5a23aadf6b6844365988541b4ba8a1bb61712

Contents?: true

Size: 1 KB

Versions: 10

Compression:

Stored size: 1 KB

Contents

module CarrierWave
  module Uploader
    module Url
      extend ActiveSupport::Concern
      include CarrierWave::Uploader::Configuration
      include CarrierWave::Utilities::Uri

      ##
      # === Parameters
      #
      # [Hash] optional, the query params (only AWS)
      #
      # === Returns
      #
      # [String] the location where this file is accessible via a url
      #
      def url(options = {})
        if file.respond_to?(:url) and not (tmp_url = file.url).blank?
          file.method(:url).arity == 0 ? tmp_url : file.url(options)
        elsif file.respond_to?(:path)
          path = encode_path(file.path.sub(File.expand_path(root), ''))

          if host = asset_host
            if host.respond_to? :call
              "#{host.call(file)}#{path}"
            else
              "#{host}#{path}"
            end
          else
            (base_path || "") + path
          end
        end
      end

      def to_s
        url || ''
      end

    end # Url
  end # Uploader
end # CarrierWave

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
carrierwave-1.3.4 lib/carrierwave/uploader/url.rb
carrierwave-1.3.3 lib/carrierwave/uploader/url.rb
carrierwave-1.3.2 lib/carrierwave/uploader/url.rb
carrierwave-1.3.1 lib/carrierwave/uploader/url.rb
carrierwave-1.3.0 lib/carrierwave/uploader/url.rb
carrierwave-1.2.3 lib/carrierwave/uploader/url.rb
carrierwave-1.2.2 lib/carrierwave/uploader/url.rb
carrierwave-1.2.1 lib/carrierwave/uploader/url.rb
carrierwave-1.2.0 lib/carrierwave/uploader/url.rb
carrierwave-1.1.0 lib/carrierwave/uploader/url.rb