Current Path: > > usr > local > share > perl5 > Alien > Build > Plugin > Core
Operation : Linux premium131.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 Software : Apache Server IP : 162.0.232.56 | Your IP: 216.73.216.111 Domains : 1034 Domain(s) Permission : [ 0755 ]
Name | Type | Size | Last Modified | Actions |
---|---|---|---|---|
CleanInstall.pm | File | 2226 bytes | May 11 2023 22:31:58. | |
Download.pm | File | 5566 bytes | May 11 2023 22:31:58. | |
FFI.pm | File | 1771 bytes | May 11 2023 22:31:58. | |
Gather.pm | File | 5538 bytes | May 11 2023 22:31:58. | |
Legacy.pm | File | 2516 bytes | May 11 2023 22:31:58. | |
Override.pm | File | 1764 bytes | May 11 2023 22:31:58. | |
Setup.pm | File | 7429 bytes | May 11 2023 22:31:58. | |
Tail.pm | File | 1720 bytes | May 11 2023 22:31:58. |
package Alien::Build::Plugin::Core::Download; use strict; use warnings; use 5.008004; use Alien::Build::Plugin; use Path::Tiny (); use Alien::Build::Util qw( _mirror ); # ABSTRACT: Core download plugin our $VERSION = '2.80'; # VERSION sub _hook { my($build) = @_; my $res = $build->fetch; if($res->{type} =~ /^(?:html|dir_listing)$/) { my $type = $res->{type}; $type =~ s/_/ /; $build->log("decoding $type"); $res = $build->decode($res); } if($res->{type} eq 'list') { my $orig = $res; $res = $build->prefer($res); my @exclude; if($build->meta->prop->{start_url} =~ /^https:/) { @{ $res->{list} } = grep { $_->{url} =~ /https:/ ? 1 : do { push @exclude, $_->{url}; 0; } } @{ $res->{list} }; } if(@{ $res->{list} } == 0) { my @excluded = map { $_->{url} } @{ $orig->{list} }; if(@excluded) { if(@excluded > 15) { splice @excluded , 14; push @excluded, '...'; } $build->log("These files were excluded by the filter stage:"); $build->log("excluded $_") for @excluded; } else { $build->log("No files found prior to the filter stage"); } die "no matching files in listing"; } my $version = $res->{list}->[0]->{version}; my($pick, @other) = map { $_->{url} } @{ $res->{list} }; if(@other > 8) { splice @other, 7; push @other, '...'; } $build->log("candidate *$pick"); $build->log("candidate $_") for @other; if(@exclude) { if(@exclude > 8) { splice @exclude, 7; push @exclude, '...'; } $build->log("excluded insecure URLs:"); $build->log($_) for @exclude; } $res = $build->fetch($pick); if($version) { $version =~ s/\.+$//; $build->log("setting version based on archive to $version"); $build->runtime_prop->{version} = $version; } } if($res->{type} eq 'file') { my $alienfile = $res->{filename}; $build->log("downloaded $alienfile"); if($res->{content}) { my $tmp = Alien::Build::TempDir->new($build, "download"); my $path = Path::Tiny->new("$tmp/$alienfile"); $path->spew_raw($res->{content}); $build->install_prop->{download} = $path->stringify; $build->install_prop->{complete}->{download} = 1; $build->install_prop->{download_detail}->{"$path"}->{protocol} = $res->{protocol} if defined $res->{protocol}; return $build; } elsif($res->{path}) { if(defined $res->{tmp} && !$res->{tmp}) { if(-e $res->{path}) { $build->install_prop->{download} = $res->{path}; $build->install_prop->{complete}->{download} = 1; $build->install_prop->{download_detail}->{$res->{path}}->{protocol} = $res->{protocol} if defined $res->{protocol}; } else { die "not a file or directory: @{[ $res->{path} ]}"; } } else { my $from = Path::Tiny->new($res->{path}); my $tmp = Alien::Build::TempDir->new($build, "download"); my $to = Path::Tiny->new("$tmp/@{[ $from->basename ]}"); if(-d $res->{path}) { # Please note: _mirror and Alien::Build::Util are ONLY # allowed to be used by core plugins. If you are writing # a non-core plugin it may be removed. That is why it # is private. _mirror $from, $to; } else { require File::Copy; File::Copy::copy( "$from" => "$to", ) || die "copy $from => $to failed: $!"; } $build->install_prop->{download} = $to->stringify; $build->install_prop->{complete}->{download} = 1; $build->install_prop->{download_detail}->{"$to"}->{protocol} = $res->{protocol} if defined $res->{protocol}; } return $build; } die "file without content or path"; } die "unknown fetch response type: @{[ $res->{type} ]}"; } sub init { my($self, $meta) = @_; $meta->default_hook(download => \&_hook); } 1; __END__ =pod =encoding UTF-8 =head1 NAME Alien::Build::Plugin::Core::Download - Core download plugin =head1 VERSION version 2.80 =head1 SYNOPSIS use alienfile; # already loaded =head1 DESCRIPTION This plugin does some core download logic. =head1 SEE ALSO L<Alien::Build>, L<Alien::Base::ModuleBuild> =head1 AUTHOR Author: Graham Ollis E<lt>plicease@cpan.orgE<gt> Contributors: Diab Jerius (DJERIUS) Roy Storey (KIWIROY) Ilya Pavlov David Mertens (run4flat) Mark Nunberg (mordy, mnunberg) Christian Walde (Mithaldu) Brian Wightman (MidLifeXis) Zaki Mughal (zmughal) mohawk (mohawk2, ETJ) Vikas N Kumar (vikasnkumar) Flavio Poletti (polettix) Salvador Fandiño (salva) Gianni Ceccarelli (dakkar) Pavel Shaydo (zwon, trinitum) Kang-min Liu (劉康民, gugod) Nicholas Shipp (nshp) Juan Julián Merelo Guervós (JJ) Joel Berger (JBERGER) Petr Písař (ppisar) Lance Wicks (LANCEW) Ahmad Fatoum (a3f, ATHREEF) José Joaquín Atria (JJATRIA) Duke Leto (LETO) Shoichi Kaji (SKAJI) Shawn Laffan (SLAFFAN) Paul Evans (leonerd, PEVANS) Håkon Hægland (hakonhagland, HAKONH) nick nauwelaerts (INPHOBIA) Florian Weimer =head1 COPYRIGHT AND LICENSE This software is copyright (c) 2011-2022 by Graham Ollis. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself. =cut
SILENT KILLER Tool