Sha256: 56af0c786bd2b502a3e0c5f4e89c11700e1599979f3202e72173c636e2162f4d
Contents?: true
Size: 1.12 KB
Versions: 1
Compression:
Stored size: 1.12 KB
Contents
# frozen_string_literal: true require "stashify/directory" require "stashify/file/aws/s3" module Stashify class Directory module AWS class S3 < Stashify::Directory attr_reader :bucket, :path def initialize(bucket:, path:) @bucket = bucket super(path: path) end def files @bucket.objects.map do |object| key = object.key file(::File.basename(key)) if key =~ %r{^#{Regexp.escape(path)}/([^/]*)(/.*)?$} end.compact end def ==(other) self.class == other.class && @bucket == other.bucket && path == other.path end private def directory?(name) @bucket.objects(prefix: path_of(name, "")).count.positive? end def directory(name) Stashify::Directory::AWS::S3.new(bucket: @bucket, path: path_of(name)) end def file?(name) @bucket.object(::File.join(path, name)).exists? end def file(name) Stashify::File::AWS::S3.new(bucket: @bucket, path: ::File.join(path, name)) end end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
stashify-aws-s3-1.0.0 | lib/stashify/directory/aws/s3.rb |