Skip to content

Commit 547f9b0

Browse files
committed
add base64 encoding to oauth state
1 parent ac6d66d commit 547f9b0

File tree

4 files changed

+13
-1
lines changed

4 files changed

+13
-1
lines changed

Cargo.lock

+7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -33,3 +33,4 @@ tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
3333
tower-sessions = "0.13.0"
3434
time = "0.3.36"
3535
memory-serve = "0.6.0"
36+
data-encoding = "2.6.0"

src/error.rs

+2
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@ pub enum ResponseError {
2121
Session(#[from] tower_sessions::session::Error),
2222
#[error("no login found")]
2323
NeedsAuth,
24+
#[error("invalid base64")]
25+
Base64(#[from] data_encoding::DecodeError),
2426
}
2527

2628
impl IntoResponse for ResponseError {

src/main.rs

+3-1
Original file line numberDiff line numberDiff line change
@@ -240,6 +240,7 @@ async fn account_login(
240240
// the same name/website/logo. backend-less SPAs already work like this, and it's a waste of
241241
// resources to make a separate "tokens" table mapping host -> client ID/secret
242242
let state = serde_json::to_string(&state).unwrap();
243+
let state = data_encoding::BASE64URL_NOPAD.encode(state.as_bytes());
243244

244245
let foreign_redirect_uri = format!("https://{host}/oauth/authorize?scope={scopes}&response_type=code&redirect_uri={self_redirect_uri}&client_id={client_id}&client_secret={client_secret}&state={state}");
245246

@@ -275,11 +276,12 @@ async fn account_redirect(
275276
let service_uri = get_service_uri(self_host);
276277
let self_redirect_uri = format!("{service_uri}/account/oauth-redirect");
277278

279+
let oauth_state = data_encoding::BASE64URL_NOPAD.decode(oauth_state.as_bytes())?;
278280
let OauthState {
279281
client_id,
280282
client_secret,
281283
host,
282-
} = serde_json::from_str(&oauth_state)?;
284+
} = serde_json::from_slice(&oauth_state)?;
283285
let client = ApiClient::new(&host, None).unwrap();
284286

285287
#[derive(Deserialize)]

0 commit comments

Comments
 (0)