uricp 0.0.31 → 0.0.32

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: 2b5228be7d35d62611b6e047bbcb950cc790dd900e0df5f4b85dbc81fc484fd2
4
+ data.tar.gz: 4abb4b519a0293050b61a149a864efe4767ceff27ea8fad63a8bf245084301d1
5
5
  SHA512:
6
- metadata.gz: fb45da786826b356a2a95b0764eb7e3d117d0933da0f0729e3473ee4715266217fe642fbe819a87f7b7330809bded5d1f7a92cc39c5c27c8766776577bec19e8
7
- data.tar.gz: edc045ffc50f615a1f40ef8d4700c541658095ecef4eee84bbf196071a1e233c165eab0f8dd5c237d56aacbfe30ca7722db8398fd45de5fb46a6718356229368
6
+ metadata.gz: a354b1464046bdc6227145c1b8eba717437e9d51ea5d2d236e108ee81a8ac0972a5d3dec987a883eff0fc35d220453ce1afa1fffcc7e3ec3d2b8f97abab85442
7
+ data.tar.gz: 7f40a3b357f447a6b1f8201c320def28f93772ec9ff63f64a8e4b2dbf08b4a1cbb91ce3aa6a318ede61c43075da791cbc6c18109734828ffb294bc09185c0432
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.32)
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
@@ -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.32'
5
5
  DEFAULT_SEGMENT_SIZE = '5 GiB'
6
6
  end
metadata CHANGED
@@ -1,7 +1,7 @@
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.32
5
5
  platform: ruby
6
6
  authors:
7
7
  - Neil Wilson