blob: 29eddf1566c94f8825dbe7e2777878fa84beface (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
# Abstract class serving as an interface for concrete sites.
class ActiveVault::Site
def self.configure(site, **options)
begin
require "active_vault/site/#{site.to_s.downcase}_site"
ActiveVault::Site.const_get(:"#{site}Site").new(**options)
rescue LoadError => e
puts "Couldn't configure site: #{site} (#{e.message})"
end
end
def upload(key, io)
raise NotImplementedError
end
def download(key)
raise NotImplementedError
end
def delete(key)
raise NotImplementedError
end
def exist?(key)
raise NotImplementedError
end
def url(key, expires_in:, disposition:, filename:)
raise NotImplementedError
end
def bytesize(key)
raise NotImplementedError
end
def checksum(key)
raise NotImplementedError
end
end
|