Add percentage encoding and decoding to query handling

This commit is contained in:
Karcsesz 2024-02-14 22:28:17 +01:00
parent 93d942b8a7
commit 6f71ab08f6
4 changed files with 11 additions and 1 deletions

7
Cargo.lock generated
View file

@ -371,6 +371,7 @@ dependencies = [
"tokio",
"tracing",
"tracing-subscriber",
"urlencoding",
"which",
]
@ -1451,6 +1452,12 @@ dependencies = [
"percent-encoding",
]
[[package]]
name = "urlencoding"
version = "2.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "daf8dba3b7eb870caf1ddeed7bc9d2a049f3cfdfae7cb521b087cc33ae4c49da"
[[package]]
name = "utf8parse"
version = "0.2.1"

View file

@ -24,4 +24,5 @@ axum = { version = "0.7.4", optional = true }
reqwest = { version = "0.11.24", optional = true, default-features = false, features = ["rustls-tls", "blocking", "json", "gzip", "brotli", "deflate"] }
tempfile = { version = "3.10.0", optional = true }
which = { version = "6.0.0", optional = true }
nix = { version = "0.27.1", optional = true, default-features = false, features = ["signal"] }
nix = { version = "0.27.1", optional = true, default-features = false, features = ["signal"] }
urlencoding = { version = "2.1.3"}

View file

@ -52,6 +52,7 @@ pub fn finger_fedi(client: &Client, handle: &str) -> Result<Resource, FediFinger
.split_once('@')
.ok_or(FediFingerError::MissingMiddleAt)?;
let account = format!("acct:{handle}");
let account = urlencoding::encode(account.as_str());
let url =
Url::parse(format!("https://{domain}/.well-known/webfinger?resource={account}").as_str())

View file

@ -81,6 +81,7 @@ async fn run_webfinger_query(
info!("Received query with {uri}");
let query = uri.query().ok_or(StatusCode::BAD_REQUEST)?;
debug!("Query string is {query}");
let query = urlencoding::decode(query).map_err(|e| StatusCode::BAD_REQUEST)?;
let params = query
.split('&')
.filter_map(|query_part| {