-
Notifications
You must be signed in to change notification settings - Fork 1
/
PackageURL.pm
523 lines (340 loc) · 13.9 KB
/
PackageURL.pm
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
package URI::PackageURL;
use feature ':5.10';
use strict;
use utf8;
use warnings;
use Carp;
use Exporter qw(import);
use URI::PackageURL::Util qw(purl_to_urls);
use constant PURL_DEBUG => $ENV{PURL_DEBUG};
use overload '""' => 'to_string', fallback => 1;
our $VERSION = '2.04';
our @EXPORT = qw(encode_purl decode_purl);
my $PURL_REGEXP = qr{^pkg:[A-Za-z\\.\\-\\+][A-Za-z0-9\\.\\-\\+]*/.+};
sub new {
my ($class, %params) = @_;
my $scheme = delete $params{scheme} // 'pkg';
my $type = delete $params{type} or Carp::croak "Invalid Package URL: 'type' component is required";
my $namespace = delete $params{namespace};
my $name = delete $params{name} or Carp::croak "Invalid Package URL: 'name' component is required";
my $version = delete $params{version};
my $qualifiers = delete $params{qualifiers} // {};
my $subpath = delete $params{subpath};
Carp::croak "Invalid Package URL: '$scheme' is not a valid scheme" if (!$scheme eq 'pkg');
$type = lc $type;
if (grep { $_ eq $type } qw(alpm apk bitbucket composer deb github gitlab hex npm oci pypi)) {
$name = lc $name;
}
if ($namespace) {
if (grep { $_ eq $type } qw(alpm apk bitbucket composer deb github gitlab golang hex rpm)) {
$namespace = lc $namespace;
}
}
foreach my $qualifier (keys %{$qualifiers}) {
Carp::croak "Invalid Package URL: '$qualifier' is not a valid qualifier" if ($qualifier =~ /\s/);
Carp::croak "Invalid Package URL: '$qualifier' is not a valid qualifier" if ($qualifier =~ /\%/);
}
$name =~ s/_/-/g if $type eq 'pypi';
$name =~ s/::/-/g if $type eq 'cpan';
if ($type eq 'swift') {
Carp::croak "Invalid Package URL: Swift 'version' is required" unless defined $version;
Carp::croak "Invalid Package URL: Swift 'namespace' is required" unless defined $namespace;
}
if ($type eq 'cran') {
Carp::croak "Invalid Package URL: Cran 'version' is required" unless defined $version;
}
if ($type eq 'conan') {
if ($namespace && $namespace ne '') {
if (!defined $qualifiers->{channel}) {
Carp::croak "Invalid Package URL: Conan 'channel' qualifier does not exist for namespace '$namespace'";
}
}
else {
if (defined $qualifiers->{channel}) {
Carp::croak "Invalid Package URL: Conan 'namespace' does not exist for channel '$qualifiers->{channel}'";
}
}
}
if ($type eq 'mlflow') {
# The "name" case sensitivity depends on the server implementation:
# - Azure ML: it is case sensitive and must be kept as-is in the package URL.
# - Databricks: it is case insensitive and must be lowercased in the package URL.
if (defined $qualifiers->{repository_url} && $qualifiers->{repository_url} =~ /azuredatabricks/) {
$name = lc $name;
}
}
if ($type eq 'huggingface') {
# The version is the model revision Git commit hash. It is case insensitive and must be lowercased in the package URL.
$version = lc $version;
}
my $self = {
scheme => $scheme,
type => $type,
namespace => $namespace,
name => $name,
version => $version,
qualifiers => $qualifiers,
subpath => $subpath
};
return bless $self, $class;
}
sub scheme { shift->{scheme} }
sub type { shift->{type} }
sub namespace { shift->{namespace} }
sub name { shift->{name} }
sub version { shift->{version} }
sub qualifiers { shift->{qualifiers} }
sub subpath { shift->{subpath} }
sub encode_purl { __PACKAGE__->new(@_)->to_string }
sub decode_purl { __PACKAGE__->from_string(shift) }
sub from_string {
my ($class, $string) = @_;
# Strip slash / after scheme
while ($string =~ m|^pkg:/|) {
$string =~ s|^pkg:/|pkg:|;
}
if ($string !~ /$PURL_REGEXP/) {
Carp::croak 'Malformed Package URL string';
}
my %components = ();
# Split the purl string once from right on '#'
# The left side is the remainder
# Strip the right side from leading and trailing '/'
# Split this on '/'
# Discard any empty string segment from that split
# Discard any '.' or '..' segment from that split
# Percent-decode each segment
# UTF-8-decode each segment if needed in your programming language
# Join segments back with a '/'
# This is the subpath
my @s1 = split('#', $string);
if ($s1[1]) {
$s1[1] =~ s{(^\/|\/$)}{};
my @subpath = map { _url_decode($_) } grep { $_ ne '' && $_ ne '.' && $_ ne '..' } split /\//, $s1[1];
$components{subpath} = join '/', @subpath;
}
# Split the remainder once from right on '?'
# The left side is the remainder
# The right side is the qualifiers string
# Split the qualifiers on '&'. Each part is a key=value pair
# For each pair, split the key=value once from left on '=':
# The key is the lowercase left side
# The value is the percent-decoded right side
# UTF-8-decode the value if needed in your programming language
# Discard any key/value pairs where the value is empty
# If the key is checksums, split the value on ',' to create a list of checksums
# This list of key/value is the qualifiers object
my @s2 = split(/\?/, $s1[0]);
if ($s2[1]) {
my @qualifiers = split('&', $s2[1]);
foreach my $qualifier (@qualifiers) {
my ($key, $value) = split('=', $qualifier);
$value = _url_decode($value);
if ($key eq 'checksums') {
$value = [split(',', $value)];
}
$components{qualifiers}->{lc $key} = $value;
}
}
# Split the remainder once from left on ':'
# The left side lowercased is the scheme
# The right side is the remainder
my @s3 = split(':', $s2[0], 2);
$components{scheme} = lc $s3[0];
# Strip the remainder from leading and trailing '/'
# Split this once from left on '/'
# The left side lowercased is the type
# The right side is the remainder
$s3[1] =~ s{(^\/|\/$)}{};
my @s4 = split('/', $s3[1], 2);
$components{type} = lc $s4[0];
# Split the remainder once from right on '@'
# The left side is the remainder
# Percent-decode the right side. This is the version.
# UTF-8-decode the version if needed in your programming language
# This is the version
my @s5 = split('@', $s4[1]);
$components{version} = _url_decode($s5[1]) if ($s5[1]);
# Split the remainder once from right on '/'
# The left side is the remainder
# Percent-decode the right side. This is the name
# UTF-8-decode this name if needed in your programming language
# Apply type-specific normalization to the name if needed
# This is the name
my @s6 = split('/', $s5[0], -1);
$components{name} = _url_decode(pop @s6);
# Split the remainder on '/'
# Discard any empty segment from that split
# Percent-decode each segment
# UTF-8-decode the each segment if needed in your programming language
# Apply type-specific normalization to each segment if needed
# Join segments back with a '/'
# This is the namespace
if (@s6) {
$components{namespace} = join '/', map { _url_decode($_) } @s6;
}
if (PURL_DEBUG) {
say STDERR "-- S1: @s1";
say STDERR "-- S2: @s2";
say STDERR "-- S3: @s3";
say STDERR "-- S4: @s4";
say STDERR "-- S5: @s5";
say STDERR "-- S6: @s6";
}
return $class->new(%components);
}
sub to_string {
my $self = shift;
my @purl = ('pkg', ':', $self->type, '/');
# Namespace
if ($self->namespace) {
my @ns = map { _url_encode($_) } split(/\//, $self->namespace);
push @purl, (join('/', @ns), '/');
}
# Name
push @purl, _url_encode($self->name);
# Version
push @purl, ('@', _url_encode($self->version)) if ($self->version);
# Qualifiers
if (my $qualifiers = $self->qualifiers) {
my @qualifiers = map { sprintf('%s=%s', lc $_, _url_encode($qualifiers->{$_})) }
grep { $qualifiers->{$_} } sort keys %{$qualifiers};
push @purl, ('?', join('&', @qualifiers)) if (@qualifiers);
}
# Subpath
push @purl, ('#', $self->subpath) if ($self->subpath);
return join '', @purl;
}
sub to_urls {
purl_to_urls(shift);
}
sub TO_JSON {
my $self = shift;
return {
type => $self->type,
name => $self->name,
version => $self->version,
namespace => $self->namespace,
qualifiers => $self->qualifiers,
subpath => $self->subpath,
};
}
sub _url_encode {
my $string = shift;
# RFC-3986 (but exclude "/" and ":")
$string =~ s/([^A-Za-z0-9\-._~\/:])/sprintf '%%%02X', ord $1/ge;
return $string;
}
sub _url_decode {
my $string = shift;
return unless $string;
$string =~ s/%([0-9a-fA-F]{2})/chr hex $1/ge;
return $string;
}
1;
__END__
=head1 NAME
URI::PackageURL - Perl extension for Package URL (aka "purl")
=head1 SYNOPSIS
use URI::PackageURL;
# OO-interface
# Encode components in Package URL string
$purl = URI::PackageURL->new(
type => cpan,
namespace => 'GDT',
name => 'URI-PackageURL',
version => '2.04'
);
say $purl; # pkg:cpan/GDT/[email protected]
# Parse Package URL string
$purl = URI::PackageURL->from_string('pkg:cpan/[email protected]');
# exported funtions
$purl = decode_purl('pkg:cpan/GDT/[email protected]');
say $purl->type; # cpan
$purl_string = encode_purl(type => cpan, name => 'URI-PackageURL', version => '2.04');
say $purl_string; # pkg:cpan/[email protected]
=head1 DESCRIPTION
This module converts Package URL components to "purl" string and vice versa.
A Package URL (aka "purl") is a URL string used to identify and locate a software
package in a mostly universal and uniform way across programing languages,
package managers, packaging conventions, tools, APIs and databases.
L<https://github.com/package-url/purl-spec>
A purl is a URL composed of seven components:
scheme:type/namespace/name@version?qualifiers#subpath
Components are separated by a specific character for unambiguous parsing.
The defintion for each components is:
=over
=item * "scheme": this is the URL scheme with the constant value of "pkg".
One of the primary reason for this single scheme is to facilitate the future
official registration of the "pkg" scheme for package URLs. Required.
=item * "type": the package "type" or package "protocol" such as maven, npm,
nuget, gem, pypi, etc. Required.
=item * "namespace": some name prefix such as a Maven groupid, a Docker image
owner, a GitHub user or organization. Optional and type-specific.
=item * "name": the name of the package. Required.
=item * "version": the version of the package. Optional.
=item * "qualifiers": extra qualifying data for a package such as an OS,
architecture, a distro, etc. Optional and type-specific.
=item * "subpath": extra subpath within a package, relative to the package root.
Optional.
=back
=head2 FUNCTIONAL INTERFACE
They are exported by default:
=over
=item $purl_string = encode_purl(%purl_components);
Converts the given Package URL components to "purl" string. Croaks on error.
This function call is functionally identical to:
$purl_string = URI::PackageURL->new(%purl_components)->to_string;
=item $purl_components = decode_purl($purl_string);
Converts the given "purl" string to Package URL components. Croaks on error.
This function call is functionally identical to:
$purl = URI::PackageURL->from_string($purl_string);
=back
=head2 OBJECT-ORIENTED INTERFACE
=over
=item $purl = URI::PackageURL->new(%components)
Create new B<URI::PackageURL> instance using provided Package URL components
(type, name, version ,etc).
=item $purl->type
The package "type" or package "protocol" such as maven, npm, nuget, gem, pypi, etc.
=item $purl->namespace
Some name prefix such as a Maven groupid, a Docker image owner, a GitHub user or
organization. Optional and type-specific.
=item $purl->name
The "name" of the package.
=item $purl->version
The "version" of the package.
=item $purl->qualifiers
Extra qualifying data for a package such as an OS, architecture, a distro, etc.
=item $purl->subpath
Extra subpath within a package, relative to the package root.
=item $purl->to_string
Stringify Package URL components.
=item $purl->to_urls
Return B<download> and/or B<repository> URLs.
=item $purl->TO_JSON
Helper method for JSON modules (L<JSON>, L<JSON::PP>, L<JSON::XS>, L<Mojo::JSON>, etc).
use Mojo::JSON qw(encode_json);
say encode_json($purl); # {"name":"URI-PackageURL","namespace":"GDT","qualifiers":null,"subpath":null,"type":"cpan","version":"2.04"}
=item $purl = URI::PackageURL->from_string($purl_string);
Converts the given "purl" string to Package URL components. Croaks on error.
=back
=head1 SUPPORT
=head2 Bugs / Feature Requests
Please report any bugs or feature requests through the issue tracker
at L<https://github.com/giterlizzi/perl-URI-PackageURL/issues>.
You will be notified automatically of any progress on your issue.
=head2 Source Code
This is open source software. The code repository is available for
public review and contribution under the terms of the license.
L<https://github.com/giterlizzi/perl-URI-PackageURL>
git clone https://github.com/giterlizzi/perl-URI-PackageURL.git
=head1 AUTHOR
=over 4
=item * Giuseppe Di Terlizzi <[email protected]>
=back
=head1 LICENSE AND COPYRIGHT
This software is copyright (c) 2022-2023 by Giuseppe Di Terlizzi.
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