fix: ip parse panic

This commit is contained in:
trisua 2025-05-22 00:26:29 -04:00
parent f746290d97
commit b1d812d07b
5 changed files with 29 additions and 9 deletions

View file

@ -3,9 +3,16 @@
{% endblock %} {% block body %} {{ macros::nav() }} {% endblock %} {% block body %} {{ macros::nav() }}
<main class="flex flex-col gap-2"> <main class="flex flex-col gap-2">
<div class="card-nest w-full"> <div class="card-nest w-full">
<div class="card small flex items-center gap-2"> <div class="card small flex items-center justify-between gap-2">
{{ icon "ban" }} <div class="flex items-center gap-2">
<span>{{ text "general:link.ip_bans" }}</span> {{ icon "ban" }}
<span>{{ text "general:link.ip_bans" }}</span>
</div>
<button onclick="prompt_ban_ip()" class="quaternary small">
{{ icon "plus" }}
<span>{{ text "communities:action.create" }}</span>
</button>
</div> </div>
<div class="card flex flex-col gap-2"> <div class="card flex flex-col gap-2">
@ -46,6 +53,16 @@
</main> </main>
<script> <script>
async function prompt_ban_ip() {
const ip = await trigger("atto::prompt", ["IP address (or prefix):"]);
if (!ip) {
return;
}
trigger("atto::ban_ip", [ip]);
}
async function remove_ipban(ip) { async function remove_ipban(ip) {
if ( if (
!(await trigger("atto::confirm", [ !(await trigger("atto::confirm", [
@ -55,7 +72,7 @@
return; return;
} }
fetch(`/api/v1/bans/${id}`, { fetch(`/api/v1/bans/${ip}`, {
method: "DELETE", method: "DELETE",
}) })
.then((res) => res.json()) .then((res) => res.json())

View file

@ -531,7 +531,7 @@ media_theme_pref();
.then((res) => res.json()) .then((res) => res.json())
.then((res) => { .then((res) => {
trigger("atto::toast", [ trigger("atto::toast", [
res.success ? "success" : "error", res.ok ? "success" : "error",
res.message, res.message,
]); ]);
}); });

View file

@ -256,7 +256,7 @@ pub fn routes() -> Router {
) )
// ipbans // ipbans
.route("/bans/{ip}", post(auth::ipbans::create_request)) .route("/bans/{ip}", post(auth::ipbans::create_request))
.route("/bans/id/{id}", delete(auth::ipbans::delete_request)) .route("/bans/{ip}", delete(auth::ipbans::delete_request))
// reports // reports
.route("/reports", post(reports::create_request)) .route("/reports", post(reports::create_request))
.route("/reports/{id}", delete(reports::delete_request)) .route("/reports/{id}", delete(reports::delete_request))

View file

@ -39,8 +39,8 @@ impl DataManager {
let res = query_row!( let res = query_row!(
&conn, &conn,
"SELECT * FROM ipbans WHERE ip LIKE $1", "SELECT * FROM ipbans WHERE ip = $1",
&[&format!("{}%", addr.prefix(None))], &[&addr.prefix(None)],
|x| { Ok(Self::get_ipban_from_row(x)) } |x| { Ok(Self::get_ipban_from_row(x)) }
); );

View file

@ -25,7 +25,10 @@ impl From<&str> for RemoteAddr {
} }
} else { } else {
// ipv4 (4 bytes; 32 bits) // ipv4 (4 bytes; 32 bits)
Self(value.parse().unwrap(), AddrProto::IPV4) Self(
value.parse().unwrap_or("0.0.0.0:1000".parse().unwrap()),
AddrProto::IPV4,
)
} }
} }
} }