Sha256: b338fa2a1eabd52c842b66f8c6cf7d041fb0d21c386c2dddacb4081de52d1db0

Contents?: true

Size: 1.41 KB

Versions: 1

Compression:

Stored size: 1.41 KB

Contents

# frozen_string_literal: true

require "stashify/directory"

require "stashify/file/google/cloud/storage"

module Stashify
  class Directory
    module Google
      module Cloud
        class Storage < Stashify::Directory
          attr_reader :bucket

          def initialize(bucket:, path:)
            @bucket = bucket
            super(path: path)
          end

          def parent
            Stashify::Directory::Google::Cloud::Storage.new(
              bucket: @bucket,
              path: ::File.dirname(path),
            )
          end

          def files
            @bucket.files.map do |gcloud_file|
              find(::Regexp.last_match(1)) if gcloud_file.name =~ %r{^#{Regexp.escape(path)}/([^/]*)(/.*)?$}
            end.compact
          end

          def directory?(name)
            path = path_of(name)
            !@bucket.file(path) && !@bucket.files(prefix: path).empty?
          end

          def directory(name)
            Stashify::Directory::Google::Cloud::Storage.new(bucket: @bucket, path: path_of(name))
          end

          def exists?(name)
            @bucket.file(path_of(name))
          end

          def file(name)
            Stashify::File::Google::Cloud::Storage.new(bucket: @bucket, path: path_of(name))
          end

          def ==(other)
            self.class == other.class && @bucket == other.bucket && path == other.path
          end
        end
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
stashify-google-cloud-storage-3.1.0 lib/stashify/directory/google/cloud/storage.rb