use crate::DriverCallback;
use crate::DriverContext;
use crate::{
DriverCategory, DriverError, DriverResult,
types::{Driver, DriverParameter},
};
use serde_json::{Value, json};
use std::collections::HashMap;
use std::process::Command;
use tracing::{debug, info, warn};
#[derive(Debug)]
pub struct BluetoothDeleteDeviceDriver;
#[async_trait::async_trait]
impl Driver for BluetoothDeleteDeviceDriver {
fn name(&self) -> &str {
"bluetooth_delete_device"
}
fn description(&self) -> &str {
"Remove/delete a device from the paired devices list"
}
fn usage_hint(&self) -> &str {
"Use this skill to permanently remove a device from your paired devices list."
}
fn parameters(&self) -> Vec<DriverParameter> {
return vec![DriverParameter {
name: "mac_address".to_string(),
param_type: "string".to_string(),
description: "MAC address of the device to delete".to_string(),
required: true,
default: None,
example: Some(Value::String("AA:BB:CC:DD:EE:FF".to_string())),
enum_values: None,
}];
}
fn example_call(&self) -> DriverResult<Value> {
return Ok(json!({
"action": "bluetooth_delete_device",
"parameters": {
"mac_address": "AA:BB:CC:DD:EE:FF"
}
}));
}
fn example_output(&self) -> String {
"Device AA:BB:CC:DD:EE:FF deleted".to_string()
}
fn category(&self) -> DriverCategory {
DriverCategory::Bluetooth
}
async fn execute(
&self,
parameters: &HashMap<String, Value>,
callback: Option<&dyn DriverCallback>,
context: Option<&DriverContext>,
) -> DriverResult<String> {
debug!("Executing bluetooth_delete_device driver");
let mac_address = parameters.get("mac_address").and_then(|v| v.as_str()).ok_or_else(|| {
debug!("Missing 'mac_address' parameter");
DriverError::missing_parameter("mac_address")
})?;
debug!("Deleting device: {}", mac_address);
#[cfg(target_os = "linux")]
{
debug!("Executing bluetoothctl remove {}", mac_address);
let output = crate::common::hidden_cmd("bluetoothctl")
.args(["remove", mac_address])
.output()
.map_err(|e| DriverError::execution(format!("Failed to execute bluetoothctl: {}", e)))?;
if !output.status.success() {
let stderr = String::from_utf8_lossy(&output.stderr);
warn!("bluetoothctl remove failed: {}", stderr);
return Err(DriverError::execution(format!("Failed to delete device: {}", stderr)));
}
}
info!("Device {} deleted", mac_address);
Ok(format!("Device {} deleted", mac_address))
}
}