Files
Kigi-CLI/crates/codegen/kigi-pager-minimal/src/auth.rs
T
ZacharyZhang-NY ea0ce9d15f F3: Kimi inference pipeline + full grok cloud-surface excision
Sampler / inference (PRD F3):
- kimi_compat.rs: single adaptation point for the Kimi chat/completions
  dialect (thinking-field mapping, model_id stripping, empty-content
  tool-call message fix, stream_options.include_usage), with kimi-cli
  source citations
- Rate-limit handling reworked for Kimi/Moonshot semantics; UA kigi/{version}
- /models replaces the xAI models-v2 endpoint everywhere; idle model
  refresh carries X-Msh-* device headers only (X-XAI-Token-Auth and
  x-grok-client-mode/CLIENT_MODE_HEADER machinery deleted)

Cloud-surface excision (PRD §5, zero-egress):
- remote/ conversations lane, cli-chat-proxy-types crate, prod/ dir,
  share command, credit bar: deleted (single local session lane;
  paginate() replaces merge_and_paginate)
- Subscription/tier gate stack deleted end-to-end: AppView
  gate/tier/team/ZDR fields, app/subscription.rs watch loop,
  dispatch/billing.rs paywall + SuperGrok upsell, free-usage-exhausted
  chain, tier-restricted commands, GateInfo, RemoteSettings gate fields,
  SettingsUpdateNotification gate fields
- /privacy + coding-data-sharing setting deleted (backed by a dead xAI
  RPC; Kigi is zero-egress — nothing to share or retain remotely)

Auth UX correctness (user-reported):
- Device-flow fixtures now mirror the live Kimi payload shape
  (https://www.kimi.com/code/authorize_device?user_code=..., verified
  against auth.kimi.com); the fabricated auth.kimi.com/device?code=...
  URLs are gone
- open_browser_detached is a no-op under cfg(test): unit tests drove
  wiremock fixture URLs into the real browser (root cause of the
  "garbage mock link" ABCD-1234 tabs)
- Welcome/pager-minimal rebrand: Grok Build -> Kigi, grok.com ->
  kimi.com, "Sign in to Grok" -> "Sign in to Kimi"
2026-07-17 16:05:51 -04:00

336 lines
11 KiB
Rust

//! Minimal-mode sign-in rendering for the live region.
//!
//! Before any agent session exists (unauthenticated / folder-trust pending) the
//! minimal live region shows the sign-in flow itself — device or external-command
//! flow, a sign-in error, or a brief "starting" transient once authenticated —
//! since minimal has no welcome screen. [`draw_live`](super::live::draw_live)
//! computes a [`MinimalAuthHint`] from the app's [`AuthState`] and renders it via
//! [`render_auth`].
use ratatui::buffer::Buffer;
use ratatui::layout::Rect;
use ratatui::style::{Color, Modifier, Style};
use ratatui::text::{Line, Span};
use kigi_tui::app::app_view::AuthState;
use kigi_tui::theme::Theme;
/// What the minimal live region shows when there is no active agent yet: the
/// in-region sign-in flow (device or external-command), a sign-in error, or a
/// brief "starting" transient once authenticated. Computed from [`AuthState`]
/// before the draw closure so the closure can own it.
pub(super) enum MinimalAuthHint {
/// Interactive sign-in underway — show the URL (when known) and the device
/// code (when the URL carries one). Covers device flow and the external
/// command flow (where the provider opens its own browser; `url` may be
/// `None`).
SigningIn {
url: Option<String>,
code: Option<String>,
},
/// The last sign-in attempt failed; show the error.
Failed(String),
/// Authenticated — the session is being created (brief transient).
Starting,
}
/// Map the app's [`AuthState`] to what the no-agent live region should show.
pub(super) fn minimal_auth_hint(auth: &AuthState) -> MinimalAuthHint {
match auth {
AuthState::Authenticating { auth_url, .. } => MinimalAuthHint::SigningIn {
url: auth_url.clone(),
code: auth_url
.as_deref()
.and_then(device_user_code)
.map(str::to_owned),
},
AuthState::Pending { error: Some(err) } => MinimalAuthHint::Failed(err.clone()),
// Login is starting (auto-triggered at startup) — the URL arrives via
// AuthUrlReady, which flips us to `Authenticating`.
AuthState::Pending { error: None } => MinimalAuthHint::SigningIn {
url: None,
code: None,
},
AuthState::Done => MinimalAuthHint::Starting,
}
}
/// Parse the device-flow `user_code` from a verification URL (`None` if absent
/// or malformed). Mirrors `views::welcome::extract_user_code`, kept local so
/// minimal does not depend on welcome-screen internals.
fn device_user_code(url: &str) -> Option<&str> {
let code = url
.split('?')
.nth(1)?
.split('&')
.find_map(|kv| kv.strip_prefix("user_code="))?;
(!code.is_empty() && code.chars().all(|c| c.is_ascii_alphanumeric() || c == '-'))
.then_some(code)
}
/// Write `line` at row `y` (when it fits) and return the next row.
fn put_line(buf: &mut Buffer, area: Rect, y: u16, bottom: u16, line: Line<'_>) -> u16 {
if y < bottom {
buf.set_line(area.x, y, &line, area.width);
y + 1
} else {
y
}
}
/// Write `url` character-by-character across as many rows as it needs (no
/// wrap-inserted spaces), so the terminal's native selection copies it verbatim
/// — minimal has no mouse capture, so copy is the terminal's job. Returns the
/// next free row.
fn render_url(
buf: &mut Buffer,
area: Rect,
start_y: u16,
bottom: u16,
url: &str,
style: Style,
) -> u16 {
let width = area.width.max(1);
// Snapshot the buffer bounds as values so the `&Rect` borrow doesn't outlive
// the mutable cell writes below.
let (max_x, max_y) = {
let a = buf.area();
(a.right(), a.bottom())
};
let mut col = 0u16;
let mut y = start_y;
for ch in url.chars() {
// Skip control chars to prevent terminal escape injection.
if ch.is_control() {
continue;
}
if col >= width {
col = 0;
y = y.saturating_add(1);
}
if y >= bottom {
return bottom;
}
let x = area.x + col;
if x < max_x && y < max_y {
buf[(x, y)].set_char(ch).set_style(style);
}
col += 1;
}
y.saturating_add(1)
}
/// Render the sign-in flow (or transient status) in the live region when no
/// agent exists yet. Top-aligned in `area`; clips to its height.
pub(super) fn render_auth(buf: &mut Buffer, area: Rect, theme: &Theme, hint: &MinimalAuthHint) {
if area.width == 0 || area.height == 0 {
return;
}
let bottom = area.y + area.height;
let mut y = area.y;
let gray = theme.muted().bg(Color::Reset);
let bold = Style::default()
.fg(theme.text_primary)
.add_modifier(Modifier::BOLD)
.bg(Color::Reset);
match hint {
MinimalAuthHint::SigningIn { url, code } => {
y = put_line(
buf,
area,
y,
bottom,
Line::from(Span::styled("Sign in to Kimi", bold)),
);
y = put_line(buf, area, y, bottom, Line::default());
match url {
Some(url) => {
y = put_line(
buf,
area,
y,
bottom,
Line::from(Span::styled(
"Open this URL in your browser to approve:",
gray,
)),
);
y = render_url(
buf,
area,
y,
bottom,
url,
Style::default().fg(theme.accent_user).bg(Color::Reset),
);
if let Some(code) = code {
y = put_line(buf, area, y, bottom, Line::default());
y = put_line(
buf,
area,
y,
bottom,
Line::from(vec![
Span::styled("Code: ", gray),
Span::styled(code.clone(), bold),
]),
);
}
y = put_line(buf, area, y, bottom, Line::default());
let _ = put_line(
buf,
area,
y,
bottom,
Line::from(Span::styled("Waiting for approval\u{2026}", gray)),
);
}
None => {
let _ = put_line(
buf,
area,
y,
bottom,
Line::from(Span::styled(
"Opening your browser to sign in\u{2026}",
gray,
)),
);
}
}
}
MinimalAuthHint::Failed(err) => {
let warn = Style::default()
.fg(theme.warning)
.add_modifier(Modifier::BOLD)
.bg(Color::Reset);
y = put_line(
buf,
area,
y,
bottom,
Line::from(Span::styled("Sign-in failed", warn)),
);
y = put_line(buf, area, y, bottom, Line::default());
let _ = put_line(
buf,
area,
y,
bottom,
Line::from(Span::styled(err.clone(), gray)),
);
}
MinimalAuthHint::Starting => {
let _ = put_line(
buf,
area,
y,
bottom,
Line::from(Span::styled(
"Signing in\u{2026} starting your session.",
gray,
)),
);
}
}
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn device_user_code_parses_verification_url() {
// The live Kimi device flow returns this exact URL shape.
assert_eq!(
device_user_code("https://www.kimi.com/code/authorize_device?user_code=ABCD-EFGH"),
Some("ABCD-EFGH")
);
assert_eq!(
device_user_code("https://www.kimi.com/code/authorize_device"),
None
);
assert_eq!(device_user_code("https://x/device?other=1"), None);
}
#[test]
fn auth_hint_maps_auth_state() {
use kigi_tui::app::app_view::AuthMode;
// Device flow → SigningIn carrying the URL and the parsed code.
let st = AuthState::Authenticating {
request_seq: 1,
handle: None,
auth_url: Some("https://www.kimi.com/code/authorize_device?user_code=ABCD-EFGH".into()),
mode: AuthMode::Device,
};
match minimal_auth_hint(&st) {
MinimalAuthHint::SigningIn { url, code } => {
assert_eq!(
url.as_deref(),
Some("https://www.kimi.com/code/authorize_device?user_code=ABCD-EFGH")
);
assert_eq!(code.as_deref(), Some("ABCD-EFGH"));
}
_ => panic!("expected SigningIn"),
}
// External command flow with no code → SigningIn, URL but no code.
let st = AuthState::Authenticating {
request_seq: 2,
handle: None,
auth_url: Some("https://provider.example/login".into()),
mode: AuthMode::Command,
};
match minimal_auth_hint(&st) {
MinimalAuthHint::SigningIn { url, code } => {
assert_eq!(url.as_deref(), Some("https://provider.example/login"));
assert!(code.is_none());
}
_ => panic!("expected SigningIn"),
}
assert!(matches!(
minimal_auth_hint(&AuthState::Done),
MinimalAuthHint::Starting
));
assert!(matches!(
minimal_auth_hint(&AuthState::Pending {
error: Some("nope".into())
}),
MinimalAuthHint::Failed(_)
));
}
#[test]
fn render_auth_shows_url_and_code() {
let theme = Theme::current();
let area = Rect::new(0, 0, 80, 12);
let mut buf = Buffer::empty(area);
let hint = MinimalAuthHint::SigningIn {
url: Some("https://www.kimi.com/code/authorize_device?user_code=ABCD-EFGH".into()),
code: Some("ABCD-EFGH".into()),
};
render_auth(&mut buf, area, &theme, &hint);
let mut text = String::new();
for y in 0..area.height {
for x in 0..area.width {
if let Some(c) = buf.cell((x, y)) {
text.push_str(c.symbol());
}
}
}
assert!(text.contains("Sign in to Kimi"), "header: {text:?}");
assert!(
text.contains("www.kimi.com/code/authorize_device"),
"url: {text:?}"
);
assert!(text.contains("ABCD-EFGH"), "device code: {text:?}");
assert!(
text.contains("Waiting for approval"),
"waiting line: {text:?}"
);
}
}