mirror of
https://github.com/farion1231/cc-switch.git
synced 2026-07-27 16:26:16 +08:00
1685 lines
56 KiB
Rust
1685 lines
56 KiB
Rust
use std::path::{Path, PathBuf};
|
||
|
||
use crate::config::{
|
||
atomic_write, delete_file, get_home_dir, read_json_file, sanitize_provider_name,
|
||
write_json_file, write_text_file,
|
||
};
|
||
use crate::error::AppError;
|
||
use serde_json::{json, Value};
|
||
use std::fs;
|
||
use std::process::Command;
|
||
use toml_edit::DocumentMut;
|
||
|
||
pub const CC_SWITCH_CODEX_MODEL_PROVIDER_ID: &str = "custom";
|
||
pub const CC_SWITCH_CODEX_MODEL_CATALOG_FILENAME: &str = "cc-switch-model-catalog.json";
|
||
const CODEX_MODEL_CATALOG_TEMPLATE_SLUG: &str = "gpt-5.5";
|
||
|
||
/// Reserved built-in provider IDs from OpenAI Codex's config/model-provider
|
||
/// catalog. Keep in sync with Codex `RESERVED_MODEL_PROVIDER_IDS` and legacy
|
||
/// removed provider aliases.
|
||
const CODEX_RESERVED_MODEL_PROVIDER_IDS: &[&str] = &[
|
||
"amazon-bedrock",
|
||
"openai",
|
||
"ollama",
|
||
"lmstudio",
|
||
"oss",
|
||
"ollama-chat",
|
||
];
|
||
|
||
/// 获取 Codex 配置目录路径
|
||
pub fn get_codex_config_dir() -> PathBuf {
|
||
if let Some(custom) = crate::settings::get_codex_override_dir() {
|
||
return custom;
|
||
}
|
||
|
||
get_home_dir().join(".codex")
|
||
}
|
||
|
||
/// 获取 Codex auth.json 路径
|
||
pub fn get_codex_auth_path() -> PathBuf {
|
||
get_codex_config_dir().join("auth.json")
|
||
}
|
||
|
||
/// 获取 Codex config.toml 路径
|
||
pub fn get_codex_config_path() -> PathBuf {
|
||
get_codex_config_dir().join("config.toml")
|
||
}
|
||
|
||
pub fn get_codex_model_catalog_path() -> PathBuf {
|
||
get_codex_config_dir().join(CC_SWITCH_CODEX_MODEL_CATALOG_FILENAME)
|
||
}
|
||
|
||
/// 获取 Codex 供应商配置文件路径
|
||
#[allow(dead_code)]
|
||
pub fn get_codex_provider_paths(
|
||
provider_id: &str,
|
||
provider_name: Option<&str>,
|
||
) -> (PathBuf, PathBuf) {
|
||
let base_name = provider_name
|
||
.map(sanitize_provider_name)
|
||
.unwrap_or_else(|| sanitize_provider_name(provider_id));
|
||
|
||
let auth_path = get_codex_config_dir().join(format!("auth-{base_name}.json"));
|
||
let config_path = get_codex_config_dir().join(format!("config-{base_name}.toml"));
|
||
|
||
(auth_path, config_path)
|
||
}
|
||
|
||
/// 删除 Codex 供应商配置文件
|
||
#[allow(dead_code)]
|
||
pub fn delete_codex_provider_config(
|
||
provider_id: &str,
|
||
provider_name: &str,
|
||
) -> Result<(), AppError> {
|
||
let (auth_path, config_path) = get_codex_provider_paths(provider_id, Some(provider_name));
|
||
|
||
delete_file(&auth_path).ok();
|
||
delete_file(&config_path).ok();
|
||
|
||
Ok(())
|
||
}
|
||
|
||
/// 原子写 Codex 的 `auth.json` 与 `config.toml`,在第二步失败时回滚第一步
|
||
pub fn write_codex_live_atomic(
|
||
auth: &Value,
|
||
config_text_opt: Option<&str>,
|
||
) -> Result<(), AppError> {
|
||
let auth_path = get_codex_auth_path();
|
||
let config_path = get_codex_config_path();
|
||
|
||
if let Some(parent) = auth_path.parent() {
|
||
std::fs::create_dir_all(parent).map_err(|e| AppError::io(parent, e))?;
|
||
}
|
||
|
||
// 读取旧内容用于回滚
|
||
let old_auth = if auth_path.exists() {
|
||
Some(fs::read(&auth_path).map_err(|e| AppError::io(&auth_path, e))?)
|
||
} else {
|
||
None
|
||
};
|
||
let _old_config = if config_path.exists() {
|
||
Some(fs::read(&config_path).map_err(|e| AppError::io(&config_path, e))?)
|
||
} else {
|
||
None
|
||
};
|
||
|
||
// 准备写入内容
|
||
let cfg_text = match config_text_opt {
|
||
Some(s) => s.to_string(),
|
||
None => String::new(),
|
||
};
|
||
if !cfg_text.trim().is_empty() {
|
||
toml::from_str::<toml::Table>(&cfg_text).map_err(|e| AppError::toml(&config_path, e))?;
|
||
}
|
||
|
||
// 第一步:写 auth.json
|
||
write_json_file(&auth_path, auth)?;
|
||
|
||
// 第二步:写 config.toml(失败则回滚 auth.json)
|
||
if let Err(e) = write_text_file(&config_path, &cfg_text) {
|
||
// 回滚 auth.json
|
||
if let Some(bytes) = old_auth {
|
||
let _ = atomic_write(&auth_path, &bytes);
|
||
} else {
|
||
let _ = delete_file(&auth_path);
|
||
}
|
||
return Err(e);
|
||
}
|
||
|
||
Ok(())
|
||
}
|
||
|
||
/// 读取 `~/.codex/config.toml`,若不存在返回空字符串
|
||
pub fn read_codex_config_text() -> Result<String, AppError> {
|
||
let path = get_codex_config_path();
|
||
if path.exists() {
|
||
std::fs::read_to_string(&path).map_err(|e| AppError::io(&path, e))
|
||
} else {
|
||
Ok(String::new())
|
||
}
|
||
}
|
||
|
||
/// 对非空的 TOML 文本进行语法校验
|
||
pub fn validate_config_toml(text: &str) -> Result<(), AppError> {
|
||
if text.trim().is_empty() {
|
||
return Ok(());
|
||
}
|
||
toml::from_str::<toml::Table>(text)
|
||
.map(|_| ())
|
||
.map_err(|e| AppError::toml(Path::new("config.toml"), e))
|
||
}
|
||
|
||
/// 读取并校验 `~/.codex/config.toml`,返回文本(可能为空)
|
||
pub fn read_and_validate_codex_config_text() -> Result<String, AppError> {
|
||
let s = read_codex_config_text()?;
|
||
validate_config_toml(&s)?;
|
||
Ok(s)
|
||
}
|
||
|
||
fn active_codex_model_provider_id(doc: &DocumentMut) -> Option<String> {
|
||
doc.get("model_provider")
|
||
.and_then(|item| item.as_str())
|
||
.map(str::trim)
|
||
.filter(|id| !id.is_empty())
|
||
.map(str::to_string)
|
||
}
|
||
|
||
pub(crate) fn is_custom_codex_model_provider_id(id: &str) -> bool {
|
||
let id = id.trim();
|
||
!id.is_empty()
|
||
&& !CODEX_RESERVED_MODEL_PROVIDER_IDS
|
||
.iter()
|
||
.any(|reserved| reserved.eq_ignore_ascii_case(id))
|
||
}
|
||
|
||
/// Write only Codex `config.toml` for provider switching.
|
||
///
|
||
/// Codex login state lives in `auth.json`; provider routing, endpoint, model,
|
||
/// and provider-scoped bearer tokens live in `config.toml`. Provider switches
|
||
/// should not overwrite the user's ChatGPT login cache.
|
||
pub fn write_codex_live_config_atomic(config_text_opt: Option<&str>) -> Result<(), AppError> {
|
||
let config_path = get_codex_config_path();
|
||
let cfg_text = match config_text_opt {
|
||
Some(config_text) => config_text.to_string(),
|
||
None => String::new(),
|
||
};
|
||
|
||
if !cfg_text.trim().is_empty() {
|
||
toml::from_str::<toml::Table>(&cfg_text).map_err(|e| AppError::toml(&config_path, e))?;
|
||
}
|
||
|
||
write_text_file(&config_path, &cfg_text)
|
||
}
|
||
|
||
pub fn extract_codex_auth_api_key(auth: &Value) -> Option<String> {
|
||
auth.get("OPENAI_API_KEY")
|
||
.and_then(|value| value.as_str())
|
||
.map(str::trim)
|
||
.filter(|key| !key.is_empty())
|
||
.map(str::to_string)
|
||
}
|
||
|
||
pub fn extract_codex_api_key(auth: Option<&Value>, config_text: Option<&str>) -> Option<String> {
|
||
auth.and_then(extract_codex_auth_api_key)
|
||
.or_else(|| config_text.and_then(extract_codex_experimental_bearer_token))
|
||
}
|
||
|
||
pub fn codex_auth_has_login_material(auth: &Value) -> bool {
|
||
let Some(obj) = auth.as_object() else {
|
||
return false;
|
||
};
|
||
|
||
obj.iter().any(|(key, value)| {
|
||
if key == "auth_mode" {
|
||
return false;
|
||
}
|
||
|
||
if key == "OPENAI_API_KEY" {
|
||
return value
|
||
.as_str()
|
||
.map(str::trim)
|
||
.is_some_and(|token| !token.is_empty());
|
||
}
|
||
|
||
match value {
|
||
Value::Null => false,
|
||
Value::String(text) => !text.trim().is_empty(),
|
||
Value::Array(items) => !items.is_empty(),
|
||
Value::Object(map) => !map.is_empty(),
|
||
_ => true,
|
||
}
|
||
})
|
||
}
|
||
|
||
pub fn codex_auth_has_oauth_login_material(auth: &Value) -> bool {
|
||
let Some(obj) = auth.as_object() else {
|
||
return false;
|
||
};
|
||
|
||
obj.iter().any(|(key, value)| {
|
||
if key == "auth_mode" || key == "OPENAI_API_KEY" {
|
||
return false;
|
||
}
|
||
|
||
match value {
|
||
Value::Null => false,
|
||
Value::String(text) => !text.trim().is_empty(),
|
||
Value::Array(items) => !items.is_empty(),
|
||
Value::Object(map) => !map.is_empty(),
|
||
_ => true,
|
||
}
|
||
})
|
||
}
|
||
|
||
pub fn should_restore_codex_provider_token_for_backfill(
|
||
category: Option<&str>,
|
||
template_settings: &Value,
|
||
) -> bool {
|
||
if category == Some("official") {
|
||
return false;
|
||
}
|
||
|
||
let Some(auth) = template_settings.get("auth") else {
|
||
return true;
|
||
};
|
||
|
||
let has_provider_api_key = extract_codex_auth_api_key(auth).is_some();
|
||
let has_oauth_login = codex_auth_has_oauth_login_material(auth);
|
||
!has_oauth_login || has_provider_api_key
|
||
}
|
||
|
||
fn parse_codex_positive_u64(value: Option<&Value>) -> Option<u64> {
|
||
match value {
|
||
Some(Value::Number(n)) => n.as_u64().filter(|v| *v > 0),
|
||
Some(Value::String(s)) => s.trim().parse::<u64>().ok().filter(|v| *v > 0),
|
||
_ => None,
|
||
}
|
||
}
|
||
|
||
fn extract_codex_top_level_u64(config_text: &str, field: &str) -> Option<u64> {
|
||
let doc = config_text.parse::<toml::Value>().ok()?;
|
||
doc.get(field)
|
||
.and_then(|value| value.as_integer())
|
||
.and_then(|value| u64::try_from(value).ok())
|
||
.filter(|value| *value > 0)
|
||
}
|
||
|
||
fn codex_catalog_model_entry(
|
||
template: &Value,
|
||
model: &str,
|
||
display_name: &str,
|
||
context_window: u64,
|
||
priority: usize,
|
||
) -> Value {
|
||
let mut entry = template.clone();
|
||
let Some(entry_obj) = entry.as_object_mut() else {
|
||
return json!({});
|
||
};
|
||
|
||
entry_obj.insert("slug".to_string(), json!(model));
|
||
entry_obj.insert("display_name".to_string(), json!(display_name));
|
||
entry_obj.insert("description".to_string(), json!(display_name));
|
||
entry_obj.insert("context_window".to_string(), json!(context_window));
|
||
entry_obj.insert("max_context_window".to_string(), json!(context_window));
|
||
entry_obj.insert("priority".to_string(), json!(1000 + priority));
|
||
entry_obj.insert("additional_speed_tiers".to_string(), json!([]));
|
||
entry_obj.insert("service_tiers".to_string(), json!([]));
|
||
entry_obj.insert("availability_nux".to_string(), Value::Null);
|
||
entry_obj.insert("upgrade".to_string(), Value::Null);
|
||
|
||
entry
|
||
}
|
||
|
||
#[derive(Debug, Clone, PartialEq, Eq)]
|
||
struct CodexCatalogModelSpec {
|
||
model: String,
|
||
display_name: String,
|
||
context_window: u64,
|
||
}
|
||
|
||
fn codex_catalog_model_specs(settings: &Value, config_text: &str) -> Vec<CodexCatalogModelSpec> {
|
||
let Some(models) = settings
|
||
.get("modelCatalog")
|
||
.and_then(|catalog| catalog.get("models"))
|
||
.and_then(|models| models.as_array())
|
||
else {
|
||
return Vec::new();
|
||
};
|
||
|
||
let default_context_window =
|
||
extract_codex_top_level_u64(config_text, "model_context_window").unwrap_or(128_000);
|
||
let mut seen = std::collections::HashSet::new();
|
||
let mut specs = Vec::new();
|
||
|
||
for model_config in models {
|
||
let Some(model) = model_config
|
||
.get("model")
|
||
.and_then(|value| value.as_str())
|
||
.map(str::trim)
|
||
.filter(|model| !model.is_empty())
|
||
else {
|
||
continue;
|
||
};
|
||
|
||
if !seen.insert(model.to_string()) {
|
||
continue;
|
||
}
|
||
|
||
let display_name = model_config
|
||
.get("displayName")
|
||
.or_else(|| model_config.get("display_name"))
|
||
.and_then(|value| value.as_str())
|
||
.map(str::trim)
|
||
.filter(|name| !name.is_empty())
|
||
.unwrap_or(model);
|
||
let context_window = parse_codex_positive_u64(
|
||
model_config
|
||
.get("contextWindow")
|
||
.or_else(|| model_config.get("context_window")),
|
||
)
|
||
.unwrap_or(default_context_window);
|
||
|
||
specs.push(CodexCatalogModelSpec {
|
||
model: model.to_string(),
|
||
display_name: display_name.to_string(),
|
||
context_window,
|
||
});
|
||
}
|
||
|
||
specs
|
||
}
|
||
|
||
fn find_codex_model_template(catalog: &Value) -> Option<Value> {
|
||
catalog
|
||
.get("models")
|
||
.and_then(|models| models.as_array())
|
||
.and_then(|models| {
|
||
models.iter().find(|model| {
|
||
model.get("slug").and_then(|slug| slug.as_str())
|
||
== Some(CODEX_MODEL_CATALOG_TEMPLATE_SLUG)
|
||
})
|
||
})
|
||
.cloned()
|
||
}
|
||
|
||
fn load_codex_model_template_from_cache() -> Result<Option<Value>, AppError> {
|
||
let path = get_codex_config_dir().join("models_cache.json");
|
||
if !path.exists() {
|
||
return Ok(None);
|
||
}
|
||
|
||
let text = fs::read_to_string(&path).map_err(|e| AppError::io(&path, e))?;
|
||
let catalog: Value = serde_json::from_str(&text).map_err(|e| AppError::json(&path, e))?;
|
||
Ok(find_codex_model_template(&catalog))
|
||
}
|
||
|
||
fn load_codex_model_template_from_bundled() -> Result<Option<Value>, AppError> {
|
||
let output = match Command::new("codex")
|
||
.args(["debug", "models", "--bundled"])
|
||
.output()
|
||
{
|
||
Ok(output) => output,
|
||
Err(err) => {
|
||
log::debug!("failed to run `codex debug models --bundled`: {err}");
|
||
return Ok(None);
|
||
}
|
||
};
|
||
|
||
if !output.status.success() {
|
||
let stderr = String::from_utf8_lossy(&output.stderr);
|
||
log::debug!("`codex debug models --bundled` failed: {stderr}");
|
||
return Ok(None);
|
||
}
|
||
|
||
let catalog: Value = serde_json::from_slice(&output.stdout).map_err(|e| {
|
||
AppError::Message(format!(
|
||
"Failed to parse `codex debug models --bundled` output: {e}"
|
||
))
|
||
})?;
|
||
Ok(find_codex_model_template(&catalog))
|
||
}
|
||
|
||
fn load_codex_model_catalog_template() -> Result<Value, AppError> {
|
||
if let Some(template) = load_codex_model_template_from_cache()? {
|
||
return Ok(template);
|
||
}
|
||
if let Some(template) = load_codex_model_template_from_bundled()? {
|
||
return Ok(template);
|
||
}
|
||
|
||
Err(AppError::Message(format!(
|
||
"Codex model catalog template `{CODEX_MODEL_CATALOG_TEMPLATE_SLUG}` not found. Please start Codex once so models_cache.json is available, or ensure the `codex` CLI is on PATH."
|
||
)))
|
||
}
|
||
|
||
fn codex_model_catalog_from_specs(specs: &[CodexCatalogModelSpec], template: &Value) -> Value {
|
||
let entries: Vec<Value> = specs
|
||
.iter()
|
||
.enumerate()
|
||
.map(|(index, spec)| {
|
||
codex_catalog_model_entry(
|
||
template,
|
||
&spec.model,
|
||
&spec.display_name,
|
||
spec.context_window,
|
||
index,
|
||
)
|
||
})
|
||
.collect();
|
||
|
||
json!({ "models": entries })
|
||
}
|
||
|
||
fn codex_model_catalog_from_settings(
|
||
settings: &Value,
|
||
config_text: &str,
|
||
) -> Result<Option<Value>, AppError> {
|
||
let specs = codex_catalog_model_specs(settings, config_text);
|
||
if specs.is_empty() {
|
||
return Ok(None);
|
||
}
|
||
|
||
let template = load_codex_model_catalog_template()?;
|
||
Ok(Some(codex_model_catalog_from_specs(&specs, &template)))
|
||
}
|
||
|
||
fn set_codex_model_catalog_json_field(
|
||
config_text: &str,
|
||
catalog_path: Option<&Path>,
|
||
) -> Result<String, AppError> {
|
||
let mut doc = config_text
|
||
.parse::<DocumentMut>()
|
||
.map_err(|e| AppError::Message(format!("Invalid Codex config.toml: {e}")))?;
|
||
let generated_path = get_codex_model_catalog_path();
|
||
|
||
match catalog_path {
|
||
Some(path) => {
|
||
doc["model_catalog_json"] = toml_edit::value(path.to_string_lossy().as_ref());
|
||
}
|
||
None => {
|
||
let should_remove = doc
|
||
.get("model_catalog_json")
|
||
.and_then(|item| item.as_str())
|
||
.map(|path| {
|
||
path == generated_path.to_string_lossy().as_ref()
|
||
|| Path::new(path).file_name().and_then(|name| name.to_str())
|
||
== Some(CC_SWITCH_CODEX_MODEL_CATALOG_FILENAME)
|
||
})
|
||
.unwrap_or(false);
|
||
if should_remove {
|
||
doc.as_table_mut().remove("model_catalog_json");
|
||
}
|
||
}
|
||
}
|
||
|
||
Ok(doc.to_string())
|
||
}
|
||
|
||
/// Generate Codex `model_catalog_json` from provider settings and inject/remove
|
||
/// the top-level TOML field that points Codex to the generated file.
|
||
pub fn prepare_codex_config_text_with_model_catalog(
|
||
settings: &Value,
|
||
config_text: &str,
|
||
) -> Result<String, AppError> {
|
||
let catalog_path = get_codex_model_catalog_path();
|
||
|
||
if let Some(catalog) = codex_model_catalog_from_settings(settings, config_text)? {
|
||
let config_text = set_codex_model_catalog_json_field(config_text, Some(&catalog_path))?;
|
||
write_json_file(&catalog_path, &catalog)?;
|
||
Ok(config_text)
|
||
} else {
|
||
set_codex_model_catalog_json_field(config_text, None)
|
||
}
|
||
}
|
||
|
||
/// Reverse of `prepare_codex_config_text_with_model_catalog`: read the
|
||
/// cc-switch–maintained catalog file referenced by `~/.codex/config.toml` and
|
||
/// convert it back into the simplified shape the frontend table uses:
|
||
/// `{ "models": [{ "model", "displayName"?, "contextWindow"? }, ...] }`.
|
||
///
|
||
/// We only reverse-parse catalogs whose `model_catalog_json` path is the
|
||
/// cc-switch–generated file (identified by filename
|
||
/// `cc-switch-model-catalog.json`). A user-managed external catalog file is
|
||
/// left alone — surfacing its richer structure as the simplified table would
|
||
/// be a downgrade we can't safely round-trip.
|
||
///
|
||
/// `displayName` and `contextWindow` are omitted from the returned entry when
|
||
/// the on-disk value matches the fallback that
|
||
/// `codex_model_catalog_from_settings` injects for unset inputs (slug for
|
||
/// display_name, `model_context_window` or 128_000 for context_window). This
|
||
/// preserves the "user left it blank" intent across round-trip; an unavoidable
|
||
/// edge case is that a user-typed value that happens to equal the fallback
|
||
/// will also collapse to blank, but the next save writes the same fallback so
|
||
/// behavior stays consistent.
|
||
///
|
||
/// All failure modes (missing file, parse error, no `model_catalog_json`,
|
||
/// entries without `slug`) collapse to `Ok(None)` so callers can treat this
|
||
/// as best-effort enrichment without making `read_live_settings` brittle.
|
||
pub fn read_codex_model_catalog_simplified_from_live() -> Result<Option<Value>, AppError> {
|
||
let config_text = read_codex_config_text()?;
|
||
let generated_path = get_codex_model_catalog_path();
|
||
let Some(catalog_path) = resolve_cc_switch_catalog_path(&config_text, &generated_path) else {
|
||
return Ok(None);
|
||
};
|
||
if !catalog_path.exists() {
|
||
return Ok(None);
|
||
}
|
||
let Ok(catalog_text) = fs::read_to_string(&catalog_path) else {
|
||
return Ok(None);
|
||
};
|
||
Ok(build_simplified_catalog_from_texts(
|
||
&config_text,
|
||
&catalog_text,
|
||
))
|
||
}
|
||
|
||
/// Given `config.toml` text, resolve the on-disk path of the cc-switch–owned
|
||
/// catalog file (returns `None` if `model_catalog_json` is absent or points at
|
||
/// a file we don't own). Relative paths fall back to `generated_path`.
|
||
fn resolve_cc_switch_catalog_path(config_text: &str, generated_path: &Path) -> Option<PathBuf> {
|
||
if config_text.trim().is_empty() {
|
||
return None;
|
||
}
|
||
let doc = config_text.parse::<DocumentMut>().ok()?;
|
||
let catalog_path_str = doc
|
||
.get("model_catalog_json")
|
||
.and_then(|item| item.as_str())
|
||
.map(str::trim)
|
||
.filter(|s| !s.is_empty())?;
|
||
|
||
let referenced_path = Path::new(catalog_path_str);
|
||
let is_cc_switch_owned = catalog_path_str == generated_path.to_string_lossy().as_ref()
|
||
|| referenced_path.file_name().and_then(|name| name.to_str())
|
||
== Some(CC_SWITCH_CODEX_MODEL_CATALOG_FILENAME);
|
||
if !is_cc_switch_owned {
|
||
return None;
|
||
}
|
||
|
||
if referenced_path.is_absolute() {
|
||
Some(referenced_path.to_path_buf())
|
||
} else {
|
||
Some(generated_path.to_path_buf())
|
||
}
|
||
}
|
||
|
||
/// Pure reverse-parsing core: convert Codex catalog JSON text back into the
|
||
/// frontend's simplified `{ models: [{ model, displayName?, contextWindow? }] }`
|
||
/// shape. Returns `None` when the catalog is unparseable, has no `models`
|
||
/// array, or yields zero valid entries.
|
||
fn build_simplified_catalog_from_texts(config_text: &str, catalog_text: &str) -> Option<Value> {
|
||
let catalog: Value = serde_json::from_str(catalog_text).ok()?;
|
||
let models = catalog.get("models").and_then(|m| m.as_array())?;
|
||
|
||
let default_context_window =
|
||
extract_codex_top_level_u64(config_text, "model_context_window").unwrap_or(128_000);
|
||
|
||
let mut entries = Vec::with_capacity(models.len());
|
||
for entry in models {
|
||
let Some(model) = entry
|
||
.get("slug")
|
||
.and_then(|v| v.as_str())
|
||
.map(str::trim)
|
||
.filter(|s| !s.is_empty())
|
||
else {
|
||
continue;
|
||
};
|
||
|
||
let mut obj = serde_json::Map::new();
|
||
obj.insert("model".to_string(), json!(model));
|
||
|
||
if let Some(display_name) = entry
|
||
.get("display_name")
|
||
.and_then(|v| v.as_str())
|
||
.map(str::trim)
|
||
.filter(|s| !s.is_empty() && *s != model)
|
||
{
|
||
obj.insert("displayName".to_string(), json!(display_name));
|
||
}
|
||
|
||
if let Some(context_window) = entry
|
||
.get("context_window")
|
||
.and_then(|v| v.as_u64())
|
||
.filter(|v| *v > 0 && *v != default_context_window)
|
||
{
|
||
obj.insert("contextWindow".to_string(), json!(context_window));
|
||
}
|
||
|
||
entries.push(Value::Object(obj));
|
||
}
|
||
|
||
if entries.is_empty() {
|
||
return None;
|
||
}
|
||
|
||
Some(json!({ "models": entries }))
|
||
}
|
||
|
||
/// Unified helper: write Codex live config with model catalog preparation.
|
||
/// Replaces scattered `prepare_codex_config_text_with_model_catalog` calls.
|
||
pub fn write_codex_live_with_catalog(
|
||
settings: &Value,
|
||
auth: &Value,
|
||
config_text: Option<&str>,
|
||
) -> Result<(), AppError> {
|
||
let prepared_config = config_text
|
||
.map(|text| prepare_codex_config_text_with_model_catalog(settings, text))
|
||
.transpose()?;
|
||
|
||
write_codex_live_atomic(auth, prepared_config.as_deref())
|
||
}
|
||
|
||
pub fn write_codex_provider_live_with_catalog(
|
||
settings: &Value,
|
||
category: Option<&str>,
|
||
auth: &Value,
|
||
config_text: Option<&str>,
|
||
) -> Result<(), AppError> {
|
||
let prepared_config = config_text
|
||
.map(|text| prepare_codex_config_text_with_model_catalog(settings, text))
|
||
.transpose()?;
|
||
|
||
write_codex_live_for_provider(category, auth, prepared_config.as_deref())
|
||
}
|
||
|
||
/// Extract a provider-scoped `experimental_bearer_token` from Codex `config.toml`.
|
||
///
|
||
/// Mobile compat: third-party providers may store the API key inside
|
||
/// `[model_providers.<id>].experimental_bearer_token` while keeping the
|
||
/// user's ChatGPT login cache intact in `auth.json`. Falls back to the
|
||
/// top-level `experimental_bearer_token` when no active model provider is set.
|
||
pub fn extract_codex_experimental_bearer_token(config_text: &str) -> Option<String> {
|
||
if !config_text.contains("experimental_bearer_token") {
|
||
return None;
|
||
}
|
||
let doc = config_text.parse::<DocumentMut>().ok()?;
|
||
let provider_id = active_codex_model_provider_id(&doc);
|
||
|
||
let top_level_token = || {
|
||
doc.get("experimental_bearer_token")
|
||
.and_then(|item| item.as_str())
|
||
};
|
||
let token = match provider_id.as_deref() {
|
||
Some(id) if is_custom_codex_model_provider_id(id) => doc
|
||
.get("model_providers")
|
||
.and_then(|item| item.as_table())
|
||
.and_then(|table| table.get(id))
|
||
.and_then(|item| item.as_table())
|
||
.and_then(|table| table.get("experimental_bearer_token"))
|
||
.and_then(|item| item.as_str())
|
||
.or_else(top_level_token),
|
||
Some(_) => top_level_token(),
|
||
None => top_level_token(),
|
||
};
|
||
|
||
token
|
||
.map(str::trim)
|
||
.filter(|token| !token.is_empty())
|
||
.map(str::to_string)
|
||
}
|
||
|
||
fn set_codex_experimental_bearer_token(config_text: &str, token: &str) -> Result<String, AppError> {
|
||
if config_text.trim().is_empty() {
|
||
return Err(AppError::localized(
|
||
"provider.codex.config.missing",
|
||
"Codex 第三方供应商缺少 config.toml 配置,无法写入 bearer token",
|
||
"Codex third-party provider is missing config.toml, cannot write bearer token",
|
||
));
|
||
}
|
||
|
||
let mut doc = config_text
|
||
.parse::<DocumentMut>()
|
||
.map_err(|e| AppError::Message(format!("Invalid Codex config.toml: {e}")))?;
|
||
|
||
let Some(provider_id) = active_codex_model_provider_id(&doc) else {
|
||
doc["experimental_bearer_token"] = toml_edit::value(token);
|
||
return Ok(doc.to_string());
|
||
};
|
||
|
||
if !is_custom_codex_model_provider_id(&provider_id) {
|
||
// Reserved Codex provider IDs are owned by the CLI. Keep third-party
|
||
// bearer tokens at the top level so we do not shadow built-in tables.
|
||
doc["experimental_bearer_token"] = toml_edit::value(token);
|
||
return Ok(doc.to_string());
|
||
}
|
||
|
||
if let Some(model_providers) = doc
|
||
.get_mut("model_providers")
|
||
.and_then(|item| item.as_table_mut())
|
||
{
|
||
if let Some(provider_table) = model_providers
|
||
.get_mut(provider_id.as_str())
|
||
.and_then(|item| item.as_table_mut())
|
||
{
|
||
provider_table["experimental_bearer_token"] = toml_edit::value(token);
|
||
return Ok(doc.to_string());
|
||
}
|
||
}
|
||
|
||
doc["experimental_bearer_token"] = toml_edit::value(token);
|
||
Ok(doc.to_string())
|
||
}
|
||
|
||
fn remove_codex_experimental_bearer_token(config_text: &str) -> Result<String, AppError> {
|
||
if config_text.trim().is_empty() || !config_text.contains("experimental_bearer_token") {
|
||
return Ok(config_text.to_string());
|
||
}
|
||
|
||
let mut doc = config_text
|
||
.parse::<DocumentMut>()
|
||
.map_err(|e| AppError::Message(format!("Invalid Codex config.toml: {e}")))?;
|
||
|
||
if let Some(provider_id) = active_codex_model_provider_id(&doc) {
|
||
if let Some(provider_table) = doc
|
||
.get_mut("model_providers")
|
||
.and_then(|item| item.as_table_mut())
|
||
.and_then(|table| table.get_mut(provider_id.as_str()))
|
||
.and_then(|item| item.as_table_mut())
|
||
{
|
||
provider_table.remove("experimental_bearer_token");
|
||
}
|
||
}
|
||
|
||
doc.as_table_mut().remove("experimental_bearer_token");
|
||
Ok(doc.to_string())
|
||
}
|
||
|
||
/// Read the current Codex live settings as a `{ auth, config }` object.
|
||
///
|
||
/// Missing `auth.json` collapses to `{}` so a config-only third-party install
|
||
/// is still importable; both files empty is treated as "no live install".
|
||
pub fn read_codex_live_settings() -> Result<Value, AppError> {
|
||
let auth_path = get_codex_auth_path();
|
||
let auth_present = auth_path.exists();
|
||
let auth: Value = if auth_present {
|
||
read_json_file(&auth_path)?
|
||
} else {
|
||
json!({})
|
||
};
|
||
let cfg_text = read_and_validate_codex_config_text()?;
|
||
if !auth_present && cfg_text.trim().is_empty() {
|
||
return Err(AppError::localized(
|
||
"codex.live.missing",
|
||
"Codex 配置文件不存在",
|
||
"Codex configuration is missing",
|
||
));
|
||
}
|
||
Ok(json!({ "auth": auth, "config": cfg_text }))
|
||
}
|
||
|
||
/// Route a Codex live write between full auth+config or config-only.
|
||
///
|
||
/// Official providers with usable login material own `auth.json`. Third-party
|
||
/// providers only touch `config.toml` when the compatibility setting is enabled
|
||
/// so the user's ChatGPT login cache survives provider switches.
|
||
pub fn write_codex_live_for_provider(
|
||
category: Option<&str>,
|
||
auth: &Value,
|
||
config_text: Option<&str>,
|
||
) -> Result<(), AppError> {
|
||
if category == Some("official") && codex_auth_has_login_material(auth) {
|
||
write_codex_live_atomic(auth, config_text)
|
||
} else if category != Some("official")
|
||
&& !crate::settings::preserve_codex_official_auth_on_switch()
|
||
{
|
||
write_codex_live_atomic(auth, config_text)
|
||
} else {
|
||
let live_config = prepare_codex_provider_live_config(auth, config_text.unwrap_or(""))?;
|
||
write_codex_live_config_atomic(Some(&live_config))
|
||
}
|
||
}
|
||
|
||
/// Build the live Codex config for provider switching.
|
||
///
|
||
/// The stored provider keeps its API key in `auth.OPENAI_API_KEY`. Live Codex
|
||
/// requests can use a provider-scoped `experimental_bearer_token`, so switching
|
||
/// providers only needs to update `config.toml`; `auth.json` stays as the user's
|
||
/// long-lived ChatGPT login cache.
|
||
pub fn prepare_codex_provider_live_config(
|
||
auth: &Value,
|
||
config_text: &str,
|
||
) -> Result<String, AppError> {
|
||
let token = extract_codex_auth_api_key(auth)
|
||
.or_else(|| extract_codex_experimental_bearer_token(config_text));
|
||
|
||
Ok(match token {
|
||
Some(token) => set_codex_experimental_bearer_token(config_text, &token)?,
|
||
None => config_text.to_string(),
|
||
})
|
||
}
|
||
|
||
/// During DB backfill, lift a live `experimental_bearer_token` back into
|
||
/// `auth.OPENAI_API_KEY` so the stored provider keeps its canonical shape
|
||
/// and generated live tokens don't leak into stored provider TOML.
|
||
///
|
||
/// Only intervenes when the live config actually carries a bearer token —
|
||
/// otherwise the function is a no-op so the caller's normal backfill path
|
||
/// (which keeps live `auth` as the authoritative source) is unaffected.
|
||
pub fn restore_codex_provider_token_for_backfill(
|
||
settings: &mut Value,
|
||
template_settings: &Value,
|
||
) -> Result<(), AppError> {
|
||
let Some(config_text) = settings
|
||
.get("config")
|
||
.and_then(|value| value.as_str())
|
||
.map(str::to_string)
|
||
else {
|
||
return Ok(());
|
||
};
|
||
|
||
let Some(token) = extract_codex_experimental_bearer_token(&config_text) else {
|
||
return Ok(());
|
||
};
|
||
|
||
let cleaned_config = remove_codex_experimental_bearer_token(&config_text)?;
|
||
|
||
if let Some(obj) = settings.as_object_mut() {
|
||
obj.insert("config".to_string(), Value::String(cleaned_config));
|
||
|
||
let mut auth = template_settings
|
||
.get("auth")
|
||
.filter(|value| value.is_object())
|
||
.cloned()
|
||
.unwrap_or_else(|| Value::Object(serde_json::Map::new()));
|
||
if let Some(auth_obj) = auth.as_object_mut() {
|
||
auth_obj.insert("OPENAI_API_KEY".to_string(), Value::String(token));
|
||
}
|
||
obj.insert("auth".to_string(), auth);
|
||
}
|
||
|
||
Ok(())
|
||
}
|
||
|
||
pub fn restore_codex_settings_for_backfill(
|
||
settings: &mut Value,
|
||
template_settings: &Value,
|
||
restore_provider_token: bool,
|
||
) -> Result<(), AppError> {
|
||
if restore_provider_token {
|
||
restore_codex_provider_token_for_backfill(settings, template_settings)?;
|
||
}
|
||
Ok(())
|
||
}
|
||
|
||
/// Update a field in Codex config.toml using toml_edit (syntax-preserving).
|
||
///
|
||
/// Supported fields:
|
||
/// - `"base_url"`: writes to `[model_providers.<current>].base_url` if `model_provider` exists,
|
||
/// otherwise falls back to top-level `base_url`.
|
||
/// - `"wire_api"`: writes to `[model_providers.<current>].wire_api` if `model_provider` exists,
|
||
/// otherwise falls back to top-level `wire_api`.
|
||
/// - `"model"` / `"model_catalog_json"`: writes to top-level field.
|
||
///
|
||
/// Empty value removes the field.
|
||
pub fn update_codex_toml_field(toml_str: &str, field: &str, value: &str) -> Result<String, String> {
|
||
let mut doc = toml_str
|
||
.parse::<DocumentMut>()
|
||
.map_err(|e| format!("TOML parse error: {e}"))?;
|
||
|
||
let trimmed = value.trim();
|
||
|
||
match field {
|
||
"base_url" | "wire_api" => {
|
||
let model_provider = doc
|
||
.get("model_provider")
|
||
.and_then(|item| item.as_str())
|
||
.map(str::to_string);
|
||
|
||
if let Some(provider_key) = model_provider {
|
||
// Ensure [model_providers] table exists
|
||
if doc.get("model_providers").is_none() {
|
||
doc["model_providers"] = toml_edit::table();
|
||
}
|
||
|
||
if let Some(model_providers) = doc["model_providers"].as_table_mut() {
|
||
// Ensure [model_providers.<provider_key>] table exists
|
||
if !model_providers.contains_key(&provider_key) {
|
||
model_providers[&provider_key] = toml_edit::table();
|
||
}
|
||
|
||
if let Some(provider_table) = model_providers[&provider_key].as_table_mut() {
|
||
if trimmed.is_empty() {
|
||
provider_table.remove(field);
|
||
} else {
|
||
provider_table[field] = toml_edit::value(trimmed);
|
||
}
|
||
return Ok(doc.to_string());
|
||
}
|
||
}
|
||
}
|
||
|
||
// Fallback: no model_provider or structure mismatch → top-level field
|
||
if trimmed.is_empty() {
|
||
doc.as_table_mut().remove(field);
|
||
} else {
|
||
doc[field] = toml_edit::value(trimmed);
|
||
}
|
||
}
|
||
"model" | "model_catalog_json" => {
|
||
if trimmed.is_empty() {
|
||
doc.as_table_mut().remove(field);
|
||
} else {
|
||
doc[field] = toml_edit::value(trimmed);
|
||
}
|
||
}
|
||
_ => return Err(format!("unsupported field: {field}")),
|
||
}
|
||
|
||
Ok(doc.to_string())
|
||
}
|
||
|
||
/// Remove `base_url` from the active model_provider section only if it matches `predicate`.
|
||
/// Also removes top-level `base_url` if it matches.
|
||
/// Used by proxy cleanup to strip local proxy URLs without touching user-configured URLs.
|
||
pub fn remove_codex_toml_base_url_if(toml_str: &str, predicate: impl Fn(&str) -> bool) -> String {
|
||
let mut doc = match toml_str.parse::<DocumentMut>() {
|
||
Ok(doc) => doc,
|
||
Err(_) => return toml_str.to_string(),
|
||
};
|
||
|
||
let model_provider = doc
|
||
.get("model_provider")
|
||
.and_then(|item| item.as_str())
|
||
.map(str::to_string);
|
||
|
||
if let Some(provider_key) = model_provider {
|
||
if let Some(model_providers) = doc
|
||
.get_mut("model_providers")
|
||
.and_then(|v| v.as_table_mut())
|
||
{
|
||
if let Some(provider_table) = model_providers
|
||
.get_mut(provider_key.as_str())
|
||
.and_then(|v| v.as_table_mut())
|
||
{
|
||
let should_remove = provider_table
|
||
.get("base_url")
|
||
.and_then(|item| item.as_str())
|
||
.map(&predicate)
|
||
.unwrap_or(false);
|
||
if should_remove {
|
||
provider_table.remove("base_url");
|
||
}
|
||
}
|
||
}
|
||
}
|
||
|
||
// Fallback: also clean up top-level base_url if it matches
|
||
let should_remove_root = doc
|
||
.get("base_url")
|
||
.and_then(|item| item.as_str())
|
||
.map(&predicate)
|
||
.unwrap_or(false);
|
||
if should_remove_root {
|
||
doc.as_table_mut().remove("base_url");
|
||
}
|
||
|
||
doc.to_string()
|
||
}
|
||
|
||
#[cfg(test)]
|
||
mod tests {
|
||
use super::*;
|
||
use serde_json::json;
|
||
|
||
#[test]
|
||
fn prepare_provider_live_config_rejects_key_without_config() {
|
||
let err = prepare_codex_provider_live_config(&json!({"OPENAI_API_KEY": "sk-test"}), "")
|
||
.expect_err("empty config with API key should not truncate live config");
|
||
|
||
assert!(
|
||
err.to_string().contains("config.toml"),
|
||
"error should explain missing config.toml, got: {err}"
|
||
);
|
||
}
|
||
|
||
#[test]
|
||
fn prepare_provider_live_config_uses_top_level_token_for_reserved_provider() {
|
||
let input = r#"model_provider = "openai"
|
||
model = "gpt-5"
|
||
"#;
|
||
|
||
let output =
|
||
prepare_codex_provider_live_config(&json!({"OPENAI_API_KEY": "sk-test"}), input)
|
||
.expect("prepare live config");
|
||
let parsed: toml::Value = toml::from_str(&output).expect("parse output");
|
||
|
||
assert_eq!(
|
||
parsed
|
||
.get("experimental_bearer_token")
|
||
.and_then(|v| v.as_str()),
|
||
Some("sk-test")
|
||
);
|
||
assert!(
|
||
parsed.get("model_providers").is_none(),
|
||
"reserved provider tables should not be synthesized"
|
||
);
|
||
}
|
||
|
||
#[test]
|
||
fn extract_bearer_uses_top_level_token_for_reserved_provider() {
|
||
let input = r#"model_provider = "openai"
|
||
experimental_bearer_token = "top-level-key"
|
||
|
||
[model_providers.openai]
|
||
experimental_bearer_token = "stale-table-key"
|
||
"#;
|
||
|
||
assert_eq!(
|
||
extract_codex_experimental_bearer_token(input).as_deref(),
|
||
Some("top-level-key")
|
||
);
|
||
}
|
||
|
||
#[test]
|
||
fn should_not_restore_provider_token_for_oauth_only_template() {
|
||
let oauth_template = json!({
|
||
"auth": {
|
||
"auth_mode": "chatgpt",
|
||
"tokens": {
|
||
"access_token": "oauth-access"
|
||
}
|
||
}
|
||
});
|
||
let api_key_template = json!({
|
||
"auth": {
|
||
"OPENAI_API_KEY": "sk-test"
|
||
}
|
||
});
|
||
|
||
assert!(
|
||
!should_restore_codex_provider_token_for_backfill(Some("custom"), &oauth_template),
|
||
"OAuth-only templates should not backfill bearer tokens into OPENAI_API_KEY"
|
||
);
|
||
assert!(
|
||
should_restore_codex_provider_token_for_backfill(Some("custom"), &api_key_template),
|
||
"custom API-key providers should still restore provider bearer tokens"
|
||
);
|
||
assert!(
|
||
!should_restore_codex_provider_token_for_backfill(Some("official"), &api_key_template),
|
||
"official providers should never restore third-party bearer tokens"
|
||
);
|
||
}
|
||
|
||
#[test]
|
||
fn prepare_provider_live_config_does_not_create_incomplete_provider_table() {
|
||
let input = r#"model_provider = "vendor_x"
|
||
model = "gpt-5"
|
||
"#;
|
||
|
||
let output =
|
||
prepare_codex_provider_live_config(&json!({"OPENAI_API_KEY": "sk-test"}), input)
|
||
.expect("prepare live config");
|
||
let parsed: toml::Value = toml::from_str(&output).expect("parse output");
|
||
|
||
assert_eq!(
|
||
parsed
|
||
.get("experimental_bearer_token")
|
||
.and_then(|v| v.as_str()),
|
||
Some("sk-test")
|
||
);
|
||
assert!(
|
||
parsed.get("model_providers").is_none(),
|
||
"missing provider tables should not be synthesized without endpoint fields"
|
||
);
|
||
}
|
||
|
||
#[test]
|
||
fn prepare_provider_live_config_preserves_custom_provider_id() {
|
||
let input = r#"model_provider = "vendor_alpha"
|
||
model = "gpt-5.4"
|
||
profile = "work"
|
||
|
||
[model_providers.vendor_alpha]
|
||
name = "Vendor Alpha"
|
||
base_url = "https://alpha.example/v1"
|
||
wire_api = "responses"
|
||
|
||
[profiles.work]
|
||
model_provider = "vendor_alpha"
|
||
model = "gpt-5.4"
|
||
"#;
|
||
|
||
let result =
|
||
prepare_codex_provider_live_config(&json!({"OPENAI_API_KEY": "sk-test"}), input)
|
||
.expect("prepare live config");
|
||
let parsed: toml::Value = toml::from_str(&result).unwrap();
|
||
|
||
assert_eq!(
|
||
parsed.get("model_provider").and_then(|v| v.as_str()),
|
||
Some("vendor_alpha")
|
||
);
|
||
assert!(
|
||
parsed
|
||
.get("model_providers")
|
||
.and_then(|v| v.get("custom"))
|
||
.is_none(),
|
||
"provider writes should not force custom provider ids"
|
||
);
|
||
assert_eq!(
|
||
parsed
|
||
.get("model_providers")
|
||
.and_then(|v| v.get("vendor_alpha"))
|
||
.and_then(|v| v.get("experimental_bearer_token"))
|
||
.and_then(|v| v.as_str()),
|
||
Some("sk-test")
|
||
);
|
||
assert_eq!(
|
||
parsed
|
||
.get("profiles")
|
||
.and_then(|v| v.get("work"))
|
||
.and_then(|v| v.get("model_provider"))
|
||
.and_then(|v| v.as_str()),
|
||
Some("vendor_alpha"),
|
||
"profile provider references should be preserved"
|
||
);
|
||
}
|
||
|
||
#[test]
|
||
fn backfill_preserves_live_model_provider_id() {
|
||
let mut live_settings = json!({
|
||
"auth": {},
|
||
"config": r#"model_provider = "vendor_beta"
|
||
|
||
[model_providers.vendor_beta]
|
||
name = "Vendor Beta"
|
||
base_url = "https://beta.example/v1"
|
||
wire_api = "responses"
|
||
"#,
|
||
});
|
||
let template_settings = json!({
|
||
"auth": {},
|
||
"config": r#"model_provider = "custom"
|
||
|
||
[model_providers.custom]
|
||
name = "Custom"
|
||
base_url = "https://custom.example/v1"
|
||
wire_api = "responses"
|
||
"#,
|
||
});
|
||
|
||
restore_codex_settings_for_backfill(&mut live_settings, &template_settings, false).unwrap();
|
||
let config = live_settings.get("config").and_then(Value::as_str).unwrap();
|
||
let parsed: toml::Value = toml::from_str(config).unwrap();
|
||
|
||
assert_eq!(
|
||
parsed.get("model_provider").and_then(|v| v.as_str()),
|
||
Some("vendor_beta")
|
||
);
|
||
assert!(
|
||
parsed
|
||
.get("model_providers")
|
||
.and_then(|v| v.get("vendor_beta"))
|
||
.is_some(),
|
||
"backfill should not rewrite user-selected provider tables"
|
||
);
|
||
}
|
||
|
||
#[test]
|
||
fn base_url_writes_into_correct_model_provider_section() {
|
||
let input = r#"model_provider = "any"
|
||
model = "gpt-5.1-codex"
|
||
|
||
[model_providers.any]
|
||
name = "any"
|
||
wire_api = "responses"
|
||
"#;
|
||
|
||
let result = update_codex_toml_field(input, "base_url", "https://example.com/v1").unwrap();
|
||
let parsed: toml::Value = toml::from_str(&result).unwrap();
|
||
|
||
let base_url = parsed
|
||
.get("model_providers")
|
||
.and_then(|v| v.get("any"))
|
||
.and_then(|v| v.get("base_url"))
|
||
.and_then(|v| v.as_str())
|
||
.expect("base_url should be in model_providers.any");
|
||
assert_eq!(base_url, "https://example.com/v1");
|
||
|
||
// Should NOT have top-level base_url
|
||
assert!(parsed.get("base_url").is_none());
|
||
|
||
// wire_api preserved
|
||
let wire_api = parsed
|
||
.get("model_providers")
|
||
.and_then(|v| v.get("any"))
|
||
.and_then(|v| v.get("wire_api"))
|
||
.and_then(|v| v.as_str());
|
||
assert_eq!(wire_api, Some("responses"));
|
||
}
|
||
|
||
#[test]
|
||
fn wire_api_writes_into_correct_model_provider_section() {
|
||
let input = r#"model_provider = "chat_only"
|
||
model = "gpt-5.1-codex"
|
||
|
||
[model_providers.chat_only]
|
||
name = "Chat Only"
|
||
base_url = "https://example.com/v1"
|
||
wire_api = "chat"
|
||
"#;
|
||
|
||
let result = update_codex_toml_field(input, "wire_api", "responses").unwrap();
|
||
let parsed: toml::Value = toml::from_str(&result).unwrap();
|
||
|
||
let provider = parsed
|
||
.get("model_providers")
|
||
.and_then(|v| v.get("chat_only"))
|
||
.expect("model_providers.chat_only should exist");
|
||
|
||
assert_eq!(
|
||
provider.get("wire_api").and_then(|v| v.as_str()),
|
||
Some("responses")
|
||
);
|
||
assert_eq!(
|
||
provider.get("base_url").and_then(|v| v.as_str()),
|
||
Some("https://example.com/v1")
|
||
);
|
||
assert!(parsed.get("wire_api").is_none());
|
||
}
|
||
|
||
#[test]
|
||
fn base_url_creates_section_when_missing() {
|
||
let input = r#"model_provider = "custom"
|
||
model = "gpt-4"
|
||
"#;
|
||
|
||
let result = update_codex_toml_field(input, "base_url", "https://custom.api/v1").unwrap();
|
||
let parsed: toml::Value = toml::from_str(&result).unwrap();
|
||
|
||
let base_url = parsed
|
||
.get("model_providers")
|
||
.and_then(|v| v.get("custom"))
|
||
.and_then(|v| v.get("base_url"))
|
||
.and_then(|v| v.as_str())
|
||
.expect("should create section and set base_url");
|
||
assert_eq!(base_url, "https://custom.api/v1");
|
||
}
|
||
|
||
#[test]
|
||
fn base_url_falls_back_to_top_level_without_model_provider() {
|
||
let input = r#"model = "gpt-4"
|
||
"#;
|
||
|
||
let result = update_codex_toml_field(input, "base_url", "https://fallback.api/v1").unwrap();
|
||
let parsed: toml::Value = toml::from_str(&result).unwrap();
|
||
|
||
let base_url = parsed
|
||
.get("base_url")
|
||
.and_then(|v| v.as_str())
|
||
.expect("should set top-level base_url");
|
||
assert_eq!(base_url, "https://fallback.api/v1");
|
||
}
|
||
|
||
#[test]
|
||
fn clearing_base_url_removes_only_from_correct_section() {
|
||
let input = r#"model_provider = "any"
|
||
|
||
[model_providers.any]
|
||
name = "any"
|
||
base_url = "https://old.api/v1"
|
||
wire_api = "responses"
|
||
|
||
[mcp_servers.context7]
|
||
command = "npx"
|
||
"#;
|
||
|
||
let result = update_codex_toml_field(input, "base_url", "").unwrap();
|
||
let parsed: toml::Value = toml::from_str(&result).unwrap();
|
||
|
||
// base_url removed from model_providers.any
|
||
let any_section = parsed
|
||
.get("model_providers")
|
||
.and_then(|v| v.get("any"))
|
||
.expect("model_providers.any should exist");
|
||
assert!(any_section.get("base_url").is_none());
|
||
|
||
// wire_api preserved
|
||
assert_eq!(
|
||
any_section.get("wire_api").and_then(|v| v.as_str()),
|
||
Some("responses")
|
||
);
|
||
|
||
// mcp_servers untouched
|
||
assert!(parsed.get("mcp_servers").is_some());
|
||
}
|
||
|
||
#[test]
|
||
fn model_field_operates_on_top_level() {
|
||
let input = r#"model_provider = "any"
|
||
model = "gpt-4"
|
||
|
||
[model_providers.any]
|
||
name = "any"
|
||
"#;
|
||
|
||
let result = update_codex_toml_field(input, "model", "gpt-5").unwrap();
|
||
let parsed: toml::Value = toml::from_str(&result).unwrap();
|
||
assert_eq!(parsed.get("model").and_then(|v| v.as_str()), Some("gpt-5"));
|
||
|
||
// Clear model
|
||
let result2 = update_codex_toml_field(&result, "model", "").unwrap();
|
||
let parsed2: toml::Value = toml::from_str(&result2).unwrap();
|
||
assert!(parsed2.get("model").is_none());
|
||
}
|
||
|
||
#[test]
|
||
fn preserves_comments_and_whitespace() {
|
||
let input = r#"# My Codex config
|
||
model_provider = "any"
|
||
model = "gpt-4"
|
||
|
||
# Provider section
|
||
[model_providers.any]
|
||
name = "any"
|
||
base_url = "https://old.api/v1"
|
||
"#;
|
||
|
||
let result = update_codex_toml_field(input, "base_url", "https://new.api/v1").unwrap();
|
||
|
||
// Comments should be preserved
|
||
assert!(result.contains("# My Codex config"));
|
||
assert!(result.contains("# Provider section"));
|
||
}
|
||
|
||
#[test]
|
||
fn does_not_misplace_when_profiles_section_follows() {
|
||
let input = r#"model_provider = "any"
|
||
|
||
[model_providers.any]
|
||
name = "any"
|
||
base_url = "https://old.api/v1"
|
||
|
||
[profiles.default]
|
||
model = "gpt-4"
|
||
"#;
|
||
|
||
let result = update_codex_toml_field(input, "base_url", "https://new.api/v1").unwrap();
|
||
let parsed: toml::Value = toml::from_str(&result).unwrap();
|
||
|
||
// base_url in correct section
|
||
let base_url = parsed
|
||
.get("model_providers")
|
||
.and_then(|v| v.get("any"))
|
||
.and_then(|v| v.get("base_url"))
|
||
.and_then(|v| v.as_str());
|
||
assert_eq!(base_url, Some("https://new.api/v1"));
|
||
|
||
// profiles section untouched
|
||
let profile_model = parsed
|
||
.get("profiles")
|
||
.and_then(|v| v.get("default"))
|
||
.and_then(|v| v.get("model"))
|
||
.and_then(|v| v.as_str());
|
||
assert_eq!(profile_model, Some("gpt-4"));
|
||
}
|
||
|
||
#[test]
|
||
fn remove_base_url_if_predicate() {
|
||
let input = r#"model_provider = "any"
|
||
|
||
[model_providers.any]
|
||
name = "any"
|
||
base_url = "http://127.0.0.1:5000/v1"
|
||
wire_api = "responses"
|
||
"#;
|
||
|
||
let result =
|
||
remove_codex_toml_base_url_if(input, |url| url.starts_with("http://127.0.0.1"));
|
||
let parsed: toml::Value = toml::from_str(&result).unwrap();
|
||
|
||
let any_section = parsed
|
||
.get("model_providers")
|
||
.and_then(|v| v.get("any"))
|
||
.unwrap();
|
||
assert!(any_section.get("base_url").is_none());
|
||
assert_eq!(
|
||
any_section.get("wire_api").and_then(|v| v.as_str()),
|
||
Some("responses")
|
||
);
|
||
}
|
||
|
||
#[test]
|
||
fn remove_base_url_if_keeps_non_matching() {
|
||
let input = r#"model_provider = "any"
|
||
|
||
[model_providers.any]
|
||
base_url = "https://production.api/v1"
|
||
"#;
|
||
|
||
let result =
|
||
remove_codex_toml_base_url_if(input, |url| url.starts_with("http://127.0.0.1"));
|
||
let parsed: toml::Value = toml::from_str(&result).unwrap();
|
||
|
||
let base_url = parsed
|
||
.get("model_providers")
|
||
.and_then(|v| v.get("any"))
|
||
.and_then(|v| v.get("base_url"))
|
||
.and_then(|v| v.as_str());
|
||
assert_eq!(base_url, Some("https://production.api/v1"));
|
||
}
|
||
|
||
#[test]
|
||
fn codex_model_catalog_uses_provider_models_and_context() {
|
||
let template = json!({
|
||
"slug": "gpt-5.5",
|
||
"display_name": "GPT-5.5",
|
||
"description": "Frontier model",
|
||
"base_instructions": "gpt-5.5 base instructions",
|
||
"model_messages": {
|
||
"instructions_template": "gpt-5.5 instructions template",
|
||
"instructions_variables": {
|
||
"personality_default": "",
|
||
"personality_friendly": "",
|
||
"personality_pragmatic": ""
|
||
}
|
||
},
|
||
"additional_speed_tiers": ["fast"],
|
||
"service_tiers": [
|
||
{
|
||
"id": "priority",
|
||
"name": "Fast",
|
||
"description": "1.5x speed, increased usage"
|
||
}
|
||
],
|
||
"availability_nux": {
|
||
"message": "GPT-5.5 is now available."
|
||
},
|
||
"upgrade": {
|
||
"target": "gpt-5.5"
|
||
},
|
||
"context_window": 272000,
|
||
"max_context_window": 272000
|
||
});
|
||
let settings = json!({
|
||
"modelCatalog": {
|
||
"models": [
|
||
{
|
||
"model": "deepseek-v4-flash",
|
||
"displayName": "DeepSeek V4 Flash",
|
||
"contextWindow": "64000"
|
||
},
|
||
{
|
||
"model": "kimi-k2",
|
||
"display_name": "Kimi K2"
|
||
}
|
||
]
|
||
}
|
||
});
|
||
let specs = codex_catalog_model_specs(&settings, r#"model_context_window = 128000"#);
|
||
let catalog = codex_model_catalog_from_specs(&specs, &template);
|
||
let models = catalog
|
||
.get("models")
|
||
.and_then(|value| value.as_array())
|
||
.expect("models should be an array");
|
||
|
||
assert_eq!(models.len(), 2);
|
||
assert_eq!(
|
||
models[0].get("slug").and_then(|value| value.as_str()),
|
||
Some("deepseek-v4-flash")
|
||
);
|
||
assert_eq!(
|
||
models[0]
|
||
.get("context_window")
|
||
.and_then(|value| value.as_u64()),
|
||
Some(64_000)
|
||
);
|
||
assert_eq!(
|
||
models[1]
|
||
.get("context_window")
|
||
.and_then(|value| value.as_u64()),
|
||
Some(128_000)
|
||
);
|
||
assert!(
|
||
models[0].get("model_messages").is_some(),
|
||
"Codex requires model_messages in custom catalogs"
|
||
);
|
||
assert_eq!(
|
||
models[0]
|
||
.get("base_instructions")
|
||
.and_then(|value| value.as_str()),
|
||
Some("gpt-5.5 base instructions")
|
||
);
|
||
assert_eq!(
|
||
models[0].get("model_messages"),
|
||
template.get("model_messages"),
|
||
"custom catalog entries should keep the gpt-5.5 agent template"
|
||
);
|
||
assert_eq!(
|
||
models[0].get("additional_speed_tiers"),
|
||
Some(&json!([])),
|
||
"generated third-party entries should not inherit OpenAI speed tiers"
|
||
);
|
||
assert!(
|
||
models[0]
|
||
.get("availability_nux")
|
||
.is_some_and(|value| value.is_null()),
|
||
"generated third-party entries should not inherit GPT-5.5 launch messaging"
|
||
);
|
||
}
|
||
|
||
#[test]
|
||
fn model_catalog_json_field_operates_on_top_level() {
|
||
let input = r#"model_provider = "any"
|
||
|
||
[model_providers.any]
|
||
name = "any"
|
||
"#;
|
||
let catalog_path = Path::new("/tmp/cc-switch-model-catalog.json");
|
||
|
||
let result = set_codex_model_catalog_json_field(input, Some(catalog_path)).unwrap();
|
||
let parsed: toml::Value = toml::from_str(&result).unwrap();
|
||
assert_eq!(
|
||
parsed
|
||
.get("model_catalog_json")
|
||
.and_then(|value| value.as_str()),
|
||
Some("/tmp/cc-switch-model-catalog.json")
|
||
);
|
||
assert!(
|
||
parsed
|
||
.get("model_providers")
|
||
.and_then(|value| value.get("any"))
|
||
.and_then(|value| value.get("model_catalog_json"))
|
||
.is_none(),
|
||
"model_catalog_json should stay top-level"
|
||
);
|
||
}
|
||
|
||
#[test]
|
||
fn resolve_catalog_path_returns_none_when_config_missing_field() {
|
||
let generated = PathBuf::from("/tmp/.codex/cc-switch-model-catalog.json");
|
||
assert!(resolve_cc_switch_catalog_path("", &generated).is_none());
|
||
assert!(
|
||
resolve_cc_switch_catalog_path("model = \"gpt-5\"", &generated).is_none(),
|
||
"no model_catalog_json field should yield None"
|
||
);
|
||
}
|
||
|
||
#[test]
|
||
fn resolve_catalog_path_accepts_cc_switch_owned_file() {
|
||
let generated = PathBuf::from("/tmp/.codex/cc-switch-model-catalog.json");
|
||
let config = r#"model_catalog_json = "/tmp/.codex/cc-switch-model-catalog.json"
|
||
"#;
|
||
let resolved = resolve_cc_switch_catalog_path(config, &generated).expect("path resolves");
|
||
assert_eq!(resolved, generated);
|
||
}
|
||
|
||
#[test]
|
||
fn resolve_catalog_path_rejects_user_owned_external_file() {
|
||
let generated = PathBuf::from("/tmp/.codex/cc-switch-model-catalog.json");
|
||
let config = r#"model_catalog_json = "/Users/me/.codex/my-handwritten-catalog.json"
|
||
"#;
|
||
assert!(
|
||
resolve_cc_switch_catalog_path(config, &generated).is_none(),
|
||
"external catalog files should be left alone"
|
||
);
|
||
}
|
||
|
||
#[test]
|
||
fn build_simplified_catalog_round_trips_user_input() {
|
||
let config = "";
|
||
let catalog = r#"{
|
||
"models": [
|
||
{ "slug": "deepseek-v4-pro", "display_name": "deepseek-v4-pro", "context_window": 1000000 },
|
||
{ "slug": "deepseek-v4-flash", "display_name": "DeepSeek Flash", "context_window": 1000000 }
|
||
]
|
||
}"#;
|
||
let result = build_simplified_catalog_from_texts(config, catalog).expect("entries found");
|
||
let models = result
|
||
.get("models")
|
||
.and_then(|m| m.as_array())
|
||
.expect("models array");
|
||
assert_eq!(models.len(), 2);
|
||
|
||
// First entry: display_name == slug → displayName squashed; explicit
|
||
// context_window != default 128_000 → preserved.
|
||
assert_eq!(
|
||
models[0].get("model").and_then(|v| v.as_str()),
|
||
Some("deepseek-v4-pro")
|
||
);
|
||
assert!(models[0].get("displayName").is_none());
|
||
assert_eq!(
|
||
models[0].get("contextWindow").and_then(|v| v.as_u64()),
|
||
Some(1_000_000)
|
||
);
|
||
|
||
// Second entry: display_name distinct from slug → preserved.
|
||
assert_eq!(
|
||
models[1].get("displayName").and_then(|v| v.as_str()),
|
||
Some("DeepSeek Flash")
|
||
);
|
||
}
|
||
|
||
#[test]
|
||
fn build_simplified_catalog_squashes_default_context_window() {
|
||
// Default fallback is 128_000 when config.toml has no model_context_window.
|
||
let catalog = r#"{
|
||
"models": [{ "slug": "kimi", "display_name": "kimi", "context_window": 128000 }]
|
||
}"#;
|
||
let result = build_simplified_catalog_from_texts("", catalog).expect("entry");
|
||
let entry = &result.get("models").unwrap().as_array().unwrap()[0];
|
||
assert!(
|
||
entry.get("contextWindow").is_none(),
|
||
"default 128_000 should be squashed so the form shows blank, matching the user's blank input"
|
||
);
|
||
}
|
||
|
||
#[test]
|
||
fn build_simplified_catalog_respects_explicit_model_context_window() {
|
||
// When config.toml sets model_context_window, that becomes the default fallback.
|
||
let config = r#"model_context_window = 200000
|
||
"#;
|
||
let catalog = r#"{
|
||
"models": [
|
||
{ "slug": "a", "display_name": "a", "context_window": 200000 },
|
||
{ "slug": "b", "display_name": "b", "context_window": 500000 }
|
||
]
|
||
}"#;
|
||
let result = build_simplified_catalog_from_texts(config, catalog).expect("entries");
|
||
let models = result.get("models").unwrap().as_array().unwrap();
|
||
// Matches default → squashed.
|
||
assert!(models[0].get("contextWindow").is_none());
|
||
// Different from default → preserved.
|
||
assert_eq!(
|
||
models[1].get("contextWindow").and_then(|v| v.as_u64()),
|
||
Some(500_000)
|
||
);
|
||
}
|
||
|
||
#[test]
|
||
fn build_simplified_catalog_returns_none_when_unparseable() {
|
||
assert!(build_simplified_catalog_from_texts("", "not json").is_none());
|
||
assert!(build_simplified_catalog_from_texts("", "{}").is_none());
|
||
assert!(
|
||
build_simplified_catalog_from_texts("", r#"{"models": []}"#).is_none(),
|
||
"empty models array should yield None so the field is not inserted at all"
|
||
);
|
||
assert!(
|
||
build_simplified_catalog_from_texts(
|
||
"",
|
||
r#"{"models": [{"display_name": "no slug"}]}"#,
|
||
)
|
||
.is_none(),
|
||
"entries lacking slug are skipped; a fully-skipped catalog yields None"
|
||
);
|
||
}
|
||
}
|