fix(uriproxy): dont use padding

This commit is contained in:
əlemi 2024-05-20 07:13:22 +02:00
parent c6602d0669
commit d7ebb2f95e
Signed by: alemi
GPG key ID: A4895B84D311642C

View file

@ -22,7 +22,7 @@ impl AsRef<str> for UriClass {
/// unpack uri in id if valid, otherwise compose full uri with "{base}/{entity}/{id}"
pub fn uri(base: &str, entity: UriClass, id: &str) -> String {
if id.starts_with('+') { // ready-to-use base64-encoded id
if let Ok(bytes) = base64::prelude::BASE64_URL_SAFE.decode(id.replacen('+', "", 1)) {
if let Ok(bytes) = base64::prelude::BASE64_URL_SAFE_NO_PAD.decode(id.replacen('+', "", 1)) {
if let Ok(uri) = std::str::from_utf8(&bytes) {
return uri.to_string();
}
@ -42,6 +42,6 @@ pub fn decompose_id(full_id: &str) -> String {
/// encode with base64 remote url and prefix it with +
pub fn compact_id(uri: &str) -> String {
let encoded = base64::prelude::BASE64_URL_SAFE.encode(uri.as_bytes());
let encoded = base64::prelude::BASE64_URL_SAFE_NO_PAD.encode(uri.as_bytes());
format!("+{encoded}")
}