fuhh
This commit is contained in:
@@ -24,7 +24,18 @@ pub async fn get(
|
|||||||
if !output.status.success() {
|
if !output.status.success() {
|
||||||
bail!(String::from_utf8_lossy(&output.stderr).into_owned())
|
bail!(String::from_utf8_lossy(&output.stderr).into_owned())
|
||||||
} else {
|
} else {
|
||||||
serde_json::from_slice(&output.stdout).context("Deserialize failed")
|
let mut fuckass: Vec<NeighborItem> =
|
||||||
|
serde_json::from_slice(&output.stdout).context("Deserialize failed")?;
|
||||||
|
|
||||||
|
// i hate ts.
|
||||||
|
if let Some(dev) = dev {
|
||||||
|
for item in &mut fuckass {
|
||||||
|
if item.dev.is_none() {
|
||||||
|
item.dev = Some(dev.to_owned());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
Ok(fuckass)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -33,6 +44,7 @@ pub async fn _get(ip: Option<IpAddr>, dev: Option<&str>, nud: &[NUDState]) -> io
|
|||||||
cmd.args(["-j", "neigh", "show"]);
|
cmd.args(["-j", "neigh", "show"]);
|
||||||
|
|
||||||
if let Some(ip) = ip {
|
if let Some(ip) = ip {
|
||||||
|
// cmd.arg("to");
|
||||||
cmd.arg(ip.to_canonical().to_string());
|
cmd.arg(ip.to_canonical().to_string());
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
@@ -73,7 +73,8 @@ pub enum NUDState {
|
|||||||
pub struct NeighborItem {
|
pub struct NeighborItem {
|
||||||
#[serde(rename(deserialize = "dst"))]
|
#[serde(rename(deserialize = "dst"))]
|
||||||
pub ip: IpAddr,
|
pub ip: IpAddr,
|
||||||
pub dev: String,
|
#[serde(default)]
|
||||||
|
pub dev: Option<String>,
|
||||||
#[serde(with = "option_mac", default, rename(deserialize = "lladdr"))]
|
#[serde(with = "option_mac", default, rename(deserialize = "lladdr"))]
|
||||||
pub mac: Option<MacAddr>,
|
pub mac: Option<MacAddr>,
|
||||||
#[serde(default)]
|
#[serde(default)]
|
||||||
|
|||||||
@@ -93,7 +93,7 @@ pub async fn get(
|
|||||||
name
|
name
|
||||||
};
|
};
|
||||||
|
|
||||||
let Some((ip, dev)) = ip.zip(dev) else {
|
let (Some(ip), Some(dev)) = (ip, dev) else {
|
||||||
continue 'big;
|
continue 'big;
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -116,7 +116,7 @@ pub async fn get(
|
|||||||
|
|
||||||
result.push(NeighborItem {
|
result.push(NeighborItem {
|
||||||
ip,
|
ip,
|
||||||
dev,
|
dev: Some(dev),
|
||||||
mac,
|
mac,
|
||||||
state,
|
state,
|
||||||
});
|
});
|
||||||
|
|||||||
@@ -1,2 +1,2 @@
|
|||||||
pub mod iter;
|
// pub mod iter;
|
||||||
pub mod serialize;
|
pub mod serialize;
|
||||||
|
|||||||
+12
-6
@@ -53,13 +53,19 @@ impl From<NUDState> for ipjs_neigh::NUDState {
|
|||||||
}
|
}
|
||||||
|
|
||||||
impl From<NeighborItem> for IpNeighLine {
|
impl From<NeighborItem> for IpNeighLine {
|
||||||
fn from(item: NeighborItem) -> Self {
|
fn from(
|
||||||
|
NeighborItem {
|
||||||
|
ip,
|
||||||
|
dev,
|
||||||
|
mac,
|
||||||
|
state,
|
||||||
|
}: NeighborItem,
|
||||||
|
) -> Self {
|
||||||
IpNeighLine {
|
IpNeighLine {
|
||||||
ip: item.ip,
|
ip,
|
||||||
dev: Some(item.dev),
|
dev,
|
||||||
mac: item.mac,
|
mac,
|
||||||
state: item
|
state: state
|
||||||
.state
|
|
||||||
.first()
|
.first()
|
||||||
.copied()
|
.copied()
|
||||||
.map(Into::into)
|
.map(Into::into)
|
||||||
|
|||||||
+13
-23
@@ -50,33 +50,20 @@ pub struct Filters {
|
|||||||
pub async fn get_status_json(
|
pub async fn get_status_json(
|
||||||
Query(DeviceQuery {
|
Query(DeviceQuery {
|
||||||
name,
|
name,
|
||||||
filter:
|
filter: filters,
|
||||||
Filters {
|
|
||||||
ips,
|
|
||||||
devs,
|
|
||||||
nuds,
|
|
||||||
macs,
|
|
||||||
},
|
|
||||||
..
|
..
|
||||||
}): Query<DeviceQuery>,
|
}): Query<DeviceQuery>,
|
||||||
) -> impl IntoResponse {
|
) -> impl IntoResponse {
|
||||||
match get_macs(
|
match get_macs(
|
||||||
&name.iter().collect::<Vec<_>>(),
|
name.as_slice(),
|
||||||
&ips,
|
&filters.ips,
|
||||||
&devs.iter().collect::<Vec<_>>(),
|
&filters.devs,
|
||||||
&nuds,
|
&filters.nuds,
|
||||||
&macs,
|
&filters.macs,
|
||||||
)
|
)
|
||||||
.await
|
.await
|
||||||
{
|
{
|
||||||
Ok(table) => {
|
Ok(table) => (
|
||||||
let filters = Filters {
|
|
||||||
ips,
|
|
||||||
devs,
|
|
||||||
nuds,
|
|
||||||
macs,
|
|
||||||
};
|
|
||||||
(
|
|
||||||
StatusCode::OK,
|
StatusCode::OK,
|
||||||
Json(Status {
|
Json(Status {
|
||||||
name,
|
name,
|
||||||
@@ -84,11 +71,14 @@ pub async fn get_status_json(
|
|||||||
filters,
|
filters,
|
||||||
}),
|
}),
|
||||||
)
|
)
|
||||||
.into_response()
|
.into_response(),
|
||||||
}
|
|
||||||
Err(error) => ApiError {
|
Err(error) => ApiError {
|
||||||
code: StatusCode::BAD_GATEWAY,
|
code: StatusCode::BAD_GATEWAY,
|
||||||
error: error.to_string(),
|
error: error
|
||||||
|
.chain()
|
||||||
|
.map(ToString::to_string)
|
||||||
|
.collect::<Vec<_>>()
|
||||||
|
.join(": "),
|
||||||
}
|
}
|
||||||
.into_response(),
|
.into_response(),
|
||||||
}
|
}
|
||||||
|
|||||||
+1
-14
@@ -107,20 +107,7 @@ pub async fn get_mac(
|
|||||||
.await
|
.await
|
||||||
.context("Calling ip -j neigh failed")?;
|
.context("Calling ip -j neigh failed")?;
|
||||||
|
|
||||||
let lines = items
|
let lines = items.into_iter().map(Into::into).collect();
|
||||||
.into_iter()
|
|
||||||
.map(|item| IpNeighLine {
|
|
||||||
ip: item.ip,
|
|
||||||
dev: Some(item.dev),
|
|
||||||
mac: item.mac,
|
|
||||||
state: item
|
|
||||||
.state
|
|
||||||
.first()
|
|
||||||
.copied()
|
|
||||||
.map(Into::into)
|
|
||||||
.unwrap_or(NUDState::None),
|
|
||||||
})
|
|
||||||
.collect();
|
|
||||||
|
|
||||||
Ok(lines)
|
Ok(lines)
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user