line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
# -*- Mode: cperl; coding: utf-8; cperl-indent-level: 4 -*- |
2
|
|
|
|
|
|
|
# vim: ts=4 sts=4 sw=4: |
3
|
|
|
|
|
|
|
package CPAN::FTP; |
4
|
12
|
|
|
12
|
|
64
|
use strict; |
|
12
|
|
|
|
|
19
|
|
|
12
|
|
|
|
|
545
|
|
5
|
|
|
|
|
|
|
|
6
|
12
|
|
|
12
|
|
54
|
use Fcntl qw(:flock); |
|
12
|
|
|
|
|
19
|
|
|
12
|
|
|
|
|
2046
|
|
7
|
12
|
|
|
12
|
|
66
|
use File::Basename qw(dirname); |
|
12
|
|
|
|
|
20
|
|
|
12
|
|
|
|
|
879
|
|
8
|
12
|
|
|
12
|
|
64
|
use File::Path qw(mkpath); |
|
12
|
|
|
|
|
20
|
|
|
12
|
|
|
|
|
689
|
|
9
|
12
|
|
|
12
|
|
4659
|
use CPAN::FTP::netrc; |
|
12
|
|
|
|
|
26
|
|
|
12
|
|
|
|
|
390
|
|
10
|
12
|
|
|
12
|
|
59
|
use vars qw($connect_to_internet_ok $Ua $Thesite $ThesiteURL $Themethod); |
|
12
|
|
|
|
|
18
|
|
|
12
|
|
|
|
|
909
|
|
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
@CPAN::FTP::ISA = qw(CPAN::Debug); |
13
|
|
|
|
|
|
|
|
14
|
12
|
|
|
|
|
83745
|
use vars qw( |
15
|
|
|
|
|
|
|
$VERSION |
16
|
12
|
|
|
12
|
|
53
|
); |
|
12
|
|
|
|
|
23
|
|
17
|
|
|
|
|
|
|
$VERSION = "5.5006"; |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
#-> sub CPAN::FTP::ftp_statistics |
20
|
|
|
|
|
|
|
# if they want to rewrite, they need to pass in a filehandle |
21
|
|
|
|
|
|
|
sub _ftp_statistics { |
22
|
0
|
|
|
0
|
|
0
|
my($self,$fh) = @_; |
23
|
0
|
0
|
|
|
|
0
|
my $locktype = $fh ? LOCK_EX : LOCK_SH; |
24
|
|
|
|
|
|
|
# XXX On Windows flock() implements mandatory locking, so we can |
25
|
|
|
|
|
|
|
# XXX only use shared locking to still allow _yaml_load_file() to |
26
|
|
|
|
|
|
|
# XXX read from the file using a different filehandle. |
27
|
0
|
0
|
|
|
|
0
|
$locktype = LOCK_SH if $^O eq "MSWin32"; |
28
|
|
|
|
|
|
|
|
29
|
0
|
|
0
|
|
|
0
|
$fh ||= FileHandle->new; |
30
|
0
|
|
|
|
|
0
|
my $file = File::Spec->catfile($CPAN::Config->{cpan_home},"FTPstats.yml"); |
31
|
0
|
|
|
|
|
0
|
mkpath dirname $file; |
32
|
0
|
0
|
|
|
|
0
|
open $fh, "+>>$file" or $CPAN::Frontend->mydie("Could not open '$file': $!"); |
33
|
0
|
|
|
|
|
0
|
my $sleep = 1; |
34
|
0
|
|
|
|
|
0
|
my $waitstart; |
35
|
0
|
|
|
|
|
0
|
while (!CPAN::_flock($fh, $locktype|LOCK_NB)) { |
36
|
0
|
|
0
|
|
|
0
|
$waitstart ||= localtime(); |
37
|
0
|
0
|
|
|
|
0
|
if ($sleep>3) { |
38
|
0
|
|
|
|
|
0
|
$CPAN::Frontend->mywarn("Waiting for a read lock on '$file' (since $waitstart)\n"); |
39
|
|
|
|
|
|
|
} |
40
|
0
|
|
|
|
|
0
|
$CPAN::Frontend->mysleep($sleep); |
41
|
0
|
0
|
|
|
|
0
|
if ($sleep <= 3) { |
|
|
0
|
|
|
|
|
|
42
|
0
|
|
|
|
|
0
|
$sleep+=0.33; |
43
|
|
|
|
|
|
|
} elsif ($sleep <=6) { |
44
|
0
|
|
|
|
|
0
|
$sleep+=0.11; |
45
|
|
|
|
|
|
|
} |
46
|
|
|
|
|
|
|
} |
47
|
0
|
|
|
|
|
0
|
my $stats = eval { CPAN->_yaml_loadfile($file); }; |
|
0
|
|
|
|
|
0
|
|
48
|
0
|
0
|
|
|
|
0
|
if ($@) { |
49
|
0
|
0
|
|
|
|
0
|
if (ref $@) { |
50
|
0
|
0
|
|
|
|
0
|
if (ref $@ eq "CPAN::Exception::yaml_not_installed") { |
|
|
0
|
|
|
|
|
|
51
|
0
|
|
|
|
|
0
|
chomp $@; |
52
|
0
|
|
|
|
|
0
|
$CPAN::Frontend->myprintonce("Warning (usually harmless): $@\n"); |
53
|
0
|
|
|
|
|
0
|
return; |
54
|
|
|
|
|
|
|
} elsif (ref $@ eq "CPAN::Exception::yaml_process_error") { |
55
|
0
|
|
|
|
|
0
|
my $time = time; |
56
|
0
|
|
|
|
|
0
|
my $to = "$file.$time"; |
57
|
0
|
|
|
|
|
0
|
$CPAN::Frontend->myprint("Error reading '$file': $@\nStashing away as '$to' to prevent further interruptions. You may want to remove that file later.\n"); |
58
|
0
|
0
|
|
|
|
0
|
rename $file, $to or $CPAN::Frontend->mydie("Could not rename: $!"); |
59
|
0
|
|
|
|
|
0
|
return; |
60
|
|
|
|
|
|
|
} |
61
|
|
|
|
|
|
|
} else { |
62
|
0
|
|
|
|
|
0
|
$CPAN::Frontend->mydie($@); |
63
|
|
|
|
|
|
|
} |
64
|
|
|
|
|
|
|
} |
65
|
0
|
|
|
|
|
0
|
CPAN::_flock($fh, LOCK_UN); |
66
|
0
|
|
|
|
|
0
|
return $stats->[0]; |
67
|
|
|
|
|
|
|
} |
68
|
|
|
|
|
|
|
|
69
|
|
|
|
|
|
|
#-> sub CPAN::FTP::_mytime |
70
|
|
|
|
|
|
|
sub _mytime () { |
71
|
6
|
50
|
|
6
|
|
26
|
if (CPAN->has_inst("Time::HiRes")) { |
72
|
6
|
|
|
|
|
36
|
return Time::HiRes::time(); |
73
|
|
|
|
|
|
|
} else { |
74
|
0
|
|
|
|
|
0
|
return time; |
75
|
|
|
|
|
|
|
} |
76
|
|
|
|
|
|
|
} |
77
|
|
|
|
|
|
|
|
78
|
|
|
|
|
|
|
#-> sub CPAN::FTP::_new_stats |
79
|
|
|
|
|
|
|
sub _new_stats { |
80
|
3
|
|
|
3
|
|
7
|
my($self,$file) = @_; |
81
|
3
|
|
|
|
|
11
|
my $ret = { |
82
|
|
|
|
|
|
|
file => $file, |
83
|
|
|
|
|
|
|
attempts => [], |
84
|
|
|
|
|
|
|
start => _mytime, |
85
|
|
|
|
|
|
|
}; |
86
|
3
|
|
|
|
|
6
|
$ret; |
87
|
|
|
|
|
|
|
} |
88
|
|
|
|
|
|
|
|
89
|
|
|
|
|
|
|
#-> sub CPAN::FTP::_add_to_statistics |
90
|
|
|
|
|
|
|
sub _add_to_statistics { |
91
|
3
|
|
|
3
|
|
4
|
my($self,$stats) = @_; |
92
|
3
|
|
|
|
|
11
|
my $yaml_module = CPAN::_yaml_module(); |
93
|
3
|
50
|
|
|
|
6
|
$self->debug("yaml_module[$yaml_module]") if $CPAN::DEBUG; |
94
|
3
|
50
|
|
|
|
9
|
if ($CPAN::META->has_inst($yaml_module)) { |
95
|
0
|
|
|
|
|
0
|
$stats->{thesiteurl} = $ThesiteURL; |
96
|
0
|
|
|
|
|
0
|
$stats->{end} = CPAN::FTP::_mytime(); |
97
|
0
|
|
|
|
|
0
|
my $fh = FileHandle->new; |
98
|
0
|
|
|
|
|
0
|
my $time = time; |
99
|
0
|
|
|
|
|
0
|
my $sdebug = 0; |
100
|
0
|
|
|
|
|
0
|
my @debug; |
101
|
0
|
0
|
|
|
|
0
|
@debug = $time if $sdebug; |
102
|
0
|
|
|
|
|
0
|
my $fullstats = $self->_ftp_statistics($fh); |
103
|
0
|
|
|
|
|
0
|
close $fh; |
104
|
0
|
|
0
|
|
|
0
|
$fullstats->{history} ||= []; |
105
|
0
|
0
|
|
|
|
0
|
push @debug, scalar @{$fullstats->{history}} if $sdebug; |
|
0
|
|
|
|
|
0
|
|
106
|
0
|
0
|
|
|
|
0
|
push @debug, time if $sdebug; |
107
|
0
|
|
|
|
|
0
|
push @{$fullstats->{history}}, $stats; |
|
0
|
|
|
|
|
0
|
|
108
|
|
|
|
|
|
|
# YAML.pm 0.62 is unacceptably slow with 999; |
109
|
|
|
|
|
|
|
# YAML::Syck 0.82 has no noticable performance problem with 999; |
110
|
0
|
|
0
|
|
|
0
|
my $ftpstats_size = $CPAN::Config->{ftpstats_size} || 99; |
111
|
0
|
|
0
|
|
|
0
|
my $ftpstats_period = $CPAN::Config->{ftpstats_period} || 14; |
112
|
0
|
|
0
|
|
|
0
|
while ( |
113
|
0
|
|
|
|
|
0
|
@{$fullstats->{history}} > $ftpstats_size |
114
|
|
|
|
|
|
|
|| $time - $fullstats->{history}[0]{start} > 86400*$ftpstats_period |
115
|
|
|
|
|
|
|
) { |
116
|
0
|
|
|
|
|
0
|
shift @{$fullstats->{history}} |
|
0
|
|
|
|
|
0
|
|
117
|
|
|
|
|
|
|
} |
118
|
0
|
0
|
|
|
|
0
|
push @debug, scalar @{$fullstats->{history}} if $sdebug; |
|
0
|
|
|
|
|
0
|
|
119
|
0
|
0
|
|
|
|
0
|
push @debug, time if $sdebug; |
120
|
0
|
0
|
|
|
|
0
|
push @debug, scalar localtime($fullstats->{history}[0]{start}) if $sdebug; |
121
|
|
|
|
|
|
|
# need no eval because if this fails, it is serious |
122
|
0
|
|
|
|
|
0
|
my $sfile = File::Spec->catfile($CPAN::Config->{cpan_home},"FTPstats.yml"); |
123
|
0
|
|
|
|
|
0
|
CPAN->_yaml_dumpfile("$sfile.$$",$fullstats); |
124
|
0
|
0
|
|
|
|
0
|
if ( $sdebug ) { |
125
|
0
|
|
|
|
|
0
|
local $CPAN::DEBUG = 512; # FTP |
126
|
0
|
|
|
|
|
0
|
push @debug, time; |
127
|
0
|
|
|
|
|
0
|
CPAN->debug(sprintf("DEBUG history: before_read[%d]before[%d]at[%d]". |
128
|
|
|
|
|
|
|
"after[%d]at[%d]oldest[%s]dumped backat[%d]", |
129
|
|
|
|
|
|
|
@debug, |
130
|
|
|
|
|
|
|
)); |
131
|
|
|
|
|
|
|
} |
132
|
|
|
|
|
|
|
# Win32 cannot rename a file to an existing filename |
133
|
0
|
0
|
0
|
|
|
0
|
unlink($sfile) if ($^O eq 'MSWin32' or $^O eq 'os2'); |
134
|
0
|
0
|
|
|
|
0
|
_copy_stat($sfile, "$sfile.$$") if -e $sfile; |
135
|
0
|
0
|
|
|
|
0
|
rename "$sfile.$$", $sfile |
136
|
|
|
|
|
|
|
or $CPAN::Frontend->mydie("Could not rename '$sfile.$$' to '$sfile': $!\n"); |
137
|
|
|
|
|
|
|
} |
138
|
|
|
|
|
|
|
} |
139
|
|
|
|
|
|
|
|
140
|
|
|
|
|
|
|
# Copy some stat information (owner, group, mode and) from one file to |
141
|
|
|
|
|
|
|
# another. |
142
|
|
|
|
|
|
|
# This is a utility function which might be moved to a utility repository. |
143
|
|
|
|
|
|
|
#-> sub CPAN::FTP::_copy_stat |
144
|
|
|
|
|
|
|
sub _copy_stat { |
145
|
0
|
|
|
0
|
|
0
|
my($src, $dest) = @_; |
146
|
0
|
|
|
|
|
0
|
my @stat = stat($src); |
147
|
0
|
0
|
|
|
|
0
|
if (!@stat) { |
148
|
0
|
|
|
|
|
0
|
$CPAN::Frontend->mywarn("Can't stat '$src': $!\n"); |
149
|
0
|
|
|
|
|
0
|
return; |
150
|
|
|
|
|
|
|
} |
151
|
|
|
|
|
|
|
|
152
|
0
|
|
|
|
|
0
|
eval { |
153
|
0
|
0
|
|
|
|
0
|
chmod $stat[2], $dest |
154
|
|
|
|
|
|
|
or $CPAN::Frontend->mywarn("Can't chmod '$dest' to " . sprintf("0%o", $stat[2]) . ": $!\n"); |
155
|
|
|
|
|
|
|
}; |
156
|
0
|
0
|
|
|
|
0
|
warn $@ if $@; |
157
|
0
|
|
|
|
|
0
|
eval { |
158
|
|
|
|
|
|
|
chown $stat[4], $stat[5], $dest |
159
|
0
|
0
|
|
|
|
0
|
or do { |
160
|
0
|
|
|
|
|
0
|
my $save_err = $!; # otherwise it's lost in the get... calls |
161
|
0
|
|
|
|
|
0
|
$CPAN::Frontend->mywarn("Can't chown '$dest' to " . |
162
|
|
|
|
|
|
|
(getpwuid($stat[4]))[0] . "/" . |
163
|
|
|
|
|
|
|
(getgrgid($stat[5]))[0] . ": $save_err\n" |
164
|
|
|
|
|
|
|
); |
165
|
|
|
|
|
|
|
}; |
166
|
|
|
|
|
|
|
}; |
167
|
0
|
0
|
|
|
|
0
|
warn $@ if $@; |
168
|
|
|
|
|
|
|
} |
169
|
|
|
|
|
|
|
|
170
|
|
|
|
|
|
|
# if file is CHECKSUMS, suggest the place where we got the file to be |
171
|
|
|
|
|
|
|
# checked from, maybe only for young files? |
172
|
|
|
|
|
|
|
#-> sub CPAN::FTP::_recommend_url_for |
173
|
|
|
|
|
|
|
sub _recommend_url_for { |
174
|
3
|
|
|
3
|
|
5
|
my($self, $file, $urllist) = @_; |
175
|
3
|
50
|
|
|
|
8
|
if ($file =~ s|/CHECKSUMS(.gz)?$||) { |
176
|
0
|
|
|
|
|
0
|
my $fullstats = $self->_ftp_statistics(); |
177
|
0
|
|
0
|
|
|
0
|
my $history = $fullstats->{history} || []; |
178
|
0
|
|
|
|
|
0
|
while (my $last = pop @$history) { |
179
|
0
|
0
|
|
|
|
0
|
last if $last->{end} - time > 3600; # only young results are interesting |
180
|
0
|
0
|
|
|
|
0
|
next unless $last->{file}; # dirname of nothing dies! |
181
|
0
|
0
|
|
|
|
0
|
next unless $file eq dirname($last->{file}); |
182
|
0
|
|
|
|
|
0
|
return $last->{thesiteurl}; |
183
|
|
|
|
|
|
|
} |
184
|
|
|
|
|
|
|
} |
185
|
3
|
50
|
33
|
|
|
13
|
if ($CPAN::Config->{randomize_urllist} |
186
|
|
|
|
|
|
|
&& |
187
|
|
|
|
|
|
|
rand(1) < $CPAN::Config->{randomize_urllist} |
188
|
|
|
|
|
|
|
) { |
189
|
0
|
|
|
|
|
0
|
$urllist->[int rand scalar @$urllist]; |
190
|
|
|
|
|
|
|
} else { |
191
|
3
|
|
|
|
|
9
|
return (); |
192
|
|
|
|
|
|
|
} |
193
|
|
|
|
|
|
|
} |
194
|
|
|
|
|
|
|
|
195
|
|
|
|
|
|
|
#-> sub CPAN::FTP::_get_urllist |
196
|
|
|
|
|
|
|
sub _get_urllist { |
197
|
3
|
|
|
3
|
|
3
|
my($self, $with_defaults) = @_; |
198
|
3
|
|
50
|
|
|
15
|
$with_defaults ||= 0; |
199
|
3
|
50
|
|
|
|
7
|
CPAN->debug("with_defaults[$with_defaults]") if $CPAN::DEBUG; |
200
|
|
|
|
|
|
|
|
201
|
3
|
|
50
|
|
|
7
|
$CPAN::Config->{urllist} ||= []; |
202
|
3
|
50
|
|
|
|
11
|
unless (ref $CPAN::Config->{urllist} eq 'ARRAY') { |
203
|
0
|
|
|
|
|
0
|
$CPAN::Frontend->mywarn("Malformed urllist; ignoring. Configuration file corrupt?\n"); |
204
|
0
|
|
|
|
|
0
|
$CPAN::Config->{urllist} = []; |
205
|
|
|
|
|
|
|
} |
206
|
3
|
50
|
|
|
|
6
|
my @urllist = grep { defined $_ and length $_ } @{$CPAN::Config->{urllist}}; |
|
3
|
|
|
|
|
17
|
|
|
3
|
|
|
|
|
6
|
|
207
|
3
|
50
|
|
|
|
8
|
push @urllist, @CPAN::Defaultsites if $with_defaults; |
208
|
3
|
|
|
|
|
6
|
for my $u (@urllist) { |
209
|
3
|
50
|
|
|
|
7
|
CPAN->debug("u[$u]") if $CPAN::DEBUG; |
210
|
3
|
50
|
|
|
|
26
|
if (UNIVERSAL::can($u,"text")) { |
211
|
0
|
0
|
|
|
|
0
|
$u->{TEXT} .= "/" unless substr($u->{TEXT},-1) eq "/"; |
212
|
|
|
|
|
|
|
} else { |
213
|
3
|
50
|
|
|
|
17
|
$u .= "/" unless substr($u,-1) eq "/"; |
214
|
3
|
|
|
|
|
24
|
$u = CPAN::URL->new(TEXT => $u, FROM => "USER"); |
215
|
|
|
|
|
|
|
} |
216
|
|
|
|
|
|
|
} |
217
|
3
|
|
|
|
|
9
|
\@urllist; |
218
|
|
|
|
|
|
|
} |
219
|
|
|
|
|
|
|
|
220
|
|
|
|
|
|
|
#-> sub CPAN::FTP::ftp_get ; |
221
|
|
|
|
|
|
|
sub ftp_get { |
222
|
0
|
|
|
0
|
0
|
0
|
my($class,$host,$dir,$file,$target) = @_; |
223
|
0
|
0
|
|
|
|
0
|
$class->debug( |
224
|
|
|
|
|
|
|
qq[Going to fetch file [$file] from dir [$dir] |
225
|
|
|
|
|
|
|
on host [$host] as local [$target]\n] |
226
|
|
|
|
|
|
|
) if $CPAN::DEBUG; |
227
|
0
|
|
|
|
|
0
|
my $ftp = Net::FTP->new($host); |
228
|
0
|
0
|
|
|
|
0
|
unless ($ftp) { |
229
|
0
|
|
|
|
|
0
|
$CPAN::Frontend->mywarn(" Could not connect to host '$host' with Net::FTP\n"); |
230
|
0
|
|
|
|
|
0
|
return; |
231
|
|
|
|
|
|
|
} |
232
|
0
|
0
|
|
|
|
0
|
return 0 unless defined $ftp; |
233
|
0
|
0
|
|
|
|
0
|
$ftp->debug(1) if $CPAN::DEBUG{'FTP'} & $CPAN::DEBUG; |
234
|
0
|
|
|
|
|
0
|
$class->debug(qq[Going to login("anonymous","$Config::Config{cf_email}")]); |
235
|
0
|
0
|
|
|
|
0
|
unless ( $ftp->login("anonymous",$Config::Config{'cf_email'}) ) { |
236
|
0
|
|
|
|
|
0
|
my $msg = $ftp->message; |
237
|
0
|
|
|
|
|
0
|
$CPAN::Frontend->mywarn(" Couldn't login on $host: $msg\n"); |
238
|
0
|
|
|
|
|
0
|
return; |
239
|
|
|
|
|
|
|
} |
240
|
0
|
0
|
|
|
|
0
|
unless ( $ftp->cwd($dir) ) { |
241
|
0
|
|
|
|
|
0
|
my $msg = $ftp->message; |
242
|
0
|
|
|
|
|
0
|
$CPAN::Frontend->mywarn(" Couldn't cwd $dir: $msg\n"); |
243
|
0
|
|
|
|
|
0
|
return; |
244
|
|
|
|
|
|
|
} |
245
|
0
|
|
|
|
|
0
|
$ftp->binary; |
246
|
0
|
0
|
|
|
|
0
|
$class->debug(qq[Going to ->get("$file","$target")\n]) if $CPAN::DEBUG; |
247
|
0
|
0
|
|
|
|
0
|
unless ( $ftp->get($file,$target) ) { |
248
|
0
|
|
|
|
|
0
|
my $msg = $ftp->message; |
249
|
0
|
|
|
|
|
0
|
$CPAN::Frontend->mywarn(" Couldn't fetch $file from $host: $msg\n"); |
250
|
0
|
|
|
|
|
0
|
return; |
251
|
|
|
|
|
|
|
} |
252
|
0
|
|
|
|
|
0
|
$ftp->quit; # it's ok if this fails |
253
|
0
|
|
|
|
|
0
|
return 1; |
254
|
|
|
|
|
|
|
} |
255
|
|
|
|
|
|
|
|
256
|
|
|
|
|
|
|
# If more accuracy is wanted/needed, Chris Leach sent me this patch... |
257
|
|
|
|
|
|
|
|
258
|
|
|
|
|
|
|
# > *** /install/perl/live/lib/CPAN.pm- Wed Sep 24 13:08:48 1997 |
259
|
|
|
|
|
|
|
# > --- /tmp/cp Wed Sep 24 13:26:40 1997 |
260
|
|
|
|
|
|
|
# > *************** |
261
|
|
|
|
|
|
|
# > *** 1562,1567 **** |
262
|
|
|
|
|
|
|
# > --- 1562,1580 ---- |
263
|
|
|
|
|
|
|
# > return 1 if substr($url,0,4) eq "file"; |
264
|
|
|
|
|
|
|
# > return 1 unless $url =~ m|://([^/]+)|; |
265
|
|
|
|
|
|
|
# > my $host = $1; |
266
|
|
|
|
|
|
|
# > + my $proxy = $CPAN::Config->{'http_proxy'} || $ENV{'http_proxy'}; |
267
|
|
|
|
|
|
|
# > + if ($proxy) { |
268
|
|
|
|
|
|
|
# > + $proxy =~ m|://([^/:]+)|; |
269
|
|
|
|
|
|
|
# > + $proxy = $1; |
270
|
|
|
|
|
|
|
# > + my $noproxy = $CPAN::Config->{'no_proxy'} || $ENV{'no_proxy'}; |
271
|
|
|
|
|
|
|
# > + if ($noproxy) { |
272
|
|
|
|
|
|
|
# > + if ($host !~ /$noproxy$/) { |
273
|
|
|
|
|
|
|
# > + $host = $proxy; |
274
|
|
|
|
|
|
|
# > + } |
275
|
|
|
|
|
|
|
# > + } else { |
276
|
|
|
|
|
|
|
# > + $host = $proxy; |
277
|
|
|
|
|
|
|
# > + } |
278
|
|
|
|
|
|
|
# > + } |
279
|
|
|
|
|
|
|
# > require Net::Ping; |
280
|
|
|
|
|
|
|
# > return 1 unless $Net::Ping::VERSION >= 2; |
281
|
|
|
|
|
|
|
# > my $p; |
282
|
|
|
|
|
|
|
|
283
|
|
|
|
|
|
|
|
284
|
|
|
|
|
|
|
#-> sub CPAN::FTP::localize ; |
285
|
|
|
|
|
|
|
sub localize { |
286
|
3
|
|
|
3
|
0
|
6
|
my($self,$file,$aslocal,$force,$with_defaults) = @_; |
287
|
3
|
|
50
|
|
|
9
|
$force ||= 0; |
288
|
3
|
50
|
|
|
|
8
|
Carp::croak( "Usage: ->localize(cpan_file,as_local_file[,\$force])" ) |
289
|
|
|
|
|
|
|
unless defined $aslocal; |
290
|
3
|
50
|
|
|
|
8
|
if ($CPAN::DEBUG){ |
291
|
0
|
|
|
|
|
0
|
require Carp; |
292
|
0
|
|
|
|
|
0
|
my $longmess = Carp::longmess(); |
293
|
0
|
|
|
|
|
0
|
$self->debug("file[$file] aslocal[$aslocal] force[$force] carplongmess[$longmess]"); |
294
|
|
|
|
|
|
|
} |
295
|
3
|
50
|
|
|
|
13
|
if ($^O eq 'MacOS') { |
296
|
|
|
|
|
|
|
# Comment by AK on 2000-09-03: Uniq short filenames would be |
297
|
|
|
|
|
|
|
# available in CHECKSUMS file |
298
|
0
|
|
|
|
|
0
|
my($name, $path) = File::Basename::fileparse($aslocal, ''); |
299
|
0
|
0
|
|
|
|
0
|
if (length($name) > 31) { |
300
|
0
|
|
|
|
|
0
|
$name =~ s/( |
301
|
|
|
|
|
|
|
\.( |
302
|
|
|
|
|
|
|
readme(\.(gz|Z))? | |
303
|
|
|
|
|
|
|
(tar\.)?(gz|Z) | |
304
|
|
|
|
|
|
|
tgz | |
305
|
|
|
|
|
|
|
zip | |
306
|
|
|
|
|
|
|
pm\.(gz|Z) |
307
|
|
|
|
|
|
|
) |
308
|
|
|
|
|
|
|
)$//x; |
309
|
0
|
|
|
|
|
0
|
my $suf = $1; |
310
|
0
|
|
|
|
|
0
|
my $size = 31 - length($suf); |
311
|
0
|
|
|
|
|
0
|
while (length($name) > $size) { |
312
|
0
|
|
|
|
|
0
|
chop $name; |
313
|
|
|
|
|
|
|
} |
314
|
0
|
|
|
|
|
0
|
$name .= $suf; |
315
|
0
|
|
|
|
|
0
|
$aslocal = File::Spec->catfile($path, $name); |
316
|
|
|
|
|
|
|
} |
317
|
|
|
|
|
|
|
} |
318
|
|
|
|
|
|
|
|
319
|
3
|
0
|
33
|
|
|
30
|
if (-f $aslocal && -r _ && !($force & 1)) { |
|
|
|
33
|
|
|
|
|
320
|
0
|
|
|
|
|
0
|
my $size; |
321
|
0
|
0
|
|
|
|
0
|
if ($size = -s $aslocal) { |
322
|
0
|
0
|
|
|
|
0
|
$self->debug("aslocal[$aslocal]size[$size]") if $CPAN::DEBUG; |
323
|
0
|
|
|
|
|
0
|
return $aslocal; |
324
|
|
|
|
|
|
|
} else { |
325
|
|
|
|
|
|
|
# empty file from a previous unsuccessful attempt to download it |
326
|
0
|
0
|
|
|
|
0
|
unlink $aslocal or |
327
|
|
|
|
|
|
|
$CPAN::Frontend->mydie("Found a zero-length '$aslocal' that I ". |
328
|
|
|
|
|
|
|
"could not remove."); |
329
|
|
|
|
|
|
|
} |
330
|
|
|
|
|
|
|
} |
331
|
3
|
|
|
|
|
9
|
my($maybe_restore) = 0; |
332
|
3
|
50
|
|
|
|
20
|
if (-f $aslocal) { |
333
|
0
|
|
|
|
|
0
|
rename $aslocal, "$aslocal.bak$$"; |
334
|
0
|
|
|
|
|
0
|
$maybe_restore++; |
335
|
|
|
|
|
|
|
} |
336
|
|
|
|
|
|
|
|
337
|
3
|
|
|
|
|
174
|
my($aslocal_dir) = dirname($aslocal); |
338
|
|
|
|
|
|
|
# Inheritance is not easier to manage than a few if/else branches |
339
|
3
|
50
|
|
|
|
13
|
if ($CPAN::META->has_usable('LWP::UserAgent')) { |
340
|
3
|
100
|
|
|
|
9
|
unless ($Ua) { |
341
|
1
|
|
|
|
|
11
|
CPAN::LWP::UserAgent->config; |
342
|
1
|
|
|
|
|
3
|
eval {$Ua = CPAN::LWP::UserAgent->new;}; # Why is has_usable still not fit enough? |
|
1
|
|
|
|
|
11
|
|
343
|
1
|
50
|
|
|
|
2211
|
if ($@) { |
344
|
0
|
0
|
|
|
|
0
|
$CPAN::Frontend->mywarn("CPAN::LWP::UserAgent->new dies with $@\n") |
345
|
|
|
|
|
|
|
if $CPAN::DEBUG; |
346
|
|
|
|
|
|
|
} else { |
347
|
1
|
|
|
|
|
9
|
my($var); |
348
|
1
|
50
|
33
|
|
|
12
|
$Ua->proxy('ftp', $var) |
349
|
|
|
|
|
|
|
if $var = $CPAN::Config->{ftp_proxy} || $ENV{ftp_proxy}; |
350
|
1
|
50
|
33
|
|
|
14
|
$Ua->proxy('http', $var) |
351
|
|
|
|
|
|
|
if $var = $CPAN::Config->{http_proxy} || $ENV{http_proxy}; |
352
|
1
|
50
|
33
|
|
|
10
|
$Ua->no_proxy($var) |
353
|
|
|
|
|
|
|
if $var = $CPAN::Config->{no_proxy} || $ENV{no_proxy}; |
354
|
|
|
|
|
|
|
} |
355
|
|
|
|
|
|
|
} |
356
|
|
|
|
|
|
|
} |
357
|
3
|
|
|
|
|
8
|
for my $prx (qw(ftp_proxy http_proxy no_proxy)) { |
358
|
9
|
50
|
|
|
|
21
|
$ENV{$prx} = $CPAN::Config->{$prx} if $CPAN::Config->{$prx}; |
359
|
|
|
|
|
|
|
} |
360
|
|
|
|
|
|
|
|
361
|
|
|
|
|
|
|
# Try the list of urls for each single object. We keep a record |
362
|
|
|
|
|
|
|
# where we did get a file from |
363
|
3
|
|
|
|
|
3
|
my(@reordered,$last); |
364
|
3
|
|
|
|
|
17
|
my $ccurllist = $self->_get_urllist($with_defaults); |
365
|
3
|
|
|
|
|
7
|
$last = $#$ccurllist; |
366
|
3
|
50
|
|
|
|
10
|
if ($force & 2) { # local cpans probably out of date, don't reorder |
367
|
3
|
|
|
|
|
11
|
@reordered = (0..$last); |
368
|
|
|
|
|
|
|
} else { |
369
|
0
|
0
|
0
|
|
|
0
|
@reordered = |
370
|
|
|
|
|
|
|
sort { |
371
|
0
|
|
|
|
|
0
|
(substr($ccurllist->[$b],0,4) eq "file") |
372
|
|
|
|
|
|
|
<=> |
373
|
|
|
|
|
|
|
(substr($ccurllist->[$a],0,4) eq "file") |
374
|
|
|
|
|
|
|
or |
375
|
|
|
|
|
|
|
defined($ThesiteURL) |
376
|
|
|
|
|
|
|
and |
377
|
|
|
|
|
|
|
($ccurllist->[$b] eq $ThesiteURL) |
378
|
|
|
|
|
|
|
<=> |
379
|
|
|
|
|
|
|
($ccurllist->[$a] eq $ThesiteURL) |
380
|
|
|
|
|
|
|
} 0..$last; |
381
|
|
|
|
|
|
|
} |
382
|
3
|
|
|
|
|
5
|
my(@levels); |
383
|
3
|
|
100
|
|
|
14
|
$Themethod ||= ""; |
384
|
3
|
50
|
|
|
|
9
|
$self->debug("Themethod[$Themethod]reordered[@reordered]") if $CPAN::DEBUG; |
385
|
3
|
|
|
|
|
51
|
my @all_levels = ( |
386
|
|
|
|
|
|
|
["dleasy", "file"], |
387
|
|
|
|
|
|
|
["dleasy"], |
388
|
|
|
|
|
|
|
["dlhard"], |
389
|
|
|
|
|
|
|
["dlhardest"], |
390
|
|
|
|
|
|
|
["dleasy", "http","defaultsites"], |
391
|
|
|
|
|
|
|
["dlhard", "http","defaultsites"], |
392
|
|
|
|
|
|
|
["dleasy", "ftp", "defaultsites"], |
393
|
|
|
|
|
|
|
["dlhard", "ftp", "defaultsites"], |
394
|
|
|
|
|
|
|
["dlhardest","", "defaultsites"], |
395
|
|
|
|
|
|
|
); |
396
|
3
|
100
|
|
|
|
9
|
if ($Themethod) { |
397
|
2
|
|
|
|
|
4
|
@levels = grep {$_->[0] eq $Themethod} @all_levels; |
|
18
|
|
|
|
|
22
|
|
398
|
2
|
|
|
|
|
3
|
push @levels, grep {$_->[0] ne $Themethod} @all_levels; |
|
18
|
|
|
|
|
21
|
|
399
|
|
|
|
|
|
|
} else { |
400
|
1
|
|
|
|
|
4
|
@levels = @all_levels; |
401
|
|
|
|
|
|
|
} |
402
|
3
|
50
|
|
|
|
12
|
@levels = qw/dleasy/ if $^O eq 'MacOS'; |
403
|
3
|
|
|
|
|
6
|
my($levelno); |
404
|
3
|
50
|
|
|
|
32
|
local $ENV{FTP_PASSIVE} = |
405
|
|
|
|
|
|
|
exists $CPAN::Config->{ftp_passive} ? |
406
|
|
|
|
|
|
|
$CPAN::Config->{ftp_passive} : 1; |
407
|
3
|
|
|
|
|
6
|
my $ret; |
408
|
3
|
|
|
|
|
11
|
my $stats = $self->_new_stats($file); |
409
|
3
|
|
|
|
|
7
|
for ($CPAN::Config->{connect_to_internet_ok}) { |
410
|
3
|
50
|
33
|
|
|
17
|
$connect_to_internet_ok = $_ if not defined $connect_to_internet_ok and defined $_; |
411
|
|
|
|
|
|
|
} |
412
|
3
|
|
|
|
|
8
|
LEVEL: for $levelno (0..$#levels) { |
413
|
3
|
|
|
|
|
51
|
my $level_tuple = $levels[$levelno]; |
414
|
3
|
|
|
|
|
14
|
my($level,$scheme,$sitetag) = @$level_tuple; |
415
|
3
|
50
|
33
|
|
|
19
|
$self->mymkpath($aslocal_dir) unless $scheme && "file" eq $scheme; |
416
|
3
|
|
33
|
|
|
17
|
my $defaultsites = $sitetag && $sitetag eq "defaultsites" && !@$ccurllist; |
417
|
3
|
|
|
|
|
4
|
my @urllist; |
418
|
3
|
50
|
|
|
|
12
|
if ($defaultsites) { |
419
|
0
|
0
|
|
|
|
0
|
unless (defined $connect_to_internet_ok) { |
420
|
0
|
|
|
|
|
0
|
$CPAN::Frontend->myprint(sprintf qq{ |
421
|
|
|
|
|
|
|
I would like to connect to one of the following sites to get '%s': |
422
|
|
|
|
|
|
|
|
423
|
|
|
|
|
|
|
%s |
424
|
|
|
|
|
|
|
}, |
425
|
|
|
|
|
|
|
$file, |
426
|
0
|
|
|
|
|
0
|
join("",map { " ".$_->text."\n" } @CPAN::Defaultsites), |
427
|
|
|
|
|
|
|
); |
428
|
0
|
|
|
|
|
0
|
my $answer = CPAN::Shell::colorable_makemaker_prompt("Is it OK to try to connect to the Internet?", "yes"); |
429
|
0
|
0
|
|
|
|
0
|
if ($answer =~ /^y/i) { |
430
|
0
|
|
|
|
|
0
|
$connect_to_internet_ok = 1; |
431
|
|
|
|
|
|
|
} else { |
432
|
0
|
|
|
|
|
0
|
$connect_to_internet_ok = 0; |
433
|
|
|
|
|
|
|
} |
434
|
|
|
|
|
|
|
} |
435
|
0
|
0
|
|
|
|
0
|
if ($connect_to_internet_ok) { |
436
|
0
|
|
|
|
|
0
|
@urllist = @CPAN::Defaultsites; |
437
|
|
|
|
|
|
|
} else { |
438
|
0
|
|
|
|
|
0
|
my $sleep = 2; |
439
|
|
|
|
|
|
|
# the tricky thing about dying here is that everybody |
440
|
|
|
|
|
|
|
# believes that calls to exists() or all_objects() are |
441
|
|
|
|
|
|
|
# safe. |
442
|
0
|
|
|
|
|
0
|
require CPAN::Exception::blocked_urllist; |
443
|
0
|
|
|
|
|
0
|
die CPAN::Exception::blocked_urllist->new; |
444
|
|
|
|
|
|
|
} |
445
|
|
|
|
|
|
|
} else { # ! $defaultsites |
446
|
3
|
50
|
|
|
|
16
|
my @host_seq = $level =~ /dleasy/ ? |
447
|
|
|
|
|
|
|
@reordered : 0..$last; # reordered has file and $Thesiteurl first |
448
|
3
|
|
|
|
|
6
|
@urllist = map { $ccurllist->[$_] } @host_seq; |
|
3
|
|
|
|
|
12
|
|
449
|
|
|
|
|
|
|
} |
450
|
3
|
50
|
|
|
|
13
|
$self->debug("synth. urllist[@urllist]") if $CPAN::DEBUG; |
451
|
3
|
|
|
|
|
13
|
my $aslocal_tempfile = $aslocal . ".tmp" . $$; |
452
|
3
|
50
|
|
|
|
11
|
if (my $recommend = $self->_recommend_url_for($file,\@urllist)) { |
453
|
0
|
|
|
|
|
0
|
@urllist = grep { $_ ne $recommend } @urllist; |
|
0
|
|
|
|
|
0
|
|
454
|
0
|
|
|
|
|
0
|
unshift @urllist, $recommend; |
455
|
|
|
|
|
|
|
} |
456
|
3
|
50
|
|
|
|
10
|
$self->debug("synth. urllist[@urllist]") if $CPAN::DEBUG; |
457
|
3
|
|
|
|
|
11
|
$ret = $self->hostdlxxx($level,$scheme,\@urllist,$file,$aslocal_tempfile,$stats); |
458
|
3
|
50
|
|
|
|
8
|
if ($ret) { |
459
|
3
|
50
|
|
|
|
6
|
CPAN->debug("ret[$ret]aslocal[$aslocal]") if $CPAN::DEBUG; |
460
|
3
|
50
|
33
|
|
|
64
|
if ($ret eq $aslocal_tempfile) { |
|
|
50
|
|
|
|
|
|
461
|
|
|
|
|
|
|
# if we got it exactly as we asked for, only then we |
462
|
|
|
|
|
|
|
# want to rename |
463
|
0
|
0
|
|
|
|
0
|
rename $aslocal_tempfile, $aslocal |
464
|
|
|
|
|
|
|
or $CPAN::Frontend->mydie("Error while trying to rename ". |
465
|
|
|
|
|
|
|
"'$ret' to '$aslocal': $!"); |
466
|
0
|
|
|
|
|
0
|
$ret = $aslocal; |
467
|
|
|
|
|
|
|
} |
468
|
|
|
|
|
|
|
elsif (-f $ret && $scheme eq 'file' ) { |
469
|
|
|
|
|
|
|
# it's a local file, so there's nothing left to do, we |
470
|
|
|
|
|
|
|
# let them read from where it is |
471
|
|
|
|
|
|
|
} |
472
|
3
|
|
|
|
|
229
|
$Themethod = $level; |
473
|
3
|
|
|
|
|
6
|
my $now = time; |
474
|
|
|
|
|
|
|
# utime $now, $now, $aslocal; # too bad, if we do that, we |
475
|
|
|
|
|
|
|
# might alter a local mirror |
476
|
3
|
50
|
|
|
|
6
|
$self->debug("level[$level]") if $CPAN::DEBUG; |
477
|
3
|
|
|
|
|
10
|
last LEVEL; |
478
|
|
|
|
|
|
|
} else { |
479
|
0
|
|
|
|
|
0
|
unlink $aslocal_tempfile; |
480
|
0
|
0
|
|
|
|
0
|
last if $CPAN::Signal; # need to cleanup |
481
|
|
|
|
|
|
|
} |
482
|
|
|
|
|
|
|
} |
483
|
3
|
50
|
|
|
|
7
|
if ($ret) { |
484
|
3
|
|
|
|
|
40
|
$stats->{filesize} = -s $ret; |
485
|
|
|
|
|
|
|
} |
486
|
3
|
50
|
|
|
|
8
|
$self->debug("before _add_to_statistics") if $CPAN::DEBUG; |
487
|
3
|
|
|
|
|
14
|
$self->_add_to_statistics($stats); |
488
|
3
|
50
|
|
|
|
7
|
$self->debug("after _add_to_statistics") if $CPAN::DEBUG; |
489
|
3
|
50
|
|
|
|
5
|
if ($ret) { |
490
|
3
|
|
|
|
|
43
|
unlink "$aslocal.bak$$"; |
491
|
3
|
|
|
|
|
45
|
return $ret; |
492
|
|
|
|
|
|
|
} |
493
|
0
|
0
|
|
|
|
0
|
unless ($CPAN::Signal) { |
494
|
0
|
|
|
|
|
0
|
my(@mess); |
495
|
0
|
|
|
|
|
0
|
local $" = " "; |
496
|
0
|
0
|
|
|
|
0
|
if (@{$CPAN::Config->{urllist}}) { |
|
0
|
|
|
|
|
0
|
|
497
|
0
|
|
|
|
|
0
|
push @mess, |
498
|
|
|
|
|
|
|
qq{Please check, if the URLs I found in your configuration file \(}. |
499
|
0
|
|
|
|
|
0
|
join(", ", @{$CPAN::Config->{urllist}}). |
500
|
|
|
|
|
|
|
qq{\) are valid.}; |
501
|
|
|
|
|
|
|
} else { |
502
|
0
|
|
|
|
|
0
|
push @mess, qq{Your urllist is empty!}; |
503
|
|
|
|
|
|
|
} |
504
|
0
|
|
|
|
|
0
|
push @mess, qq{The urllist can be edited.}, |
505
|
|
|
|
|
|
|
qq{E.g. with 'o conf urllist push ftp://myurl/'}; |
506
|
0
|
|
|
|
|
0
|
$CPAN::Frontend->mywarn(Text::Wrap::wrap("","","@mess"). "\n\n"); |
507
|
0
|
|
|
|
|
0
|
$CPAN::Frontend->mydie("Could not fetch $file\n"); |
508
|
|
|
|
|
|
|
} |
509
|
0
|
0
|
|
|
|
0
|
if ($maybe_restore) { |
510
|
0
|
|
|
|
|
0
|
rename "$aslocal.bak$$", $aslocal; |
511
|
0
|
|
|
|
|
0
|
$CPAN::Frontend->myprint("Trying to get away with old file:\n" . |
512
|
|
|
|
|
|
|
$self->ls($aslocal) . "\n"); |
513
|
0
|
|
|
|
|
0
|
return $aslocal; |
514
|
|
|
|
|
|
|
} |
515
|
0
|
|
|
|
|
0
|
return; |
516
|
|
|
|
|
|
|
} |
517
|
|
|
|
|
|
|
|
518
|
|
|
|
|
|
|
sub mymkpath { |
519
|
0
|
|
|
0
|
0
|
0
|
my($self, $aslocal_dir) = @_; |
520
|
0
|
|
|
|
|
0
|
mkpath($aslocal_dir); |
521
|
0
|
0
|
|
|
|
0
|
$CPAN::Frontend->mywarn(qq{Warning: You are not allowed to write into }. |
522
|
|
|
|
|
|
|
qq{directory "$aslocal_dir". |
523
|
|
|
|
|
|
|
I\'ll continue, but if you encounter problems, they may be due |
524
|
|
|
|
|
|
|
to insufficient permissions.\n}) unless -w $aslocal_dir; |
525
|
|
|
|
|
|
|
} |
526
|
|
|
|
|
|
|
|
527
|
|
|
|
|
|
|
sub hostdlxxx { |
528
|
3
|
|
|
3
|
0
|
3
|
my $self = shift; |
529
|
3
|
|
|
|
|
5
|
my $level = shift; |
530
|
3
|
|
|
|
|
3
|
my $scheme = shift; |
531
|
3
|
|
|
|
|
3
|
my $h = shift; |
532
|
3
|
50
|
|
|
|
63
|
$h = [ grep /^\Q$scheme\E:/, @$h ] if $scheme; |
533
|
3
|
|
|
|
|
7
|
my $method = "host$level"; |
534
|
3
|
|
|
|
|
14
|
$self->$method($h, @_); |
535
|
|
|
|
|
|
|
} |
536
|
|
|
|
|
|
|
|
537
|
|
|
|
|
|
|
sub _set_attempt { |
538
|
3
|
|
|
3
|
|
9
|
my($self,$stats,$method,$url) = @_; |
539
|
3
|
|
|
|
|
5
|
push @{$stats->{attempts}}, { |
|
3
|
|
|
|
|
9
|
|
540
|
|
|
|
|
|
|
method => $method, |
541
|
|
|
|
|
|
|
start => _mytime, |
542
|
|
|
|
|
|
|
url => $url, |
543
|
|
|
|
|
|
|
}; |
544
|
|
|
|
|
|
|
} |
545
|
|
|
|
|
|
|
|
546
|
|
|
|
|
|
|
# package CPAN::FTP; |
547
|
|
|
|
|
|
|
sub hostdleasy { #called from hostdlxxx |
548
|
3
|
|
|
3
|
0
|
4
|
my($self,$host_seq,$file,$aslocal,$stats) = @_; |
549
|
3
|
|
|
|
|
4
|
my($ro_url); |
550
|
3
|
|
|
|
|
6
|
HOSTEASY: for $ro_url (@$host_seq) { |
551
|
3
|
|
|
|
|
12
|
$self->_set_attempt($stats,"dleasy",$ro_url); |
552
|
3
|
|
|
|
|
11
|
my $url .= "$ro_url$file"; |
553
|
3
|
50
|
|
|
|
11
|
$self->debug("localizing perlish[$url]") if $CPAN::DEBUG; |
554
|
3
|
50
|
|
|
|
18
|
if ($url =~ /^file:/) { |
555
|
3
|
|
|
|
|
4
|
my $l; |
556
|
3
|
50
|
|
|
|
8
|
if ($CPAN::META->has_inst('URI::URL')) { |
557
|
3
|
|
|
|
|
20
|
my $u = URI::URL->new($url); |
558
|
3
|
|
|
|
|
5403
|
$l = $u->file; |
559
|
|
|
|
|
|
|
} else { # works only on Unix, is poorly constructed, but |
560
|
|
|
|
|
|
|
# hopefully better than nothing. |
561
|
|
|
|
|
|
|
# RFC 1738 says fileurl BNF is |
562
|
|
|
|
|
|
|
# fileurl = "file://" [ host | "localhost" ] "/" fpath |
563
|
|
|
|
|
|
|
# Thanks to "Mark D. Baushke" for |
564
|
|
|
|
|
|
|
# the code |
565
|
0
|
|
|
|
|
0
|
($l = $url) =~ s|^file://[^/]*/|/|; # discard the host part |
566
|
0
|
|
|
|
|
0
|
$l =~ s|^file:||; # assume they |
567
|
|
|
|
|
|
|
# meant |
568
|
|
|
|
|
|
|
# file://localhost |
569
|
0
|
0
|
0
|
|
|
0
|
$l =~ s|^/||s |
570
|
|
|
|
|
|
|
if ! -f $l && $l =~ m|^/\w:|; # e.g. /P: |
571
|
|
|
|
|
|
|
} |
572
|
3
|
50
|
|
|
|
2055
|
$self->debug("local file[$l]") if $CPAN::DEBUG; |
573
|
3
|
50
|
33
|
|
|
50
|
if ( -f $l && -r _) { |
574
|
0
|
|
|
|
|
0
|
$ThesiteURL = $ro_url; |
575
|
0
|
|
|
|
|
0
|
return $l; |
576
|
|
|
|
|
|
|
} |
577
|
|
|
|
|
|
|
# If request is for a compressed file and we can find the |
578
|
|
|
|
|
|
|
# uncompressed file also, return the path of the uncompressed file |
579
|
|
|
|
|
|
|
# otherwise, decompress it and return the resulting path |
580
|
3
|
50
|
0
|
|
|
32
|
if ($l =~ /(.+)\.gz$/) { |
|
|
0
|
|
|
|
|
|
|
|
0
|
|
|
|
|
|
581
|
3
|
|
|
|
|
7
|
my $ungz = $1; |
582
|
3
|
50
|
33
|
|
|
60
|
if ( -f $ungz && -r _) { |
|
|
0
|
0
|
|
|
|
|
583
|
3
|
|
|
|
|
7
|
$ThesiteURL = $ro_url; |
584
|
3
|
|
|
|
|
26
|
return $ungz; |
585
|
|
|
|
|
|
|
} |
586
|
|
|
|
|
|
|
elsif (-f $l && -r _) { |
587
|
0
|
|
|
|
|
0
|
eval { CPAN::Tarzip->new($l)->gunzip($aslocal) }; |
|
0
|
|
|
|
|
0
|
|
588
|
0
|
0
|
0
|
|
|
0
|
if ( -f $aslocal && -s _) { |
|
|
0
|
|
|
|
|
|
|
|
0
|
|
|
|
|
|
589
|
0
|
|
|
|
|
0
|
$ThesiteURL = $ro_url; |
590
|
0
|
|
|
|
|
0
|
return $aslocal; |
591
|
|
|
|
|
|
|
} |
592
|
|
|
|
|
|
|
elsif (! -s $aslocal) { |
593
|
0
|
|
|
|
|
0
|
unlink $aslocal; |
594
|
|
|
|
|
|
|
} |
595
|
|
|
|
|
|
|
elsif (-f $l) { |
596
|
0
|
0
|
|
|
|
0
|
$CPAN::Frontend->mywarn("Error decompressing '$l': $@\n") |
597
|
|
|
|
|
|
|
if $@; |
598
|
0
|
|
|
|
|
0
|
return; |
599
|
|
|
|
|
|
|
} |
600
|
|
|
|
|
|
|
} |
601
|
|
|
|
|
|
|
} |
602
|
|
|
|
|
|
|
# Otherwise, return the local file path if it exists |
603
|
|
|
|
|
|
|
elsif ( -f $l && -r _) { |
604
|
0
|
|
|
|
|
0
|
$ThesiteURL = $ro_url; |
605
|
0
|
|
|
|
|
0
|
return $l; |
606
|
|
|
|
|
|
|
} |
607
|
|
|
|
|
|
|
# If we can't find it, but there is a compressed version |
608
|
|
|
|
|
|
|
# of it, then decompress it |
609
|
|
|
|
|
|
|
elsif (-f "$l.gz") { |
610
|
0
|
0
|
|
|
|
0
|
$self->debug("found compressed $l.gz") if $CPAN::DEBUG; |
611
|
0
|
|
|
|
|
0
|
eval { CPAN::Tarzip->new("$l.gz")->gunzip($aslocal) }; |
|
0
|
|
|
|
|
0
|
|
612
|
0
|
0
|
|
|
|
0
|
if ( -f $aslocal) { |
613
|
0
|
|
|
|
|
0
|
$ThesiteURL = $ro_url; |
614
|
0
|
|
|
|
|
0
|
return $aslocal; |
615
|
|
|
|
|
|
|
} |
616
|
|
|
|
|
|
|
else { |
617
|
0
|
0
|
|
|
|
0
|
$CPAN::Frontend->mywarn("Error decompressing '$l': $@\n") |
618
|
|
|
|
|
|
|
if $@; |
619
|
0
|
|
|
|
|
0
|
return; |
620
|
|
|
|
|
|
|
} |
621
|
|
|
|
|
|
|
} |
622
|
0
|
|
|
|
|
0
|
$CPAN::Frontend->mywarn("Could not find '$l'\n"); |
623
|
|
|
|
|
|
|
} |
624
|
0
|
0
|
|
|
|
0
|
$self->debug("it was not a file URL") if $CPAN::DEBUG; |
625
|
0
|
0
|
0
|
|
|
0
|
if ($CPAN::META->has_usable('LWP')) { |
|
|
0
|
|
|
|
|
|
626
|
0
|
|
|
|
|
0
|
$CPAN::Frontend->myprint("Fetching with LWP:\n$url\n"); |
627
|
0
|
0
|
|
|
|
0
|
unless ($Ua) { |
628
|
0
|
|
|
|
|
0
|
CPAN::LWP::UserAgent->config; |
629
|
0
|
|
|
|
|
0
|
eval { $Ua = CPAN::LWP::UserAgent->new; }; |
|
0
|
|
|
|
|
0
|
|
630
|
0
|
0
|
|
|
|
0
|
if ($@) { |
631
|
0
|
|
|
|
|
0
|
$CPAN::Frontend->mywarn("CPAN::LWP::UserAgent->new dies with $@\n"); |
632
|
|
|
|
|
|
|
} |
633
|
|
|
|
|
|
|
} |
634
|
0
|
|
|
|
|
0
|
my $res = $Ua->mirror($url, $aslocal); |
635
|
0
|
0
|
|
|
|
0
|
if ($res->is_success) { |
|
|
0
|
|
|
|
|
|
636
|
0
|
|
|
|
|
0
|
$ThesiteURL = $ro_url; |
637
|
0
|
|
|
|
|
0
|
my $now = time; |
638
|
0
|
|
|
|
|
0
|
utime $now, $now, $aslocal; # download time is more |
639
|
|
|
|
|
|
|
# important than upload |
640
|
|
|
|
|
|
|
# time |
641
|
0
|
|
|
|
|
0
|
return $aslocal; |
642
|
|
|
|
|
|
|
} elsif ($url !~ /\.gz(?!\n)\Z/) { |
643
|
0
|
|
|
|
|
0
|
my $gzurl = "$url.gz"; |
644
|
0
|
|
|
|
|
0
|
$CPAN::Frontend->myprint("Fetching with LWP:\n$gzurl\n"); |
645
|
0
|
|
|
|
|
0
|
$res = $Ua->mirror($gzurl, "$aslocal.gz"); |
646
|
0
|
0
|
|
|
|
0
|
if ($res->is_success) { |
647
|
0
|
0
|
|
|
|
0
|
if (eval {CPAN::Tarzip->new("$aslocal.gz")->gunzip($aslocal)}) { |
|
0
|
|
|
|
|
0
|
|
648
|
0
|
|
|
|
|
0
|
$ThesiteURL = $ro_url; |
649
|
0
|
|
|
|
|
0
|
return $aslocal; |
650
|
|
|
|
|
|
|
} |
651
|
|
|
|
|
|
|
} |
652
|
|
|
|
|
|
|
} else { |
653
|
0
|
|
|
|
|
0
|
$CPAN::Frontend->myprint(sprintf( |
654
|
|
|
|
|
|
|
"LWP failed with code[%s] message[%s]\n", |
655
|
|
|
|
|
|
|
$res->code, |
656
|
|
|
|
|
|
|
$res->message, |
657
|
|
|
|
|
|
|
)); |
658
|
|
|
|
|
|
|
# Alan Burlison informed me that in firewall environments |
659
|
|
|
|
|
|
|
# Net::FTP can still succeed where LWP fails. So we do not |
660
|
|
|
|
|
|
|
# skip Net::FTP anymore when LWP is available. |
661
|
|
|
|
|
|
|
} |
662
|
|
|
|
|
|
|
} elsif ($url =~ /^http:/ && $CPAN::META->has_usable('HTTP::Tiny')) { |
663
|
0
|
|
|
|
|
0
|
require CPAN::HTTP::Client; |
664
|
0
|
|
0
|
|
|
0
|
my $chc = CPAN::HTTP::Client->new( |
|
|
|
0
|
|
|
|
|
665
|
|
|
|
|
|
|
proxy => $CPAN::Config->{http_proxy} || $ENV{http_proxy}, |
666
|
|
|
|
|
|
|
no_proxy => $CPAN::Config->{no_proxy} || $ENV{no_proxy}, |
667
|
|
|
|
|
|
|
); |
668
|
0
|
0
|
|
|
|
0
|
for my $try ( $url, ( $url !~ /\.gz(?!\n)\Z/ ? "$url.gz" : () ) ) { |
669
|
0
|
|
|
|
|
0
|
$CPAN::Frontend->myprint("Fetching with HTTP::Tiny:\n$try\n"); |
670
|
0
|
|
|
|
|
0
|
my $res = eval { $chc->mirror($try, $aslocal) }; |
|
0
|
|
|
|
|
0
|
|
671
|
0
|
0
|
0
|
|
|
0
|
if ( $res && $res->{success} ) { |
|
|
0
|
0
|
|
|
|
|
|
|
0
|
0
|
|
|
|
|
672
|
0
|
|
|
|
|
0
|
$ThesiteURL = $ro_url; |
673
|
0
|
|
|
|
|
0
|
my $now = time; |
674
|
0
|
|
|
|
|
0
|
utime $now, $now, $aslocal; # download time is more |
675
|
|
|
|
|
|
|
# important than upload |
676
|
|
|
|
|
|
|
# time |
677
|
0
|
|
|
|
|
0
|
return $aslocal; |
678
|
|
|
|
|
|
|
} |
679
|
|
|
|
|
|
|
elsif ( $res && $res->{status} ne '599') { |
680
|
0
|
|
|
|
|
0
|
$CPAN::Frontend->myprint(sprintf( |
681
|
|
|
|
|
|
|
"HTTP::Tiny failed with code[%s] message[%s]\n", |
682
|
|
|
|
|
|
|
$res->{status}, |
683
|
|
|
|
|
|
|
$res->{reason}, |
684
|
|
|
|
|
|
|
) |
685
|
|
|
|
|
|
|
); |
686
|
|
|
|
|
|
|
} |
687
|
|
|
|
|
|
|
elsif ( $res && $res->{status} eq '599') { |
688
|
0
|
|
|
|
|
0
|
$CPAN::Frontend->myprint(sprintf( |
689
|
|
|
|
|
|
|
"HTTP::Tiny failed with an internal error: %s\n", |
690
|
|
|
|
|
|
|
$res->{content}, |
691
|
|
|
|
|
|
|
) |
692
|
|
|
|
|
|
|
); |
693
|
|
|
|
|
|
|
} |
694
|
|
|
|
|
|
|
else { |
695
|
0
|
|
0
|
|
|
0
|
my $err = $@ || 'Unknown error'; |
696
|
0
|
|
|
|
|
0
|
$CPAN::Frontend->myprint(sprintf( |
697
|
|
|
|
|
|
|
"Error downloading with HTTP::Tiny: %s\n", $err |
698
|
|
|
|
|
|
|
) |
699
|
|
|
|
|
|
|
); |
700
|
|
|
|
|
|
|
} |
701
|
|
|
|
|
|
|
} |
702
|
|
|
|
|
|
|
} |
703
|
0
|
0
|
|
|
|
0
|
return if $CPAN::Signal; |
704
|
0
|
0
|
|
|
|
0
|
if ($url =~ m|^ftp://(.*?)/(.*)/(.*)|) { |
705
|
|
|
|
|
|
|
# that's the nice and easy way thanks to Graham |
706
|
0
|
0
|
|
|
|
0
|
$self->debug("recognized ftp") if $CPAN::DEBUG; |
707
|
0
|
|
|
|
|
0
|
my($host,$dir,$getfile) = ($1,$2,$3); |
708
|
0
|
0
|
|
|
|
0
|
if ($CPAN::META->has_usable('Net::FTP')) { |
709
|
0
|
|
|
|
|
0
|
$dir =~ s|/+|/|g; |
710
|
0
|
|
|
|
|
0
|
$CPAN::Frontend->myprint("Fetching with Net::FTP:\n$url\n"); |
711
|
0
|
0
|
|
|
|
0
|
$self->debug("getfile[$getfile]dir[$dir]host[$host]" . |
712
|
|
|
|
|
|
|
"aslocal[$aslocal]") if $CPAN::DEBUG; |
713
|
0
|
0
|
|
|
|
0
|
if (CPAN::FTP->ftp_get($host,$dir,$getfile,$aslocal)) { |
714
|
0
|
|
|
|
|
0
|
$ThesiteURL = $ro_url; |
715
|
0
|
|
|
|
|
0
|
return $aslocal; |
716
|
|
|
|
|
|
|
} |
717
|
0
|
0
|
|
|
|
0
|
if ($aslocal !~ /\.gz(?!\n)\Z/) { |
718
|
0
|
|
|
|
|
0
|
my $gz = "$aslocal.gz"; |
719
|
0
|
|
|
|
|
0
|
$CPAN::Frontend->myprint("Fetching with Net::FTP\n$url.gz\n"); |
720
|
0
|
0
|
0
|
|
|
0
|
if (CPAN::FTP->ftp_get($host, |
|
0
|
|
|
|
|
0
|
|
721
|
|
|
|
|
|
|
$dir, |
722
|
|
|
|
|
|
|
"$getfile.gz", |
723
|
|
|
|
|
|
|
$gz) && |
724
|
|
|
|
|
|
|
eval{CPAN::Tarzip->new($gz)->gunzip($aslocal)} |
725
|
|
|
|
|
|
|
) { |
726
|
0
|
|
|
|
|
0
|
$ThesiteURL = $ro_url; |
727
|
0
|
|
|
|
|
0
|
return $aslocal; |
728
|
|
|
|
|
|
|
} |
729
|
|
|
|
|
|
|
} |
730
|
|
|
|
|
|
|
# next HOSTEASY; |
731
|
|
|
|
|
|
|
} else { |
732
|
0
|
0
|
|
|
|
0
|
CPAN->debug("Net::FTP does not count as usable atm") if $CPAN::DEBUG; |
733
|
|
|
|
|
|
|
} |
734
|
|
|
|
|
|
|
} |
735
|
0
|
0
|
0
|
|
|
0
|
if ( |
736
|
|
|
|
|
|
|
UNIVERSAL::can($ro_url,"text") |
737
|
|
|
|
|
|
|
and |
738
|
|
|
|
|
|
|
$ro_url->{FROM} eq "USER" |
739
|
|
|
|
|
|
|
) { |
740
|
|
|
|
|
|
|
##address #17973: default URLs should not try to override |
741
|
|
|
|
|
|
|
##user-defined URLs just because LWP is not available |
742
|
0
|
|
|
|
|
0
|
my $ret = $self->hostdlhard([$ro_url],$file,$aslocal,$stats); |
743
|
0
|
0
|
|
|
|
0
|
return $ret if $ret; |
744
|
|
|
|
|
|
|
} |
745
|
0
|
0
|
|
|
|
0
|
return if $CPAN::Signal; |
746
|
|
|
|
|
|
|
} |
747
|
|
|
|
|
|
|
} |
748
|
|
|
|
|
|
|
|
749
|
|
|
|
|
|
|
# package CPAN::FTP; |
750
|
|
|
|
|
|
|
sub hostdlhard { |
751
|
0
|
|
|
0
|
0
|
0
|
my($self,$host_seq,$file,$aslocal,$stats) = @_; |
752
|
|
|
|
|
|
|
|
753
|
|
|
|
|
|
|
# Came back if Net::FTP couldn't establish connection (or |
754
|
|
|
|
|
|
|
# failed otherwise) Maybe they are behind a firewall, but they |
755
|
|
|
|
|
|
|
# gave us a socksified (or other) ftp program... |
756
|
|
|
|
|
|
|
|
757
|
0
|
|
|
|
|
0
|
my($ro_url); |
758
|
0
|
|
0
|
|
|
0
|
my($devnull) = $CPAN::Config->{devnull} || ""; |
759
|
|
|
|
|
|
|
# < /dev/null "; |
760
|
0
|
|
|
|
|
0
|
my($aslocal_dir) = dirname($aslocal); |
761
|
0
|
|
|
|
|
0
|
mkpath($aslocal_dir); |
762
|
0
|
|
|
|
|
0
|
my $some_dl_success = 0; |
763
|
0
|
|
|
|
|
0
|
my $any_attempt = 0; |
764
|
0
|
|
|
|
|
0
|
HOSTHARD: for $ro_url (@$host_seq) { |
765
|
0
|
|
|
|
|
0
|
$self->_set_attempt($stats,"dlhard",$ro_url); |
766
|
0
|
|
|
|
|
0
|
my $url = "$ro_url$file"; |
767
|
0
|
|
|
|
|
0
|
my($proto,$host,$dir,$getfile); |
768
|
|
|
|
|
|
|
|
769
|
|
|
|
|
|
|
# Courtesy Mark Conty mark_conty@cargill.com change from |
770
|
|
|
|
|
|
|
# if ($url =~ m|^ftp://(.*?)/(.*)/(.*)|) { |
771
|
|
|
|
|
|
|
# to |
772
|
0
|
0
|
|
|
|
0
|
if ($url =~ m|^([^:]+)://(.*?)/(.*)/(.*)|) { |
773
|
|
|
|
|
|
|
# proto not yet used |
774
|
0
|
|
|
|
|
0
|
($proto,$host,$dir,$getfile) = ($1,$2,$3,$4); |
775
|
|
|
|
|
|
|
} else { |
776
|
0
|
|
|
|
|
0
|
next HOSTHARD; # who said, we could ftp anything except ftp? |
777
|
|
|
|
|
|
|
} |
778
|
0
|
0
|
|
|
|
0
|
next HOSTHARD if $proto eq "file"; # file URLs would have had |
779
|
|
|
|
|
|
|
# success above. Likely a bogus URL |
780
|
|
|
|
|
|
|
|
781
|
|
|
|
|
|
|
# making at least one attempt against a host |
782
|
0
|
|
|
|
|
0
|
$any_attempt++; |
783
|
|
|
|
|
|
|
|
784
|
0
|
0
|
|
|
|
0
|
$self->debug("localizing funkyftpwise[$url]") if $CPAN::DEBUG; |
785
|
|
|
|
|
|
|
|
786
|
|
|
|
|
|
|
# Try the most capable first and leave ncftp* for last as it only |
787
|
|
|
|
|
|
|
# does FTP. |
788
|
0
|
|
|
|
|
0
|
my $proxy_vars = $self->_proxy_vars($ro_url); |
789
|
0
|
|
|
|
|
0
|
DLPRG: for my $f (qw(curl wget lynx ncftpget ncftp)) { |
790
|
0
|
|
|
|
|
0
|
my $funkyftp = CPAN::HandleConfig->safe_quote($CPAN::Config->{$f}); |
791
|
0
|
0
|
|
|
|
0
|
next DLPRG unless defined $funkyftp; |
792
|
0
|
0
|
|
|
|
0
|
next DLPRG if $funkyftp =~ /^\s*$/; |
793
|
|
|
|
|
|
|
|
794
|
0
|
|
|
|
|
0
|
my($src_switch) = ""; |
795
|
0
|
|
|
|
|
0
|
my($chdir) = ""; |
796
|
0
|
|
|
|
|
0
|
my($stdout_redir) = " > \"$aslocal\""; |
797
|
0
|
0
|
|
|
|
0
|
if ($f eq "lynx") { |
|
|
0
|
|
|
|
|
|
|
|
0
|
|
|
|
|
|
|
|
0
|
|
|
|
|
|
|
|
0
|
|
|
|
|
|
798
|
0
|
|
|
|
|
0
|
$src_switch = " -source"; |
799
|
|
|
|
|
|
|
} elsif ($f eq "ncftp") { |
800
|
0
|
0
|
|
|
|
0
|
next DLPRG unless $url =~ m{\Aftp://}; |
801
|
0
|
|
|
|
|
0
|
$src_switch = " -c"; |
802
|
|
|
|
|
|
|
} elsif ($f eq "wget") { |
803
|
0
|
|
|
|
|
0
|
$src_switch = " -O \"$aslocal\""; |
804
|
0
|
|
|
|
|
0
|
$stdout_redir = ""; |
805
|
|
|
|
|
|
|
} elsif ($f eq 'curl') { |
806
|
0
|
|
|
|
|
0
|
$src_switch = ' -L -f -s -S --netrc-optional'; |
807
|
0
|
0
|
|
|
|
0
|
if ($proxy_vars->{http_proxy}) { |
808
|
0
|
|
|
|
|
0
|
$src_switch .= qq{ -U "$proxy_vars->{proxy_user}:$proxy_vars->{proxy_pass}" -x "$proxy_vars->{http_proxy}"}; |
809
|
|
|
|
|
|
|
} |
810
|
|
|
|
|
|
|
} elsif ($f eq "ncftpget") { |
811
|
0
|
0
|
|
|
|
0
|
next DLPRG unless $url =~ m{\Aftp://}; |
812
|
0
|
|
|
|
|
0
|
$chdir = "cd $aslocal_dir && "; |
813
|
0
|
|
|
|
|
0
|
$stdout_redir = ""; |
814
|
|
|
|
|
|
|
} |
815
|
|
|
|
|
|
|
$CPAN::Frontend->myprint( |
816
|
0
|
|
|
|
|
0
|
qq[ |
817
|
|
|
|
|
|
|
Trying with |
818
|
|
|
|
|
|
|
$funkyftp$src_switch |
819
|
|
|
|
|
|
|
to get |
820
|
|
|
|
|
|
|
$url |
821
|
|
|
|
|
|
|
]); |
822
|
0
|
|
|
|
|
0
|
my($system) = |
823
|
|
|
|
|
|
|
"$chdir$funkyftp$src_switch \"$url\" $devnull$stdout_redir"; |
824
|
0
|
0
|
|
|
|
0
|
$self->debug("system[$system]") if $CPAN::DEBUG; |
825
|
0
|
|
|
|
|
0
|
my($wstatus) = system($system); |
826
|
0
|
0
|
|
|
|
0
|
if ($f eq "lynx") { |
827
|
|
|
|
|
|
|
# lynx returns 0 when it fails somewhere |
828
|
0
|
0
|
|
|
|
0
|
if (-s $aslocal) { |
829
|
0
|
|
|
|
|
0
|
my $content = do { local *FH; |
|
0
|
|
|
|
|
0
|
|
830
|
0
|
0
|
|
|
|
0
|
open FH, $aslocal or die; |
831
|
0
|
|
|
|
|
0
|
local $/; |
832
|
0
|
|
|
|
|
0
|
}; |
833
|
0
|
0
|
|
|
|
0
|
if ($content =~ /^<.*([45]|Error [45])/si) { |
834
|
0
|
|
|
|
|
0
|
$CPAN::Frontend->mywarn(qq{ |
835
|
|
|
|
|
|
|
No success, the file that lynx has downloaded looks like an error message: |
836
|
|
|
|
|
|
|
$content |
837
|
|
|
|
|
|
|
}); |
838
|
0
|
|
|
|
|
0
|
$CPAN::Frontend->mysleep(1); |
839
|
0
|
|
|
|
|
0
|
next DLPRG; |
840
|
|
|
|
|
|
|
} |
841
|
0
|
|
|
|
|
0
|
$some_dl_success++; |
842
|
|
|
|
|
|
|
} else { |
843
|
0
|
|
|
|
|
0
|
$CPAN::Frontend->myprint(qq{ |
844
|
|
|
|
|
|
|
No success, the file that lynx has downloaded is an empty file. |
845
|
|
|
|
|
|
|
}); |
846
|
0
|
|
|
|
|
0
|
next DLPRG; |
847
|
|
|
|
|
|
|
} |
848
|
|
|
|
|
|
|
} |
849
|
0
|
0
|
|
|
|
0
|
if ($wstatus == 0) { |
850
|
0
|
0
|
|
|
|
0
|
if (-s $aslocal) { |
851
|
|
|
|
|
|
|
# Looks good |
852
|
0
|
|
|
|
|
0
|
$some_dl_success++; |
853
|
|
|
|
|
|
|
} |
854
|
0
|
|
|
|
|
0
|
$ThesiteURL = $ro_url; |
855
|
0
|
|
|
|
|
0
|
return $aslocal; |
856
|
|
|
|
|
|
|
} else { |
857
|
0
|
|
|
|
|
0
|
my $estatus = $wstatus >> 8; |
858
|
0
|
0
|
|
|
|
0
|
my $size = -f $aslocal ? |
859
|
|
|
|
|
|
|
", left\n$aslocal with size ".-s _ : |
860
|
|
|
|
|
|
|
"\nWarning: expected file [$aslocal] doesn't exist"; |
861
|
0
|
|
|
|
|
0
|
$CPAN::Frontend->myprint(qq{ |
862
|
|
|
|
|
|
|
Function system("$system") |
863
|
|
|
|
|
|
|
returned status $estatus (wstat $wstatus)$size |
864
|
|
|
|
|
|
|
}); |
865
|
|
|
|
|
|
|
} |
866
|
0
|
0
|
|
|
|
0
|
return if $CPAN::Signal; |
867
|
|
|
|
|
|
|
} # download/transfer programs (DLPRG) |
868
|
|
|
|
|
|
|
} # host |
869
|
0
|
0
|
|
|
|
0
|
return unless $any_attempt; |
870
|
0
|
0
|
|
|
|
0
|
if ($some_dl_success) { |
871
|
0
|
|
|
|
|
0
|
$CPAN::Frontend->mywarn("Warning: doesn't seem we had substantial success downloading '$aslocal'. Don't know how to proceed.\n"); |
872
|
|
|
|
|
|
|
} else { |
873
|
0
|
|
|
|
|
0
|
$CPAN::Frontend->mywarn("Warning: no success downloading '$aslocal'. Giving up on it.\n"); |
874
|
|
|
|
|
|
|
} |
875
|
0
|
|
|
|
|
0
|
return; |
876
|
|
|
|
|
|
|
} |
877
|
|
|
|
|
|
|
|
878
|
|
|
|
|
|
|
#-> CPAN::FTP::_proxy_vars |
879
|
|
|
|
|
|
|
sub _proxy_vars { |
880
|
2
|
|
|
2
|
|
7514
|
my($self,$url) = @_; |
881
|
2
|
|
|
|
|
9
|
my $ret = +{}; |
882
|
2
|
|
33
|
|
|
10
|
my $http_proxy = $CPAN::Config->{'http_proxy'} || $ENV{'http_proxy'}; |
883
|
2
|
50
|
|
|
|
7
|
if ($http_proxy) { |
884
|
2
|
|
|
|
|
19
|
my($host) = $url =~ m|://([^/:]+)|; |
885
|
2
|
|
|
|
|
6
|
my $want_proxy = 1; |
886
|
2
|
|
50
|
|
|
12
|
my $noproxy = $CPAN::Config->{'no_proxy'} || $ENV{'no_proxy'} || ""; |
887
|
2
|
|
|
|
|
9
|
my @noproxy = split /\s*,\s*/, $noproxy; |
888
|
2
|
50
|
|
|
|
21
|
if ($host) { |
889
|
2
|
|
|
|
|
6
|
DOMAIN: for my $domain (@noproxy) { |
890
|
2
|
100
|
|
|
|
60
|
if ($host =~ /\Q$domain\E$/) { # cf. LWP::UserAgent |
891
|
1
|
|
|
|
|
3
|
$want_proxy = 0; |
892
|
1
|
|
|
|
|
4
|
last DOMAIN; |
893
|
|
|
|
|
|
|
} |
894
|
|
|
|
|
|
|
} |
895
|
|
|
|
|
|
|
} else { |
896
|
0
|
|
|
|
|
0
|
$CPAN::Frontend->mywarn(" Could not determine host from http_proxy '$http_proxy'\n"); |
897
|
|
|
|
|
|
|
} |
898
|
2
|
100
|
|
|
|
9
|
if ($want_proxy) { |
899
|
1
|
|
|
|
|
19
|
my($user, $pass) = |
900
|
|
|
|
|
|
|
CPAN::HTTP::Credentials->get_proxy_credentials(); |
901
|
1
|
|
|
|
|
8
|
$ret = { |
902
|
|
|
|
|
|
|
proxy_user => $user, |
903
|
|
|
|
|
|
|
proxy_pass => $pass, |
904
|
|
|
|
|
|
|
http_proxy => $http_proxy |
905
|
|
|
|
|
|
|
}; |
906
|
|
|
|
|
|
|
} |
907
|
|
|
|
|
|
|
} |
908
|
2
|
|
|
|
|
10
|
return $ret; |
909
|
|
|
|
|
|
|
} |
910
|
|
|
|
|
|
|
|
911
|
|
|
|
|
|
|
# package CPAN::FTP; |
912
|
|
|
|
|
|
|
sub hostdlhardest { |
913
|
0
|
|
|
0
|
0
|
|
my($self,$host_seq,$file,$aslocal,$stats) = @_; |
914
|
|
|
|
|
|
|
|
915
|
0
|
0
|
|
|
|
|
return unless @$host_seq; |
916
|
0
|
|
|
|
|
|
my($ro_url); |
917
|
0
|
|
|
|
|
|
my($aslocal_dir) = dirname($aslocal); |
918
|
0
|
|
|
|
|
|
mkpath($aslocal_dir); |
919
|
0
|
|
|
|
|
|
my $ftpbin = $CPAN::Config->{ftp}; |
920
|
0
|
0
|
0
|
|
|
|
unless ($ftpbin && length $ftpbin && MM->maybe_command($ftpbin)) { |
|
|
|
0
|
|
|
|
|
921
|
0
|
|
|
|
|
|
$CPAN::Frontend->myprint("No external ftp command available\n\n"); |
922
|
0
|
|
|
|
|
|
return; |
923
|
|
|
|
|
|
|
} |
924
|
0
|
|
|
|
|
|
$CPAN::Frontend->mywarn(qq{ |
925
|
|
|
|
|
|
|
As a last resort we now switch to the external ftp command '$ftpbin' |
926
|
|
|
|
|
|
|
to get '$aslocal'. |
927
|
|
|
|
|
|
|
|
928
|
|
|
|
|
|
|
Doing so often leads to problems that are hard to diagnose. |
929
|
|
|
|
|
|
|
|
930
|
|
|
|
|
|
|
If you're the victim of such problems, please consider unsetting the |
931
|
|
|
|
|
|
|
ftp config variable with |
932
|
|
|
|
|
|
|
|
933
|
|
|
|
|
|
|
o conf ftp "" |
934
|
|
|
|
|
|
|
o conf commit |
935
|
|
|
|
|
|
|
|
936
|
|
|
|
|
|
|
}); |
937
|
0
|
|
|
|
|
|
$CPAN::Frontend->mysleep(2); |
938
|
0
|
|
|
|
|
|
HOSTHARDEST: for $ro_url (@$host_seq) { |
939
|
0
|
|
|
|
|
|
$self->_set_attempt($stats,"dlhardest",$ro_url); |
940
|
0
|
|
|
|
|
|
my $url = "$ro_url$file"; |
941
|
0
|
0
|
|
|
|
|
$self->debug("localizing ftpwise[$url]") if $CPAN::DEBUG; |
942
|
0
|
0
|
|
|
|
|
unless ($url =~ m|^ftp://(.*?)/(.*)/(.*)|) { |
943
|
0
|
|
|
|
|
|
next; |
944
|
|
|
|
|
|
|
} |
945
|
0
|
|
|
|
|
|
my($host,$dir,$getfile) = ($1,$2,$3); |
946
|
0
|
|
|
|
|
|
my $timestamp = 0; |
947
|
0
|
|
|
|
|
|
my($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size,$atime,$mtime, |
948
|
|
|
|
|
|
|
$ctime,$blksize,$blocks) = stat($aslocal); |
949
|
0
|
|
0
|
|
|
|
$timestamp = $mtime ||= 0; |
950
|
0
|
|
|
|
|
|
my($netrc) = CPAN::FTP::netrc->new; |
951
|
0
|
|
|
|
|
|
my($netrcfile) = $netrc->netrc; |
952
|
0
|
0
|
|
|
|
|
my($verbose) = $CPAN::DEBUG{'FTP'} & $CPAN::DEBUG ? " -v" : ""; |
953
|
0
|
|
|
|
|
|
my $targetfile = File::Basename::basename($aslocal); |
954
|
0
|
|
|
|
|
|
my(@dialog); |
955
|
0
|
|
|
|
|
|
push( |
956
|
|
|
|
|
|
|
@dialog, |
957
|
|
|
|
|
|
|
"lcd $aslocal_dir", |
958
|
|
|
|
|
|
|
"cd /", |
959
|
|
|
|
|
|
|
map("cd $_", split /\//, $dir), # RFC 1738 |
960
|
|
|
|
|
|
|
"bin", |
961
|
|
|
|
|
|
|
"passive", |
962
|
|
|
|
|
|
|
"get $getfile $targetfile", |
963
|
|
|
|
|
|
|
"quit" |
964
|
|
|
|
|
|
|
); |
965
|
0
|
0
|
0
|
|
|
|
if (! $netrcfile) { |
|
|
0
|
|
|
|
|
|
966
|
0
|
0
|
|
|
|
|
CPAN->debug("No ~/.netrc file found") if $CPAN::DEBUG; |
967
|
|
|
|
|
|
|
} elsif ($netrc->hasdefault || $netrc->contains($host)) { |
968
|
0
|
0
|
|
|
|
|
CPAN->debug(sprintf("hasdef[%d]cont($host)[%d]", |
969
|
|
|
|
|
|
|
$netrc->hasdefault, |
970
|
|
|
|
|
|
|
$netrc->contains($host))) if $CPAN::DEBUG; |
971
|
0
|
0
|
|
|
|
|
if ($netrc->protected) { |
972
|
0
|
|
|
|
|
|
my $dialog = join "", map { " $_\n" } @dialog; |
|
0
|
|
|
|
|
|
|
973
|
0
|
|
|
|
|
|
my $netrc_explain; |
974
|
0
|
0
|
|
|
|
|
if ($netrc->contains($host)) { |
975
|
0
|
|
|
|
|
|
$netrc_explain = "Relying that your .netrc entry for '$host' ". |
976
|
|
|
|
|
|
|
"manages the login"; |
977
|
|
|
|
|
|
|
} else { |
978
|
0
|
|
|
|
|
|
$netrc_explain = "Relying that your default .netrc entry ". |
979
|
|
|
|
|
|
|
"manages the login"; |
980
|
|
|
|
|
|
|
} |
981
|
0
|
|
|
|
|
|
$CPAN::Frontend->myprint(qq{ |
982
|
|
|
|
|
|
|
Trying with external ftp to get |
983
|
|
|
|
|
|
|
'$url' |
984
|
|
|
|
|
|
|
$netrc_explain |
985
|
|
|
|
|
|
|
Sending the dialog |
986
|
|
|
|
|
|
|
$dialog |
987
|
|
|
|
|
|
|
} |
988
|
|
|
|
|
|
|
); |
989
|
0
|
|
|
|
|
|
$self->talk_ftp("$ftpbin$verbose $host", |
990
|
|
|
|
|
|
|
@dialog); |
991
|
0
|
|
|
|
|
|
($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size, |
992
|
|
|
|
|
|
|
$atime,$mtime,$ctime,$blksize,$blocks) = stat($aslocal); |
993
|
0
|
|
0
|
|
|
|
$mtime ||= 0; |
994
|
0
|
0
|
|
|
|
|
if ($mtime > $timestamp) { |
995
|
0
|
|
|
|
|
|
$CPAN::Frontend->myprint("GOT $aslocal\n"); |
996
|
0
|
|
|
|
|
|
$ThesiteURL = $ro_url; |
997
|
0
|
|
|
|
|
|
return $aslocal; |
998
|
|
|
|
|
|
|
} else { |
999
|
0
|
|
|
|
|
|
$CPAN::Frontend->myprint("Hmm... Still failed!\n"); |
1000
|
|
|
|
|
|
|
} |
1001
|
0
|
0
|
|
|
|
|
return if $CPAN::Signal; |
1002
|
|
|
|
|
|
|
} else { |
1003
|
0
|
|
|
|
|
|
$CPAN::Frontend->mywarn(qq{Your $netrcfile is not }. |
1004
|
|
|
|
|
|
|
qq{correctly protected.\n}); |
1005
|
|
|
|
|
|
|
} |
1006
|
|
|
|
|
|
|
} else { |
1007
|
0
|
|
|
|
|
|
$CPAN::Frontend->mywarn("Your ~/.netrc neither contains $host |
1008
|
|
|
|
|
|
|
nor does it have a default entry\n"); |
1009
|
|
|
|
|
|
|
} |
1010
|
|
|
|
|
|
|
|
1011
|
|
|
|
|
|
|
# OK, they don't have a valid ~/.netrc. Use 'ftp -n' |
1012
|
|
|
|
|
|
|
# then and login manually to host, using e-mail as |
1013
|
|
|
|
|
|
|
# password. |
1014
|
0
|
|
|
|
|
|
$CPAN::Frontend->myprint(qq{Issuing "$ftpbin$verbose -n"\n}); |
1015
|
0
|
|
|
|
|
|
unshift( |
1016
|
|
|
|
|
|
|
@dialog, |
1017
|
|
|
|
|
|
|
"open $host", |
1018
|
|
|
|
|
|
|
"user anonymous $Config::Config{'cf_email'}" |
1019
|
|
|
|
|
|
|
); |
1020
|
0
|
|
|
|
|
|
my $dialog = join "", map { " $_\n" } @dialog; |
|
0
|
|
|
|
|
|
|
1021
|
0
|
|
|
|
|
|
$CPAN::Frontend->myprint(qq{ |
1022
|
|
|
|
|
|
|
Trying with external ftp to get |
1023
|
|
|
|
|
|
|
$url |
1024
|
|
|
|
|
|
|
Sending the dialog |
1025
|
|
|
|
|
|
|
$dialog |
1026
|
|
|
|
|
|
|
} |
1027
|
|
|
|
|
|
|
); |
1028
|
0
|
|
|
|
|
|
$self->talk_ftp("$ftpbin$verbose -n", @dialog); |
1029
|
0
|
|
|
|
|
|
($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size, |
1030
|
|
|
|
|
|
|
$atime,$mtime,$ctime,$blksize,$blocks) = stat($aslocal); |
1031
|
0
|
|
0
|
|
|
|
$mtime ||= 0; |
1032
|
0
|
0
|
|
|
|
|
if ($mtime > $timestamp) { |
1033
|
0
|
|
|
|
|
|
$CPAN::Frontend->myprint("GOT $aslocal\n"); |
1034
|
0
|
|
|
|
|
|
$ThesiteURL = $ro_url; |
1035
|
0
|
|
|
|
|
|
return $aslocal; |
1036
|
|
|
|
|
|
|
} else { |
1037
|
0
|
|
|
|
|
|
$CPAN::Frontend->myprint("Bad luck... Still failed!\n"); |
1038
|
|
|
|
|
|
|
} |
1039
|
0
|
0
|
|
|
|
|
return if $CPAN::Signal; |
1040
|
0
|
|
|
|
|
|
$CPAN::Frontend->mywarn("Can't access URL $url.\n\n"); |
1041
|
0
|
|
|
|
|
|
$CPAN::Frontend->mysleep(2); |
1042
|
|
|
|
|
|
|
} # host |
1043
|
|
|
|
|
|
|
} |
1044
|
|
|
|
|
|
|
|
1045
|
|
|
|
|
|
|
# package CPAN::FTP; |
1046
|
|
|
|
|
|
|
sub talk_ftp { |
1047
|
0
|
|
|
0
|
0
|
|
my($self,$command,@dialog) = @_; |
1048
|
0
|
|
|
|
|
|
my $fh = FileHandle->new; |
1049
|
0
|
0
|
|
|
|
|
$fh->open("|$command") or die "Couldn't open ftp: $!"; |
1050
|
0
|
|
|
|
|
|
foreach (@dialog) { $fh->print("$_\n") } |
|
0
|
|
|
|
|
|
|
1051
|
0
|
|
|
|
|
|
$fh->close; # Wait for process to complete |
1052
|
0
|
|
|
|
|
|
my $wstatus = $?; |
1053
|
0
|
|
|
|
|
|
my $estatus = $wstatus >> 8; |
1054
|
0
|
0
|
|
|
|
|
$CPAN::Frontend->myprint(qq{ |
1055
|
|
|
|
|
|
|
Subprocess "|$command" |
1056
|
|
|
|
|
|
|
returned status $estatus (wstat $wstatus) |
1057
|
|
|
|
|
|
|
}) if $wstatus; |
1058
|
|
|
|
|
|
|
} |
1059
|
|
|
|
|
|
|
|
1060
|
|
|
|
|
|
|
# find2perl needs modularization, too, all the following is stolen |
1061
|
|
|
|
|
|
|
# from there |
1062
|
|
|
|
|
|
|
# CPAN::FTP::ls |
1063
|
|
|
|
|
|
|
sub ls { |
1064
|
0
|
|
|
0
|
0
|
|
my($self,$name) = @_; |
1065
|
0
|
|
|
|
|
|
my ($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$sizemm, |
1066
|
|
|
|
|
|
|
$atime,$mtime,$ctime,$blksize,$blocks) = lstat($name); |
1067
|
|
|
|
|
|
|
|
1068
|
0
|
|
|
|
|
|
my($perms,%user,%group); |
1069
|
0
|
|
|
|
|
|
my $pname = $name; |
1070
|
|
|
|
|
|
|
|
1071
|
0
|
0
|
|
|
|
|
if ($blocks) { |
1072
|
0
|
|
|
|
|
|
$blocks = int(($blocks + 1) / 2); |
1073
|
|
|
|
|
|
|
} |
1074
|
|
|
|
|
|
|
else { |
1075
|
0
|
|
|
|
|
|
$blocks = int(($sizemm + 1023) / 1024); |
1076
|
|
|
|
|
|
|
} |
1077
|
|
|
|
|
|
|
|
1078
|
0
|
0
|
|
|
|
|
if (-f _) { $perms = '-'; } |
|
0
|
0
|
|
|
|
|
|
|
|
0
|
|
|
|
|
|
|
|
0
|
|
|
|
|
|
|
|
0
|
|
|
|
|
|
|
|
0
|
|
|
|
|
|
1079
|
0
|
|
|
|
|
|
elsif (-d _) { $perms = 'd'; } |
1080
|
0
|
|
|
|
|
|
elsif (-c _) { $perms = 'c'; $sizemm = &sizemm; } |
|
0
|
|
|
|
|
|
|
1081
|
0
|
|
|
|
|
|
elsif (-b _) { $perms = 'b'; $sizemm = &sizemm; } |
|
0
|
|
|
|
|
|
|
1082
|
0
|
|
|
|
|
|
elsif (-p _) { $perms = 'p'; } |
1083
|
0
|
|
|
|
|
|
elsif (-S _) { $perms = 's'; } |
1084
|
0
|
|
|
|
|
|
else { $perms = 'l'; $pname .= ' -> ' . readlink($_); } |
|
0
|
|
|
|
|
|
|
1085
|
|
|
|
|
|
|
|
1086
|
0
|
|
|
|
|
|
my(@rwx) = ('---','--x','-w-','-wx','r--','r-x','rw-','rwx'); |
1087
|
0
|
|
|
|
|
|
my(@moname) = qw(Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec); |
1088
|
0
|
|
|
|
|
|
my $tmpmode = $mode; |
1089
|
0
|
|
|
|
|
|
my $tmp = $rwx[$tmpmode & 7]; |
1090
|
0
|
|
|
|
|
|
$tmpmode >>= 3; |
1091
|
0
|
|
|
|
|
|
$tmp = $rwx[$tmpmode & 7] . $tmp; |
1092
|
0
|
|
|
|
|
|
$tmpmode >>= 3; |
1093
|
0
|
|
|
|
|
|
$tmp = $rwx[$tmpmode & 7] . $tmp; |
1094
|
0
|
0
|
|
|
|
|
substr($tmp,2,1) =~ tr/-x/Ss/ if -u _; |
1095
|
0
|
0
|
|
|
|
|
substr($tmp,5,1) =~ tr/-x/Ss/ if -g _; |
1096
|
0
|
0
|
|
|
|
|
substr($tmp,8,1) =~ tr/-x/Tt/ if -k _; |
1097
|
0
|
|
|
|
|
|
$perms .= $tmp; |
1098
|
|
|
|
|
|
|
|
1099
|
0
|
|
0
|
|
|
|
my $user = $user{$uid} || $uid; # too lazy to implement lookup |
1100
|
0
|
|
0
|
|
|
|
my $group = $group{$gid} || $gid; |
1101
|
|
|
|
|
|
|
|
1102
|
0
|
|
|
|
|
|
my($sec,$min,$hour,$mday,$mon,$year) = localtime($mtime); |
1103
|
0
|
|
|
|
|
|
my($timeyear); |
1104
|
0
|
|
|
|
|
|
my($moname) = $moname[$mon]; |
1105
|
0
|
0
|
|
|
|
|
if (-M _ > 365.25 / 2) { |
1106
|
0
|
|
|
|
|
|
$timeyear = $year + 1900; |
1107
|
|
|
|
|
|
|
} |
1108
|
|
|
|
|
|
|
else { |
1109
|
0
|
|
|
|
|
|
$timeyear = sprintf("%02d:%02d", $hour, $min); |
1110
|
|
|
|
|
|
|
} |
1111
|
|
|
|
|
|
|
|
1112
|
0
|
|
|
|
|
|
sprintf "%5lu %4ld %-10s %2d %-8s %-8s %8s %s %2d %5s %s\n", |
1113
|
|
|
|
|
|
|
$ino, |
1114
|
|
|
|
|
|
|
$blocks, |
1115
|
|
|
|
|
|
|
$perms, |
1116
|
|
|
|
|
|
|
$nlink, |
1117
|
|
|
|
|
|
|
$user, |
1118
|
|
|
|
|
|
|
$group, |
1119
|
|
|
|
|
|
|
$sizemm, |
1120
|
|
|
|
|
|
|
$moname, |
1121
|
|
|
|
|
|
|
$mday, |
1122
|
|
|
|
|
|
|
$timeyear, |
1123
|
|
|
|
|
|
|
$pname; |
1124
|
|
|
|
|
|
|
} |
1125
|
|
|
|
|
|
|
|
1126
|
|
|
|
|
|
|
1; |