uricp 0.0.31 → 0.0.32
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Gemfile.lock +1 -1
- data/lib/uricp/curl_primitives.rb +7 -1
- data/lib/uricp/strategy/piped_remote_get.rb +4 -2
- data/lib/uricp/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2b5228be7d35d62611b6e047bbcb950cc790dd900e0df5f4b85dbc81fc484fd2
|
|
4
|
+
data.tar.gz: 4abb4b519a0293050b61a149a864efe4767ceff27ea8fad63a8bf245084301d1
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a354b1464046bdc6227145c1b8eba717437e9d51ea5d2d236e108ee81a8ac0972a5d3dec987a883eff0fc35d220453ce1afa1fffcc7e3ec3d2b8f97abab85442
|
|
7
|
+
data.tar.gz: 7f40a3b357f447a6b1f8201c320def28f93772ec9ff63f64a8e4b2dbf08b4a1cbb91ce3aa6a318ede61c43075da791cbc6c18109734828ffb294bc09185c0432
|
data/Gemfile.lock
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
# frozen_string_literal: true
|
|
2
2
|
|
|
3
3
|
module Uricp::CurlPrimitives
|
|
4
|
+
ORBIT_HOSTS = %w[orbit.brightbox.com orbit.gb1s.brightbox.com]
|
|
4
5
|
attr_reader :options
|
|
5
6
|
|
|
6
7
|
def from
|
|
@@ -31,6 +32,11 @@ module Uricp::CurlPrimitives
|
|
|
31
32
|
options['authenticator']
|
|
32
33
|
end
|
|
33
34
|
|
|
35
|
+
def orbit?(source)
|
|
36
|
+
return unless source.respond_to?(:host)
|
|
37
|
+
ORBIT_HOSTS.include?(source.host)
|
|
38
|
+
end
|
|
39
|
+
|
|
34
40
|
def temp_url?
|
|
35
41
|
from && from.query.to_s.include?('temp_url')
|
|
36
42
|
end
|
|
@@ -40,7 +46,7 @@ module Uricp::CurlPrimitives
|
|
|
40
46
|
end
|
|
41
47
|
|
|
42
48
|
def curl_download_to_pipe
|
|
43
|
-
"#{curl_command} #{authentication
|
|
49
|
+
"#{curl_command} #{authentication if orbit?(from) && !temp_url?} '#{from}' |"
|
|
44
50
|
end
|
|
45
51
|
|
|
46
52
|
def curl_manifest(object_manifest, destination = to)
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
# frozen_string_literal: true
|
|
2
2
|
|
|
3
3
|
require 'open-uri'
|
|
4
|
+
require 'socket'
|
|
4
5
|
module Uricp::Strategy
|
|
5
6
|
class PipedRemoteGet
|
|
6
7
|
include Uricp::Strategy::Common
|
|
@@ -75,8 +76,9 @@ module Uricp::Strategy
|
|
|
75
76
|
|
|
76
77
|
def headers
|
|
77
78
|
headers = { 'Range' => 'bytes=0-7' }
|
|
78
|
-
|
|
79
|
-
|
|
79
|
+
if http_authentication? && orbit?(from) && !temp_url?
|
|
80
|
+
headers['X-Auth-Token'] = options['authenticator'].call
|
|
81
|
+
end
|
|
80
82
|
headers
|
|
81
83
|
end
|
|
82
84
|
end
|
data/lib/uricp/version.rb
CHANGED