carrierwave-ftp 0.1.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.
data/.gitignore ADDED
@@ -0,0 +1,7 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ tmp
6
+ Gemfile.lock
7
+ .ftp
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source "http://rubygems.org"
2
+
3
+ # Specify your gem's dependencies in carrierwave-mongoid.gemspec
4
+ gemspec
data/LICENSE ADDED
@@ -0,0 +1,20 @@
1
+ Copyright (c) 2012 Luan Santos
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,40 @@
1
+ # CarrierWave FTP storage
2
+
3
+ This gem adds support for FTP upload to [CarrierWave](https://github.com/jnicklas/carrierwave/)
4
+
5
+ ## Installation
6
+
7
+ Install the latest release:
8
+
9
+ gem install carrierwave-ftp
10
+
11
+ Require it in your code:
12
+
13
+ require 'carrierwave/storage/ftp'
14
+
15
+ Or, in Rails you can add it to your Gemfile:
16
+
17
+ gem 'carrierwave-ftp', :require => 'carrierwave/storage/ftp'
18
+
19
+ ## Getting Started
20
+
21
+ First configure CarrierWave with your FTP credentials:
22
+
23
+ ```ruby
24
+ CarrierWave.configure do |config|
25
+ config.ftp_host = "ftp.example.com"
26
+ config.ftp_port = 21
27
+ config.ftp_user = "example"
28
+ config.ftp_passwd = "secret"
29
+ config.ftp_folder = "/public_html/uploads"
30
+ config.ftp_url = "http://example.com/uploads"
31
+ end
32
+ ```
33
+
34
+ And then in your uploader, set the storage to `:ftp`:
35
+
36
+ ```ruby
37
+ class AvatarUploader < CarrierWave::Uploader::Base
38
+ storage :ftp
39
+ end
40
+ ```
data/Rakefile ADDED
@@ -0,0 +1,12 @@
1
+ require 'bundler/setup'
2
+ Bundler::GemHelper.install_tasks
3
+
4
+ require 'rspec/core/rake_task'
5
+
6
+ desc "Run all examples"
7
+ RSpec::Core::RakeTask.new(:spec) do |t|
8
+ #t.rspec_path = 'bin/rspec'
9
+ t.rspec_opts = %w[--color]
10
+ end
11
+
12
+ task :default => :spec
@@ -0,0 +1,25 @@
1
+ # -*- encoding: utf-8 -*-
2
+ $:.push File.expand_path("../lib", __FILE__)
3
+ require "carrierwave/storage/ftp/version"
4
+
5
+ Gem::Specification.new do |s|
6
+ s.name = "carrierwave-ftp"
7
+ s.version = Carrierwave::Storage::FTP::VERSION
8
+ s.platform = Gem::Platform::RUBY
9
+ s.authors = ["Luan Santos"]
10
+ s.email = ["luan@luansantos.com"]
11
+ s.homepage = "https://github.com/luan/carrierwave-ftp"
12
+ s.summary = %q{FTP support for CarrierWave}
13
+ s.description = %q{Allows file upload using FTP for CarrierWave uploaders.}
14
+
15
+ s.rubyforge_project = "carrierwave-mongoid"
16
+
17
+ s.files = `git ls-files`.split("\n")
18
+ s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
19
+ s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
20
+ s.require_paths = ["lib"]
21
+
22
+ s.add_dependency "carrierwave", ["~> 0.6.2"]
23
+ s.add_development_dependency "rspec", ["~> 2.6"]
24
+ s.add_development_dependency "rake", ["~> 0.9"]
25
+ end
@@ -0,0 +1,104 @@
1
+ require 'carrierwave'
2
+ require 'carrierwave/storage/ftp/ex_ftp'
3
+
4
+ module CarrierWave
5
+ module Storage
6
+ class FTP < Abstract
7
+ def store!(file)
8
+ f = CarrierWave::Storage::FTP::File.new(uploader, self, uploader.store_path)
9
+ f.store(file)
10
+ f
11
+ end
12
+
13
+ class File
14
+ attr_reader :path
15
+
16
+ def initialize(uploader, base, path)
17
+ @uploader, @base, @path = uploader, base, path
18
+ end
19
+
20
+ def store(file)
21
+ connection do |ftp|
22
+ ftp.mkdir_p(::File.dirname "#{@uploader.ftp_folder}/#{path}")
23
+ ftp.chdir(::File.dirname "#{@uploader.ftp_folder}/#{path}")
24
+ ftp.put(file.path, filename)
25
+ end
26
+ end
27
+
28
+ def url
29
+ "#{@uploader.ftp_url}/#{path}"
30
+ end
31
+
32
+ def filename(options = {})
33
+ url.gsub(/.*\/(.*?$)/, '\1')
34
+ end
35
+
36
+ def size
37
+ size = nil
38
+
39
+ connection do |ftp|
40
+ ftp.chdir(::File.dirname "#{@uploader.ftp_folder}/#{path}")
41
+ size = ftp.size(filename)
42
+ end
43
+
44
+ size
45
+ end
46
+
47
+ def exists?
48
+ size ? true : false
49
+ end
50
+
51
+ def read
52
+ http_get_body(url)
53
+ end
54
+
55
+ def delete
56
+ connection do |ftp|
57
+ ftp.chdir(::File.dirname "#{@uploader.ftp_folder}/#{path}")
58
+ ftp.delete(filename)
59
+ end
60
+ end
61
+
62
+ private
63
+
64
+ def http_get_body(url)
65
+ require 'net/http'
66
+ url = URI.parse(url)
67
+ req = Net::HTTP::Get.new(url.path)
68
+ res = Net::HTTP.start(url.host, url.port) do |http|
69
+ http.request(req)
70
+ end
71
+
72
+ res.body
73
+ end
74
+
75
+ def connection
76
+ ftp = ExFTP.open(@uploader.ftp_host, @uploader.ftp_user, @uploader.ftp_passwd, @uploader.ftp_port)
77
+ yield ftp
78
+ ftp.close
79
+ end
80
+ end
81
+ end
82
+ end
83
+ end
84
+
85
+ CarrierWave::Storage.autoload :FTP, 'carrierwave/storage/ftp'
86
+
87
+ class CarrierWave::Uploader::Base
88
+ add_config :ftp_host
89
+ add_config :ftp_port
90
+ add_config :ftp_user
91
+ add_config :ftp_passwd
92
+ add_config :ftp_folder
93
+ add_config :ftp_url
94
+
95
+ configure do |config|
96
+ config.storage_engines[:ftp] = "CarrierWave::Storage::FTP"
97
+ config.ftp_host = "localhost"
98
+ config.ftp_port = 21
99
+ config.ftp_user = "anonymous"
100
+ config.ftp_passwd = ""
101
+ config.ftp_folder = "/"
102
+ config.ftp_url = "http://localhost"
103
+ end
104
+ end
@@ -0,0 +1,25 @@
1
+ require 'net/ftp'
2
+
3
+ class ExFTP < Net::FTP
4
+ def mkdir_p(dir)
5
+ parts = dir.split("/")
6
+ if parts.first == "~"
7
+ growing_path = ""
8
+ else
9
+ growing_path = "/"
10
+ end
11
+ for part in parts
12
+ next if part == ""
13
+ if growing_path == ""
14
+ growing_path = part
15
+ else
16
+ growing_path = File.join(growing_path, part)
17
+ end
18
+ begin
19
+ mkdir(growing_path)
20
+ chdir(growing_path)
21
+ rescue Net::FTPPermError, Net::FTPTempError => e
22
+ end
23
+ end
24
+ end
25
+ end
@@ -0,0 +1,7 @@
1
+ module Carrierwave
2
+ module Storage
3
+ class FTP
4
+ VERSION = "0.1.0"
5
+ end
6
+ end
7
+ end
data/spec/ftp_spec.rb ADDED
@@ -0,0 +1,93 @@
1
+ require 'spec_helper'
2
+ require 'carrierwave/storage/ftp'
3
+
4
+ class FtpUploader < CarrierWave::Uploader::Base
5
+ storage :ftp
6
+ end
7
+
8
+ describe CarrierWave::Storage::FTP do
9
+ before do
10
+ CarrierWave.configure do |config|
11
+ config.reset_config
12
+ config.ftp_host = 'ftp.testcarrierwave.dev'
13
+ config.ftp_user = 'test_user'
14
+ config.ftp_passwd = 'test_passwd'
15
+ config.ftp_folder = '~/public_html'
16
+ config.ftp_url = 'http://testcarrierwave.dev'
17
+ end
18
+
19
+ @file = CarrierWave::SanitizedFile.new(file_path('test.jpg'))
20
+ FtpUploader.stub!(:store_path).and_return('uploads/test.jpg')
21
+ @storage = CarrierWave::Storage::FTP.new(FtpUploader)
22
+ end
23
+
24
+ it "opens/closes an ftp connection to the given host" do
25
+ ftp = double(:ftp_connection)
26
+ ftp_params = [
27
+ 'ftp.testcarrierwave.dev',
28
+ 'test_user',
29
+ 'test_passwd',
30
+ 21
31
+ ]
32
+
33
+ Net::FTP.should_receive(:open).with(*ftp_params).and_return(ftp)
34
+ ftp.should_receive(:mkdir_p).with('~/public_html/uploads')
35
+ ftp.should_receive(:chdir).with('~/public_html/uploads')
36
+ ftp.should_receive(:put).with(@file.path, 'test.jpg')
37
+ ftp.should_receive(:close)
38
+ @stored = @storage.store!(@file)
39
+ end
40
+
41
+ describe 'after upload' do
42
+ before do
43
+ ftp = double(:ftp_connection)
44
+ Net::FTP.stub(:open).and_return(ftp)
45
+ ftp.stub(:mkdir_p)
46
+ ftp.stub(:chdir)
47
+ ftp.stub(:put)
48
+ ftp.stub(:close)
49
+ @stored = @storage.store!(@file)
50
+ end
51
+
52
+ it "returns a url based on directory" do
53
+ @stored.url.should == 'http://testcarrierwave.dev/uploads/test.jpg'
54
+ end
55
+
56
+ it "returns a path based on directory" do
57
+ @stored.path.should == 'uploads/test.jpg'
58
+ end
59
+ end
60
+
61
+ describe 'other operations' do
62
+ before do
63
+ @ftp = double(:ftp_connection)
64
+ Net::FTP.stub(:open).and_return(@ftp)
65
+ @ftp.stub(:mkdir_p)
66
+ @ftp.stub(:chdir)
67
+ @ftp.stub(:put)
68
+ @ftp.stub(:close)
69
+ @stored = @storage.store!(@file)
70
+ end
71
+
72
+ it "deletes a file" do
73
+ @ftp.should_receive(:chdir).with('~/public_html/uploads')
74
+ @ftp.should_receive(:delete).with('test.jpg')
75
+ @stored.delete
76
+ end
77
+
78
+ it "checks whether a file exists" do
79
+ @stored.should_receive(:size).and_return(10)
80
+ @stored.exists?.should == true
81
+ end
82
+
83
+ it "returns the size of the file" do
84
+ @ftp.should_receive(:size).and_return(14)
85
+ @stored.size.should == 14
86
+ end
87
+
88
+ it "returns the content of the file" do
89
+ @stored.should_receive(:http_get_body).with(@stored.url).and_return('some content')
90
+ @stored.read.should == 'some content'
91
+ end
92
+ end
93
+ end
@@ -0,0 +1,59 @@
1
+ require 'rubygems'
2
+ require 'bundler/setup'
3
+ require 'rspec'
4
+ require 'tempfile'
5
+
6
+ require 'carrierwave'
7
+
8
+ def file_path( *paths )
9
+ File.expand_path(File.join(File.dirname(__FILE__), 'fixtures', *paths))
10
+ end
11
+
12
+ def public_path( *paths )
13
+ File.expand_path(File.join(File.dirname(__FILE__), 'public', *paths))
14
+ end
15
+
16
+ CarrierWave.root = public_path
17
+
18
+ module CarrierWave
19
+ module Test
20
+ module MockFiles
21
+ def stub_file(filename, mime_type=nil, fake_name=nil)
22
+ f = File.open(file_path(filename))
23
+ return f
24
+ end
25
+
26
+ def stub_tempfile(filename, mime_type=nil, fake_name=nil)
27
+ raise "#{path} file does not exist" unless File.exist?(file_path(filename))
28
+
29
+ t = Tempfile.new(filename)
30
+ FileUtils.copy_file(file_path(filename), t.path)
31
+
32
+ t.stub!(:local_path => "",
33
+ :original_filename => filename || fake_name,
34
+ :content_type => mime_type)
35
+
36
+ return t
37
+ end
38
+ end
39
+
40
+ module I18nHelpers
41
+ def change_locale_and_store_translations(locale, translations, &block)
42
+ current_locale = I18n.locale
43
+ begin
44
+ I18n.backend.store_translations locale, translations
45
+ I18n.locale = locale
46
+ yield
47
+ ensure
48
+ I18n.reload!
49
+ I18n.locale = current_locale
50
+ end
51
+ end
52
+ end
53
+ end
54
+ end
55
+
56
+ RSpec.configure do |config|
57
+ config.include CarrierWave::Test::MockFiles
58
+ config.include CarrierWave::Test::I18nHelpers
59
+ end
metadata ADDED
@@ -0,0 +1,112 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: carrierwave-ftp
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - Luan Santos
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2012-08-17 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: carrierwave
16
+ requirement: !ruby/object:Gem::Requirement
17
+ none: false
18
+ requirements:
19
+ - - ~>
20
+ - !ruby/object:Gem::Version
21
+ version: 0.6.2
22
+ type: :runtime
23
+ prerelease: false
24
+ version_requirements: !ruby/object:Gem::Requirement
25
+ none: false
26
+ requirements:
27
+ - - ~>
28
+ - !ruby/object:Gem::Version
29
+ version: 0.6.2
30
+ - !ruby/object:Gem::Dependency
31
+ name: rspec
32
+ requirement: !ruby/object:Gem::Requirement
33
+ none: false
34
+ requirements:
35
+ - - ~>
36
+ - !ruby/object:Gem::Version
37
+ version: '2.6'
38
+ type: :development
39
+ prerelease: false
40
+ version_requirements: !ruby/object:Gem::Requirement
41
+ none: false
42
+ requirements:
43
+ - - ~>
44
+ - !ruby/object:Gem::Version
45
+ version: '2.6'
46
+ - !ruby/object:Gem::Dependency
47
+ name: rake
48
+ requirement: !ruby/object:Gem::Requirement
49
+ none: false
50
+ requirements:
51
+ - - ~>
52
+ - !ruby/object:Gem::Version
53
+ version: '0.9'
54
+ type: :development
55
+ prerelease: false
56
+ version_requirements: !ruby/object:Gem::Requirement
57
+ none: false
58
+ requirements:
59
+ - - ~>
60
+ - !ruby/object:Gem::Version
61
+ version: '0.9'
62
+ description: Allows file upload using FTP for CarrierWave uploaders.
63
+ email:
64
+ - luan@luansantos.com
65
+ executables: []
66
+ extensions: []
67
+ extra_rdoc_files: []
68
+ files:
69
+ - .gitignore
70
+ - Gemfile
71
+ - LICENSE
72
+ - README.md
73
+ - Rakefile
74
+ - carrerwave-ftp.gemspec
75
+ - lib/carrierwave/storage/ftp.rb
76
+ - lib/carrierwave/storage/ftp/ex_ftp.rb
77
+ - lib/carrierwave/storage/ftp/version.rb
78
+ - spec/ftp_spec.rb
79
+ - spec/spec_helper.rb
80
+ homepage: https://github.com/luan/carrierwave-ftp
81
+ licenses: []
82
+ post_install_message:
83
+ rdoc_options: []
84
+ require_paths:
85
+ - lib
86
+ required_ruby_version: !ruby/object:Gem::Requirement
87
+ none: false
88
+ requirements:
89
+ - - ! '>='
90
+ - !ruby/object:Gem::Version
91
+ version: '0'
92
+ segments:
93
+ - 0
94
+ hash: 3697623012549711169
95
+ required_rubygems_version: !ruby/object:Gem::Requirement
96
+ none: false
97
+ requirements:
98
+ - - ! '>='
99
+ - !ruby/object:Gem::Version
100
+ version: '0'
101
+ segments:
102
+ - 0
103
+ hash: 3697623012549711169
104
+ requirements: []
105
+ rubyforge_project: carrierwave-mongoid
106
+ rubygems_version: 1.8.24
107
+ signing_key:
108
+ specification_version: 3
109
+ summary: FTP support for CarrierWave
110
+ test_files:
111
+ - spec/ftp_spec.rb
112
+ - spec/spec_helper.rb