-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathfind-latest-version
More file actions
executable file
·51 lines (38 loc) · 1.79 KB
/
find-latest-version
File metadata and controls
executable file
·51 lines (38 loc) · 1.79 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
#!/usr/local/cpanel/3rdparty/bin/perl
# cpanel - find-latest-version Copyright(c) 2019 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
#
# This provides incremental updates to existing packages in EasyApache4.
package ea_nginx::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/nginx/nginx/releases");
if ( !$res->{success} ) {
die "Could not GET NGINX 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 = ea4_tool::util::json2ref( $res->{content} )->[0]{tag_name};
$version =~ s/release-//;
die "Could not determine version from github\n" if !$version;
my $name = "release-$version.tar.gz";
my $url = "https://github.com/nginx/nginx/archive/$name";
return ( $version, $url, $name );
}
sub _add_sum {
my ( $http, $hr ) = @_;
# https://nginx.org/download/nginx-1.16.0.tar.gz.asc is PGP, which is not yet supported
# Optional: Set $hr->{tarball}{sum}{hex} and $hr->{tarball}{sum}{type} (sha256, sha1, md5, anything Digest.pm can handle)
# die if there is a problem determining either of those values
# otherwise this is a no-op
return;
}