carrierwave-ftp 0.2.8 → 0.3.0
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/.travis.yml +23 -3
- data/lib/carrierwave/storage/ftp.rb +11 -12
- data/lib/carrierwave/storage/ftp/version.rb +1 -1
- data/lib/carrierwave/storage/sftp.rb +12 -11
- data/spec/ftp_spec.rb +4 -2
- data/spec/sftp_spec.rb +11 -11
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 31e43c5de34482d8a3d0680c836a41d01e3c3edd
|
4
|
+
data.tar.gz: e4a49a6eeacb8a8d38749f1f2ad1b9de8f556252
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b66955f8546ea7335f70d41f659a82d9b8d683791089501295b72e0aaf7bf76c15c665d185c750be90b271c7d510ade975099cdd4f398fa731d4cc3a3bed978f
|
7
|
+
data.tar.gz: 6854601fb8f78cf6eba0aa73383079a5ab8d8a244f962c41ca138aa9b6bf608499c68abc858ab74a4ab027576c6b4c62120618bfb879e6326a5c5f1caf62ee97
|
data/.travis.yml
CHANGED
@@ -1,5 +1,25 @@
|
|
1
1
|
language: ruby
|
2
|
+
|
3
|
+
pre:
|
4
|
+
- gem update bundler
|
5
|
+
|
6
|
+
cache: bundler
|
7
|
+
|
2
8
|
rvm:
|
3
|
-
|
4
|
-
|
5
|
-
|
9
|
+
- 2.0
|
10
|
+
- 2.1
|
11
|
+
- 2.2.3
|
12
|
+
- ruby-head
|
13
|
+
- jruby
|
14
|
+
- jruby-head
|
15
|
+
|
16
|
+
env:
|
17
|
+
- JRUBY_OPTS="--2.0"
|
18
|
+
|
19
|
+
sudo: false
|
20
|
+
|
21
|
+
matrix:
|
22
|
+
allow_failures:
|
23
|
+
- rvm: ruby-head
|
24
|
+
- rvm: jruby-head
|
25
|
+
fast_finish: true
|
@@ -40,7 +40,13 @@ module CarrierWave
|
|
40
40
|
def to_file
|
41
41
|
temp_file = Tempfile.new(filename)
|
42
42
|
temp_file.binmode
|
43
|
-
|
43
|
+
connection do |ftp|
|
44
|
+
ftp.chdir(::File.dirname "#{@uploader.ftp_folder}/#{path}")
|
45
|
+
ftp.get(filename, nil) do |data|
|
46
|
+
temp_file.write(data)
|
47
|
+
end
|
48
|
+
end
|
49
|
+
temp_file.rewind
|
44
50
|
temp_file
|
45
51
|
end
|
46
52
|
|
@@ -60,7 +66,10 @@ module CarrierWave
|
|
60
66
|
end
|
61
67
|
|
62
68
|
def read
|
63
|
-
file
|
69
|
+
file = to_file
|
70
|
+
content = file.read
|
71
|
+
file.close
|
72
|
+
content
|
64
73
|
end
|
65
74
|
|
66
75
|
def content_type
|
@@ -81,16 +90,6 @@ module CarrierWave
|
|
81
90
|
|
82
91
|
private
|
83
92
|
|
84
|
-
def file
|
85
|
-
require 'net/http'
|
86
|
-
url = URI.parse(self.url)
|
87
|
-
req = Net::HTTP::Get.new(url.path)
|
88
|
-
Net::HTTP.start(url.host, url.port) do |http|
|
89
|
-
http.request(req)
|
90
|
-
end
|
91
|
-
rescue
|
92
|
-
end
|
93
|
-
|
94
93
|
def connection
|
95
94
|
ftp = ExFTP.new
|
96
95
|
ftp.connect(@uploader.ftp_host, @uploader.ftp_port)
|
@@ -39,7 +39,10 @@ module CarrierWave
|
|
39
39
|
def to_file
|
40
40
|
temp_file = Tempfile.new(filename)
|
41
41
|
temp_file.binmode
|
42
|
-
|
42
|
+
connection do |sftp|
|
43
|
+
sftp.download!(full_path, temp_file)
|
44
|
+
end
|
45
|
+
temp_file.rewind
|
43
46
|
temp_file
|
44
47
|
end
|
45
48
|
|
@@ -58,7 +61,10 @@ module CarrierWave
|
|
58
61
|
end
|
59
62
|
|
60
63
|
def read
|
61
|
-
file
|
64
|
+
file = to_file
|
65
|
+
content = file.read
|
66
|
+
file.close
|
67
|
+
content
|
62
68
|
end
|
63
69
|
|
64
70
|
def content_type
|
@@ -78,17 +84,12 @@ module CarrierWave
|
|
78
84
|
|
79
85
|
private
|
80
86
|
|
81
|
-
def
|
82
|
-
|
87
|
+
def use_ssl?
|
88
|
+
@uploader.sftp_url.start_with?('https')
|
83
89
|
end
|
84
90
|
|
85
|
-
def
|
86
|
-
|
87
|
-
url = URI.parse(self.url)
|
88
|
-
req = Net::HTTP::Get.new(url.path)
|
89
|
-
Net::HTTP.start(url.host, url.port) do |http|
|
90
|
-
http.request(req)
|
91
|
-
end
|
91
|
+
def full_path
|
92
|
+
"#{@uploader.sftp_folder}/#{path}"
|
92
93
|
end
|
93
94
|
|
94
95
|
def connection
|
data/spec/ftp_spec.rb
CHANGED
@@ -96,12 +96,14 @@ describe CarrierWave::Storage::FTP do
|
|
96
96
|
end
|
97
97
|
|
98
98
|
it "returns to_file" do
|
99
|
-
@
|
99
|
+
@ftp.should_receive(:chdir).with('~/public_html/uploads')
|
100
|
+
@ftp.should_receive(:get).with('test.jpg', nil).and_yield('some content')
|
100
101
|
@stored.to_file.size.should == 'some content'.length
|
101
102
|
end
|
102
103
|
|
103
104
|
it "returns the content of the file" do
|
104
|
-
@
|
105
|
+
@ftp.should_receive(:chdir).with('~/public_html/uploads')
|
106
|
+
@ftp.should_receive(:get).with('test.jpg', nil).and_yield('some content')
|
105
107
|
@stored.read.should == 'some content'
|
106
108
|
end
|
107
109
|
|
data/spec/sftp_spec.rb
CHANGED
@@ -44,16 +44,16 @@ describe CarrierWave::Storage::SFTP do
|
|
44
44
|
|
45
45
|
describe 'after upload' do
|
46
46
|
before do
|
47
|
-
sftp = double(:sftp_connection)
|
48
|
-
Net::SFTP.stub(:start).and_return(sftp)
|
49
|
-
sftp.stub(:mkdir_p!)
|
50
|
-
sftp.stub(:upload!)
|
51
|
-
sftp.stub(:close_channel)
|
47
|
+
@sftp = double(:sftp_connection)
|
48
|
+
Net::SFTP.stub(:start).and_return(@sftp)
|
49
|
+
@sftp.stub(:mkdir_p!)
|
50
|
+
@sftp.stub(:upload!)
|
51
|
+
@sftp.stub(:close_channel)
|
52
52
|
@stored = @storage.store!(@file)
|
53
53
|
end
|
54
54
|
|
55
|
-
it "should use the
|
56
|
-
@
|
55
|
+
it "should use the ftp when retrieving a file" do
|
56
|
+
@sftp.should_receive(:download!).with(@stored.send(:full_path), kind_of(Tempfile))
|
57
57
|
@stored.read
|
58
58
|
end
|
59
59
|
|
@@ -92,13 +92,13 @@ describe CarrierWave::Storage::SFTP do
|
|
92
92
|
end
|
93
93
|
|
94
94
|
it "returns to_file" do
|
95
|
-
@
|
96
|
-
@stored.to_file.size.should ==
|
95
|
+
@sftp.should_receive(:download!).with(@stored.send(:full_path), kind_of(Tempfile))
|
96
|
+
@stored.to_file.size.should == 0
|
97
97
|
end
|
98
98
|
|
99
99
|
it "returns the content of the file" do
|
100
|
-
@
|
101
|
-
@stored.read.should == '
|
100
|
+
@sftp.should_receive(:download!).with(@stored.send(:full_path), kind_of(Tempfile))
|
101
|
+
@stored.read.should == ''
|
102
102
|
end
|
103
103
|
|
104
104
|
it "returns the content_type of the file" do
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: carrierwave-ftp
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.3.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Luan Santos
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2017-04-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: carrierwave
|
@@ -110,7 +110,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
110
110
|
version: '0'
|
111
111
|
requirements: []
|
112
112
|
rubyforge_project: carrierwave-ftp
|
113
|
-
rubygems_version: 2.
|
113
|
+
rubygems_version: 2.5.2
|
114
114
|
signing_key:
|
115
115
|
specification_version: 4
|
116
116
|
summary: FTP support for CarrierWave
|