119 lines
5.1 KiB
Plaintext
119 lines
5.1 KiB
Plaintext
@page "/storage"
|
|
@attribute [Authorize]
|
|
@inject IUserSessionService Session
|
|
@inject ISessionManager SessionMgr
|
|
@inject IStorageService StorageSvc
|
|
@inject StorageCsvExportService CsvExport
|
|
@inject StorageHtmlExportService HtmlExport
|
|
@inject WebExportService WebExport
|
|
@rendermode InteractiveServer
|
|
|
|
<h1 class="page-title">Storage Metrics</h1>
|
|
|
|
@if (!Session.HasProfile) { <NoProfilePrompt /> return; }
|
|
|
|
<div class="card">
|
|
<div class="card-title">Scan Options</div>
|
|
<div class="form-row">
|
|
<div class="form-group">
|
|
<label class="form-label">Site URL</label>
|
|
<input class="form-input" @bind="_siteUrl" placeholder="@Session.CurrentProfile!.TenantUrl" />
|
|
</div>
|
|
</div>
|
|
<div class="form-row">
|
|
<div class="form-group" style="display:flex;align-items:center;gap:16px;padding-top:20px">
|
|
<label><input type="checkbox" @bind="_includeSubsites" /> Include subsites</label>
|
|
<label><input type="checkbox" @bind="_includeHidden" /> Include hidden libs</label>
|
|
<label><input type="checkbox" @bind="_includeRecycleBin" /> Include recycle bin</label>
|
|
</div>
|
|
</div>
|
|
<div class="flex-row mt-8">
|
|
<button class="btn btn-primary" @onclick="RunScan" disabled="@_running">
|
|
@(_running ? "Scanning…" : "Scan Storage")
|
|
</button>
|
|
@if (_running) { <button class="btn btn-secondary" @onclick="Cancel">Cancel</button> }
|
|
</div>
|
|
<ProgressPanel IsRunning="_running" StatusMessage="_status" Current="_current" Total="_total" />
|
|
</div>
|
|
|
|
@if (!string.IsNullOrEmpty(_error)) { <div class="alert alert-error">@_error</div> }
|
|
|
|
@if (_results.Count > 0)
|
|
{
|
|
<div class="card">
|
|
<div class="flex-row">
|
|
<div class="card-title">Storage Report <span class="count-badge">@_results.Count libraries</span></div>
|
|
<div class="spacer"></div>
|
|
<button class="btn btn-secondary btn-sm" @onclick="ExportCsv">Export CSV</button>
|
|
<button class="btn btn-secondary btn-sm" @onclick="ExportHtml">Export HTML</button>
|
|
</div>
|
|
<div class="data-table-wrap">
|
|
<table class="data-table">
|
|
<thead>
|
|
<tr>
|
|
<th>Library</th>
|
|
<th>Site</th>
|
|
<th class="num">Files</th>
|
|
<th class="num">Total (MB)</th>
|
|
<th class="num">Versions (MB)</th>
|
|
<th>Last Modified</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
@foreach (var n in _results)
|
|
{
|
|
<tr>
|
|
<td style="padding-left:@(n.IndentLevel * 20 + 12)px">@n.Name</td>
|
|
<td>@n.SiteTitle</td>
|
|
<td class="num">@n.TotalFileCount.ToString("N0")</td>
|
|
<td class="num">@((n.TotalSizeBytes / 1048576.0).ToString("F2"))</td>
|
|
<td class="num">@((n.VersionSizeBytes / 1048576.0).ToString("F2"))</td>
|
|
<td>@(n.LastModified?.ToString("yyyy-MM-dd") ?? "")</td>
|
|
</tr>
|
|
}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
}
|
|
|
|
@code {
|
|
private string _siteUrl = string.Empty;
|
|
private bool _includeSubsites, _includeHidden = true, _includeRecycleBin = true;
|
|
private bool _running; private string _status = string.Empty, _error = string.Empty;
|
|
private int _current, _total;
|
|
private List<StorageNode> _results = new();
|
|
private CancellationTokenSource? _cts;
|
|
|
|
private async Task RunScan()
|
|
{
|
|
_error = string.Empty; _results.Clear(); _running = true;
|
|
_cts = new CancellationTokenSource();
|
|
var siteUrl = string.IsNullOrWhiteSpace(_siteUrl) ? Session.CurrentProfile!.TenantUrl : _siteUrl.Trim();
|
|
var progress = new Progress<OperationProgress>(p => { _status = p.Message; _current = p.Current; _total = p.Total; InvokeAsync(StateHasChanged); });
|
|
try
|
|
{
|
|
var ctx = await SessionMgr.GetOrCreateContextAsync(siteUrl, Session.CurrentProfile!, _cts.Token);
|
|
var opts = new StorageScanOptions(IncludeSubsites: _includeSubsites, IncludeHiddenLibraries: _includeHidden, IncludeRecycleBin: _includeRecycleBin);
|
|
_results = (await StorageSvc.CollectStorageAsync(ctx, opts, progress, _cts.Token)).ToList();
|
|
_status = $"Complete: {_results.Count} nodes.";
|
|
}
|
|
catch (OperationCanceledException) { _status = "Cancelled."; }
|
|
catch (Exception ex) { _error = ex.Message; }
|
|
finally { _running = false; await InvokeAsync(StateHasChanged); }
|
|
}
|
|
|
|
private void Cancel() => _cts?.Cancel();
|
|
|
|
private async Task ExportCsv()
|
|
{
|
|
var csv = CsvExport.BuildCsv(_results);
|
|
await WebExport.DownloadCsvAsync(csv, $"storage_{DateTime.Now:yyyyMMdd_HHmmss}.csv");
|
|
}
|
|
private async Task ExportHtml()
|
|
{
|
|
var html = HtmlExport.BuildHtml(_results);
|
|
await WebExport.DownloadHtmlAsync(html, $"storage_{DateTime.Now:yyyyMMdd_HHmmss}.html");
|
|
}
|
|
}
|