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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 733b55dc035d784e453a4cc42e1cfe667a0edf78
4
- data.tar.gz: bf5515e09b90e499f05123abfc62d224abcb3f62
3
+ metadata.gz: 31e43c5de34482d8a3d0680c836a41d01e3c3edd
4
+ data.tar.gz: e4a49a6eeacb8a8d38749f1f2ad1b9de8f556252
5
5
  SHA512:
6
- metadata.gz: 6e01e2ca2f537aaacd0f70f228b2ba9b6646c60338d4d475e0665324e52d064676974bc59ae7d6919e79f0b45bacd068d6a701b5f499bd30883fe91e1f477de4
7
- data.tar.gz: 68940a5d70b055a8842452319b3b66b3aaf69ec078e9d3c1f13917bc93ff135c67a17f430e90f0b6f3b707f5ad1a243de095eeb505dd0f39a6913d202c908034
6
+ metadata.gz: b66955f8546ea7335f70d41f659a82d9b8d683791089501295b72e0aaf7bf76c15c665d185c750be90b271c7d510ade975099cdd4f398fa731d4cc3a3bed978f
7
+ data.tar.gz: 6854601fb8f78cf6eba0aa73383079a5ab8d8a244f962c41ca138aa9b6bf608499c68abc858ab74a4ab027576c6b4c62120618bfb879e6326a5c5f1caf62ee97
@@ -1,5 +1,25 @@
1
1
  language: ruby
2
+
3
+ pre:
4
+ - gem update bundler
5
+
6
+ cache: bundler
7
+
2
8
  rvm:
3
- - 2.0.0
4
- - 1.9.3
5
- - jruby-19mode
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
- temp_file.write file.body
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.body
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)
@@ -1,7 +1,7 @@
1
1
  module Carrierwave
2
2
  module Storage
3
3
  class FTP
4
- VERSION = "0.2.8"
4
+ VERSION = "0.3.0"
5
5
  end
6
6
  end
7
7
  end
@@ -39,7 +39,10 @@ module CarrierWave
39
39
  def to_file
40
40
  temp_file = Tempfile.new(filename)
41
41
  temp_file.binmode
42
- temp_file.write file.body
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.body
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 full_path
82
- "#{@uploader.sftp_folder}/#{path}"
87
+ def use_ssl?
88
+ @uploader.sftp_url.start_with?('https')
83
89
  end
84
90
 
85
- def file
86
- require 'net/http'
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
@@ -96,12 +96,14 @@ describe CarrierWave::Storage::FTP do
96
96
  end
97
97
 
98
98
  it "returns to_file" do
99
- @stored.should_receive(:file).and_return(Struct.new(:body).new('some content'))
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
- @stored.should_receive(:file).and_return(Struct.new(:body).new('some content'))
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
 
@@ -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 calculated URL when retrieving a file" do
56
- @stored.should_receive(:url).and_return('http://example.com/')
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
- @stored.should_receive(:file).and_return(Struct.new(:body).new('some content'))
96
- @stored.to_file.size.should == 'some content'.length
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
- @stored.should_receive(:file).and_return(Struct.new(:body).new('some content'))
101
- @stored.read.should == 'some content'
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.2.8
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: 2014-10-13 00:00:00.000000000 Z
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.2.2
113
+ rubygems_version: 2.5.2
114
114
  signing_key:
115
115
  specification_version: 4
116
116
  summary: FTP support for CarrierWave