use std::collections::BTreeMap;
use std::path::PathBuf;
use crate::adapters::{HooksAdapter, ToolAdapter, kebab_to_pascal, pascal_to_kebab, toml_utils};
use crate::config::{HookHandler, HooksConfig, McpConfig};
use crate::error::LorumError;
pub struct KimiAdapter;
const MCP_TOP: &str = "mcp";
const MCP_CLIENT: &str = "client";
fn global_config_path() -> Option<PathBuf> {
dirs::home_dir().map(|h| h.join(".kimi").join("config.toml"))
}
impl HooksAdapter for KimiAdapter {
fn name(&self) -> &str {
"kimi"
}
fn config_paths(&self) -> Vec<PathBuf> {
global_config_path().into_iter().collect()
}
fn read_hooks(&self) -> Result<HooksConfig, LorumError> {
let path = match global_config_path() {
Some(p) => p,
None => return Ok(HooksConfig::default()),
};
if !path.exists() {
return Ok(HooksConfig::default());
}
let root = toml_utils::read_existing_toml(&path)?;
Ok(parse_hooks_from_toml(&root))
}
fn write_hooks(&self, config: &HooksConfig) -> Result<(), LorumError> {
let path = match global_config_path() {
Some(p) => p,
None => {
return Err(LorumError::Other {
message: "cannot determine home directory".into(),
});
}
};
let mut root = toml_utils::read_existing_toml(&path)?;
let hooks_array = hooks_config_to_toml_array(config);
let root_table = root.as_table_mut().ok_or_else(|| LorumError::Other {
message: format!("expected table at root of {}", path.display()),
})?;
root_table.insert("hooks".into(), toml::Value::Array(hooks_array));
toml_utils::write_toml(&path, &root)
}
}
impl ToolAdapter for KimiAdapter {
fn name(&self) -> &str {
"kimi"
}
fn config_paths(&self) -> Vec<PathBuf> {
global_config_path().into_iter().collect()
}
fn read_mcp(&self) -> Result<McpConfig, LorumError> {
let path = match global_config_path() {
Some(p) => p,
None => return Ok(McpConfig::default()),
};
if !path.exists() {
return Ok(McpConfig::default());
}
let root = toml_utils::read_existing_toml(&path)?;
Ok(parse_mcp_client(&root))
}
fn write_mcp(&self, config: &McpConfig) -> Result<(), LorumError> {
let path = match global_config_path() {
Some(p) => p,
None => {
return Err(LorumError::Other {
message: "cannot determine home directory".into(),
});
}
};
let mut root = toml_utils::read_existing_toml(&path)?;
let client_table = toml_utils::mcp_config_to_toml_value(config);
let root_table = root.as_table_mut().ok_or_else(|| LorumError::Other {
message: format!("expected table at root of {}", path.display()),
})?;
let mcp_entry = root_table
.entry(MCP_TOP)
.or_insert_with(|| toml::Value::Table(toml::map::Map::new()));
mcp_entry
.as_table_mut()
.ok_or_else(|| LorumError::Other {
message: format!("expected table for '{}' at {}", MCP_TOP, path.display()),
})?
.insert(MCP_CLIENT.into(), client_table);
toml_utils::write_toml(&path, &root)
}
}
fn parse_mcp_client(root: &toml::Value) -> McpConfig {
let Some(servers) = root
.get(MCP_TOP)
.and_then(|v| v.get(MCP_CLIENT))
.and_then(|v| v.as_table())
else {
return McpConfig::default();
};
let mut map = std::collections::BTreeMap::new();
for (name, value) in servers {
if let Some(server) = toml_utils::parse_mcp_server_toml(value.as_table()) {
map.insert(name.clone(), server);
}
}
McpConfig { servers: map }
}
fn parse_hooks_from_toml(root: &toml::Value) -> HooksConfig {
let Some(hooks_array) = root.get("hooks").and_then(|v| v.as_array()) else {
return HooksConfig::default();
};
let mut events: BTreeMap<String, Vec<HookHandler>> = BTreeMap::new();
for entry in hooks_array {
let Some(table) = entry.as_table() else {
continue;
};
let Some(pascal_event) = table
.get("event")
.and_then(|v| v.as_str())
.filter(|s| !s.is_empty())
else {
continue;
};
let kebab_event = pascal_to_kebab(pascal_event);
let Some(matcher) = table
.get("matcher")
.and_then(|v| v.as_str())
.filter(|s| !s.is_empty())
else {
continue;
};
let Some(command) = table
.get("command")
.and_then(|v| v.as_str())
.filter(|s| !s.is_empty())
else {
continue;
};
let timeout = table
.get("timeout")
.and_then(|v| v.as_integer())
.and_then(|v| u64::try_from(v).ok());
let handler_type = table.get("type").and_then(|v| v.as_str()).map(String::from);
events.entry(kebab_event).or_default().push(HookHandler {
matcher: matcher.to_string(),
command: command.to_string(),
timeout,
handler_type,
});
}
HooksConfig { events }
}
fn hooks_config_to_toml_array(config: &HooksConfig) -> Vec<toml::Value> {
let mut array = Vec::new();
for (event_name, handlers) in &config.events {
let pascal_event = kebab_to_pascal(event_name);
for h in handlers {
let mut table = toml::map::Map::new();
table.insert("event".into(), toml::Value::String(pascal_event.clone()));
table.insert("matcher".into(), toml::Value::String(h.matcher.clone()));
table.insert("command".into(), toml::Value::String(h.command.clone()));
if let Some(t) = h.timeout {
table.insert("timeout".into(), toml::Value::Integer(t as i64));
}
if let Some(ref ty) = h.handler_type {
table.insert("type".into(), toml::Value::String(ty.clone()));
}
array.push(toml::Value::Table(table));
}
}
array
}
#[cfg(test)]
mod tests {
use super::*;
use crate::adapters::test_utils::make_server;
use std::collections::BTreeMap;
use std::fs;
#[test]
fn read_mcp_from_valid_toml() {
let dir = tempfile::tempdir().unwrap();
let path = dir.path().join("config.toml");
let toml_str = r#"
other_field = true
[mcp.client.test-server]
command = "npx"
args = ["-y", "some-pkg"]
[mcp.client.test-server.env]
KEY = "value"
"#;
fs::write(&path, toml_str).unwrap();
let root: toml::Value = toml::from_str(toml_str).unwrap();
let config = parse_mcp_client(&root);
assert_eq!(config.servers.len(), 1);
let server = &config.servers["test-server"];
assert_eq!(server.command, "npx");
assert_eq!(server.args, vec!["-y", "some-pkg"]);
assert_eq!(server.env.get("KEY").unwrap(), "value");
}
#[test]
fn read_mcp_empty_when_no_field() {
let root: toml::Value = toml::from_str("other = true").unwrap();
let config = parse_mcp_client(&root);
assert!(config.servers.is_empty());
}
#[test]
fn write_mcp_preserves_other_fields() {
let dir = tempfile::tempdir().unwrap();
let path = dir.path().join("config.toml");
let original = r#"other_field = true
[mcp]
"#;
fs::write(&path, original).unwrap();
let mut root = toml_utils::read_existing_toml(&path).unwrap();
let config = McpConfig {
servers: {
let mut m = BTreeMap::new();
m.insert("svr".into(), make_server("cmd", &["a"], &[("K", "V")]));
m
},
};
let client_table = toml_utils::mcp_config_to_toml_value(&config);
let root_table = root.as_table_mut().unwrap();
let mcp_entry = root_table
.entry(MCP_TOP)
.or_insert_with(|| toml::Value::Table(toml::map::Map::new()));
mcp_entry
.as_table_mut()
.unwrap()
.insert(MCP_CLIENT.into(), client_table);
toml_utils::write_toml(&path, &root).unwrap();
let result: toml::Value = toml::from_str(&fs::read_to_string(&path).unwrap()).unwrap();
assert_eq!(result["other_field"].as_bool(), Some(true));
assert_eq!(
result["mcp"]["client"]["svr"]["command"].as_str(),
Some("cmd")
);
}
#[test]
fn write_mcp_creates_file_when_missing() {
let dir = tempfile::tempdir().unwrap();
let path = dir.path().join("subdir").join("config.toml");
assert!(!path.exists());
let config = McpConfig {
servers: {
let mut m = BTreeMap::new();
m.insert("s".into(), make_server("c", &[], &[]));
m
},
};
let mut root = toml::Value::Table(toml::map::Map::new());
let client_table = toml_utils::mcp_config_to_toml_value(&config);
root.as_table_mut()
.unwrap()
.entry(MCP_TOP)
.or_insert_with(|| toml::Value::Table(toml::map::Map::new()))
.as_table_mut()
.unwrap()
.insert(MCP_CLIENT.into(), client_table);
toml_utils::write_toml(&path, &root).unwrap();
assert!(path.exists());
let result: toml::Value = toml::from_str(&fs::read_to_string(&path).unwrap()).unwrap();
assert_eq!(result["mcp"]["client"]["s"]["command"].as_str(), Some("c"));
}
#[test]
fn roundtrip_toml() {
let config = McpConfig {
servers: {
let mut m = BTreeMap::new();
m.insert(
"a".into(),
make_server("node", &["index.js"], &[("PORT", "3000")]),
);
m.insert("b".into(), make_server("python", &["main.py"], &[]));
m
},
};
let toml_val = toml_utils::mcp_config_to_toml_value(&config);
let mut outer = toml::map::Map::new();
let mut mcp_table = toml::map::Map::new();
mcp_table.insert(MCP_CLIENT.into(), toml_val);
outer.insert(MCP_TOP.into(), toml::Value::Table(mcp_table));
let parsed = parse_mcp_client(&toml::Value::Table(outer));
assert_eq!(config, parsed);
}
#[test]
fn adapter_name() {
let adapter = KimiAdapter;
assert_eq!(ToolAdapter::name(&adapter), "kimi");
}
#[test]
fn parse_hooks_from_valid_toml() {
let toml_str = r#"
[[hooks]]
event = "PreToolUse"
matcher = "Bash"
command = "scripts/check.sh"
timeout = 60
[[hooks]]
event = "PreToolUse"
matcher = "Write"
command = "scripts/write-check.sh"
[[hooks]]
event = "PostToolUse"
matcher = "Edit"
command = "cargo fmt"
"#;
let root: toml::Value = toml::from_str(toml_str).unwrap();
let config = parse_hooks_from_toml(&root);
assert_eq!(config.events.len(), 2);
let pre = &config.events["pre-tool-use"];
assert_eq!(pre.len(), 2);
assert_eq!(pre[0].matcher, "Bash");
assert_eq!(pre[0].timeout, Some(60));
assert_eq!(pre[1].matcher, "Write");
assert_eq!(pre[1].timeout, None);
let post = &config.events["post-tool-use"];
assert_eq!(post.len(), 1);
assert_eq!(post[0].matcher, "Edit");
}
#[test]
fn parse_hooks_empty_when_no_field() {
let root: toml::Value = toml::from_str("other = true").unwrap();
let config = parse_hooks_from_toml(&root);
assert!(config.events.is_empty());
}
#[test]
fn write_hooks_preserves_other_fields() {
let dir = tempfile::tempdir().unwrap();
let path = dir.path().join("config.toml");
fs::write(&path, "other_field = true\n").unwrap();
let mut config = HooksConfig::default();
config.events.insert(
"pre-tool-use".into(),
vec![HookHandler {
matcher: "Shell".into(),
command: "check.sh".into(),
timeout: Some(10),
handler_type: None,
}],
);
let mut root = toml_utils::read_existing_toml(&path).unwrap();
let hooks_array = hooks_config_to_toml_array(&config);
root.as_table_mut()
.unwrap()
.insert("hooks".into(), toml::Value::Array(hooks_array));
toml_utils::write_toml(&path, &root).unwrap();
let result: toml::Value = toml::from_str(&fs::read_to_string(&path).unwrap()).unwrap();
assert_eq!(result["other_field"].as_bool(), Some(true));
let hooks = result["hooks"].as_array().unwrap();
assert_eq!(hooks.len(), 1);
assert_eq!(hooks[0]["event"].as_str(), Some("PreToolUse"));
assert_eq!(hooks[0]["matcher"].as_str(), Some("Shell"));
assert_eq!(hooks[0]["timeout"].as_integer(), Some(10));
}
#[test]
fn hooks_roundtrip_toml() {
let mut config = HooksConfig::default();
config.events.insert(
"pre-tool-use".into(),
vec![HookHandler {
matcher: "Bash".into(),
command: "check.sh".into(),
timeout: Some(60),
handler_type: Some("command".into()),
}],
);
let array = hooks_config_to_toml_array(&config);
let mut root = toml::map::Map::new();
root.insert("hooks".into(), toml::Value::Array(array));
let parsed = parse_hooks_from_toml(&toml::Value::Table(root));
assert_eq!(config, parsed);
}
}