purl-validator is a Rust library for validating Package URLs (PURLs). It works fully offline, including in air-gapped or restricted environments, and answers one key question: Does the package this PURL represents actually exist?
purl-validator is shipped with a pre-built FST (Finite State Transducer), a set of compact automata containing latest Package URLs mined by the MineCode1. Library uses this FST to perform lookups and confirm whether the base PURL2 exists.
- apk
- cargo
- composer
- conan
- cpan
- cran
- debian
- maven
- npm
- nuget
- pypi
- swift
Add purl-validator to your Rust dependencies:
cargo add purl_validatorUse it in your code like this:
use purl_validator::validate;
fn main() {
let exists: bool = validate("pkg:nuget/FluentValidation")
.expect("only fails if PURL is invalid or contains version, qualifier, or subpath");
println!("{exists}");
}Examples and errors:
use purl_validator::ValidateError;
use purl_validator::validate;
fn example() -> Result<(), ValidateError> {
assert_eq!(validate("pkg:nuget/FluentValidation")?, true);
assert_eq!(validate("pkg:nuget/non-existent-foo-bar")?, false);
let version_result = validate("pkg:nuget/FluentValidation@10.2.3");
assert!(matches!(version_result, Err(ValidateError::UnsupportedPurl(_))));
let invalid_result = validate("nuget/FluentValidation");
assert!(matches!(invalid_result, Err(ValidateError::InvalidPurl(_))));
Ok(())
}validate returns:
Ok(true)when the base PURL exists in the packaged data.Ok(false)when the base PURL is syntactically valid but unknown.Err(ValidateError::InvalidPurl(_))when the input is not a valid PURL.Err(ValidateError::UnsupportedPurl(_))when the PURL contains a version, qualifiers, or subpath.
Use the released crate version when you need reproducible validation results. Use a newer patch release when you need newer packaged PURL data.
A patch release is published daily with the latest FST generated from newly mined package-urls.
We welcome contributions from the community! If you find a bug or have an idea for a new feature, please open an issue on the GitHub repository. If you want to contribute code, you can fork the repository, make your changes, and submit a pull request.
- Please try to write a good commit message, see good commit message wiki.
- Add DCO
Sign Offto your commits.
Run these commands, starting from a git clone of https://github.com/aboutcode-org/purl-validator.rs.git
Generate FST:
make build-fstRun tests:
make testFix formatting and linting:
make validSPDX-License-Identifier: Apache-2.0
purl-validator is licensed under Apache License version 2.0.
You may not use this software except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.