use serde_json::Value;
use std::collections::HashMap;
trait Serialize {}
pub mod acsrf;
pub mod ajax_spider;
pub mod alert;
pub mod alert_filter;
pub mod ascan;
pub mod authentication;
pub mod authorization;
pub mod autoupdate;
pub mod brk;
pub mod context;
pub mod core;
pub mod forced_user;
pub mod http_sessions;
pub mod import_log_files;
pub mod importurls;
pub mod openapi;
pub mod params;
pub mod pnh;
pub mod pscan;
pub mod replacer;
pub mod reveal;
pub mod script;
pub mod search;
pub mod selenium;
pub mod session_management;
pub mod soap;
pub mod spider;
pub mod stats;
pub mod users;
pub mod websocket;
#[derive(Debug)]
pub struct ZapService {
pub url: String, pub api_key: String, }
#[derive(Debug)]
pub struct ZapApiError {
kind: String, message: String, }
impl From<reqwest::Error> for ZapApiError {
fn from(error: reqwest::Error) -> Self {
ZapApiError {
kind: String::from("comms"),
message: error.to_string(),
}
}
}
impl From<serde_json::error::Error> for ZapApiError {
fn from(error: serde_json::error::Error) -> Self {
ZapApiError {
kind: String::from("serde"),
message: error.to_string(),
}
}
}
pub fn call(
service: &ZapService,
component: &str,
calltype: &str,
method: &str,
_params: HashMap<String, String>,
) -> Result<Value, ZapApiError> {
let mut url = [&service.url, "JSON", component, calltype, method, ""].join("/");
if _params.keys().len() > 0 {
url.push_str("?");
for (key, value) in _params {
url.push_str(&key);
url.push_str("=");
url.push_str(&value);
url.push_str("&");
}
}
let client = reqwest::Client::new();
let text = client
.get(&url)
.header("X-ZAP-API-Key", &*service.api_key)
.send()?
.text()?;
let json = serde_json::from_str(&text)?;
Ok(json)
}