mirror of
https://github.com/chylex/Discord-History-Tracker.git
synced 2024-11-25 05:42:45 +01:00
152 lines
5.4 KiB
C#
152 lines
5.4 KiB
C#
using System;
|
|
using System.Collections.Concurrent;
|
|
using System.ComponentModel;
|
|
using System.Diagnostics;
|
|
using System.IO;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.Web;
|
|
using Avalonia.Controls;
|
|
using Avalonia.Platform.Storage;
|
|
using DHT.Desktop.Common;
|
|
using DHT.Desktop.Dialogs.File;
|
|
using DHT.Desktop.Dialogs.Message;
|
|
using DHT.Desktop.Main.Controls;
|
|
using DHT.Desktop.Server;
|
|
using DHT.Server.Data.Filters;
|
|
using DHT.Server.Database;
|
|
using DHT.Server.Database.Export;
|
|
using DHT.Server.Database.Export.Strategy;
|
|
using DHT.Utils.Models;
|
|
using static DHT.Desktop.Program;
|
|
|
|
namespace DHT.Desktop.Main.Pages;
|
|
|
|
sealed class ViewerPageModel : BaseModel, IDisposable {
|
|
public static readonly ConcurrentBag<string> TemporaryFiles = new ();
|
|
|
|
public bool DatabaseToolFilterModeKeep { get; set; } = true;
|
|
public bool DatabaseToolFilterModeRemove { get; set; } = false;
|
|
|
|
private bool hasFilters = false;
|
|
|
|
public bool HasFilters {
|
|
get => hasFilters;
|
|
set => Change(ref hasFilters, value);
|
|
}
|
|
|
|
public MessageFilterPanelModel FilterModel { get; }
|
|
|
|
private readonly Window window;
|
|
private readonly IDatabaseFile db;
|
|
|
|
[Obsolete("Designer")]
|
|
public ViewerPageModel() : this(null!, DummyDatabaseFile.Instance) {}
|
|
|
|
public ViewerPageModel(Window window, IDatabaseFile db) {
|
|
this.window = window;
|
|
this.db = db;
|
|
|
|
FilterModel = new MessageFilterPanelModel(window, db, "Will export");
|
|
FilterModel.FilterPropertyChanged += OnFilterPropertyChanged;
|
|
}
|
|
|
|
public void Dispose() {
|
|
FilterModel.Dispose();
|
|
}
|
|
|
|
private void OnFilterPropertyChanged(object? sender, PropertyChangedEventArgs e) {
|
|
HasFilters = FilterModel.HasAnyFilters;
|
|
}
|
|
|
|
private async Task WriteViewerFile(string path, IViewerExportStrategy strategy) {
|
|
const string ArchiveTag = "/*[ARCHIVE]*/";
|
|
|
|
string indexFile = await Resources.ReadTextAsync("Viewer/index.html");
|
|
string viewerTemplate = indexFile.Replace("/*[JS]*/", await Resources.ReadJoinedAsync("Viewer/scripts/", '\n'))
|
|
.Replace("/*[CSS]*/", await Resources.ReadJoinedAsync("Viewer/styles/", '\n'));
|
|
|
|
viewerTemplate = strategy.ProcessViewerTemplate(viewerTemplate);
|
|
|
|
int viewerArchiveTagStart = viewerTemplate.IndexOf(ArchiveTag);
|
|
int viewerArchiveTagEnd = viewerArchiveTagStart + ArchiveTag.Length;
|
|
|
|
string jsonTempFile = path + ".tmp";
|
|
|
|
await using (var jsonStream = new FileStream(jsonTempFile, FileMode.Create, FileAccess.ReadWrite, FileShare.Read)) {
|
|
await ViewerJsonExport.Generate(jsonStream, strategy, db, FilterModel.CreateFilter());
|
|
|
|
char[] jsonBuffer = new char[Math.Min(32768, jsonStream.Position)];
|
|
jsonStream.Position = 0;
|
|
|
|
await using (var outputStream = new FileStream(path, FileMode.Create, FileAccess.Write, FileShare.Read))
|
|
await using (var outputWriter = new StreamWriter(outputStream, Encoding.UTF8)) {
|
|
await outputWriter.WriteAsync(viewerTemplate[..viewerArchiveTagStart]);
|
|
|
|
using (var jsonReader = new StreamReader(jsonStream, Encoding.UTF8)) {
|
|
int readBytes;
|
|
while ((readBytes = await jsonReader.ReadAsync(jsonBuffer, 0, jsonBuffer.Length)) > 0) {
|
|
string jsonChunk = new string(jsonBuffer, 0, readBytes);
|
|
await outputWriter.WriteAsync(HttpUtility.JavaScriptStringEncode(jsonChunk));
|
|
}
|
|
}
|
|
|
|
await outputWriter.WriteAsync(viewerTemplate[viewerArchiveTagEnd..]);
|
|
}
|
|
}
|
|
|
|
File.Delete(jsonTempFile);
|
|
}
|
|
|
|
public async void OnClickOpenViewer() {
|
|
string rootPath = Path.Combine(Path.GetTempPath(), "DiscordHistoryTracker");
|
|
string filenameBase = Path.GetFileNameWithoutExtension(db.Path) + "-" + DateTime.Now.ToString("yyyy-MM-dd");
|
|
string fullPath = Path.Combine(rootPath, filenameBase + ".html");
|
|
int counter = 0;
|
|
|
|
while (File.Exists(fullPath)) {
|
|
++counter;
|
|
fullPath = Path.Combine(rootPath, filenameBase + "-" + counter + ".html");
|
|
}
|
|
|
|
TemporaryFiles.Add(fullPath);
|
|
|
|
Directory.CreateDirectory(rootPath);
|
|
await WriteViewerFile(fullPath, new LiveViewerExportStrategy(ServerManager.Port, ServerManager.Token));
|
|
|
|
Process.Start(new ProcessStartInfo(fullPath) { UseShellExecute = true });
|
|
}
|
|
|
|
private static readonly FilePickerFileType[] ViewerFileTypes = {
|
|
FileDialogs.CreateFilter("Discord History Viewer", new string[] { "html" }),
|
|
};
|
|
|
|
public async void OnClickSaveViewer() {
|
|
string? path = await window.StorageProvider.SaveFile(new FilePickerSaveOptions {
|
|
Title = "Save Viewer",
|
|
FileTypeChoices = ViewerFileTypes,
|
|
SuggestedFileName = Path.GetFileNameWithoutExtension(db.Path) + ".html",
|
|
SuggestedStartLocation = await FileDialogs.GetSuggestedStartLocation(window, Path.GetDirectoryName(db.Path)),
|
|
});
|
|
|
|
if (path != null) {
|
|
await WriteViewerFile(path, StandaloneViewerExportStrategy.Instance);
|
|
}
|
|
}
|
|
|
|
public async void OnClickApplyFiltersToDatabase() {
|
|
var filter = FilterModel.CreateFilter();
|
|
|
|
if (DatabaseToolFilterModeKeep) {
|
|
if (DialogResult.YesNo.Yes == await Dialog.ShowYesNo(window, "Keep Matching Messages in This Database", db.CountMessages(filter).Pluralize("message") + " will be kept, and the rest will be removed from this database. This action cannot be undone. Proceed?")) {
|
|
db.RemoveMessages(filter, FilterRemovalMode.KeepMatching);
|
|
}
|
|
}
|
|
else if (DatabaseToolFilterModeRemove) {
|
|
if (DialogResult.YesNo.Yes == await Dialog.ShowYesNo(window, "Remove Matching Messages in This Database", db.CountMessages(filter).Pluralize("message") + " will be removed from this database. This action cannot be undone. Proceed?")) {
|
|
db.RemoveMessages(filter, FilterRemovalMode.RemoveMatching);
|
|
}
|
|
}
|
|
}
|
|
}
|