2019-02-28 18:36:28 +01:00
|
|
|
ActiveStorage::Service.url_expires_in = 1.hour
|
2019-05-02 11:37:35 +02:00
|
|
|
|
2019-05-28 11:35:42 +02:00
|
|
|
# In Rails 5.2, we have to hook at `on_load` on the blob themeselves, which is
|
|
|
|
# not ideal.
|
|
|
|
#
|
|
|
|
# Rails 6 adds support for `.on_load(:active_storage_attachment)`, which is
|
|
|
|
# cleaner (as it allows to enqueue the virus scan on attachment creation, rather
|
|
|
|
# than on blob creation).
|
2019-11-20 16:03:40 +01:00
|
|
|
ActiveSupport.on_load(:active_storage_blob) do
|
|
|
|
include BlobSignedIdConcern
|
|
|
|
include BlobVirusScannerConcern
|
|
|
|
end
|
2019-10-30 12:11:45 +01:00
|
|
|
|
|
|
|
# When an OpenStack service is initialized it makes a request to fetch
|
|
|
|
# `publicURL` to use for all operations. We intercept the method that reads
|
|
|
|
# this url and replace the host with DS_Proxy host. This way all the operation
|
|
|
|
# are performed through DS_Proxy.
|
|
|
|
#
|
2020-06-04 10:31:41 +02:00
|
|
|
# https://github.com/fog/fog-openstack/blob/79116756ab04058a4bd970f3f1944886210221ed/lib/fog/openstack/auth/catalog/v3.rb#L16
|
2020-06-02 15:03:37 +02:00
|
|
|
require 'fog/openstack/auth/catalog/v3'
|
|
|
|
module Fog::OpenStack::Auth::Catalog
|
|
|
|
class V3
|
|
|
|
def endpoint_url(endpoint, interface)
|
|
|
|
url = endpoint["#{interface}URL"]
|
|
|
|
|
|
|
|
if interface == 'public'
|
|
|
|
publicize(url)
|
|
|
|
else
|
|
|
|
url
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def publicize(url)
|
|
|
|
search = %r{^https://[^/]+/}
|
|
|
|
replace = "#{ENV['DS_PROXY_URL']}/"
|
|
|
|
url.gsub(search, replace)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|