feat(uriproxy)!: renamed fns, added expand fn
This commit is contained in:
parent
afa5bd45d0
commit
906f26f580
2 changed files with 14 additions and 7 deletions
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "uriproxy"
|
name = "uriproxy"
|
||||||
version = "0.1.0"
|
version = "0.1.1"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
authors = [ "alemi <me@alemi.dev>" ]
|
authors = [ "alemi <me@alemi.dev>" ]
|
||||||
description = "internal upub crate to handle remote uris"
|
description = "internal upub crate to handle remote uris"
|
||||||
|
|
|
@ -24,10 +24,8 @@ pub fn uri(base: &str, entity: UriClass, id: &str) -> String {
|
||||||
}
|
}
|
||||||
|
|
||||||
if id.starts_with('+') { // ready-to-use base64-encoded id
|
if id.starts_with('+') { // ready-to-use base64-encoded id
|
||||||
if let Ok(bytes) = base64::prelude::BASE64_URL_SAFE_NO_PAD.decode(id.replacen('+', "", 1)) {
|
if let Some(expanded) = expand(id) {
|
||||||
if let Ok(uri) = std::str::from_utf8(&bytes) {
|
return expanded;
|
||||||
return uri.to_string();
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -35,7 +33,7 @@ pub fn uri(base: &str, entity: UriClass, id: &str) -> String {
|
||||||
}
|
}
|
||||||
|
|
||||||
/// decompose local id constructed by uri() fn
|
/// decompose local id constructed by uri() fn
|
||||||
pub fn decompose_id(full_id: &str) -> String {
|
pub fn decompose(full_id: &str) -> String {
|
||||||
full_id // https://example.org/actors/test/followers/page?offset=42
|
full_id // https://example.org/actors/test/followers/page?offset=42
|
||||||
.replace("https://", "")
|
.replace("https://", "")
|
||||||
.replace("http://", "")
|
.replace("http://", "")
|
||||||
|
@ -45,8 +43,17 @@ pub fn decompose_id(full_id: &str) -> String {
|
||||||
.to_string()
|
.to_string()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pub fn expand(uri: &str) -> Option<String> {
|
||||||
|
if let Ok(bytes) = base64::prelude::BASE64_URL_SAFE_NO_PAD.decode(uri.replacen('+', "", 1)) {
|
||||||
|
if let Ok(uri) = std::str::from_utf8(&bytes) {
|
||||||
|
return Some(uri.to_string());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
None
|
||||||
|
}
|
||||||
|
|
||||||
/// encode with base64 remote url and prefix it with +
|
/// encode with base64 remote url and prefix it with +
|
||||||
pub fn compact_id(uri: &str) -> String {
|
pub fn compact(uri: &str) -> String {
|
||||||
let encoded = base64::prelude::BASE64_URL_SAFE_NO_PAD.encode(uri.as_bytes());
|
let encoded = base64::prelude::BASE64_URL_SAFE_NO_PAD.encode(uri.as_bytes());
|
||||||
format!("+{encoded}")
|
format!("+{encoded}")
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue