View Source Purl (purl v0.1.1)

Elixir Implementation of the purl (package url) specification.

specification

Specification

https://github.com/package-url/purl-spec

Format: pkg:type/namespace/name@version?qualifiers#subpath

License

A lot of the documentation was taken directly from the specification. It is licensed under the MIT License:

Copyright (c) the purl authors

Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
the Software, and to permit persons to whom the Software is furnished to do so,
subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Link to this section Summary

Types

the name of the package

some name prefix such as a Maven groupid, a Docker image owner, a GitHub user or organization

Segment of the namespace

qualifier key

qualifier value

extra qualifying data for a package such as an OS, architecture, a distro, etc.

extra subpath within a package, relative to the package root

subpath segment

t()

Package URL struct

the package "type" or package "protocol" such as maven, npm, nuget, gem, pypi, etc.

the version of the package

Functions

Convert known URLs to purl

Creates a new purl struct from a Purl, URI or string.

Similar to new/1 but raises URI.Error, Purl.Error.InvalidField or Purl.Error.InvalidURI if an invalid input is given.

Formats purl as string

Converts a purl to a URI

Link to this section Types

@type name() :: String.t()

the name of the package

@type namespace() :: [namespace_segment()]

some name prefix such as a Maven groupid, a Docker image owner, a GitHub user or organization

The values are type-specific.

@type namespace_segment() :: String.t()

Segment of the namespace

validation

Validation

  • must not contain a '/'
  • must not be empty
  • A URL host or Authority must NOT be used as a namespace. Use instead a repository_url qualifier. Note however that for some types, the namespace may look like a host.
@type parse_error() ::
  %URI.Error{__exception__: true, action: term(), part: term(), reason: term()}
  | Purl.Error.InvalidField.t()
  | Purl.Error.DuplicateQualifier.t()
  | Purl.Error.InvalidScheme.t()
@type qualifier_key() :: String.t()

qualifier key

validation

Validation

  • The key must be composed only of ASCII letters and numbers, '.', '-' and '_' (period, dash and underscore)
  • A key cannot start with a number
  • A key must NOT be percent-encoded
  • A key is case insensitive. The canonical form is lowercase
  • A key cannot contains spaces
@type qualifier_value() :: String.t()

qualifier value

validation

Validation

  • value cannot be an empty string: a key=value pair with an empty value is the same as no key/value at all for this key
@type qualifiers() :: %{optional(qualifier_key()) => qualifier_value()}

extra qualifying data for a package such as an OS, architecture, a distro, etc.

The values are type-specific.

validation

Validation

  • key must be unique within the keys of the qualifiers string
@type subpath() :: [subpath_segment()]

extra subpath within a package, relative to the package root

@type subpath_segment() :: String.t()

subpath segment

validation

Validation

  • must not contain a '/'
  • must not be any of '..' or '.'
  • must not be empty
@type t() :: %Purl{
  name: name(),
  namespace: namespace(),
  qualifiers: qualifiers(),
  subpath: subpath(),
  type: type(),
  version: version() | nil
}

Package URL struct

@type type() :: String.t()

the package "type" or package "protocol" such as maven, npm, nuget, gem, pypi, etc.

Known types: https://github.com/package-url/purl-spec/blob/master/PURL-TYPES.rst

validation

Validation

  • The package type is composed only of ASCII letters and numbers, '.', '+' and '-' (period, plus, and dash)
  • The type cannot start with a number
  • The type cannot contains spaces
  • The type must NOT be percent-encoded
  • The type is case insensitive. The canonical form is lowercase
@type version() :: Version.t() | String.t()

the version of the package

A version is a plain and opaque string. Some package types use versioning conventions such as semver for NPMs or nevra conventions for RPMS. A type may define a procedure to compare and sort versions, but there is no reliable and uniform way to do such comparison consistently.

Link to this section Functions

@spec from_resource_uri(uri :: String.t() | URI.t()) :: {:ok, t()} | :error

Convert known URLs to purl

currently-supported

Currently Supported

  • GitHub: Repository HTTP / Git URL, Project URL
  • BitBucket: Repository HTTTP / Git URL, Project URL
  • Hex.pm package URL
@spec new(purl :: String.t() | URI.t() | t()) ::
  {:ok, t()} | {:error, parse_error() | Purl.Error.SpecialCaseFailed.t()}

Creates a new purl struct from a Purl, URI or string.

examples

Examples

iex> Purl.new("pkg:hex/purl")
{:ok, %Purl{type: "hex", name: "purl"}}
@spec new!(purl :: String.t() | URI.t() | t()) :: t()

Similar to new/1 but raises URI.Error, Purl.Error.InvalidField or Purl.Error.InvalidURI if an invalid input is given.

examples

Examples

iex> Purl.new!("pkg:hex/purl")
%Purl{type: "hex", name: "purl"}

iex> Purl.new!(">pkg:hex/purl")
** (URI.Error) cannot parse due to reason invalid_uri: ">"

iex> Purl.new!("pkg:hex*/purl")
** (Purl.Error.InvalidField) invalid field type, "hex*" given
@spec to_string(purl :: t()) :: String.t()

Formats purl as string

examples

Examples

iex> Purl.to_string(%Purl{type: "hex", name: "purl"})
"pkg:hex/purl"
@spec to_uri(purl :: t()) :: URI.t()

Converts a purl to a URI

examples

Examples

iex> Purl.to_uri(%Purl{type: "hex", name: "purl"})
%URI{scheme: "pkg", path: "hex/purl"}