Class: Chef::Provider::RemoteFile::FTP
- Inherits:
-
Object
- Object
- Chef::Provider::RemoteFile::FTP
- Defined in:
- lib/chef/provider/remote_file/ftp.rb
Instance Attribute Summary collapse
-
#current_resource ⇒ Object
readonly
Returns the value of attribute current_resource.
-
#new_resource ⇒ Object
readonly
Returns the value of attribute new_resource.
-
#uri ⇒ Object
readonly
Returns the value of attribute uri.
Instance Method Summary collapse
- #directories ⇒ Object
- #fetch ⇒ Object
- #filename ⇒ Object
- #ftp ⇒ Object
- #hostname ⇒ Object
-
#initialize(uri, new_resource, current_resource) ⇒ FTP
constructor
A new instance of FTP.
- #pass ⇒ Object
- #port ⇒ Object
- #typecode ⇒ Object
- #use_passive_mode? ⇒ Boolean
- #user ⇒ Object
Constructor Details
#initialize(uri, new_resource, current_resource) ⇒ FTP
Returns a new instance of FTP.
37 38 39 40 41 42 43 |
# File 'lib/chef/provider/remote_file/ftp.rb', line 37 def initialize(uri, new_resource, current_resource) @uri = uri @new_resource = new_resource @current_resource = current_resource validate_typecode! validate_path! end |
Instance Attribute Details
#current_resource ⇒ Object (readonly)
Returns the value of attribute current_resource.
35 36 37 |
# File 'lib/chef/provider/remote_file/ftp.rb', line 35 def current_resource @current_resource end |
#new_resource ⇒ Object (readonly)
Returns the value of attribute new_resource.
34 35 36 |
# File 'lib/chef/provider/remote_file/ftp.rb', line 34 def new_resource @new_resource end |
#uri ⇒ Object (readonly)
Returns the value of attribute uri.
33 34 35 |
# File 'lib/chef/provider/remote_file/ftp.rb', line 33 def uri @uri end |
Instance Method Details
#directories ⇒ Object
77 78 79 80 |
# File 'lib/chef/provider/remote_file/ftp.rb', line 77 def directories parse_path if @directories.nil? @directories end |
#fetch ⇒ Object
87 88 89 90 91 |
# File 'lib/chef/provider/remote_file/ftp.rb', line 87 def fetch with_connection do get end end |
#filename ⇒ Object
82 83 84 85 |
# File 'lib/chef/provider/remote_file/ftp.rb', line 82 def filename parse_path if @filename.nil? @filename end |
#ftp ⇒ Object
93 94 95 |
# File 'lib/chef/provider/remote_file/ftp.rb', line 93 def ftp @ftp ||= Net::FTP.new end |
#hostname ⇒ Object
45 46 47 |
# File 'lib/chef/provider/remote_file/ftp.rb', line 45 def hostname @uri.host end |
#pass ⇒ Object
69 70 71 72 73 74 75 |
# File 'lib/chef/provider/remote_file/ftp.rb', line 69 def pass if uri.userinfo CGI.unescape(uri.password) else nil end end |
#port ⇒ Object
49 50 51 |
# File 'lib/chef/provider/remote_file/ftp.rb', line 49 def port @uri.port end |
#typecode ⇒ Object
57 58 59 |
# File 'lib/chef/provider/remote_file/ftp.rb', line 57 def typecode uri.typecode end |
#use_passive_mode? ⇒ Boolean
53 54 55 |
# File 'lib/chef/provider/remote_file/ftp.rb', line 53 def use_passive_mode? ! new_resource.ftp_active_mode end |
#user ⇒ Object
61 62 63 64 65 66 67 |
# File 'lib/chef/provider/remote_file/ftp.rb', line 61 def user if uri.userinfo CGI.unescape(uri.user) else "anonymous" end end |