KeiSeiKit-1.0/_primitives/_rust/kei-auth-google/src/client.rs
Parfii-bot 0be354a920 KeiSeiKit-public — clean state
Single-commit clean baseline after security scrub of niche-tells,
project codenames, internal jargon, and contributor-email leaks.

Contents:
- 100 Rust crates (_primitives/_rust/)
- 37 agent manifests (_manifests/) + generated specs (_generated/)
- 67 user-invocable skills (skills/)
- 33 hooks (hooks/)
- Composition blocks (_blocks/)
- Documentation (docs/, README.md)
- TS adapter packages (_ts_packages/)
- Assembler (_assembler/)
- Roles (_roles/)
- Templates (_templates/)
- Forgejo CI (.forgejo/)

Author: Denis Parfionovich <info@greendragon.info>

License: see LICENSE.
2026-05-01 12:09:03 +08:00

155 lines
5.4 KiB
Rust

// SPDX-License-Identifier: Apache-2.0
// Copyright 2026 <author org>
//!
//! Thin async client for Google OAuth 2.0 token + OIDC userinfo endpoints.
//!
//! Two HTTP calls cover the verify path:
//! 1. `POST {token_url}` (x-www-form-urlencoded) → access_token + id_token
//! 2. `GET {userinfo_url}` with `Authorization: Bearer <access_token>`
//!
//! URLs are injectable via [`GoogleAuthClient::with_urls`] so wiremock can
//! point them at a local mock server. [`GoogleAuthClient::from_env`] uses
//! the production endpoints.
use crate::error::{Error, Result};
use reqwest::{Client, StatusCode};
use serde::{Deserialize, Serialize};
use std::time::Duration;
const DEFAULT_TIMEOUT_SECS: u64 = 30;
const DEFAULT_TOKEN_URL: &str = "https://oauth2.googleapis.com/token";
const DEFAULT_USERINFO_URL: &str = "https://openidconnect.googleapis.com/v1/userinfo";
/// Authorization endpoint — used only by [`super::provider::GoogleAuthProvider::build_auth_url`].
pub const DEFAULT_AUTH_URL: &str = "https://accounts.google.com/o/oauth2/v2/auth";
/// Token-endpoint response (RFC 6749 §5.1 + OIDC `id_token`).
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct TokenResponse {
pub access_token: String,
#[serde(default)]
pub expires_in: i64,
#[serde(default)]
pub id_token: Option<String>,
}
/// Userinfo response (OIDC core §5.3.2 — only the fields we surface).
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct UserInfo {
pub sub: String,
#[serde(default)]
pub email: String,
#[serde(default)]
pub name: String,
}
/// Async client wrapping the two relevant Google endpoints.
#[derive(Debug, Clone)]
pub struct GoogleAuthClient {
http: Client,
token_url: String,
userinfo_url: String,
client_id: String,
client_secret: String,
redirect_uri: String,
}
impl GoogleAuthClient {
/// Build from `GOOGLE_OAUTH_CLIENT_ID`, `GOOGLE_OAUTH_CLIENT_SECRET`,
/// `GOOGLE_OAUTH_REDIRECT_URI`. Uses production token + userinfo URLs.
pub fn from_env() -> Result<Self> {
let client_id = std::env::var("GOOGLE_OAUTH_CLIENT_ID")
.map_err(|_| Error::Config("GOOGLE_OAUTH_CLIENT_ID unset".into()))?;
let client_secret = std::env::var("GOOGLE_OAUTH_CLIENT_SECRET")
.map_err(|_| Error::Config("GOOGLE_OAUTH_CLIENT_SECRET unset".into()))?;
let redirect_uri = std::env::var("GOOGLE_OAUTH_REDIRECT_URI")
.map_err(|_| Error::Config("GOOGLE_OAUTH_REDIRECT_URI unset".into()))?;
Self::with_urls(
DEFAULT_TOKEN_URL,
DEFAULT_USERINFO_URL,
client_id,
client_secret,
redirect_uri,
)
}
/// Explicit-URL constructor — used by `wiremock` and any caller that
/// wants to bypass process-env lookup.
pub fn with_urls(
token_url: impl Into<String>,
userinfo_url: impl Into<String>,
client_id: impl Into<String>,
client_secret: impl Into<String>,
redirect_uri: impl Into<String>,
) -> Result<Self> {
let http = Client::builder()
.timeout(Duration::from_secs(DEFAULT_TIMEOUT_SECS))
.build()
.map_err(Error::from)?;
Ok(Self {
http,
token_url: token_url.into(),
userinfo_url: userinfo_url.into(),
client_id: client_id.into(),
client_secret: client_secret.into(),
redirect_uri: redirect_uri.into(),
})
}
/// `POST {token_url}` (x-www-form-urlencoded) →
/// [`TokenResponse`]. RFC 6749 §4.1.3 authorization-code grant.
pub async fn exchange_code(&self, code: &str) -> Result<TokenResponse> {
let form = [
("client_id", self.client_id.as_str()),
("client_secret", self.client_secret.as_str()),
("code", code),
("redirect_uri", self.redirect_uri.as_str()),
("grant_type", "authorization_code"),
];
let resp = self
.http
.post(&self.token_url)
.header("accept", "application/json")
.form(&form)
.send()
.await?;
let status = resp.status();
if !status.is_success() {
let body = resp.text().await.unwrap_or_default();
return Err(Error::Api(format!("token http {status}: {body}")));
}
let token: TokenResponse = resp.json().await?;
Ok(token)
}
/// `GET {userinfo_url}` with `Authorization: Bearer <access_token>`.
pub async fn userinfo(&self, access_token: &str) -> Result<UserInfo> {
let resp = self
.http
.get(&self.userinfo_url)
.bearer_auth(access_token)
.header("accept", "application/json")
.send()
.await?;
match resp.status() {
StatusCode::OK => {
let info: UserInfo = resp.json().await?;
Ok(info)
}
StatusCode::NOT_FOUND => Err(Error::NotFound("userinfo".into())),
s => {
let body = resp.text().await.unwrap_or_default();
Err(Error::Api(format!("userinfo http {s}: {body}")))
}
}
}
/// Borrow `client_id` (used by `build_auth_url`).
pub fn client_id(&self) -> &str {
&self.client_id
}
/// Borrow `redirect_uri` (used by `build_auth_url`).
pub fn redirect_uri(&self) -> &str {
&self.redirect_uri
}
}