this so the app runs on router reboot
This commit is contained in:
@@ -1,5 +1,8 @@
|
|||||||
you can use block code as so:
|
you should use block code to refence code, like so:
|
||||||
```rust
|
```rust
|
||||||
hello_world!(println);
|
hello_world!(println);
|
||||||
|
// indented lines
|
||||||
```
|
```
|
||||||
in the chat.
|
in the chat. Else it fucks up formatting.
|
||||||
|
|
||||||
|
We work towards clean, maintainable design. im not the best at this thing.
|
||||||
Generated
+1
-1
@@ -1179,7 +1179,7 @@ checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "wakey"
|
name = "wakey"
|
||||||
version = "0.1.3"
|
version = "0.1.4"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"axum",
|
"axum",
|
||||||
"axum-extra",
|
"axum-extra",
|
||||||
|
|||||||
+1
-1
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "wakey"
|
name = "wakey"
|
||||||
version = "0.1.3"
|
version = "0.1.4"
|
||||||
edition = "2024"
|
edition = "2024"
|
||||||
publish = ["gitea"]
|
publish = ["gitea"]
|
||||||
|
|
||||||
|
|||||||
+4
-3
@@ -1,6 +1,6 @@
|
|||||||
use crate::{
|
use crate::{
|
||||||
arpparse::NUDState,
|
arpparse::NUDState,
|
||||||
utils::parse::{de_many, serialize_macs},
|
utils::{parse::{de_many, serialize_macs}, query::get_macs},
|
||||||
};
|
};
|
||||||
use axum::{Json, http::StatusCode, response::IntoResponse};
|
use axum::{Json, http::StatusCode, response::IntoResponse};
|
||||||
use axum_extra::extract::Query;
|
use axum_extra::extract::Query;
|
||||||
@@ -93,9 +93,10 @@ pub async fn get_status_json(
|
|||||||
mac: mac.clone(),
|
mac: mac.clone(),
|
||||||
};
|
};
|
||||||
let mut tasks = Vec::new();
|
let mut tasks = Vec::new();
|
||||||
|
// can we jus collect the whole table instead of doing this.
|
||||||
for d in &dev_opts {
|
for d in &dev_opts {
|
||||||
for n in &nud_opts {
|
for n in &nud_opts {
|
||||||
tasks.push(crate::utils::query::get_macs(
|
tasks.push(get_macs( // this i hate sm
|
||||||
name.as_deref(),
|
name.as_deref(),
|
||||||
ips_opt.as_deref(),
|
ips_opt.as_deref(),
|
||||||
d.as_deref(),
|
d.as_deref(),
|
||||||
@@ -109,7 +110,7 @@ pub async fn get_status_json(
|
|||||||
.map(|v| v.into_iter().flatten().collect::<Vec<_>>())
|
.map(|v| v.into_iter().flatten().collect::<Vec<_>>())
|
||||||
{
|
{
|
||||||
Ok(mut table) => {
|
Ok(mut table) => {
|
||||||
if !mac.is_empty() {
|
if !mac.is_empty() { // mac here
|
||||||
let wanted: HashSet<MacAddr> = mac.into_iter().collect();
|
let wanted: HashSet<MacAddr> = mac.into_iter().collect();
|
||||||
table.retain(|row| row.mac.map(|m| wanted.contains(&m)).unwrap_or(false));
|
table.retain(|row| row.mac.map(|m| wanted.contains(&m)).unwrap_or(false));
|
||||||
}
|
}
|
||||||
|
|||||||
+1
-1
@@ -89,7 +89,7 @@ pub async fn wake_multi_split(
|
|||||||
} else {
|
} else {
|
||||||
wake_one(
|
wake_one(
|
||||||
&sock,
|
&sock,
|
||||||
c.try_into().expect("complete struct failed to try_into"),
|
c.try_into().expect("complete struct failed to try_into"), // type state pattern?
|
||||||
)
|
)
|
||||||
.await
|
.await
|
||||||
.into()
|
.into()
|
||||||
|
|||||||
@@ -7,6 +7,7 @@ pub fn get_dev() -> HashSet<String> {
|
|||||||
if e.file_type()
|
if e.file_type()
|
||||||
.map(|ft| {
|
.map(|ft| {
|
||||||
if ft.is_symlink() {
|
if ft.is_symlink() {
|
||||||
|
// true
|
||||||
fs::metadata(e.path()).map(|m| m.is_dir()).unwrap_or(false)
|
fs::metadata(e.path()).map(|m| m.is_dir()).unwrap_or(false)
|
||||||
} else {
|
} else {
|
||||||
ft.is_dir()
|
ft.is_dir()
|
||||||
|
|||||||
@@ -81,7 +81,7 @@ pub async fn get_macs(
|
|||||||
state: Option<NUDState>,
|
state: Option<NUDState>,
|
||||||
) -> Result<Vec<IpNeighLine>> {
|
) -> Result<Vec<IpNeighLine>> {
|
||||||
let ip_list: Option<Vec<IpAddr>> =
|
let ip_list: Option<Vec<IpAddr>> =
|
||||||
ips.map(|slice| slice.iter().copied().map(|ip| ip.to_canonical()).collect());
|
ips.map(|slice| slice.iter().map(|ip| ip.to_canonical()).collect());
|
||||||
let ip_list = match (ip_list, machine_name) {
|
let ip_list = match (ip_list, machine_name) {
|
||||||
(Some(list), _) => list,
|
(Some(list), _) => list,
|
||||||
(None, Some(name)) => get_ips(name).await?.collect(),
|
(None, Some(name)) => get_ips(name).await?.collect(),
|
||||||
@@ -136,7 +136,9 @@ pub async fn get_mac(
|
|||||||
Ok(rows)
|
Ok(rows)
|
||||||
}
|
}
|
||||||
|
|
||||||
/* pub async fn _get_macs_good(
|
/*
|
||||||
|
/// get macs where you just run ip neigh then rust handles the filtering (faster than get mac)
|
||||||
|
pub async fn get_macs_rust(
|
||||||
machine_names: Option<&str>,
|
machine_names: Option<&str>,
|
||||||
ips: Option<&[IpAddr]>,
|
ips: Option<&[IpAddr]>,
|
||||||
devs: Option<&[&str]>,
|
devs: Option<&[&str]>,
|
||||||
|
|||||||
Reference in New Issue
Block a user