2018-02-14 04:53:37 -05:00
|
|
|
#
|
|
|
|
# Monkey patching the https support for private urls
|
|
|
|
# See https://gitlab.com/gitlab-org/gitlab-ee/issues/4879
|
|
|
|
#
|
|
|
|
module Fog
|
|
|
|
module Storage
|
|
|
|
class GoogleXML
|
|
|
|
class File < Fog::Model
|
|
|
|
module MonkeyPatch
|
2018-08-19 00:30:58 -04:00
|
|
|
def url(expires, options = {})
|
2018-02-14 04:53:37 -05:00
|
|
|
requires :key
|
2018-08-13 18:36:15 -04:00
|
|
|
collection.get_https_url(key, expires, options)
|
2018-02-14 04:53:37 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
prepend MonkeyPatch
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|