46 lines
998 B
Ruby
46 lines
998 B
Ruby
# rubocop:disable Naming/FileName
|
|
# frozen_string_literal: true
|
|
|
|
require_relative 'cdn/google_cdn'
|
|
|
|
module ObjectStorage
|
|
module CDN
|
|
module Concern
|
|
extend ActiveSupport::Concern
|
|
|
|
include Gitlab::Utils::StrongMemoize
|
|
|
|
def use_cdn?(request_ip)
|
|
return false unless cdn_options.is_a?(Hash) && cdn_options['provider']
|
|
return false unless cdn_provider
|
|
|
|
cdn_provider.use_cdn?(request_ip)
|
|
end
|
|
|
|
def cdn_signed_url
|
|
cdn_provider&.signed_url(path)
|
|
end
|
|
|
|
private
|
|
|
|
def cdn_provider
|
|
strong_memoize(:cdn_provider) do
|
|
provider = cdn_options['provider']&.downcase
|
|
|
|
next unless provider
|
|
next GoogleCDN.new(cdn_options) if provider == 'google'
|
|
|
|
raise "Unknown CDN provider: #{provider}"
|
|
end
|
|
end
|
|
|
|
def cdn_options
|
|
return {} unless options.object_store.key?('cdn')
|
|
|
|
options.object_store.cdn
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|
|
# rubocop:enable Naming/FileName
|