bfs-ftp 0.6.4 → 0.7.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/bfs-ftp.gemspec +1 -1
- data/lib/bfs/bucket/ftp.rb +12 -7
- data/spec/bfs/bucket/ftp_spec.rb +9 -11
- metadata +6 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b481cc58f871c2d32a31c6b27a2d7663fabb5e780823aaf8a59766ca84ce92a7
|
4
|
+
data.tar.gz: d38ae55120b1b1ba286b0754a8cd549652a52d7dcec15938e2f174beb7a1995a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f367b5df775d462366cc2af0017d5684cac8c59f2e291ca535050e6bbe5807aa22993f4ebab6b3a7189cd311d3644f56791c36f210d5f4a9d83111f80c93ee02
|
7
|
+
data.tar.gz: d4f8b6949f088c003e97d0de38e69e574096ddc650588e8cadee5782addba3c5c99a95a7f27b078cb92c935ccc954c3deedb5eaf32de3452a1aa26c88c05ac80
|
data/bfs-ftp.gemspec
CHANGED
@@ -15,7 +15,7 @@ Gem::Specification.new do |s|
|
|
15
15
|
s.files = `git ls-files`.split("\n")
|
16
16
|
s.test_files = `git ls-files -- spec/*`.split("\n")
|
17
17
|
s.require_paths = ['lib']
|
18
|
-
s.required_ruby_version = '>= 2.
|
18
|
+
s.required_ruby_version = '>= 2.6.0'
|
19
19
|
|
20
20
|
s.add_dependency 'bfs', s.version
|
21
21
|
s.add_dependency 'net-ftp-list'
|
data/lib/bfs/bucket/ftp.rb
CHANGED
@@ -31,7 +31,7 @@ module BFS
|
|
31
31
|
|
32
32
|
# Lists the contents of a bucket using a glob pattern
|
33
33
|
def ls(pattern = '**/*', **_opts)
|
34
|
-
dir = pattern[%r{^[
|
34
|
+
dir = pattern[%r{^[^*?\{\}\[\]]+/}]
|
35
35
|
dir&.chomp!('/')
|
36
36
|
|
37
37
|
Enumerator.new do |y|
|
@@ -114,10 +114,15 @@ module BFS
|
|
114
114
|
end
|
115
115
|
end
|
116
116
|
|
117
|
-
BFS.register('ftp', 'sftp') do |url, opts|
|
118
|
-
BFS
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
117
|
+
BFS.register('ftp', 'sftp') do |url, opts, block|
|
118
|
+
prefix = BFS.norm_path(opts[:prefix] || url.path)
|
119
|
+
opts[:prefix] = prefix unless prefix.empty?
|
120
|
+
|
121
|
+
extra = {
|
122
|
+
username: url.user ? CGI.unescape(url.user) : nil,
|
123
|
+
password: url.password ? CGI.unescape(url.password) : nil,
|
124
|
+
port: url.port,
|
125
|
+
ssl: opts.key?(:ssl) || url.scheme == 'sftp',
|
126
|
+
}
|
127
|
+
BFS::Bucket::FTP.open url.host, **opts, **extra, &block
|
123
128
|
end
|
data/spec/bfs/bucket/ftp_spec.rb
CHANGED
@@ -1,17 +1,8 @@
|
|
1
1
|
require 'spec_helper'
|
2
2
|
|
3
|
-
sandbox
|
4
|
-
run_spec = \
|
5
|
-
begin
|
6
|
-
ftp = Net::FTP.new sandbox[:host], sandbox
|
7
|
-
ftp.list
|
8
|
-
ftp.close
|
9
|
-
rescue Errno::ECONNREFUSED, Net::FTPError => e
|
10
|
-
warn "WARNING: unable to run #{File.basename __FILE__}: #{e.message}"
|
11
|
-
false
|
12
|
-
end
|
3
|
+
sandbox = { host: '127.0.0.1', port: 7021, username: 'ftpuser', password: 'ftppass' }.freeze
|
13
4
|
|
14
|
-
RSpec.describe BFS::Bucket::FTP,
|
5
|
+
RSpec.describe BFS::Bucket::FTP, ftp: true do
|
15
6
|
subject { described_class.new sandbox[:host], **sandbox.merge(prefix: SecureRandom.uuid) }
|
16
7
|
after { subject.close }
|
17
8
|
|
@@ -22,5 +13,12 @@ RSpec.describe BFS::Bucket::FTP, if: run_spec do
|
|
22
13
|
it 'should resolve from URL' do
|
23
14
|
bucket = BFS.resolve('ftp://ftpuser:ftppass@127.0.0.1:7021')
|
24
15
|
expect(bucket).to be_instance_of(described_class)
|
16
|
+
expect(bucket.instance_variable_get(:@client).pwd).to eq('/ftp/ftpuser')
|
17
|
+
bucket.close
|
18
|
+
|
19
|
+
bucket = BFS.resolve('ftp://ftpuser:ftppass@127.0.0.1:7021/a/b/')
|
20
|
+
expect(bucket).to be_instance_of(described_class)
|
21
|
+
expect(bucket.instance_variable_get(:@client).pwd).to eq('/ftp/ftpuser/a/b')
|
22
|
+
bucket.close
|
25
23
|
end
|
26
24
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bfs-ftp
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.7.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Dimitrij Denissenko
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-
|
11
|
+
date: 2020-07-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bfs
|
@@ -16,14 +16,14 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - '='
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 0.
|
19
|
+
version: 0.7.3
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - '='
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: 0.
|
26
|
+
version: 0.7.3
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: net-ftp-list
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
@@ -60,14 +60,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
60
60
|
requirements:
|
61
61
|
- - ">="
|
62
62
|
- !ruby/object:Gem::Version
|
63
|
-
version: 2.
|
63
|
+
version: 2.6.0
|
64
64
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
65
65
|
requirements:
|
66
66
|
- - ">="
|
67
67
|
- !ruby/object:Gem::Version
|
68
68
|
version: '0'
|
69
69
|
requirements: []
|
70
|
-
rubygems_version: 3.1.
|
70
|
+
rubygems_version: 3.1.4
|
71
71
|
signing_key:
|
72
72
|
specification_version: 4
|
73
73
|
summary: FTP adapter for bfs
|