Sha256: 437f0d25e019a0ce7d29f213ed353517052f487ff49e18bf0a2f96c0d2610cf8

Contents?: true

Size: 1.22 KB

Versions: 8

Compression:

Stored size: 1.22 KB

Contents

require 'fog/model'

module Fog
  module Local
    class Storage

      class File < Fog::Model

        identity  :key,             :aliases => 'Key'

        attr_accessor :body
        attribute :content_length,  :aliases => 'Content-Length'
        # attribute :content_type,    :aliases => 'Content-Type'
        attribute :last_modified,   :aliases => 'Last-Modified'

        def body
          @body ||= if last_modified
            collection.get(identity).body
          else
            ''
          end
        end

        def directory
          @directory
        end

        def destroy
          requires :directory, :key
          ::File.delete(path)
          true
        end

        def save(options = {})
          requires :body, :directory, :key
          file = ::File.new(path, 'w')
          file.write(body)
          file.close
          merge_attributes(
            :content_length => ::File.size(path),
            :last_modified  => ::File.mtime(path)
          )
          true
        end

        private

        def directory=(new_directory)
          @directory = new_directory
        end

        def path
          connection.path_to(::File.join(directory.key, key))
        end

      end

    end
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
fog-0.3.7 lib/fog/local/models/storage/file.rb
fog-0.3.6 lib/fog/local/models/storage/file.rb
fog-0.3.5 lib/fog/local/models/storage/file.rb
fog-0.3.4 lib/fog/local/models/storage/file.rb
fog-0.3.3 lib/fog/local/models/storage/file.rb
fog-0.3.2 lib/fog/local/models/storage/file.rb
fog-0.3.1 lib/fog/local/models/storage/file.rb
fog-0.3.0 lib/fog/local/models/storage/file.rb