Files
PowderCoatingLogix/src/PowderCoating.Web/Views/BannedIps/Index.cshtml
T
spouliot a0bdd2b5b4 Sweep all .cshtml files for encoding corruption; add pre-commit guard
Replace all corruption variants with HTML entities across 226 view files:
- 3-char UTF-8-as-Win1252 sequences (ae-corruption)
- Standalone smart/curly quotes that break C# Razor expressions
- Partially re-corrupted variants where the 3rd byte was normalised to ASCII

tools/Fix-Encoding.ps1: re-runnable sweep; uses [char] code points so the
script itself never contains a literal non-ASCII character; supports -DryRun

.githooks/pre-commit: blocks commits containing the ae-corruption byte
signature (xc3xa2xe2x82xac); git core.hooksPath = .githooks so the
hook is repo-committed and active for all future work on this machine.

Build clean; 225 unit tests pass.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-05-20 21:37:10 -04:00

291 lines
16 KiB
Plaintext

@model IEnumerable<PowderCoating.Core.Entities.BannedIp>
@{
ViewData["Title"] = "Banned IPs";
ViewData["PageIcon"] = "bi-slash-circle";
var now = DateTime.UtcNow;
var active = Model.Where(b => b.IsActive && (b.ExpiresAt == null || b.ExpiresAt > now)).ToList();
var inactive = Model.Where(b => !b.IsActive || (b.ExpiresAt.HasValue && b.ExpiresAt <= now)).ToList();
}
<div class="container-fluid py-4">
<div class="mb-2">
<a asp-controller="PlatformAdmin" asp-action="Observability" class="text-muted small text-decoration-none">
<i class="bi bi-arrow-left me-1"></i>Observability
</a>
</div>
@* Add new ban form *@
<div class="card shadow-sm mb-4">
<div class="card-header bg-danger text-white">
<h5 class="mb-0"><i class="bi bi-plus-circle"></i> Add IP Ban</h5>
</div>
<div class="card-body">
<form asp-action="Add" method="post">
@Html.AntiForgeryToken()
<div class="row g-3 align-items-end">
<div class="col-md-3">
<label class="form-label">IP Address <span class="text-danger">*</span></label>
<div class="input-group">
<input type="text" class="form-control font-monospace" name="ipAddress"
id="ipAddressInput" placeholder="e.g. 203.0.113.42" required />
<button type="button" class="btn btn-outline-secondary" id="fillMyIp" title="Fill with your current IP">
<i class="bi bi-geo-alt"></i> My IP
</button>
</div>
</div>
<div class="col-md-4">
<label class="form-label">Reason</label>
<input type="text" class="form-control" name="reason"
placeholder="e.g. Competitor snooping, scraping, abuse" maxlength="500" />
</div>
<div class="col-md-3">
<label class="form-label">Expires (leave blank = permanent)</label>
<input type="datetime-local" class="form-control" name="expiresAt" />
</div>
<div class="col-md-2">
<button type="submit" class="btn btn-danger w-100">
<i class="bi bi-slash-circle"></i> Ban IP
</button>
</div>
</div>
</form>
</div>
</div>
@* Active bans *@
<div class="card shadow-sm mb-4">
<div class="card-header d-flex justify-content-between align-items-center">
<h5 class="mb-0"><i class="bi bi-slash-circle-fill text-danger"></i> Active Bans <span class="badge bg-danger ms-1">@active.Count</span></h5>
</div>
<div class="card-body p-0">
@if (active.Any())
{
<div class="mobile-card-view">
<div class="mobile-card-list">
@foreach (var ban in active)
{
<div class="mobile-data-card">
<div class="mobile-card-header">
<div class="mobile-card-icon" style="background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);">
<i class="bi bi-slash-circle"></i>
</div>
<div class="mobile-card-title">
<h6 class="font-monospace">@ban.IpAddress</h6>
<small class="text-muted">@(ban.Reason ?? "No reason given")</small>
</div>
</div>
<div class="mobile-card-body">
<div class="mobile-card-row">
<span class="mobile-card-label">Banned</span>
<span class="mobile-card-value">@ban.BannedAt.ToString("MMM d, yyyy HH:mm")</span>
</div>
<div class="mobile-card-row">
<span class="mobile-card-label">Expires</span>
<span class="mobile-card-value">
@if (ban.ExpiresAt.HasValue)
{
<span class="badge bg-warning text-dark">@ban.ExpiresAt.Value.ToString("MMM d, yyyy")</span>
}
else
{
<span class="badge bg-secondary">Permanent</span>
}
</span>
</div>
</div>
<div class="mobile-card-footer">
<form asp-action="Lift" asp-route-id="@ban.Id" method="post" class="d-inline"
onsubmit="return confirm('Lift the ban on @ban.IpAddress?')">
@Html.AntiForgeryToken()
<button type="submit" class="btn btn-sm btn-outline-success">
<i class="bi bi-check-circle me-1"></i>Lift
</button>
</form>
<form asp-action="Delete" asp-route-id="@ban.Id" method="post" class="d-inline"
onsubmit="return confirm('Delete ban record for @ban.IpAddress?')">
@Html.AntiForgeryToken()
<button type="submit" class="btn btn-sm btn-outline-danger">
<i class="bi bi-trash"></i>
</button>
</form>
</div>
</div>
}
</div>
</div>
<div class="table-responsive">
<table class="table table-hover mb-0">
<thead class="table-light">
<tr>
<th>IP Address</th>
<th>Reason</th>
<th>Banned</th>
<th>Expires</th>
<th class="text-end">Actions</th>
</tr>
</thead>
<tbody>
@foreach (var ban in active)
{
<tr>
<td><code>@ban.IpAddress</code></td>
<td>@(ban.Reason ?? "<em class=\"text-muted\">No reason given</em>")</td>
<td><small class="text-muted">@ban.BannedAt.ToString("MMM dd, yyyy HH:mm")</small></td>
<td>
@if (ban.ExpiresAt.HasValue)
{
<span class="badge bg-warning text-dark">@ban.ExpiresAt.Value.ToString("MMM dd, yyyy HH:mm")</span>
}
else
{
<span class="badge bg-secondary">Permanent</span>
}
</td>
<td class="text-end">
<div class="btn-group btn-group-sm">
<form asp-action="Lift" asp-route-id="@ban.Id" method="post" class="d-inline"
onsubmit="return confirm('Lift the ban on @ban.IpAddress?')">
@Html.AntiForgeryToken()
<button type="submit" class="btn btn-outline-success" title="Lift ban">
<i class="bi bi-check-circle"></i> Lift
</button>
</form>
<form asp-action="Delete" asp-route-id="@ban.Id" method="post" class="d-inline"
onsubmit="return confirm('Delete ban record for @ban.IpAddress?')">
@Html.AntiForgeryToken()
<button type="submit" class="btn btn-outline-danger" title="Delete record">
<i class="bi bi-trash"></i>
</button>
</form>
</div>
</td>
</tr>
}
</tbody>
</table>
</div>
}
else
{
<div class="text-center py-4 text-muted">
<i class="bi bi-check-circle display-4"></i>
<p class="mt-2">No active IP bans.</p>
</div>
}
</div>
</div>
@* Lifted / expired bans *@
@if (inactive.Any())
{
<div class="card shadow-sm">
<div class="card-header">
<h6 class="mb-0 text-muted"><i class="bi bi-clock-history"></i> Lifted / Expired Bans</h6>
</div>
<div class="card-body p-0">
<div class="mobile-card-view">
<div class="mobile-card-list">
@foreach (var ban in inactive)
{
<div class="mobile-data-card">
<div class="mobile-card-header">
<div class="mobile-card-icon" style="background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);">
<i class="bi bi-clock-history"></i>
</div>
<div class="mobile-card-title">
<h6 class="font-monospace">@ban.IpAddress</h6>
<small>
@if (!ban.IsActive)
{
<span class="badge bg-success">Lifted</span>
}
else
{
<span class="badge bg-secondary">Expired</span>
}
</small>
</div>
</div>
<div class="mobile-card-body">
@if (!string.IsNullOrEmpty(ban.Reason))
{
<div class="mobile-card-row">
<span class="mobile-card-label">Reason</span>
<span class="mobile-card-value text-muted">@ban.Reason</span>
</div>
}
<div class="mobile-card-row">
<span class="mobile-card-label">Banned</span>
<span class="mobile-card-value text-muted">@ban.BannedAt.ToString("MMM d, yyyy")</span>
</div>
</div>
<div class="mobile-card-footer">
<form asp-action="Delete" asp-route-id="@ban.Id" method="post" class="d-inline"
onsubmit="return confirm('Delete ban record for @ban.IpAddress?')">
@Html.AntiForgeryToken()
<button type="submit" class="btn btn-sm btn-outline-danger">
<i class="bi bi-trash me-1"></i>Delete
</button>
</form>
</div>
</div>
}
</div>
</div>
<div class="table-responsive">
<table class="table table-sm table-hover mb-0">
<thead class="table-light">
<tr>
<th>IP Address</th>
<th>Reason</th>
<th>Banned</th>
<th>Status</th>
<th class="text-end">Actions</th>
</tr>
</thead>
<tbody>
@foreach (var ban in inactive)
{
<tr class="text-muted">
<td><code>@ban.IpAddress</code></td>
<td><small>@(ban.Reason ?? "&mdash;")</small></td>
<td><small>@ban.BannedAt.ToString("MMM dd, yyyy")</small></td>
<td>
@if (!ban.IsActive)
{
<span class="badge bg-success">Lifted</span>
}
else
{
<span class="badge bg-secondary">Expired</span>
}
</td>
<td class="text-end">
<form asp-action="Delete" asp-route-id="@ban.Id" method="post" class="d-inline"
onsubmit="return confirm('Delete ban record for @ban.IpAddress?')">
@Html.AntiForgeryToken()
<button type="submit" class="btn btn-sm btn-outline-danger" title="Delete record">
<i class="bi bi-trash"></i>
</button>
</form>
</td>
</tr>
}
</tbody>
</table>
</div>
</div>
</div>
}
</div>
@section Scripts {
<script>
document.getElementById('fillMyIp').addEventListener('click', function () {
fetch('@Url.Action("MyIp", "BannedIps")')
.then(r => r.json())
.then(d => { document.getElementById('ipAddressInput').value = d.ip; });
});
</script>
}