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 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594
|
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 purl_components_normalize);
use constant DEBUG => $ENV{PURL_DEBUG};
use overload '""' => 'to_string', fallback => 1;
our $VERSION = '2.23';
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 = 'pkg'; # The scheme is a constant with the value "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};
return bless purl_components_normalize(
scheme => $scheme,
type => $type,
namespace => $namespace,
name => $name,
version => $version,
qualifiers => $qualifiers,
subpath => $subpath
), $class;
}
sub _component {
my ($self, $component, $value) = @_;
if (@_ == 3) {
$self->{$component} = $value;
}
return $self->{$component};
}
sub scheme {'pkg'}
sub type { shift->_component('type', @_) }
sub namespace { shift->_component('namespace', @_) }
sub name { shift->_component('name', @_) }
sub version { shift->_component('version', @_) }
sub qualifiers { shift->_component('qualifiers', @_) }
sub subpath { shift->_component('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 checksum, split the value on ',' to create a list of checksum
# 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) = ($qualifier =~ /^([^=]+)(?:=(.*))?$/);
$value = _url_decode($value);
if ($key eq 'checksums' || $key eq 'checksum') {
if ($key eq 'checksums') {
Carp::carp "Detected 'checksums' qualifier. Use 'checksum' qualifier instead.";
}
$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 (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, _encode($self->name);
# Version
push @purl, ('@', _encode($self->version)) if ($self->version);
# Qualifiers
if (my $qualifiers = $self->qualifiers) {
if (defined $qualifiers->{checksum} && ref $qualifiers->{checksum} eq 'ARRAY') {
$qualifiers->{checksum} = join ',', @{$qualifiers->{checksum}};
}
if (defined $qualifiers->{checksums} && ref $qualifiers->{checksums} eq 'ARRAY') {
$qualifiers->{checksums} = join ',', @{$qualifiers->{checksums}};
}
# TODO Use URI::VersionRange during qualifiers decode ?
if (defined $qualifiers->{vers} && ref $qualifiers->{vers} eq 'URI::VersionRange') {
$qualifiers->{vers} = $qualifiers->{vers}->to_string;
say STDERR $qualifiers->{vers};
}
my @qualifiers = map { sprintf('%s=%s', lc $_, _encode($qualifiers->{$_})) }
grep { $qualifiers->{$_} } sort keys %{$qualifiers};
push @purl, ('?', join('&', @qualifiers)) if (@qualifiers);
}
# Subpath
if ($self->subpath) {
my $subpath = $self->subpath;
$subpath =~ s{\.\./}{};
$subpath =~ s{\./}{};
my @subpath = map { _encode($_) } split '/', $subpath;
push @purl, ('#', join('/', @subpath));
}
return join '', @purl;
}
sub to_urls {
purl_to_urls(shift);
}
sub to_hash {
my $self = shift;
return {
scheme => $self->scheme,
type => $self->type,
name => $self->name,
version => $self->version,
namespace => $self->namespace,
qualifiers => $self->qualifiers,
subpath => $self->subpath,
};
}
sub TO_JSON { shift->to_hash }
sub _url_encode {
my ($string, $pattern) = @_;
# RFC-3986
$pattern //= '^A-Za-z0-9\-._~/' unless $pattern;
$string =~ s/([$pattern])/sprintf '%%%02X', ord $1/ge;
return $string;
}
sub _encode {
my $string = shift;
$string = _url_encode($string);
$string =~ s{%3A}{:}g;
$string =~ s{%2F}{/}g;
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.23'
);
say $purl; # pkg:cpan/GDT/URI-PackageURL@2.23
# Parse Package URL string
$purl = URI::PackageURL->from_string('pkg:cpan/GDT/URI-PackageURL@2.23');
# use setter methods
my $purl = URI::PackageURL->new(type => 'cpan', namespace => 'GDT', name => 'URI-PackageURL');
say $purl; # pkg:cpan/GDT/URI-PackageURL
say $purl->version; # undef
$purl->version('2.23');
say $purl; # pkg:cpan/GDT/URI-PackageURL@2.23
say $purl->version; # 2.23
# exported functions
$purl = decode_purl('pkg:cpan/GDT/URI-PackageURL@2.23');
say $purl->type; # cpan
$purl_string = encode_purl(type => cpan, namespace => 'GDT', name => 'URI-PackageURL', version => '2.23');
say $purl_string; # pkg:cpan/GDT/URI-PackageURL@2.23
# uses the legacy CPAN PURL type, to be used only for compatibility (will be removed in the future)
$ENV{PURL_LEGACY_CPAN_TYPE} = 1;
URI::PackageURL->new(type => 'cpan', name => 'URI::PackageURL');
=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 definition 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 cpan, 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 CPAN PURL TYPE
C<cpan> is an official "purl" type (L<https://github.com/package-url/purl-spec/blob/master/PURL-TYPES.rst>)
=over
=item * The default repository is C<https://www.cpan.org/>.
=item * The C<namespace> is the CPAN id of the author/publisher. It MUST be written uppercase and is required.
=item * The C<name> is the distribution name and is case sensitive. A distribution name MUST NOT contain the string C<::>.
=item * The C<version> is the distribution version.
=item * Optional qualifiers may include:
=over
=item * C<repository_url>: CPAN/MetaCPAN/BackPAN/DarkPAN repository base URL (default is https://www.cpan.org)
=item * C<download_url>: URL of package or distribution
=item * C<vcs_url>: extra URL for a package version control system
=item * C<ext>: file extension (default is tar.gz)
=back
=back
=head3 Examples
pkg:cpan/DROLSKY/DateTime@1.55
pkg:cpan/GDT/URI-PackageURL
pkg:cpan/OALDERS/libwww-perl@6.76
=head3 Legacy CPAN PURL type
Add C<PURL_LEGACY_CPAN_TYPE> environment variable for use the legacy CPAN PURL type.
B<NOTE>: This is only to be used for compatibility purposes (it will be removed in the future).
=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->scheme
The scheme is a constant with the value "pkg".
=item $purl->type
The package "type" or package "protocol" such as cpan, 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_hash
Turn PURL components into a hash reference.
=item $purl->TO_JSON
Helper method for JSON modules (L<JSON>, L<JSON::PP>, L<JSON::XS>, L<Cpanel::JSON::XS>, L<Mojo::JSON>, etc).
use Mojo::JSON qw(encode_json);
say encode_json($purl);
# {
# "name" : "URI-PackageURL",
# "namespace" : "GDT",
# "qualifiers" : {},
# "scheme" : "pkg",
# "subpath" : null,
# "type" : "cpan",
# "version" : "2.23"
# }
=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 <gdt@cpan.org>
=back
=head1 LICENSE AND COPYRIGHT
This software is copyright (c) 2022-2025 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
|