uricp 0.0.31 → 0.0.34

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a4895addf1e14cf9a918d89e471fe0f30e12189bd942303806590aff1368a294
4
- data.tar.gz: 97be8b34f73e4e0070cd6a0f6878a5f7dd9db465d7b5fd236c4497e72f5b83cd
3
+ metadata.gz: 5646c45d26dfa89933ac2cb28089ac771dff6a43719fcaba2304e741060a0b7f
4
+ data.tar.gz: 05172e7eab7420dc2b393ad93328d0250c2ae804b4fb3c1707c87e3f11d5180b
5
5
  SHA512:
6
- metadata.gz: fb45da786826b356a2a95b0764eb7e3d117d0933da0f0729e3473ee4715266217fe642fbe819a87f7b7330809bded5d1f7a92cc39c5c27c8766776577bec19e8
7
- data.tar.gz: edc045ffc50f615a1f40ef8d4700c541658095ecef4eee84bbf196071a1e233c165eab0f8dd5c237d56aacbfe30ca7722db8398fd45de5fb46a6718356229368
6
+ metadata.gz: 9a8830466e53007d4f2459a610978fb458e7771e8bdd7af61a69b502b42247b68f98b50801c900d7798437f4e56d4aadfe5ceeb9d4e946856c5c969b043bb1ac
7
+ data.tar.gz: 57a7b66754c00b8fd48d4c8149fbbe47357ff9e7033013f9b5f33735c179a7350e1bd815e83ef03d68f8e9323c1615a853fafbe1031ad115f15dd7fa07b89c22
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- uricp (0.0.31)
4
+ uricp (0.0.34)
5
5
  childprocess (~> 1.0)
6
6
  filesize (= 0.0.2)
7
7
  methadone (~> 2.0.2)
@@ -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
@@ -20,7 +21,7 @@ module Uricp::CurlPrimitives
20
21
  end
21
22
 
22
23
  def curl_command
23
- 'curl --fail --silent'
24
+ 'curl --fail --silent --location '
24
25
  end
25
26
 
26
27
  def authentication
@@ -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 unless temp_url?} '#{from}' |"
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
- return headers if !http_authentication? || temp_url?
79
- headers['X-Auth-Token'] = options['authenticator'].call
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
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Uricp
4
- VERSION = '0.0.31'
4
+ VERSION = '0.0.34'
5
5
  DEFAULT_SEGMENT_SIZE = '5 GiB'
6
6
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: uricp
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.31
4
+ version: 0.0.34
5
5
  platform: ruby
6
6
  authors:
7
7
  - Neil Wilson
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-10-21 00:00:00.000000000 Z
11
+ date: 2022-10-31 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aruba