Class: Valkyrie::Storage::Disk::BucketedStorage

Inherits:
Object
  • Object
show all
Defined in:
lib/valkyrie/storage/disk.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(base_path:) ⇒ BucketedStorage

Returns a new instance of BucketedStorage.



53
54
55
# File 'lib/valkyrie/storage/disk.rb', line 53

def initialize(base_path:)
  @base_path = base_path
end

Instance Attribute Details

#base_pathObject (readonly)

Returns the value of attribute base_path.



52
53
54
# File 'lib/valkyrie/storage/disk.rb', line 52

def base_path
  @base_path
end

Instance Method Details

#bucketed_path(id) ⇒ Object



62
63
64
65
# File 'lib/valkyrie/storage/disk.rb', line 62

def bucketed_path(id)
  cleaned_id = id.to_s.delete("-")
  cleaned_id[0..5].chars.each_slice(2).map(&:join) + [cleaned_id]
end

#generate(resource:, file:, original_filename:) ⇒ Object

Raises:

  • (ArgumentError)


57
58
59
60
# File 'lib/valkyrie/storage/disk.rb', line 57

def generate(resource:, file:, original_filename:)
  raise ArgumentError, "original_filename must be provided" unless original_filename
  Pathname.new(base_path).join(*bucketed_path(resource.id)).join(original_filename)
end