feat: use url encoding crate to ensure validity of urls

This commit is contained in:
daimond113 2025-01-09 23:04:06 +01:00
parent be6410443f
commit 6ab334c904
No known key found for this signature in database
GPG key ID: 3A8ECE51328B513C
2 changed files with 4 additions and 3 deletions

View file

@ -22,6 +22,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Change handling of graphs to a flat structure by @daimond113 - Change handling of graphs to a flat structure by @daimond113
- Store dependency over downloaded graphs in the lockfile by @daimond113 - Store dependency over downloaded graphs in the lockfile by @daimond113
- Improve linking process by @daimond113 - Improve linking process by @daimond113
- Use a proper url encoding library to ensure compatibility with all characters by @daimond113
### Removed ### Removed
- Remove old includes format compatibility by @daimond113 - Remove old includes format compatibility by @daimond113

View file

@ -210,9 +210,9 @@ impl PackageSource for PesdePackageSource {
let url = config let url = config
.download() .download()
.replace("{PACKAGE}", &id.name().to_string().replace("/", "%2F")) .replace("{PACKAGE}", &urlencoding::encode(&id.name().to_string()))
.replace("{PACKAGE_VERSION}", &id.version_id().version().to_string()) .replace("{PACKAGE_VERSION}", &urlencoding::encode(&id.version_id().version().to_string()))
.replace("{PACKAGE_TARGET}", &id.version_id().target().to_string()); .replace("{PACKAGE_TARGET}", &urlencoding::encode(&id.version_id().target().to_string()));
let mut request = reqwest.get(&url).header(ACCEPT, "application/octet-stream"); let mut request = reqwest.get(&url).header(ACCEPT, "application/octet-stream");