2017-06-30 18:14:22 -04:00
|
|
|
require "fileutils"
|
|
|
|
require "pathname"
|
|
|
|
|
2017-06-30 18:04:19 -04:00
|
|
|
class ActiveFile::Sites::DiskSite < ActiveFile::Site
|
2017-07-03 14:14:28 -04:00
|
|
|
class_attribute :verifier, default: -> { Rails.application.message_verifier('ActiveFile::DiskSite') }
|
|
|
|
|
|
|
|
class << self
|
|
|
|
def generate_verifiable_key(key, expires_in:)
|
|
|
|
VerifiedKeyWithExpiration
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
class VerifiableKeyWithExpiration
|
|
|
|
def initialize(verifiable_key_with_expiration)
|
|
|
|
verified_key_with_expiration = ActiveFile::Sites::DiskSite.verify(verifiable_key_with_expiration)
|
|
|
|
|
|
|
|
@key = verified_key_with_expiration[:key]
|
|
|
|
@expires_at = verified_key_with_expiration[:expires_at]
|
|
|
|
end
|
|
|
|
|
|
|
|
def expired?
|
|
|
|
@expires_at && Time.now.utc > @expires_at
|
|
|
|
end
|
|
|
|
|
|
|
|
def decoded
|
|
|
|
key
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
class VerifiedKeyWithExpiration
|
|
|
|
def initialize(key, expires_in: nil)
|
|
|
|
@key = key
|
|
|
|
@expires_at = Time.now.utc.advance(sec: expires_in)
|
|
|
|
end
|
|
|
|
|
|
|
|
def encoded
|
|
|
|
ActiveFile::Sites::DiskSite.verify.generate({ key: @key, expires_at: @expires_at })
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-06-30 18:04:19 -04:00
|
|
|
attr_reader :root
|
|
|
|
|
2017-07-03 10:02:05 -04:00
|
|
|
def initialize(root:)
|
2017-06-30 18:04:19 -04:00
|
|
|
@root = root
|
|
|
|
end
|
|
|
|
|
2017-07-01 08:24:50 -04:00
|
|
|
|
2017-06-30 18:04:19 -04:00
|
|
|
def upload(key, data)
|
|
|
|
File.open(make_path_for(key), "wb") do |file|
|
|
|
|
while chunk = data.read(65536)
|
|
|
|
file.write(chunk)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def download(key)
|
|
|
|
if block_given?
|
2017-07-01 06:05:58 -04:00
|
|
|
File.open(path_for(key)) do |file|
|
2017-06-30 18:04:19 -04:00
|
|
|
while data = file.read(65536)
|
|
|
|
yield data
|
|
|
|
end
|
|
|
|
end
|
|
|
|
else
|
2017-07-01 06:05:58 -04:00
|
|
|
File.open path_for(key), &:read
|
2017-06-30 18:04:19 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def delete(key)
|
2017-07-01 06:05:58 -04:00
|
|
|
File.delete path_for(key)
|
|
|
|
end
|
|
|
|
|
|
|
|
def exists?(key)
|
|
|
|
File.exist? path_for(key)
|
2017-06-30 18:04:19 -04:00
|
|
|
end
|
|
|
|
|
2017-07-01 08:24:25 -04:00
|
|
|
|
2017-07-03 14:14:28 -04:00
|
|
|
def url(key, disposition:, expires_in: nil)
|
|
|
|
if defined?(Rails)
|
|
|
|
Rails.application.routes.url_helpers.rails_disk_blob_path(key)
|
|
|
|
else
|
|
|
|
"/rails/blobs/#{key}"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-07-01 08:24:25 -04:00
|
|
|
def byte_size(key)
|
2017-07-01 06:05:58 -04:00
|
|
|
File.size path_for(key)
|
2017-06-30 18:04:19 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def checksum(key)
|
|
|
|
Digest::MD5.file(path_for(key)).hexdigest
|
|
|
|
end
|
|
|
|
|
2017-07-01 08:24:50 -04:00
|
|
|
|
2017-06-30 18:04:19 -04:00
|
|
|
private
|
2017-07-03 14:14:28 -04:00
|
|
|
def verifiable_key_with_expiration(key, expires_in: nil)
|
|
|
|
verifier.generate key: key, expires_at: Time.now.utc.advance(sec: expires_in)
|
|
|
|
end
|
|
|
|
|
2017-06-30 18:04:19 -04:00
|
|
|
def path_for(key)
|
2017-07-01 06:05:58 -04:00
|
|
|
File.join root, folder_for(key), key
|
2017-06-30 18:04:19 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def folder_for(key)
|
2017-07-01 06:05:58 -04:00
|
|
|
[ key[0..1], key[2..3] ].join("/")
|
2017-06-30 18:04:19 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def make_path_for(key)
|
|
|
|
path_for(key).tap { |path| FileUtils.mkdir_p File.dirname(path) }
|
|
|
|
end
|
|
|
|
end
|