use super::shared::*;
use crate::DriverCallback;
use crate::DriverContext;
use crate::DriverResult;
use crate::{
DriverCategory,
types::{Driver, DriverParameter},
};
use serde_json::{Value, json};
use std::collections::HashMap;
use tracing::{debug, info};
#[derive(Debug)]
pub struct HaveHeadBrowserGetUrlDriver;
#[async_trait::async_trait]
impl Driver for HaveHeadBrowserGetUrlDriver {
fn name(&self) -> &str {
"have_head_browser_get_url"
}
fn description(&self) -> &str {
"Get the current page URL"
}
fn usage_hint(&self) -> &str {
"Use this skill to check what page the browser is currently on"
}
fn parameters(&self) -> Vec<DriverParameter> {
return vec![];
}
fn example_call(&self) -> DriverResult<Value> {
return Ok(json!({
"action": "have_head_browser_get_url"
}));
}
fn example_output(&self) -> String {
return "Current URL: https://www.google.com".to_string();
}
fn category(&self) -> DriverCategory {
return DriverCategory::HaveHeadBrowser;
}
async fn execute(
&self,
parameters: &HashMap<String, Value>,
callback: Option<&dyn DriverCallback>,
context: Option<&DriverContext>,
) -> DriverResult<String> {
debug!("Executing have_head_browser_get_url driver");
let tab = get_current_tab().map_err(|e| {
debug!("Failed to get current tab: {}", e);
return crate::DriverError::execution(format!("Failed to get current tab: {}", e));
})?;
let url = tab.get_url();
info!("Current URL: {}", url);
return Ok(format!("Current URL: {}", url));
}
}