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