[
MAINHACK
]
Mail Test
BC
Config Scan
HOME
Create...
New File
New Folder
Viewing / Editing File: NetFTP.pm
File is not writable. Editing disabled.
package Alien::Build::Plugin::Fetch::NetFTP; use strict; use warnings; use 5.008004; use Alien::Build::Plugin; use Carp (); use File::Temp (); use Path::Tiny qw( path ); # ABSTRACT: Plugin for fetching files using Net::FTP our $VERSION = '2.48'; # VERSION has '+url' => ''; has ssl => 0; has passive => 0; sub init { my($self, $meta) = @_; $meta->prop->{start_url} ||= $self->url; $self->url($meta->prop->{start_url}); $self->url || Carp::croak('url is a required property'); $meta->add_requires('share' => 'Net::FTP' => 0 ); $meta->add_requires('share' => 'URI' => 0 ); $meta->add_requires('share' => 'Alien::Build::Plugin::Fetch::NetFTP' => '0.61') if $self->passive; $meta->register_hook( fetch => sub { my($build, $url, %options) = @_; $url ||= $self->url; $build->log("plugin Fetch::NetFTP does not support http_headers option") if $options{http_headers}; $url = URI->new($url); die "Fetch::NetFTP does not support @{[ $url->scheme ]}" unless $url->scheme eq 'ftp'; $build->log("trying passive mode FTP first") if $self->passive; my $ftp = _ftp_connect($url, $self->passive); my $path = $url->path; unless($path =~ m!/$!) { my(@parts) = split /\//, $path; my $filename = pop @parts; my $dir = join '/', @parts; my $path = eval { $ftp->cwd($dir) or die; my $tdir = File::Temp::tempdir( CLEANUP => 1); my $path = path("$tdir/$filename")->stringify; unless(eval { $ftp->get($filename, $path) }) # NAT problem? try to use passive mode { $ftp->quit; $build->log("switching to @{[ $self->passive ? 'active' : 'passive' ]} mode"); $ftp = _ftp_connect($url, !$self->passive); $ftp->cwd($dir) or die; $ftp->get($filename, $path) or die; } $path; }; if(defined $path) { return { type => 'file', filename => $filename, path => $path, }; } $path .= "/"; } $ftp->quit; $ftp = _ftp_connect($url, $self->passive); $ftp->cwd($path) or die "unable to fetch $url as either a directory or file"; my $list = eval { $ftp->ls }; unless(defined $list) # NAT problem? try to use passive mode { $ftp->quit; $build->log("switching to @{[ $self->passive ? 'active' : 'passive' ]} mode"); $ftp = _ftp_connect($url, !$self->passive); $ftp->cwd($path) or die "unable to fetch $url as either a directory or file"; $list = $ftp->ls; die "cannot list directory $path on $url" unless defined $list; } die "no files found at $url" unless @$list; $path .= '/' unless $path =~ /\/$/; return { type => 'list', list => [ map { my $filename = $_; my $furl = $url->clone; $furl->path($path . $filename); my %h = ( filename => $filename, url => $furl->as_string, ); \%h; } sort @$list, ], }; }); $self; } sub _ftp_connect { my $url = shift; my $is_passive = shift || 0; my $ftp = Net::FTP->new( $url->host, Port =>$url->port, Passive =>$is_passive, ) or die "error fetching $url: $@"; $ftp->login($url->user, $url->password) or die "error on login $url: @{[ $ftp->message ]}"; $ftp->binary; $ftp; } 1; __END__ =pod =encoding UTF-8 =head1 NAME Alien::Build::Plugin::Fetch::NetFTP - Plugin for fetching files using Net::FTP =head1 VERSION version 2.48 =head1 SYNOPSIS use alienfile; share { start_url 'ftp://ftp.gnu.org/gnu/make'; plugin 'Fetch::NetFTP'; }; =head1 DESCRIPTION Note: in most case you will want to use L<Alien::Build::Plugin::Download::Negotiate> instead. It picks the appropriate fetch plugin based on your platform and environment. In some cases you may need to use this plugin directly instead. This fetch plugin fetches files and directory listings via the C<ftp>, protocol using L<Net::FTP>. =head1 PROPERTIES =head2 url The initial URL to fetch. This may be a directory or the final file. =head2 ssl This property is for compatibility with other fetch plugins, but is not used. =head2 passive If set to true, try passive mode FIRST. By default it will try an active mode, then passive mode. =head1 SEE ALSO L<Alien::Build::Plugin::Download::Negotiate>, L<Alien::Build>, L<alienfile>, L<Alien::Build::MM>, L<Alien> =head1 AUTHOR Author: Graham Ollis E<lt>plicease@cpan.orgE<gt> Contributors: Diab Jerius (DJERIUS) Roy Storey (KIWIROY) Ilya Pavlov David Mertens (run4flat) Mark Nunberg (mordy, mnunberg) Christian Walde (Mithaldu) Brian Wightman (MidLifeXis) Zaki Mughal (zmughal) mohawk (mohawk2, ETJ) Vikas N Kumar (vikasnkumar) Flavio Poletti (polettix) Salvador Fandiño (salva) Gianni Ceccarelli (dakkar) Pavel Shaydo (zwon, trinitum) Kang-min Liu (劉康民, gugod) Nicholas Shipp (nshp) Juan Julián Merelo Guervós (JJ) Joel Berger (JBERGER) Petr Písař (ppisar) Lance Wicks (LANCEW) Ahmad Fatoum (a3f, ATHREEF) José Joaquín Atria (JJATRIA) Duke Leto (LETO) Shoichi Kaji (SKAJI) Shawn Laffan (SLAFFAN) Paul Evans (leonerd, PEVANS) Håkon Hægland (hakonhagland, HAKONH) nick nauwelaerts (INPHOBIA) =head1 COPYRIGHT AND LICENSE This software is copyright (c) 2011-2020 by Graham Ollis. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself. =cut
Save Changes
Cancel / Back
Close ×
Server Info
Hostname: server05.hostinghome.co.in
Server IP: 192.168.74.40
PHP Version: 7.4.33
Server Software: Apache
System: Linux server05.hostinghome.co.in 3.10.0-962.3.2.lve1.5.81.el7.x86_64 #1 SMP Wed May 31 10:36:47 UTC 2023 x86_64
HDD Total: 1.95 TB
HDD Free: 700.05 GB
Domains on IP: N/A (Requires external lookup)
System Features
Safe Mode:
Off
disable_functions:
None
allow_url_fopen:
On
allow_url_include:
Off
magic_quotes_gpc:
Off
register_globals:
Off
open_basedir:
None
cURL:
Enabled
ZipArchive:
Disabled
MySQLi:
Enabled
PDO:
Enabled
wget:
Yes
curl (cmd):
Yes
perl:
Yes
python:
Yes
gcc:
Yes
pkexec:
No
git:
Yes
User Info
Username: itsweb
User ID (UID): 1619
Group ID (GID): 1621
Script Owner UID: 1619
Current Dir Owner: N/A