Sha256: 15528ff1230b6025d4e86e3b760e26addf701986b4f5e07fe8ffa09d8fa99aad

Contents?: true

Size: 1.7 KB

Versions: 1

Compression:

Stored size: 1.7 KB

Contents

require 'virtus'
require 'pathname'
require 'digest/md5'
require 'multi_sync/mixins/log_helper'

module MultiSync
  class Resource
    include Comparable
    include Virtus.model
    include MultiSync::Mixins::LogHelper

    attribute :path_with_root, Pathname
    attribute :path_without_root, Pathname

    attribute :etag, String, default: :determine_etag, lazy: true
    attribute :mtime, Time, default: :determine_mtime, lazy: true
    attribute :content_length, Numeric, default: :determine_content_length, lazy: true
    attribute :content_type, String, default: :determine_content_type, lazy: true
    attribute :digest, String, default: ''

    AWS_ATTRIBUTES = [{
      name: :storage_class,
      type: String,
      default: 'STANDARD'
    }, {
      name: :acl,
      type: String,
      default: 'public-read'
    }, {
      name: :expires,
      type: String,
      required: false
    }, {
      name: :cache_control,
      type: String,
      required: false
    }, {
      name: :encryption,
      type: String,
      required: false
    }]

    AWS_ATTRIBUTES.each do |attribute_hash|
      def_attribute_hash = {}
      def_attribute_hash[:default] = attribute_hash[:default] unless attribute_hash[:default].nil?
      def_attribute_hash[:required] = attribute_hash[:required] unless attribute_hash[:required].nil?
      send(:attribute, attribute_hash[:name], attribute_hash[:type], def_attribute_hash)
    end

    def hash
      path_without_root.hash
    end

    def <=>(other)
      path_without_root <=> other.path_without_root
    end

    def ==(other)
      path_without_root == other.path_without_root
    end
    alias_method :eql?, :==

    def matching_etag?(other)
      etag == other.etag
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
multi_sync-0.0.2 lib/multi_sync/resource.rb