-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfind-latest-version
More file actions
executable file
·66 lines (49 loc) · 1.91 KB
/
find-latest-version
File metadata and controls
executable file
·66 lines (49 loc) · 1.91 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
#!/usr/local/cpanel/3rdparty/bin/perl
# cpanel - find-latest-version Copyright(c) 2020 cPanel, L.L.C.
# All rights Reserved.
# copyright@cpanel.net http://cpanel.net
# This code is subject to the cPanel license. Unauthorized copying is prohibited
package ea_repo_name_goes_here::find_latest_version;
use strict;
use warnings;
use lib "../ea-tools/lib/ea4_tool"; # assumes ea-tools is checked out next to this repo
use ea4_tool::util ();
ea4_tool::util::find_latest_version( \&_get_required, \&_add_sum ) if !caller();
###############
#### helpers ##
###############
sub _get_required {
my ($http) = @_;
my $res = $http->get("https://api.github.com/repos/coreruleset/coreruleset/releases");
if ( !$res->{success} ) {
die "Could not GET coreruleset info from github ($res->{status} $res->{reason})\n\t Throttled? `curl -I https://api.github.com/rate_limit 2>&1 | grep ^X-RateLimit`\n";
}
# get $version, $url, $name from $res
my ( $version, $url, $name );
my $releases_hr = ea4_tool::util::json2ref( $res->{content} );
for my $idx ( 0 .. 10 ) {
my $release = $releases_hr->[$idx];
$version = $release->{tag_name};
die "Could not determine version from github\n" if !$version;
if ( $version !~ m/^v?3\.[0-9\.]+$/ ) {
warn "Skipping available release “$version”\n";
next;
}
else {
$version =~ s/^v//;
$name = "$version.tar.gz";
$url = $release->{tarball_url};
last;
}
}
return ( $version, $url, $name );
}
sub _add_sum {
my ( $http, $hr ) = @_;
# github does not currently have a way to get the sum
return;
}
__END__
=encoding utf-8
=head1 README
This is a Github project. The latest version is listed as a release in the project.