mirror of
https://github.com/Tyrrrz/DiscordChatExporter.git
synced 2026-07-07 22:54:38 +02:00
Compare commits
87 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| a1d34e8fb6 | |||
| 4a35a7b530 | |||
| 247f3a9c5b | |||
| be73f0b92c | |||
| d03be8b1dd | |||
| 9d0d7cd5dd | |||
| b2a48d338a | |||
| 88a4fa792b | |||
| dc79813ad7 | |||
| 6a430cdc76 | |||
| 2a02894d64 | |||
| 8685a3d7e3 | |||
| 130c0b6fe2 | |||
| f153aad3f1 | |||
| 6f1c944cb3 | |||
| de9e7caaeb | |||
| 9711a8cca4 | |||
| 4ab6607e78 | |||
| d74e6453f6 | |||
| ca7fc4d8d1 | |||
| 81ed85a3e0 | |||
| 18979c6a38 | |||
| 5bce4b52ff | |||
| dac7c664d9 | |||
| 6a8579787d | |||
| dbf15c7bee | |||
| a41a4ca8a7 | |||
| c098f4b137 | |||
| ff15257d23 | |||
| 79e43c4144 | |||
| 7bb8038ce9 | |||
| ee27167998 | |||
| 9f4277ae84 | |||
| 70a1c9db8c | |||
| 378f0a20db | |||
| a24fe3906c | |||
| eececb6701 | |||
| d3adf19500 | |||
| a01835efb6 | |||
| 1d39fe9c53 | |||
| 9f6090b3af | |||
| 9fa40dca00 | |||
| 8a4f306012 | |||
| 37be80e9e1 | |||
| 1475ffaf0e | |||
| aa50dd6dc7 | |||
| 539f57f455 | |||
| e1f83997aa | |||
| 26d713a17c | |||
| 5c2e725739 | |||
| bf56902134 | |||
| b4df267372 | |||
| 4ebc681327 | |||
| 5cb6adf19e | |||
| cec8409ac4 | |||
| 3af9421304 | |||
| cc6f930dc6 | |||
| e6aac3cdb9 | |||
| 8f1aec241b | |||
| 41c828eb3e | |||
| 964317dac0 | |||
| 2a223599f9 | |||
| fc38afe6a0 | |||
| 23512dae64 | |||
| 8382ca725d | |||
| 457e14d0b6 | |||
| b830014a46 | |||
| 35e1114318 | |||
| 610bf4baa3 | |||
| d84222ea09 | |||
| cc1bb924e7 | |||
| 0d2ae8b5db | |||
| 632b9f953b | |||
| 9a52c6a6f6 | |||
| fc8c1c5914 | |||
| 279a6aee84 | |||
| 73ab983056 | |||
| e5a2852165 | |||
| 1bf9d9e2e2 | |||
| 9299b95250 | |||
| 5e0a2c6761 | |||
| ccbd11e526 | |||
| 2c36f6a826 | |||
| d6980cef8d | |||
| fa4bb3b693 | |||
| 05c551f80c | |||
| 69cfe1845b |
@@ -0,0 +1,12 @@
|
|||||||
|
{
|
||||||
|
"version": 1,
|
||||||
|
"isRoot": true,
|
||||||
|
"tools": {
|
||||||
|
"xamlstyler.console": {
|
||||||
|
"version": "3.2003.9",
|
||||||
|
"commands": [
|
||||||
|
"xstyler"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
+1
-2
@@ -1,4 +1,3 @@
|
|||||||
github: Tyrrrz
|
github: Tyrrrz
|
||||||
patreon: Tyrrrz
|
patreon: Tyrrrz
|
||||||
open_collective: Tyrrrz
|
custom: ['buymeacoffee.com/Tyrrrz', 'tyrrrz.me/donate']
|
||||||
custom: ['buymeacoffee.com/Tyrrrz']
|
|
||||||
@@ -0,0 +1,66 @@
|
|||||||
|
name: CD
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
tags:
|
||||||
|
- '*'
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
runs-on: windows-latest
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
|
||||||
|
- name: Install .NET Core
|
||||||
|
uses: actions/setup-dotnet@v1.4.0
|
||||||
|
with:
|
||||||
|
dotnet-version: 3.1.100
|
||||||
|
|
||||||
|
- name: Build & publish (CLI)
|
||||||
|
run: dotnet publish DiscordChatExporter.Cli/ -o DiscordChatExporter.Cli/bin/Publish/ --configuration Release
|
||||||
|
|
||||||
|
- name: Build & publish (GUI)
|
||||||
|
run: dotnet publish DiscordChatExporter.Gui/ -o DiscordChatExporter.Gui/bin/Publish/ --configuration Release
|
||||||
|
|
||||||
|
- name: Pack (CLI)
|
||||||
|
run: Compress-Archive -Path DiscordChatExporter.Cli/bin/Publish/* -DestinationPath DiscordChatExporter.Cli/bin/Publish/Archive.zip -Force
|
||||||
|
shell: pwsh
|
||||||
|
|
||||||
|
- name: Pack (GUI)
|
||||||
|
run: Compress-Archive -Path DiscordChatExporter.Gui/bin/Publish/* -DestinationPath DiscordChatExporter.Gui/bin/Publish/Archive.zip -Force
|
||||||
|
shell: pwsh
|
||||||
|
|
||||||
|
- name: Create release
|
||||||
|
id: create_release
|
||||||
|
uses: actions/create-release@v1.0.1
|
||||||
|
env:
|
||||||
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
with:
|
||||||
|
tag_name: ${{ github.ref }}
|
||||||
|
release_name: ${{ github.ref }}
|
||||||
|
body: |
|
||||||
|
[Changelog](https://github.com/Tyrrrz/DiscordChatExporter/blob/master/Changelog.md)
|
||||||
|
draft: false
|
||||||
|
prerelease: false
|
||||||
|
|
||||||
|
- name: Upload release asset (CLI)
|
||||||
|
uses: actions/upload-release-asset@v1.0.2
|
||||||
|
env:
|
||||||
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
with:
|
||||||
|
upload_url: ${{ steps.create_release.outputs.upload_url }}
|
||||||
|
asset_path: DiscordChatExporter.Cli/bin/Publish/Archive.zip
|
||||||
|
asset_name: DiscordChatExporter.CLI.zip
|
||||||
|
asset_content_type: application/zip
|
||||||
|
|
||||||
|
- name: Upload release asset (GUI)
|
||||||
|
uses: actions/upload-release-asset@v1.0.2
|
||||||
|
env:
|
||||||
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
with:
|
||||||
|
upload_url: ${{ steps.create_release.outputs.upload_url }}
|
||||||
|
asset_path: DiscordChatExporter.Gui/bin/Publish/Archive.zip
|
||||||
|
asset_name: DiscordChatExporter.zip
|
||||||
|
asset_content_type: application/zip
|
||||||
@@ -0,0 +1,34 @@
|
|||||||
|
name: CI
|
||||||
|
|
||||||
|
on: [push, pull_request]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
runs-on: windows-latest
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
|
||||||
|
- name: Install .NET Core
|
||||||
|
uses: actions/setup-dotnet@v1.4.0
|
||||||
|
with:
|
||||||
|
dotnet-version: 3.1.100
|
||||||
|
|
||||||
|
- name: Build & publish (CLI)
|
||||||
|
run: dotnet publish DiscordChatExporter.Cli/ -o DiscordChatExporter.Cli/bin/Publish/ --configuration Release
|
||||||
|
|
||||||
|
- name: Build & publish (GUI)
|
||||||
|
run: dotnet publish DiscordChatExporter.Gui/ -o DiscordChatExporter.Gui/bin/Publish/ --configuration Release
|
||||||
|
|
||||||
|
- name: Upload build artifacts (CLI)
|
||||||
|
uses: actions/upload-artifact@v1
|
||||||
|
with:
|
||||||
|
name: DiscordChatExporter.CLI
|
||||||
|
path: DiscordChatExporter.Cli/bin/Publish/
|
||||||
|
|
||||||
|
- name: Upload build artifact (GUI)
|
||||||
|
uses: actions/upload-artifact@v1
|
||||||
|
with:
|
||||||
|
name: DiscordChatExporter
|
||||||
|
path: DiscordChatExporter.Gui/bin/Publish/
|
||||||
+54
-1
@@ -1,8 +1,61 @@
|
|||||||
|
### v2.20 (27-Apr-2020)
|
||||||
|
|
||||||
|
- [CLI] Added environment variables as fallback for `--token` and `--bot` options. They are `DISCORD_TOKEN` and `DISCORD_TOKEN_BOT` respectively.
|
||||||
|
- [GUI] Fixed a crash that occurred if the application was closed in the middle of an auto-update.
|
||||||
|
- [GUI] Added a link to project's wiki in the usage guide.
|
||||||
|
- [HTML] Added full spoiler support for text and images. To spoil the hidden content you now need to click on it, similarly to how it works in Discord. (Thanks [@FM-96](https://github.com/FM-96))
|
||||||
|
- [HTML] Updated grammar for consecutive single-line quotes. Previously they appeared separately, now they're grouped together as if it was one multi-line quote instead.
|
||||||
|
- [HTML] Fixed an issue where messages sent by the same bot but with different usernames were grouped together when they shouldn't be.
|
||||||
|
- [HTML] Updated grammar for single-line code blocks to accept double backticks as synonymous with single backticks. This change makes code blocks appear the same, whether they were inserted manually or using Discord's buggy markdown preview mode.
|
||||||
|
- [HTML] Fixed styling inconsistencies and other minor issues.
|
||||||
|
- [TXT/JSON] Fixed an issue where markdown was not parsed correctly in embed fields.
|
||||||
|
- [HTML] Changed markdown formatting in embeds so it follows the same set of rules as in Discord.
|
||||||
|
- Added channel category to the default file name used when exporting chat logs.
|
||||||
|
- [HTML/TXT/JSON] Added channel category to exported metadata.
|
||||||
|
- [CLI] Updated commands to also show channel category as well as channel name wherever relevant.
|
||||||
|
- Starting with this release, Docker images will have new tags: `stable` for latest stable release and `2.20` for a specific version.
|
||||||
|
|
||||||
|
### v2.19 (26-Mar-2020)
|
||||||
|
|
||||||
|
- Added parallel exporting. This option allows you to export multiple channels faster by doing it in parallel. You can configure the parallel limit in settings (GUI) or with the `--parallel` option (CLI). Default value is `1`, which means there is no parallelization. Warning: be careful when using this option, as this will result in higher volume of concurrent HTTP requests sent to Discord, which might get you flagged. Use at your own risk.
|
||||||
|
- [HTML] Added support for user colors. User names are now appropriately colored according to the assigned guild roles.
|
||||||
|
- [HTML] Added support for nicknames. User names are replaced with nicknames where it's applicable. It's still possible to see the full user name by hovering your mouse over the nickname.
|
||||||
|
- [HTML] Improved styling for mentions to bring it more in line with how it looks in Discord.
|
||||||
|
|
||||||
|
### v2.18 (04-Feb-2020)
|
||||||
|
|
||||||
|
- Added JSON export format. It's a structured data format which is easy to parse. If you're using DiscordChatExporter to export chat logs for further ingestion by another tool, this is most likely the format you will want to use.
|
||||||
|
- [GUI] You can now quickly jump to a specific channel in a list. For example, if you want to jump to a channel named "General", you can simply press the 'g' key in the channel list view. You can also press 'g', 'e' and 'n' in quick succession which will jump to the next channel that starts with "gen". This mechanic is consistent with other Windows applications.
|
||||||
|
- [CLI] Improved help text screen.
|
||||||
|
|
||||||
|
### v2.17 (12-Jan-2020)
|
||||||
|
|
||||||
|
- Fixed an issue where an empty file was produced when exporting a channel with no messages (for specified period). With the new behavior, no file will be created and instead a message will be shown to the user informing of the failure.
|
||||||
|
- [HTML/TXT] Added message count to the bottom of the file. This number shows how many messages were exported as part of the current file. Prior to 2.16 this number was present along with the rest of the metadata at the top, then removed due to changes in the exporter, and now brought back at the end of the file instead.
|
||||||
|
- [HTML] Fixed an issue where some emojis were not properly rendered.
|
||||||
|
- [GUI] Added a setting that lets you configure whether to remember the last used token. Previously it was the default behavior, but now you can disable it if you don't want the token persisted on your system.
|
||||||
|
|
||||||
|
### v2.16 (08-Dec-2019)
|
||||||
|
|
||||||
|
- Migrated from .NET Framework to .NET Core. To run this and future versions of DiscordChatExporter you will need [.NET Core runtime for desktop apps](https://dotnet.microsoft.com/download/dotnet-core/3.1/runtime) (for GUI/CLI version on Windows) or [.NET Core base runtime](https://dotnet.microsoft.com/download/dotnet-core/3.1) (for CLI version on Windows, Linux or macOS).
|
||||||
|
- Reworked the exporter engine to render output using streaming data source. This means that only a very small portion of messages are cached in memory when exporting. In other words, you are only limited by storage space and not how much RAM you have, so you can now export terabytes of chat logs without hitting out of memory exceptions. I still recommend using partitions if you're exporting very large chat logs (250k+ messages) to HTML, unless you want your computer to catch fire when you try to open the export in browser.
|
||||||
|
- Changed how partitioned files are named, due to the fact that total number of partitions is no longer known ahead of time.
|
||||||
|
- Added a warning about automating user accounts to the usage guide in both GUI and CLI versions.
|
||||||
|
- Added support for announcement (news) channels. You will now be able to see them in the list and export them.
|
||||||
|
- Fixed various issues that resulted in exceptions during export process.
|
||||||
|
- [HTML/TXT] Removed message count from the metadata. Due to the fact that the messages are exported as they are streamed, total number of messages is not known ahead of time.
|
||||||
|
- [HTML] Changed default color of the embed color pill to match the theme.
|
||||||
|
- [HTML] Changed emoji parser to be less greedy. As a result it should match fewer character sequences that look like emojis but really aren't, but on the other hand it might miss some actual emojis. This means that some standard emojis (i.e. not custom server emojis) may not look like in Discord. This is a compromise I'm willing to take because detecting emojis in text is really hard to get right and not worth it at all.
|
||||||
|
- [HTML] Some other minor styling adjustments.
|
||||||
|
- [CSV] Replaced semicolons (;) with (,) as separators.
|
||||||
|
|
||||||
|
Please note that CSV export is most likely not going to receive future updates and will remain only as an option for those who wish to use it for text analysis. In other words, it won't contain any of the rich media features like embeds. If you're currently using CSV as a structured output to feed into your program, JSON output will replace that in the future.
|
||||||
|
|
||||||
### v2.15 (15-Sep-2019)
|
### v2.15 (15-Sep-2019)
|
||||||
|
|
||||||
- Improved markdown parser and made it even faster for non-HTML formats.
|
- Improved markdown parser and made it even faster for non-HTML formats.
|
||||||
- [HTML] Added support for block quotes.
|
- [HTML] Added support for block quotes.
|
||||||
- [HTML] Links pointing to a Discord message will now navigate to the linked message inside exported chat log if it's there.
|
- [HTML] Links pointing to a Discord message will now navigate to the linked message inside exported chat log if it's there.
|
||||||
- [HTML] Updated light theme to match how it looks in Discord after recent changes.
|
- [HTML] Updated light theme to match how it looks in Discord after recent changes.
|
||||||
- [HTML] Added indication for when a message is pinned. Pinned messages now have a tinted background.
|
- [HTML] Added indication for when a message is pinned. Pinned messages now have a tinted background.
|
||||||
- [HTML] Fixed an issue where multiline code blocks sometimes had incorrect formatting applied to them.
|
- [HTML] Fixed an issue where multiline code blocks sometimes had incorrect formatting applied to them.
|
||||||
|
|||||||
@@ -1,21 +0,0 @@
|
|||||||
New-Item "$PSScriptRoot\Portable\bin" -ItemType Directory -Force
|
|
||||||
|
|
||||||
# --- GUI ---
|
|
||||||
|
|
||||||
# Get files
|
|
||||||
$files = @()
|
|
||||||
$files += Get-Item -Path "$PSScriptRoot\..\License.txt"
|
|
||||||
$files += Get-ChildItem -Path "$PSScriptRoot\..\DiscordChatExporter.Gui\bin\Release\*" -Include "*.exe", "*.dll", "*.config"
|
|
||||||
|
|
||||||
# Pack into archive
|
|
||||||
$files | Compress-Archive -DestinationPath "$PSScriptRoot\Portable\bin\DiscordChatExporter.zip" -Force
|
|
||||||
|
|
||||||
# --- CLI ---
|
|
||||||
|
|
||||||
# Get files
|
|
||||||
$files = @()
|
|
||||||
$files += Get-Item -Path "$PSScriptRoot\..\License.txt"
|
|
||||||
$files += Get-ChildItem -Path "$PSScriptRoot\..\DiscordChatExporter.Cli\bin\Release\net46\*" -Include "*.exe", "*.dll", "*.config"
|
|
||||||
|
|
||||||
# Pack into archive
|
|
||||||
$files | Compress-Archive -DestinationPath "$PSScriptRoot\Portable\bin\DiscordChatExporter.CLI.zip" -Force
|
|
||||||
@@ -0,0 +1,59 @@
|
|||||||
|
using System;
|
||||||
|
using System.IO;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
using CliFx;
|
||||||
|
using CliFx.Attributes;
|
||||||
|
using CliFx.Utilities;
|
||||||
|
using DiscordChatExporter.Domain.Discord.Models;
|
||||||
|
using DiscordChatExporter.Domain.Exporting;
|
||||||
|
|
||||||
|
namespace DiscordChatExporter.Cli.Commands.Base
|
||||||
|
{
|
||||||
|
public abstract class ExportCommandBase : TokenCommandBase
|
||||||
|
{
|
||||||
|
[CommandOption("format", 'f', Description = "Output file format.")]
|
||||||
|
public ExportFormat ExportFormat { get; set; } = ExportFormat.HtmlDark;
|
||||||
|
|
||||||
|
[CommandOption("output", 'o', Description = "Output file or directory path.")]
|
||||||
|
public string OutputPath { get; set; } = Directory.GetCurrentDirectory();
|
||||||
|
|
||||||
|
[CommandOption("after", Description = "Limit to messages sent after this date.")]
|
||||||
|
public DateTimeOffset? After { get; set; }
|
||||||
|
|
||||||
|
[CommandOption("before", Description = "Limit to messages sent before this date.")]
|
||||||
|
public DateTimeOffset? Before { get; set; }
|
||||||
|
|
||||||
|
[CommandOption("partition", 'p', Description = "Split output into partitions limited to this number of messages.")]
|
||||||
|
public int? PartitionLimit { get; set; }
|
||||||
|
|
||||||
|
[CommandOption("dateformat", Description = "Date format used in output.")]
|
||||||
|
public string DateFormat { get; set; } = "dd-MMM-yy hh:mm tt";
|
||||||
|
|
||||||
|
protected ChannelExporter GetChannelExporter() => new ChannelExporter(GetDiscordClient());
|
||||||
|
|
||||||
|
protected async ValueTask ExportAsync(IConsole console, Guild guild, Channel channel)
|
||||||
|
{
|
||||||
|
console.Output.Write($"Exporting channel '{channel.Category} / {channel.Name}'... ");
|
||||||
|
var progress = console.CreateProgressTicker();
|
||||||
|
|
||||||
|
await GetChannelExporter().ExportAsync(guild, channel,
|
||||||
|
OutputPath, ExportFormat, DateFormat, PartitionLimit,
|
||||||
|
After, Before, progress);
|
||||||
|
|
||||||
|
console.Output.WriteLine();
|
||||||
|
console.Output.WriteLine("Done.");
|
||||||
|
}
|
||||||
|
|
||||||
|
protected async ValueTask ExportAsync(IConsole console, Channel channel)
|
||||||
|
{
|
||||||
|
var guild = await GetDiscordClient().GetGuildAsync(channel.GuildId);
|
||||||
|
await ExportAsync(console, guild, channel);
|
||||||
|
}
|
||||||
|
|
||||||
|
protected async ValueTask ExportAsync(IConsole console, string channelId)
|
||||||
|
{
|
||||||
|
var channel = await GetDiscordClient().GetChannelAsync(channelId);
|
||||||
|
await ExportAsync(console, channel);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,66 @@
|
|||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Threading;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
using CliFx;
|
||||||
|
using CliFx.Attributes;
|
||||||
|
using CliFx.Utilities;
|
||||||
|
using DiscordChatExporter.Domain.Discord.Models;
|
||||||
|
using DiscordChatExporter.Domain.Exceptions;
|
||||||
|
using DiscordChatExporter.Domain.Utilities;
|
||||||
|
using Gress;
|
||||||
|
using Tyrrrz.Extensions;
|
||||||
|
|
||||||
|
namespace DiscordChatExporter.Cli.Commands.Base
|
||||||
|
{
|
||||||
|
public abstract class ExportMultipleCommandBase : ExportCommandBase
|
||||||
|
{
|
||||||
|
[CommandOption("parallel", Description = "Export this number of separate channels in parallel.")]
|
||||||
|
public int ParallelLimit { get; set; } = 1;
|
||||||
|
|
||||||
|
protected async ValueTask ExportMultipleAsync(IConsole console, IReadOnlyList<Channel> channels)
|
||||||
|
{
|
||||||
|
// This uses a separate route from ExportCommandBase because the progress ticker is not thread-safe
|
||||||
|
// Ugly code ahead. Will need to refactor.
|
||||||
|
|
||||||
|
console.Output.Write($"Exporting {channels.Count} channels... ");
|
||||||
|
var progress = console.CreateProgressTicker();
|
||||||
|
|
||||||
|
var operations = progress.Wrap().CreateOperations(channels.Count);
|
||||||
|
|
||||||
|
var errors = new List<string>();
|
||||||
|
|
||||||
|
var successfulExportCount = 0;
|
||||||
|
await channels.Zip(operations).ParallelForEachAsync(async tuple =>
|
||||||
|
{
|
||||||
|
var (channel, operation) = tuple;
|
||||||
|
|
||||||
|
try
|
||||||
|
{
|
||||||
|
var guild = await GetDiscordClient().GetGuildAsync(channel.GuildId);
|
||||||
|
|
||||||
|
await GetChannelExporter().ExportAsync(guild, channel,
|
||||||
|
OutputPath, ExportFormat, DateFormat, PartitionLimit,
|
||||||
|
After, Before, operation);
|
||||||
|
|
||||||
|
Interlocked.Increment(ref successfulExportCount);
|
||||||
|
}
|
||||||
|
catch (DiscordChatExporterException ex) when (!ex.IsCritical)
|
||||||
|
{
|
||||||
|
errors.Add(ex.Message);
|
||||||
|
}
|
||||||
|
finally
|
||||||
|
{
|
||||||
|
operation.Dispose();
|
||||||
|
}
|
||||||
|
}, ParallelLimit.ClampMin(1));
|
||||||
|
|
||||||
|
console.Output.WriteLine();
|
||||||
|
|
||||||
|
foreach (var error in errors)
|
||||||
|
console.Error.WriteLine(error);
|
||||||
|
|
||||||
|
console.Output.WriteLine($"Successfully exported {successfulExportCount} channel(s).");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,24 @@
|
|||||||
|
using System.Threading.Tasks;
|
||||||
|
using CliFx;
|
||||||
|
using CliFx.Attributes;
|
||||||
|
using DiscordChatExporter.Domain.Discord;
|
||||||
|
|
||||||
|
namespace DiscordChatExporter.Cli.Commands.Base
|
||||||
|
{
|
||||||
|
public abstract class TokenCommandBase : ICommand
|
||||||
|
{
|
||||||
|
[CommandOption("token", 't', IsRequired = true, EnvironmentVariableName = "DISCORD_TOKEN",
|
||||||
|
Description = "Authorization token.")]
|
||||||
|
public string TokenValue { get; set; } = "";
|
||||||
|
|
||||||
|
[CommandOption("bot", 'b', EnvironmentVariableName = "DISCORD_TOKEN_BOT",
|
||||||
|
Description = "Whether this authorization token belongs to a bot.")]
|
||||||
|
public bool IsBotToken { get; set; }
|
||||||
|
|
||||||
|
protected AuthToken GetAuthToken() => new AuthToken(IsBotToken ? AuthTokenType.Bot : AuthTokenType.User, TokenValue);
|
||||||
|
|
||||||
|
protected DiscordClient GetDiscordClient() => new DiscordClient(GetAuthToken());
|
||||||
|
|
||||||
|
public abstract ValueTask ExecuteAsync(IConsole console);
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1,28 +1,16 @@
|
|||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
|
using CliFx;
|
||||||
using CliFx.Attributes;
|
using CliFx.Attributes;
|
||||||
using CliFx.Services;
|
using DiscordChatExporter.Cli.Commands.Base;
|
||||||
using DiscordChatExporter.Core.Services;
|
|
||||||
|
|
||||||
namespace DiscordChatExporter.Cli.Commands
|
namespace DiscordChatExporter.Cli.Commands
|
||||||
{
|
{
|
||||||
[Command("export", Description = "Export a channel.")]
|
[Command("export", Description = "Export a channel.")]
|
||||||
public class ExportChannelCommand : ExportCommandBase
|
public class ExportChannelCommand : ExportCommandBase
|
||||||
{
|
{
|
||||||
[CommandOption("channel", 'c', IsRequired = true, Description= "Channel ID.")]
|
[CommandOption("channel", 'c', IsRequired = true, Description = "Channel ID.")]
|
||||||
public string ChannelId { get; set; }
|
public string ChannelId { get; set; } = "";
|
||||||
|
|
||||||
public ExportChannelCommand(SettingsService settingsService, DataService dataService, ExportService exportService)
|
public override async ValueTask ExecuteAsync(IConsole console) => await ExportAsync(console, ChannelId);
|
||||||
: base(settingsService, dataService, exportService)
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
public override async Task ExecuteAsync(IConsole console)
|
|
||||||
{
|
|
||||||
// Get channel
|
|
||||||
var channel = await DataService.GetChannelAsync(GetToken(), ChannelId);
|
|
||||||
|
|
||||||
// Export
|
|
||||||
await ExportChannelAsync(console, channel);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -1,78 +0,0 @@
|
|||||||
using System;
|
|
||||||
using System.IO;
|
|
||||||
using System.Threading.Tasks;
|
|
||||||
using CliFx.Attributes;
|
|
||||||
using CliFx.Services;
|
|
||||||
using DiscordChatExporter.Cli.Internal;
|
|
||||||
using DiscordChatExporter.Core.Models;
|
|
||||||
using DiscordChatExporter.Core.Services;
|
|
||||||
using DiscordChatExporter.Core.Services.Helpers;
|
|
||||||
using Tyrrrz.Extensions;
|
|
||||||
|
|
||||||
namespace DiscordChatExporter.Cli.Commands
|
|
||||||
{
|
|
||||||
public abstract class ExportCommandBase : TokenCommandBase
|
|
||||||
{
|
|
||||||
protected SettingsService SettingsService { get; }
|
|
||||||
|
|
||||||
protected ExportService ExportService { get; }
|
|
||||||
|
|
||||||
|
|
||||||
[CommandOption("format", 'f', Description = "Output file format.")]
|
|
||||||
public ExportFormat ExportFormat { get; set; } = ExportFormat.HtmlDark;
|
|
||||||
|
|
||||||
[CommandOption("output", 'o', Description = "Output file or directory path.")]
|
|
||||||
public string OutputPath { get; set; }
|
|
||||||
|
|
||||||
[CommandOption("after",Description = "Limit to messages sent after this date.")]
|
|
||||||
public DateTimeOffset? After { get; set; }
|
|
||||||
|
|
||||||
[CommandOption("before",Description = "Limit to messages sent before this date.")]
|
|
||||||
public DateTimeOffset? Before { get; set; }
|
|
||||||
|
|
||||||
[CommandOption("partition", 'p', Description = "Split output into partitions limited to this number of messages.")]
|
|
||||||
public int? PartitionLimit { get; set; }
|
|
||||||
|
|
||||||
[CommandOption("dateformat", Description = "Date format used in output.")]
|
|
||||||
public string DateFormat { get; set; }
|
|
||||||
|
|
||||||
protected ExportCommandBase(SettingsService settingsService, DataService dataService, ExportService exportService)
|
|
||||||
: base(dataService)
|
|
||||||
{
|
|
||||||
SettingsService = settingsService;
|
|
||||||
ExportService = exportService;
|
|
||||||
}
|
|
||||||
|
|
||||||
protected async Task ExportChannelAsync(IConsole console, Channel channel)
|
|
||||||
{
|
|
||||||
// Configure settings
|
|
||||||
if (!DateFormat.IsNullOrWhiteSpace())
|
|
||||||
SettingsService.DateFormat = DateFormat;
|
|
||||||
|
|
||||||
console.Output.Write($"Exporting channel [{channel.Name}]... ");
|
|
||||||
using (var progress = new InlineProgress(console))
|
|
||||||
{
|
|
||||||
// Get chat log
|
|
||||||
var chatLog = await DataService.GetChatLogAsync(GetToken(), channel, After, Before, progress);
|
|
||||||
|
|
||||||
// Generate file path if not set or is a directory
|
|
||||||
var filePath = OutputPath;
|
|
||||||
if (filePath.IsNullOrWhiteSpace() || ExportHelper.IsDirectoryPath(filePath))
|
|
||||||
{
|
|
||||||
// Generate default file name
|
|
||||||
var fileName = ExportHelper.GetDefaultExportFileName(ExportFormat, chatLog.Guild,
|
|
||||||
chatLog.Channel, After, Before);
|
|
||||||
|
|
||||||
// Combine paths
|
|
||||||
filePath = Path.Combine(filePath ?? "", fileName);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Export
|
|
||||||
await ExportService.ExportChatLogAsync(chatLog, filePath, ExportFormat, PartitionLimit);
|
|
||||||
|
|
||||||
// Report successful completion
|
|
||||||
progress.ReportCompletion();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,45 +1,19 @@
|
|||||||
using System.Linq;
|
using System.Threading.Tasks;
|
||||||
using System.Net;
|
using CliFx;
|
||||||
using System.Threading.Tasks;
|
|
||||||
using CliFx.Attributes;
|
using CliFx.Attributes;
|
||||||
using CliFx.Services;
|
using DiscordChatExporter.Cli.Commands.Base;
|
||||||
using DiscordChatExporter.Core.Services;
|
using DiscordChatExporter.Domain.Discord.Models;
|
||||||
using DiscordChatExporter.Core.Services.Exceptions;
|
using DiscordChatExporter.Domain.Utilities;
|
||||||
|
|
||||||
namespace DiscordChatExporter.Cli.Commands
|
namespace DiscordChatExporter.Cli.Commands
|
||||||
{
|
{
|
||||||
[Command("exportdm", Description = "Export all direct message channels.")]
|
[Command("exportdm", Description = "Export all direct message channels.")]
|
||||||
public class ExportDirectMessagesCommand : ExportCommandBase
|
public class ExportDirectMessagesCommand : ExportMultipleCommandBase
|
||||||
{
|
{
|
||||||
public ExportDirectMessagesCommand(SettingsService settingsService, DataService dataService, ExportService exportService)
|
public override async ValueTask ExecuteAsync(IConsole console)
|
||||||
: base(settingsService, dataService, exportService)
|
|
||||||
{
|
{
|
||||||
}
|
var dmChannels = await GetDiscordClient().GetGuildChannelsAsync(Guild.DirectMessages.Id);
|
||||||
|
await ExportMultipleAsync(console, dmChannels);
|
||||||
public override async Task ExecuteAsync(IConsole console)
|
|
||||||
{
|
|
||||||
// Get channels
|
|
||||||
var channels = await DataService.GetDirectMessageChannelsAsync(GetToken());
|
|
||||||
|
|
||||||
// Order channels
|
|
||||||
channels = channels.OrderBy(c => c.Name).ToArray();
|
|
||||||
|
|
||||||
// Loop through channels
|
|
||||||
foreach (var channel in channels)
|
|
||||||
{
|
|
||||||
try
|
|
||||||
{
|
|
||||||
await ExportChannelAsync(console, channel);
|
|
||||||
}
|
|
||||||
catch (HttpErrorStatusCodeException ex) when (ex.StatusCode == HttpStatusCode.Forbidden)
|
|
||||||
{
|
|
||||||
console.Error.WriteLine("You don't have access to this channel.");
|
|
||||||
}
|
|
||||||
catch (HttpErrorStatusCodeException ex) when (ex.StatusCode == HttpStatusCode.NotFound)
|
|
||||||
{
|
|
||||||
console.Error.WriteLine("This channel doesn't exist.");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -1,49 +1,21 @@
|
|||||||
using System.Linq;
|
using System.Threading.Tasks;
|
||||||
using System.Net;
|
using CliFx;
|
||||||
using System.Threading.Tasks;
|
|
||||||
using CliFx.Attributes;
|
using CliFx.Attributes;
|
||||||
using CliFx.Services;
|
using DiscordChatExporter.Cli.Commands.Base;
|
||||||
using DiscordChatExporter.Core.Models;
|
using DiscordChatExporter.Domain.Utilities;
|
||||||
using DiscordChatExporter.Core.Services;
|
|
||||||
using DiscordChatExporter.Core.Services.Exceptions;
|
|
||||||
|
|
||||||
namespace DiscordChatExporter.Cli.Commands
|
namespace DiscordChatExporter.Cli.Commands
|
||||||
{
|
{
|
||||||
[Command("exportguild", Description = "Export all channels within specified guild.")]
|
[Command("exportguild", Description = "Export all channels within specified guild.")]
|
||||||
public class ExportGuildCommand : ExportCommandBase
|
public class ExportGuildCommand : ExportMultipleCommandBase
|
||||||
{
|
{
|
||||||
[CommandOption("guild", 'g', IsRequired = true, Description = "Guild ID.")]
|
[CommandOption("guild", 'g', IsRequired = true, Description = "Guild ID.")]
|
||||||
public string GuildId { get; set; }
|
public string GuildId { get; set; } = "";
|
||||||
|
|
||||||
public ExportGuildCommand(SettingsService settingsService, DataService dataService, ExportService exportService)
|
public override async ValueTask ExecuteAsync(IConsole console)
|
||||||
: base(settingsService, dataService, exportService)
|
|
||||||
{
|
{
|
||||||
}
|
var guildChannels = await GetDiscordClient().GetGuildChannelsAsync(GuildId);
|
||||||
|
await ExportMultipleAsync(console, guildChannels);
|
||||||
public override async Task ExecuteAsync(IConsole console)
|
|
||||||
{
|
|
||||||
// Get channels
|
|
||||||
var channels = await DataService.GetGuildChannelsAsync(GetToken(), GuildId);
|
|
||||||
|
|
||||||
// Filter and order channels
|
|
||||||
channels = channels.Where(c => c.Type == ChannelType.GuildTextChat).OrderBy(c => c.Name).ToArray();
|
|
||||||
|
|
||||||
// Loop through channels
|
|
||||||
foreach (var channel in channels)
|
|
||||||
{
|
|
||||||
try
|
|
||||||
{
|
|
||||||
await ExportChannelAsync(console, channel);
|
|
||||||
}
|
|
||||||
catch (HttpErrorStatusCodeException ex) when (ex.StatusCode == HttpStatusCode.Forbidden)
|
|
||||||
{
|
|
||||||
console.Error.WriteLine("You don't have access to this channel.");
|
|
||||||
}
|
|
||||||
catch (HttpErrorStatusCodeException ex) when (ex.StatusCode == HttpStatusCode.NotFound)
|
|
||||||
{
|
|
||||||
console.Error.WriteLine("This channel doesn't exist.");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -1,9 +1,9 @@
|
|||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
|
using CliFx;
|
||||||
using CliFx.Attributes;
|
using CliFx.Attributes;
|
||||||
using CliFx.Services;
|
using DiscordChatExporter.Cli.Commands.Base;
|
||||||
using DiscordChatExporter.Core.Models;
|
using DiscordChatExporter.Domain.Utilities;
|
||||||
using DiscordChatExporter.Core.Services;
|
|
||||||
|
|
||||||
namespace DiscordChatExporter.Cli.Commands
|
namespace DiscordChatExporter.Cli.Commands
|
||||||
{
|
{
|
||||||
@@ -11,24 +11,14 @@ namespace DiscordChatExporter.Cli.Commands
|
|||||||
public class GetChannelsCommand : TokenCommandBase
|
public class GetChannelsCommand : TokenCommandBase
|
||||||
{
|
{
|
||||||
[CommandOption("guild", 'g', IsRequired = true, Description = "Guild ID.")]
|
[CommandOption("guild", 'g', IsRequired = true, Description = "Guild ID.")]
|
||||||
public string GuildId { get; set; }
|
public string GuildId { get; set; } = "";
|
||||||
|
|
||||||
public GetChannelsCommand(DataService dataService)
|
public override async ValueTask ExecuteAsync(IConsole console)
|
||||||
: base(dataService)
|
|
||||||
{
|
{
|
||||||
}
|
var guildChannels = await GetDiscordClient().GetGuildChannelsAsync(GuildId);
|
||||||
|
|
||||||
public override async Task ExecuteAsync(IConsole console)
|
foreach (var channel in guildChannels.OrderBy(c => c.Category).ThenBy(c => c.Name))
|
||||||
{
|
console.Output.WriteLine($"{channel.Id} | {channel.Category} / {channel.Name}");
|
||||||
// Get channels
|
|
||||||
var channels = await DataService.GetGuildChannelsAsync(GetToken(), GuildId);
|
|
||||||
|
|
||||||
// Filter and order channels
|
|
||||||
channels = channels.Where(c => c.Type == ChannelType.GuildTextChat).OrderBy(c => c.Name).ToArray();
|
|
||||||
|
|
||||||
// Print result
|
|
||||||
foreach (var channel in channels)
|
|
||||||
console.Output.WriteLine($"{channel.Id} | {channel.Name}");
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -1,30 +1,22 @@
|
|||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
|
using CliFx;
|
||||||
using CliFx.Attributes;
|
using CliFx.Attributes;
|
||||||
using CliFx.Services;
|
using DiscordChatExporter.Cli.Commands.Base;
|
||||||
using DiscordChatExporter.Core.Services;
|
using DiscordChatExporter.Domain.Discord.Models;
|
||||||
|
using DiscordChatExporter.Domain.Utilities;
|
||||||
|
|
||||||
namespace DiscordChatExporter.Cli.Commands
|
namespace DiscordChatExporter.Cli.Commands
|
||||||
{
|
{
|
||||||
[Command("dm", Description = "Get the list of direct message channels.")]
|
[Command("dm", Description = "Get the list of direct message channels.")]
|
||||||
public class GetDirectMessageChannelsCommand : TokenCommandBase
|
public class GetDirectMessageChannelsCommand : TokenCommandBase
|
||||||
{
|
{
|
||||||
public GetDirectMessageChannelsCommand(DataService dataService)
|
public override async ValueTask ExecuteAsync(IConsole console)
|
||||||
: base(dataService)
|
|
||||||
{
|
{
|
||||||
}
|
var dmChannels = await GetDiscordClient().GetGuildChannelsAsync(Guild.DirectMessages.Id);
|
||||||
|
|
||||||
public override async Task ExecuteAsync(IConsole console)
|
foreach (var channel in dmChannels.OrderBy(c => c.Category).ThenBy(c => c.Name))
|
||||||
{
|
console.Output.WriteLine($"{channel.Id} | {channel.Category} / {channel.Name}");
|
||||||
// Get channels
|
|
||||||
var channels = await DataService.GetDirectMessageChannelsAsync(GetToken());
|
|
||||||
|
|
||||||
// Order channels
|
|
||||||
channels = channels.OrderBy(c => c.Name).ToArray();
|
|
||||||
|
|
||||||
// Print result
|
|
||||||
foreach (var channel in channels)
|
|
||||||
console.Output.WriteLine($"{channel.Id} | {channel.Name}");
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -1,29 +1,20 @@
|
|||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
|
using CliFx;
|
||||||
using CliFx.Attributes;
|
using CliFx.Attributes;
|
||||||
using CliFx.Services;
|
using DiscordChatExporter.Cli.Commands.Base;
|
||||||
using DiscordChatExporter.Core.Services;
|
using DiscordChatExporter.Domain.Utilities;
|
||||||
|
|
||||||
namespace DiscordChatExporter.Cli.Commands
|
namespace DiscordChatExporter.Cli.Commands
|
||||||
{
|
{
|
||||||
[Command("guilds", Description = "Get the list of accessible guilds.")]
|
[Command("guilds", Description = "Get the list of accessible guilds.")]
|
||||||
public class GetGuildsCommand : TokenCommandBase
|
public class GetGuildsCommand : TokenCommandBase
|
||||||
{
|
{
|
||||||
public GetGuildsCommand(DataService dataService)
|
public override async ValueTask ExecuteAsync(IConsole console)
|
||||||
: base(dataService)
|
|
||||||
{
|
{
|
||||||
}
|
var guilds = await GetDiscordClient().GetUserGuildsAsync();
|
||||||
|
|
||||||
public override async Task ExecuteAsync(IConsole console)
|
foreach (var guild in guilds.OrderBy(g => g.Name))
|
||||||
{
|
|
||||||
// Get guilds
|
|
||||||
var guilds = await DataService.GetUserGuildsAsync(GetToken());
|
|
||||||
|
|
||||||
// Order guilds
|
|
||||||
guilds = guilds.OrderBy(g => g.Name).ToArray();
|
|
||||||
|
|
||||||
// Print result
|
|
||||||
foreach (var guild in guilds)
|
|
||||||
console.Output.WriteLine($"{guild.Id} | {guild.Name}");
|
console.Output.WriteLine($"{guild.Id} | {guild.Name}");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2,14 +2,13 @@
|
|||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using CliFx;
|
using CliFx;
|
||||||
using CliFx.Attributes;
|
using CliFx.Attributes;
|
||||||
using CliFx.Services;
|
|
||||||
|
|
||||||
namespace DiscordChatExporter.Cli.Commands
|
namespace DiscordChatExporter.Cli.Commands
|
||||||
{
|
{
|
||||||
[Command("guide", Description = "Explains how to obtain token, guild or channel ID.")]
|
[Command("guide", Description = "Explains how to obtain token, guild or channel ID.")]
|
||||||
public class GuideCommand : ICommand
|
public class GuideCommand : ICommand
|
||||||
{
|
{
|
||||||
public Task ExecuteAsync(IConsole console)
|
public ValueTask ExecuteAsync(IConsole console)
|
||||||
{
|
{
|
||||||
console.WithForegroundColor(ConsoleColor.White, () => console.Output.WriteLine("To get user token:"));
|
console.WithForegroundColor(ConsoleColor.White, () => console.Output.WriteLine("To get user token:"));
|
||||||
console.Output.WriteLine(" 1. Open Discord");
|
console.Output.WriteLine(" 1. Open Discord");
|
||||||
@@ -18,6 +17,7 @@ namespace DiscordChatExporter.Cli.Commands
|
|||||||
console.Output.WriteLine(" 4. Select \"Local Storage\" > \"https://discordapp.com\" on the left");
|
console.Output.WriteLine(" 4. Select \"Local Storage\" > \"https://discordapp.com\" on the left");
|
||||||
console.Output.WriteLine(" 5. Press Ctrl+R to reload");
|
console.Output.WriteLine(" 5. Press Ctrl+R to reload");
|
||||||
console.Output.WriteLine(" 6. Find \"token\" at the bottom and copy the value");
|
console.Output.WriteLine(" 6. Find \"token\" at the bottom and copy the value");
|
||||||
|
console.Output.WriteLine(" * Automating user accounts is technically against TOS, use at your own risk.");
|
||||||
console.Output.WriteLine();
|
console.Output.WriteLine();
|
||||||
|
|
||||||
console.WithForegroundColor(ConsoleColor.White, () => console.Output.WriteLine("To get bot token:"));
|
console.WithForegroundColor(ConsoleColor.White, () => console.Output.WriteLine("To get bot token:"));
|
||||||
@@ -44,10 +44,10 @@ namespace DiscordChatExporter.Cli.Commands
|
|||||||
console.Output.WriteLine(" 6. Copy the first long sequence of numbers inside the URL");
|
console.Output.WriteLine(" 6. Copy the first long sequence of numbers inside the URL");
|
||||||
console.Output.WriteLine();
|
console.Output.WriteLine();
|
||||||
|
|
||||||
console.Output.WriteLine("If you still have unanswered questions, check out the wiki:");
|
console.Output.WriteLine("For more information, check out the wiki:");
|
||||||
console.Output.WriteLine("https://github.com/Tyrrrz/DiscordChatExporter/wiki");
|
console.Output.WriteLine("https://github.com/Tyrrrz/DiscordChatExporter/wiki");
|
||||||
|
|
||||||
return Task.CompletedTask;
|
return default;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -1,29 +0,0 @@
|
|||||||
using System.Threading.Tasks;
|
|
||||||
using CliFx;
|
|
||||||
using CliFx.Attributes;
|
|
||||||
using CliFx.Services;
|
|
||||||
using DiscordChatExporter.Core.Models;
|
|
||||||
using DiscordChatExporter.Core.Services;
|
|
||||||
|
|
||||||
namespace DiscordChatExporter.Cli.Commands
|
|
||||||
{
|
|
||||||
public abstract class TokenCommandBase : ICommand
|
|
||||||
{
|
|
||||||
protected DataService DataService { get; }
|
|
||||||
|
|
||||||
[CommandOption("token", 't', IsRequired = true, Description = "Authorization token.")]
|
|
||||||
public string TokenValue { get; set; }
|
|
||||||
|
|
||||||
[CommandOption("bot", 'b', Description = "Whether this authorization token belongs to a bot.")]
|
|
||||||
public bool IsBotToken { get; set; }
|
|
||||||
|
|
||||||
protected TokenCommandBase(DataService dataService)
|
|
||||||
{
|
|
||||||
DataService = dataService;
|
|
||||||
}
|
|
||||||
|
|
||||||
protected AuthToken GetToken() => new AuthToken(IsBotToken ? AuthTokenType.Bot : AuthTokenType.User, TokenValue);
|
|
||||||
|
|
||||||
public abstract Task ExecuteAsync(IConsole console);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,25 +1,19 @@
|
|||||||
<Project Sdk="Microsoft.NET.Sdk">
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
|
<Import Project="../DiscordChatExporter.props" />
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<OutputType>Exe</OutputType>
|
<OutputType>Exe</OutputType>
|
||||||
<TargetFrameworks>net46;netcoreapp2.1</TargetFrameworks>
|
|
||||||
<Version>2.15</Version>
|
|
||||||
<Company>Tyrrrz</Company>
|
|
||||||
<Copyright>Copyright (c) Alexey Golub</Copyright>
|
|
||||||
<ApplicationIcon>..\favicon.ico</ApplicationIcon>
|
<ApplicationIcon>..\favicon.ico</ApplicationIcon>
|
||||||
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
|
|
||||||
<LangVersion>latest</LangVersion>
|
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="CliFx" Version="0.0.5" />
|
<PackageReference Include="CliFx" Version="1.1.0" />
|
||||||
<PackageReference Include="Stylet" Version="1.2.0" />
|
<PackageReference Include="Gress" Version="1.2.0" />
|
||||||
<PackageReference Include="Tyrrrz.Extensions" Version="1.6.2" />
|
<PackageReference Include="Tyrrrz.Extensions" Version="1.6.5" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ProjectReference Include="..\DiscordChatExporter.Core.Models\DiscordChatExporter.Core.Models.csproj" />
|
<ProjectReference Include="..\DiscordChatExporter.Domain\DiscordChatExporter.Domain.csproj" />
|
||||||
<ProjectReference Include="..\DiscordChatExporter.Core.Services\DiscordChatExporter.Core.Services.csproj" />
|
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
</Project>
|
</Project>
|
||||||
@@ -1,48 +0,0 @@
|
|||||||
using System;
|
|
||||||
using CliFx.Services;
|
|
||||||
|
|
||||||
namespace DiscordChatExporter.Cli.Internal
|
|
||||||
{
|
|
||||||
internal class InlineProgress : IProgress<double>, IDisposable
|
|
||||||
{
|
|
||||||
private readonly IConsole _console;
|
|
||||||
|
|
||||||
private string _lastOutput = "";
|
|
||||||
private bool _isCompleted;
|
|
||||||
|
|
||||||
public InlineProgress(IConsole console)
|
|
||||||
{
|
|
||||||
_console = console;
|
|
||||||
}
|
|
||||||
|
|
||||||
private void ResetCursorPosition()
|
|
||||||
{
|
|
||||||
foreach (var c in _lastOutput)
|
|
||||||
_console.Output.Write('\b');
|
|
||||||
}
|
|
||||||
|
|
||||||
public void Report(double progress)
|
|
||||||
{
|
|
||||||
// If output is not redirected - reset cursor position and write progress
|
|
||||||
if (!_console.IsOutputRedirected)
|
|
||||||
{
|
|
||||||
ResetCursorPosition();
|
|
||||||
_console.Output.Write(_lastOutput = $"{progress:P1}");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public void ReportCompletion() => _isCompleted = true;
|
|
||||||
|
|
||||||
public void Dispose()
|
|
||||||
{
|
|
||||||
// If output is not redirected - reset cursor position
|
|
||||||
if (!_console.IsOutputRedirected)
|
|
||||||
{
|
|
||||||
ResetCursorPosition();
|
|
||||||
}
|
|
||||||
|
|
||||||
// Inform about completion
|
|
||||||
_console.Output.WriteLine(_isCompleted ? "Completed ✓" : "Failed X");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,35 +1,14 @@
|
|||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using CliFx;
|
using CliFx;
|
||||||
using DiscordChatExporter.Core.Services;
|
|
||||||
using StyletIoC;
|
|
||||||
|
|
||||||
namespace DiscordChatExporter.Cli
|
namespace DiscordChatExporter.Cli
|
||||||
{
|
{
|
||||||
public static class Program
|
public static class Program
|
||||||
{
|
{
|
||||||
private static IContainer BuildContainer()
|
public static async Task<int> Main(string[] args) =>
|
||||||
{
|
await new CliApplicationBuilder()
|
||||||
var builder = new StyletIoCBuilder();
|
|
||||||
|
|
||||||
// Autobind the .Services assembly
|
|
||||||
builder.Autobind(typeof(DataService).Assembly);
|
|
||||||
|
|
||||||
// Bind settings as singleton
|
|
||||||
builder.Bind<SettingsService>().ToSelf().InSingletonScope();
|
|
||||||
|
|
||||||
// Set instance
|
|
||||||
return builder.BuildContainer();
|
|
||||||
}
|
|
||||||
|
|
||||||
public static Task<int> Main(string[] args)
|
|
||||||
{
|
|
||||||
var container = BuildContainer();
|
|
||||||
|
|
||||||
return new CliApplicationBuilder()
|
|
||||||
.AddCommandsFromThisAssembly()
|
.AddCommandsFromThisAssembly()
|
||||||
.UseCommandFactory(schema => (ICommand) container.Get(schema.Type))
|
|
||||||
.Build()
|
.Build()
|
||||||
.RunAsync(args);
|
.RunAsync(args);
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -1,12 +0,0 @@
|
|||||||
<Project Sdk="Microsoft.NET.Sdk">
|
|
||||||
|
|
||||||
<PropertyGroup>
|
|
||||||
<TargetFrameworks>net46;netstandard2.0</TargetFrameworks>
|
|
||||||
<LangVersion>latest</LangVersion>
|
|
||||||
</PropertyGroup>
|
|
||||||
|
|
||||||
<ItemGroup>
|
|
||||||
<PackageReference Include="Tyrrrz.Extensions" Version="1.6.2" />
|
|
||||||
</ItemGroup>
|
|
||||||
|
|
||||||
</Project>
|
|
||||||
@@ -1,7 +0,0 @@
|
|||||||
namespace DiscordChatExporter.Core.Markdown.Internal
|
|
||||||
{
|
|
||||||
internal interface IMatcher<T>
|
|
||||||
{
|
|
||||||
ParsedMatch<T> Match(StringPart stringPart);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,19 +0,0 @@
|
|||||||
using System.Collections.Generic;
|
|
||||||
|
|
||||||
namespace DiscordChatExporter.Core.Markdown.Nodes
|
|
||||||
{
|
|
||||||
public class FormattedNode : Node
|
|
||||||
{
|
|
||||||
public TextFormatting Formatting { get; }
|
|
||||||
|
|
||||||
public IReadOnlyList<Node> Children { get; }
|
|
||||||
|
|
||||||
public FormattedNode(TextFormatting formatting, IReadOnlyList<Node> children)
|
|
||||||
{
|
|
||||||
Formatting = formatting;
|
|
||||||
Children = children;
|
|
||||||
}
|
|
||||||
|
|
||||||
public override string ToString() => $"<{Formatting}> ({Children.Count} direct children)";
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,10 +0,0 @@
|
|||||||
namespace DiscordChatExporter.Core.Markdown.Nodes
|
|
||||||
{
|
|
||||||
public enum MentionType
|
|
||||||
{
|
|
||||||
Meta,
|
|
||||||
User,
|
|
||||||
Channel,
|
|
||||||
Role
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,6 +0,0 @@
|
|||||||
namespace DiscordChatExporter.Core.Markdown.Nodes
|
|
||||||
{
|
|
||||||
public abstract class Node
|
|
||||||
{
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,12 +0,0 @@
|
|||||||
namespace DiscordChatExporter.Core.Markdown.Nodes
|
|
||||||
{
|
|
||||||
public enum TextFormatting
|
|
||||||
{
|
|
||||||
Bold,
|
|
||||||
Italic,
|
|
||||||
Underline,
|
|
||||||
Strikethrough,
|
|
||||||
Spoiler,
|
|
||||||
Quote
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,50 +0,0 @@
|
|||||||
using System;
|
|
||||||
using System.IO;
|
|
||||||
using System.Linq;
|
|
||||||
|
|
||||||
namespace DiscordChatExporter.Core.Models
|
|
||||||
{
|
|
||||||
// https://discordapp.com/developers/docs/resources/channel#attachment-object
|
|
||||||
|
|
||||||
public partial class Attachment
|
|
||||||
{
|
|
||||||
public string Id { get; }
|
|
||||||
|
|
||||||
public string Url { get; }
|
|
||||||
|
|
||||||
public int? Width { get; }
|
|
||||||
|
|
||||||
public int? Height { get; }
|
|
||||||
|
|
||||||
public string FileName { get; }
|
|
||||||
|
|
||||||
public bool IsImage { get; }
|
|
||||||
|
|
||||||
public FileSize FileSize { get; }
|
|
||||||
|
|
||||||
public Attachment(string id, int? width, int? height, string url, string fileName, FileSize fileSize)
|
|
||||||
{
|
|
||||||
Id = id;
|
|
||||||
Url = url;
|
|
||||||
Width = width;
|
|
||||||
Height = height;
|
|
||||||
FileName = fileName;
|
|
||||||
FileSize = fileSize;
|
|
||||||
|
|
||||||
IsImage = GetIsImage(fileName);
|
|
||||||
}
|
|
||||||
|
|
||||||
public override string ToString() => FileName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public partial class Attachment
|
|
||||||
{
|
|
||||||
private static readonly string[] ImageFileExtensions = { ".jpg", ".jpeg", ".png", ".gif", ".bmp" };
|
|
||||||
|
|
||||||
public static bool GetIsImage(string fileName)
|
|
||||||
{
|
|
||||||
var fileExtension = Path.GetExtension(fileName);
|
|
||||||
return ImageFileExtensions.Contains(fileExtension, StringComparer.OrdinalIgnoreCase);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,15 +0,0 @@
|
|||||||
namespace DiscordChatExporter.Core.Models
|
|
||||||
{
|
|
||||||
public class AuthToken
|
|
||||||
{
|
|
||||||
public AuthTokenType Type { get; }
|
|
||||||
|
|
||||||
public string Value { get; }
|
|
||||||
|
|
||||||
public AuthToken(AuthTokenType type, string value)
|
|
||||||
{
|
|
||||||
Type = type;
|
|
||||||
Value = value;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,8 +0,0 @@
|
|||||||
namespace DiscordChatExporter.Core.Models
|
|
||||||
{
|
|
||||||
public enum AuthTokenType
|
|
||||||
{
|
|
||||||
User,
|
|
||||||
Bot
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,37 +0,0 @@
|
|||||||
namespace DiscordChatExporter.Core.Models
|
|
||||||
{
|
|
||||||
// https://discordapp.com/developers/docs/resources/channel#channel-object
|
|
||||||
|
|
||||||
public partial class Channel
|
|
||||||
{
|
|
||||||
public string Id { get; }
|
|
||||||
|
|
||||||
public string ParentId { get; }
|
|
||||||
|
|
||||||
public string GuildId { get; }
|
|
||||||
|
|
||||||
public string Name { get; }
|
|
||||||
|
|
||||||
public string Topic { get; }
|
|
||||||
|
|
||||||
public ChannelType Type { get; }
|
|
||||||
|
|
||||||
public Channel(string id, string parentId, string guildId, string name, string topic, ChannelType type)
|
|
||||||
{
|
|
||||||
Id = id;
|
|
||||||
ParentId = parentId;
|
|
||||||
GuildId = guildId;
|
|
||||||
Name = name;
|
|
||||||
Topic = topic;
|
|
||||||
Type = type;
|
|
||||||
}
|
|
||||||
|
|
||||||
public override string ToString() => Name;
|
|
||||||
}
|
|
||||||
|
|
||||||
public partial class Channel
|
|
||||||
{
|
|
||||||
public static Channel CreateDeletedChannel(string id) =>
|
|
||||||
new Channel(id, null, null, "deleted-channel", null, ChannelType.GuildTextChat);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,13 +0,0 @@
|
|||||||
namespace DiscordChatExporter.Core.Models
|
|
||||||
{
|
|
||||||
// https://discordapp.com/developers/docs/resources/channel#channel-object-channel-types
|
|
||||||
|
|
||||||
public enum ChannelType
|
|
||||||
{
|
|
||||||
GuildTextChat,
|
|
||||||
DirectTextChat,
|
|
||||||
GuildVoiceChat,
|
|
||||||
DirectGroupTextChat,
|
|
||||||
Category
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,33 +0,0 @@
|
|||||||
using System;
|
|
||||||
using System.Collections.Generic;
|
|
||||||
|
|
||||||
namespace DiscordChatExporter.Core.Models
|
|
||||||
{
|
|
||||||
public class ChatLog
|
|
||||||
{
|
|
||||||
public Guild Guild { get; }
|
|
||||||
|
|
||||||
public Channel Channel { get; }
|
|
||||||
|
|
||||||
public DateTimeOffset? After { get; }
|
|
||||||
|
|
||||||
public DateTimeOffset? Before { get; }
|
|
||||||
|
|
||||||
public IReadOnlyList<Message> Messages { get; }
|
|
||||||
|
|
||||||
public Mentionables Mentionables { get; }
|
|
||||||
|
|
||||||
public ChatLog(Guild guild, Channel channel, DateTimeOffset? after, DateTimeOffset? before,
|
|
||||||
IReadOnlyList<Message> messages, Mentionables mentionables)
|
|
||||||
{
|
|
||||||
Guild = guild;
|
|
||||||
Channel = channel;
|
|
||||||
After = after;
|
|
||||||
Before = before;
|
|
||||||
Messages = messages;
|
|
||||||
Mentionables = mentionables;
|
|
||||||
}
|
|
||||||
|
|
||||||
public override string ToString() => $"{Guild.Name} | {Channel.Name}";
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,12 +0,0 @@
|
|||||||
<Project Sdk="Microsoft.NET.Sdk">
|
|
||||||
|
|
||||||
<PropertyGroup>
|
|
||||||
<TargetFrameworks>net46;netstandard2.0</TargetFrameworks>
|
|
||||||
<LangVersion>latest</LangVersion>
|
|
||||||
</PropertyGroup>
|
|
||||||
|
|
||||||
<ItemGroup>
|
|
||||||
<PackageReference Include="Tyrrrz.Extensions" Version="1.6.2" />
|
|
||||||
</ItemGroup>
|
|
||||||
|
|
||||||
</Project>
|
|
||||||
@@ -1,48 +0,0 @@
|
|||||||
using System;
|
|
||||||
using System.Collections.Generic;
|
|
||||||
using System.Drawing;
|
|
||||||
|
|
||||||
namespace DiscordChatExporter.Core.Models
|
|
||||||
{
|
|
||||||
// https://discordapp.com/developers/docs/resources/channel#embed-object
|
|
||||||
|
|
||||||
public class Embed
|
|
||||||
{
|
|
||||||
public string Title { get; }
|
|
||||||
|
|
||||||
public string Url { get; }
|
|
||||||
|
|
||||||
public DateTimeOffset? Timestamp { get; }
|
|
||||||
|
|
||||||
public Color Color { get; }
|
|
||||||
|
|
||||||
public EmbedAuthor Author { get; }
|
|
||||||
|
|
||||||
public string Description { get; }
|
|
||||||
|
|
||||||
public IReadOnlyList<EmbedField> Fields { get; }
|
|
||||||
|
|
||||||
public EmbedImage Thumbnail { get; }
|
|
||||||
|
|
||||||
public EmbedImage Image { get; }
|
|
||||||
|
|
||||||
public EmbedFooter Footer { get; }
|
|
||||||
|
|
||||||
public Embed(string title, string url, DateTimeOffset? timestamp, Color color, EmbedAuthor author, string description,
|
|
||||||
IReadOnlyList<EmbedField> fields, EmbedImage thumbnail, EmbedImage image, EmbedFooter footer)
|
|
||||||
{
|
|
||||||
Title = title;
|
|
||||||
Url = url;
|
|
||||||
Timestamp = timestamp;
|
|
||||||
Color = color;
|
|
||||||
Author = author;
|
|
||||||
Description = description;
|
|
||||||
Fields = fields;
|
|
||||||
Thumbnail = thumbnail;
|
|
||||||
Image = image;
|
|
||||||
Footer = footer;
|
|
||||||
}
|
|
||||||
|
|
||||||
public override string ToString() => Title;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,22 +0,0 @@
|
|||||||
namespace DiscordChatExporter.Core.Models
|
|
||||||
{
|
|
||||||
// https://discordapp.com/developers/docs/resources/channel#embed-object-embed-author-structure
|
|
||||||
|
|
||||||
public class EmbedAuthor
|
|
||||||
{
|
|
||||||
public string Name { get; }
|
|
||||||
|
|
||||||
public string Url { get; }
|
|
||||||
|
|
||||||
public string IconUrl { get; }
|
|
||||||
|
|
||||||
public EmbedAuthor(string name, string url, string iconUrl)
|
|
||||||
{
|
|
||||||
Name = name;
|
|
||||||
Url = url;
|
|
||||||
IconUrl = iconUrl;
|
|
||||||
}
|
|
||||||
|
|
||||||
public override string ToString() => Name;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,22 +0,0 @@
|
|||||||
namespace DiscordChatExporter.Core.Models
|
|
||||||
{
|
|
||||||
// https://discordapp.com/developers/docs/resources/channel#embed-object-embed-field-structure
|
|
||||||
|
|
||||||
public class EmbedField
|
|
||||||
{
|
|
||||||
public string Name { get; }
|
|
||||||
|
|
||||||
public string Value { get; }
|
|
||||||
|
|
||||||
public bool IsInline { get; }
|
|
||||||
|
|
||||||
public EmbedField(string name, string value, bool isInline)
|
|
||||||
{
|
|
||||||
Name = name;
|
|
||||||
Value = value;
|
|
||||||
IsInline = isInline;
|
|
||||||
}
|
|
||||||
|
|
||||||
public override string ToString() => $"{Name} | {Value}";
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,19 +0,0 @@
|
|||||||
namespace DiscordChatExporter.Core.Models
|
|
||||||
{
|
|
||||||
// https://discordapp.com/developers/docs/resources/channel#embed-object-embed-footer-structure
|
|
||||||
|
|
||||||
public class EmbedFooter
|
|
||||||
{
|
|
||||||
public string Text { get; }
|
|
||||||
|
|
||||||
public string IconUrl { get; }
|
|
||||||
|
|
||||||
public EmbedFooter(string text, string iconUrl)
|
|
||||||
{
|
|
||||||
Text = text;
|
|
||||||
IconUrl = iconUrl;
|
|
||||||
}
|
|
||||||
|
|
||||||
public override string ToString() => Text;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,20 +0,0 @@
|
|||||||
namespace DiscordChatExporter.Core.Models
|
|
||||||
{
|
|
||||||
// https://discordapp.com/developers/docs/resources/channel#embed-object-embed-image-structure
|
|
||||||
|
|
||||||
public class EmbedImage
|
|
||||||
{
|
|
||||||
public string Url { get; }
|
|
||||||
|
|
||||||
public int? Width { get; }
|
|
||||||
|
|
||||||
public int? Height { get; }
|
|
||||||
|
|
||||||
public EmbedImage(string url, int? width, int? height)
|
|
||||||
{
|
|
||||||
Url = url;
|
|
||||||
Height = height;
|
|
||||||
Width = width;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,58 +0,0 @@
|
|||||||
using System.Collections.Generic;
|
|
||||||
using System.Linq;
|
|
||||||
using Tyrrrz.Extensions;
|
|
||||||
|
|
||||||
namespace DiscordChatExporter.Core.Models
|
|
||||||
{
|
|
||||||
// https://discordapp.com/developers/docs/resources/emoji#emoji-object
|
|
||||||
|
|
||||||
public partial class Emoji
|
|
||||||
{
|
|
||||||
public string Id { get; }
|
|
||||||
|
|
||||||
public string Name { get; }
|
|
||||||
|
|
||||||
public bool IsAnimated { get; }
|
|
||||||
|
|
||||||
public string ImageUrl { get; }
|
|
||||||
|
|
||||||
public Emoji(string id, string name, bool isAnimated)
|
|
||||||
{
|
|
||||||
Id = id;
|
|
||||||
Name = name;
|
|
||||||
IsAnimated = isAnimated;
|
|
||||||
|
|
||||||
ImageUrl = GetImageUrl(id, name, isAnimated);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public partial class Emoji
|
|
||||||
{
|
|
||||||
private static IEnumerable<int> GetCodePoints(string emoji)
|
|
||||||
{
|
|
||||||
for (var i = 0; i < emoji.Length; i += char.IsHighSurrogate(emoji[i]) ? 2 : 1)
|
|
||||||
yield return char.ConvertToUtf32(emoji, i);
|
|
||||||
}
|
|
||||||
|
|
||||||
private static string GetTwemojiName(string emoji) =>
|
|
||||||
GetCodePoints(emoji).Select(i => i.ToString("x")).JoinToString("-");
|
|
||||||
|
|
||||||
public static string GetImageUrl(string id, string name, bool isAnimated)
|
|
||||||
{
|
|
||||||
// Custom emoji
|
|
||||||
if (!id.IsNullOrWhiteSpace())
|
|
||||||
{
|
|
||||||
// Animated
|
|
||||||
if (isAnimated)
|
|
||||||
return $"https://cdn.discordapp.com/emojis/{id}.gif";
|
|
||||||
|
|
||||||
// Non-animated
|
|
||||||
return $"https://cdn.discordapp.com/emojis/{id}.png";
|
|
||||||
}
|
|
||||||
|
|
||||||
// Standard unicode emoji (via twemoji)
|
|
||||||
var twemojiName = GetTwemojiName(name);
|
|
||||||
return $"https://twemoji.maxcdn.com/2/72x72/{twemojiName}.png";
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,10 +0,0 @@
|
|||||||
namespace DiscordChatExporter.Core.Models
|
|
||||||
{
|
|
||||||
public enum ExportFormat
|
|
||||||
{
|
|
||||||
PlainText,
|
|
||||||
HtmlDark,
|
|
||||||
HtmlLight,
|
|
||||||
Csv
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,35 +0,0 @@
|
|||||||
using System;
|
|
||||||
|
|
||||||
namespace DiscordChatExporter.Core.Models
|
|
||||||
{
|
|
||||||
public static class Extensions
|
|
||||||
{
|
|
||||||
public static string GetFileExtension(this ExportFormat format)
|
|
||||||
{
|
|
||||||
if (format == ExportFormat.PlainText)
|
|
||||||
return "txt";
|
|
||||||
if (format == ExportFormat.HtmlDark)
|
|
||||||
return "html";
|
|
||||||
if (format == ExportFormat.HtmlLight)
|
|
||||||
return "html";
|
|
||||||
if (format == ExportFormat.Csv)
|
|
||||||
return "csv";
|
|
||||||
|
|
||||||
throw new ArgumentOutOfRangeException(nameof(format));
|
|
||||||
}
|
|
||||||
|
|
||||||
public static string GetDisplayName(this ExportFormat format)
|
|
||||||
{
|
|
||||||
if (format == ExportFormat.PlainText)
|
|
||||||
return "Plain Text";
|
|
||||||
if (format == ExportFormat.HtmlDark)
|
|
||||||
return "HTML (Dark)";
|
|
||||||
if (format == ExportFormat.HtmlLight)
|
|
||||||
return "HTML (Light)";
|
|
||||||
if (format == ExportFormat.Csv)
|
|
||||||
return "Comma Seperated Values (CSV)";
|
|
||||||
|
|
||||||
throw new ArgumentOutOfRangeException(nameof(format));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,84 +0,0 @@
|
|||||||
using System;
|
|
||||||
|
|
||||||
namespace DiscordChatExporter.Core.Models
|
|
||||||
{
|
|
||||||
// Loosely based on https://github.com/omar/ByteSize (MIT license)
|
|
||||||
|
|
||||||
public struct FileSize
|
|
||||||
{
|
|
||||||
public const long BytesInKiloByte = 1024;
|
|
||||||
public const long BytesInMegaByte = 1024 * BytesInKiloByte;
|
|
||||||
public const long BytesInGigaByte = 1024 * BytesInMegaByte;
|
|
||||||
public const long BytesInTeraByte = 1024 * BytesInGigaByte;
|
|
||||||
public const long BytesInPetaByte = 1024 * BytesInTeraByte;
|
|
||||||
|
|
||||||
public const string ByteSymbol = "B";
|
|
||||||
public const string KiloByteSymbol = "KB";
|
|
||||||
public const string MegaByteSymbol = "MB";
|
|
||||||
public const string GigaByteSymbol = "GB";
|
|
||||||
public const string TeraByteSymbol = "TB";
|
|
||||||
public const string PetaByteSymbol = "PB";
|
|
||||||
|
|
||||||
public double Bytes { get; }
|
|
||||||
public double KiloBytes => Bytes / BytesInKiloByte;
|
|
||||||
public double MegaBytes => Bytes / BytesInMegaByte;
|
|
||||||
public double GigaBytes => Bytes / BytesInGigaByte;
|
|
||||||
public double TeraBytes => Bytes / BytesInTeraByte;
|
|
||||||
public double PetaBytes => Bytes / BytesInPetaByte;
|
|
||||||
|
|
||||||
public string LargestWholeNumberSymbol
|
|
||||||
{
|
|
||||||
get
|
|
||||||
{
|
|
||||||
// Absolute value is used to deal with negative values
|
|
||||||
if (Math.Abs(PetaBytes) >= 1)
|
|
||||||
return PetaByteSymbol;
|
|
||||||
|
|
||||||
if (Math.Abs(TeraBytes) >= 1)
|
|
||||||
return TeraByteSymbol;
|
|
||||||
|
|
||||||
if (Math.Abs(GigaBytes) >= 1)
|
|
||||||
return GigaByteSymbol;
|
|
||||||
|
|
||||||
if (Math.Abs(MegaBytes) >= 1)
|
|
||||||
return MegaByteSymbol;
|
|
||||||
|
|
||||||
if (Math.Abs(KiloBytes) >= 1)
|
|
||||||
return KiloByteSymbol;
|
|
||||||
|
|
||||||
return ByteSymbol;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public double LargestWholeNumberValue
|
|
||||||
{
|
|
||||||
get
|
|
||||||
{
|
|
||||||
// Absolute value is used to deal with negative values
|
|
||||||
if (Math.Abs(PetaBytes) >= 1)
|
|
||||||
return PetaBytes;
|
|
||||||
|
|
||||||
if (Math.Abs(TeraBytes) >= 1)
|
|
||||||
return TeraBytes;
|
|
||||||
|
|
||||||
if (Math.Abs(GigaBytes) >= 1)
|
|
||||||
return GigaBytes;
|
|
||||||
|
|
||||||
if (Math.Abs(MegaBytes) >= 1)
|
|
||||||
return MegaBytes;
|
|
||||||
|
|
||||||
if (Math.Abs(KiloBytes) >= 1)
|
|
||||||
return KiloBytes;
|
|
||||||
|
|
||||||
return Bytes;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public FileSize(double bytes)
|
|
||||||
{
|
|
||||||
Bytes = bytes;
|
|
||||||
}
|
|
||||||
|
|
||||||
public override string ToString() => $"{LargestWholeNumberValue:0.##} {LargestWholeNumberSymbol}";
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,40 +0,0 @@
|
|||||||
using Tyrrrz.Extensions;
|
|
||||||
|
|
||||||
namespace DiscordChatExporter.Core.Models
|
|
||||||
{
|
|
||||||
// https://discordapp.com/developers/docs/resources/guild#guild-object
|
|
||||||
|
|
||||||
public partial class Guild
|
|
||||||
{
|
|
||||||
public string Id { get; }
|
|
||||||
|
|
||||||
public string Name { get; }
|
|
||||||
|
|
||||||
public string IconHash { get; }
|
|
||||||
|
|
||||||
public string IconUrl { get; }
|
|
||||||
|
|
||||||
public Guild(string id, string name, string iconHash)
|
|
||||||
{
|
|
||||||
Id = id;
|
|
||||||
Name = name;
|
|
||||||
IconHash = iconHash;
|
|
||||||
|
|
||||||
IconUrl = GetIconUrl(id, iconHash);
|
|
||||||
}
|
|
||||||
|
|
||||||
public override string ToString() => Name;
|
|
||||||
}
|
|
||||||
|
|
||||||
public partial class Guild
|
|
||||||
{
|
|
||||||
public static string GetIconUrl(string id, string iconHash)
|
|
||||||
{
|
|
||||||
return !iconHash.IsNullOrWhiteSpace()
|
|
||||||
? $"https://cdn.discordapp.com/icons/{id}/{iconHash}.png"
|
|
||||||
: "https://cdn.discordapp.com/embed/avatars/0.png";
|
|
||||||
}
|
|
||||||
|
|
||||||
public static Guild DirectMessages { get; } = new Guild("@me", "Direct Messages", null);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,30 +0,0 @@
|
|||||||
using System.Collections.Generic;
|
|
||||||
using System.Linq;
|
|
||||||
|
|
||||||
namespace DiscordChatExporter.Core.Models
|
|
||||||
{
|
|
||||||
public class Mentionables
|
|
||||||
{
|
|
||||||
public IReadOnlyList<User> Users { get; }
|
|
||||||
|
|
||||||
public IReadOnlyList<Channel> Channels { get; }
|
|
||||||
|
|
||||||
public IReadOnlyList<Role> Roles { get; }
|
|
||||||
|
|
||||||
public Mentionables(IReadOnlyList<User> users, IReadOnlyList<Channel> channels, IReadOnlyList<Role> roles)
|
|
||||||
{
|
|
||||||
Users = users;
|
|
||||||
Channels = channels;
|
|
||||||
Roles = roles;
|
|
||||||
}
|
|
||||||
|
|
||||||
public User GetUser(string id) =>
|
|
||||||
Users.FirstOrDefault(u => u.Id == id) ?? User.CreateUnknownUser(id);
|
|
||||||
|
|
||||||
public Channel GetChannel(string id) =>
|
|
||||||
Channels.FirstOrDefault(c => c.Id == id) ?? Channel.CreateDeletedChannel(id);
|
|
||||||
|
|
||||||
public Role GetRole(string id) =>
|
|
||||||
Roles.FirstOrDefault(r => r.Id == id) ?? Role.CreateDeletedRole(id);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,55 +0,0 @@
|
|||||||
using System;
|
|
||||||
using System.Collections.Generic;
|
|
||||||
|
|
||||||
namespace DiscordChatExporter.Core.Models
|
|
||||||
{
|
|
||||||
// https://discordapp.com/developers/docs/resources/channel#message-object
|
|
||||||
|
|
||||||
public class Message
|
|
||||||
{
|
|
||||||
public string Id { get; }
|
|
||||||
|
|
||||||
public string ChannelId { get; }
|
|
||||||
|
|
||||||
public MessageType Type { get; }
|
|
||||||
|
|
||||||
public User Author { get; }
|
|
||||||
|
|
||||||
public DateTimeOffset Timestamp { get; }
|
|
||||||
|
|
||||||
public DateTimeOffset? EditedTimestamp { get; }
|
|
||||||
|
|
||||||
public string Content { get; }
|
|
||||||
|
|
||||||
public IReadOnlyList<Attachment> Attachments { get; }
|
|
||||||
|
|
||||||
public IReadOnlyList<Embed> Embeds { get; }
|
|
||||||
|
|
||||||
public IReadOnlyList<Reaction> Reactions { get; }
|
|
||||||
|
|
||||||
public IReadOnlyList<User> MentionedUsers { get; }
|
|
||||||
|
|
||||||
public bool IsPinned { get; }
|
|
||||||
|
|
||||||
public Message(string id, string channelId, MessageType type, User author, DateTimeOffset timestamp,
|
|
||||||
DateTimeOffset? editedTimestamp, string content, IReadOnlyList<Attachment> attachments,
|
|
||||||
IReadOnlyList<Embed> embeds, IReadOnlyList<Reaction> reactions, IReadOnlyList<User> mentionedUsers,
|
|
||||||
bool isPinned)
|
|
||||||
{
|
|
||||||
Id = id;
|
|
||||||
ChannelId = channelId;
|
|
||||||
Type = type;
|
|
||||||
Author = author;
|
|
||||||
Timestamp = timestamp;
|
|
||||||
EditedTimestamp = editedTimestamp;
|
|
||||||
Content = content;
|
|
||||||
Attachments = attachments;
|
|
||||||
Embeds = embeds;
|
|
||||||
Reactions = reactions;
|
|
||||||
MentionedUsers = mentionedUsers;
|
|
||||||
IsPinned = isPinned;
|
|
||||||
}
|
|
||||||
|
|
||||||
public override string ToString() => Content;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,16 +0,0 @@
|
|||||||
namespace DiscordChatExporter.Core.Models
|
|
||||||
{
|
|
||||||
// https://discordapp.com/developers/docs/resources/channel#message-object-message-types
|
|
||||||
|
|
||||||
public enum MessageType
|
|
||||||
{
|
|
||||||
Default,
|
|
||||||
RecipientAdd,
|
|
||||||
RecipientRemove,
|
|
||||||
Call,
|
|
||||||
ChannelNameChange,
|
|
||||||
ChannelIconChange,
|
|
||||||
ChannelPinnedMessage,
|
|
||||||
GuildMemberJoin
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,17 +0,0 @@
|
|||||||
namespace DiscordChatExporter.Core.Models
|
|
||||||
{
|
|
||||||
// https://discordapp.com/developers/docs/resources/channel#reaction-object
|
|
||||||
|
|
||||||
public class Reaction
|
|
||||||
{
|
|
||||||
public int Count { get; }
|
|
||||||
|
|
||||||
public Emoji Emoji { get; }
|
|
||||||
|
|
||||||
public Reaction(int count, Emoji emoji)
|
|
||||||
{
|
|
||||||
Count = count;
|
|
||||||
Emoji = emoji;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,24 +0,0 @@
|
|||||||
namespace DiscordChatExporter.Core.Models
|
|
||||||
{
|
|
||||||
// https://discordapp.com/developers/docs/topics/permissions#role-object
|
|
||||||
|
|
||||||
public partial class Role
|
|
||||||
{
|
|
||||||
public string Id { get; }
|
|
||||||
|
|
||||||
public string Name { get; }
|
|
||||||
|
|
||||||
public Role(string id, string name)
|
|
||||||
{
|
|
||||||
Id = id;
|
|
||||||
Name = name;
|
|
||||||
}
|
|
||||||
|
|
||||||
public override string ToString() => Name;
|
|
||||||
}
|
|
||||||
|
|
||||||
public partial class Role
|
|
||||||
{
|
|
||||||
public static Role CreateDeletedRole(string id) => new Role(id, "deleted-role");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,62 +0,0 @@
|
|||||||
using System;
|
|
||||||
using Tyrrrz.Extensions;
|
|
||||||
|
|
||||||
namespace DiscordChatExporter.Core.Models
|
|
||||||
{
|
|
||||||
// https://discordapp.com/developers/docs/topics/permissions#role-object
|
|
||||||
|
|
||||||
public partial class User
|
|
||||||
{
|
|
||||||
public string Id { get; }
|
|
||||||
|
|
||||||
public int Discriminator { get; }
|
|
||||||
|
|
||||||
public string Name { get; }
|
|
||||||
|
|
||||||
public string FullName { get; }
|
|
||||||
|
|
||||||
public string AvatarHash { get; }
|
|
||||||
|
|
||||||
public string AvatarUrl { get; }
|
|
||||||
|
|
||||||
public bool IsBot { get; }
|
|
||||||
|
|
||||||
public User(string id, int discriminator, string name, string avatarHash, bool isBot)
|
|
||||||
{
|
|
||||||
Id = id;
|
|
||||||
Discriminator = discriminator;
|
|
||||||
Name = name;
|
|
||||||
AvatarHash = avatarHash;
|
|
||||||
IsBot = isBot;
|
|
||||||
|
|
||||||
FullName = GetFullName(name, discriminator);
|
|
||||||
AvatarUrl = GetAvatarUrl(id, discriminator, avatarHash);
|
|
||||||
}
|
|
||||||
|
|
||||||
public override string ToString() => FullName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public partial class User
|
|
||||||
{
|
|
||||||
public static string GetFullName(string name, int discriminator) => $"{name}#{discriminator:0000}";
|
|
||||||
|
|
||||||
public static string GetAvatarUrl(string id, int discriminator, string avatarHash)
|
|
||||||
{
|
|
||||||
// Custom avatar
|
|
||||||
if (!avatarHash.IsNullOrWhiteSpace())
|
|
||||||
{
|
|
||||||
// Animated
|
|
||||||
if (avatarHash.StartsWith("a_", StringComparison.Ordinal))
|
|
||||||
return $"https://cdn.discordapp.com/avatars/{id}/{avatarHash}.gif";
|
|
||||||
|
|
||||||
// Non-animated
|
|
||||||
return $"https://cdn.discordapp.com/avatars/{id}/{avatarHash}.png";
|
|
||||||
}
|
|
||||||
|
|
||||||
// Default avatar
|
|
||||||
return $"https://cdn.discordapp.com/embed/avatars/{discriminator % 5}.png";
|
|
||||||
}
|
|
||||||
|
|
||||||
public static User CreateUnknownUser(string id) => new User(id, 0, "Unknown", null, false);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,123 +0,0 @@
|
|||||||
using System;
|
|
||||||
using System.Collections.Generic;
|
|
||||||
using System.Globalization;
|
|
||||||
using System.IO;
|
|
||||||
using System.Linq;
|
|
||||||
using System.Threading.Tasks;
|
|
||||||
using DiscordChatExporter.Core.Markdown;
|
|
||||||
using DiscordChatExporter.Core.Markdown.Nodes;
|
|
||||||
using DiscordChatExporter.Core.Models;
|
|
||||||
using Tyrrrz.Extensions;
|
|
||||||
|
|
||||||
namespace DiscordChatExporter.Core.Rendering
|
|
||||||
{
|
|
||||||
public class CsvChatLogRenderer : IChatLogRenderer
|
|
||||||
{
|
|
||||||
private readonly ChatLog _chatLog;
|
|
||||||
private readonly string _dateFormat;
|
|
||||||
|
|
||||||
public CsvChatLogRenderer(ChatLog chatLog, string dateFormat)
|
|
||||||
{
|
|
||||||
_chatLog = chatLog;
|
|
||||||
_dateFormat = dateFormat;
|
|
||||||
}
|
|
||||||
|
|
||||||
private string FormatDate(DateTimeOffset date) =>
|
|
||||||
date.ToLocalTime().ToString(_dateFormat, CultureInfo.InvariantCulture);
|
|
||||||
|
|
||||||
private string FormatMarkdown(Node node)
|
|
||||||
{
|
|
||||||
// Text node
|
|
||||||
if (node is TextNode textNode)
|
|
||||||
{
|
|
||||||
return textNode.Text;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Mention node
|
|
||||||
if (node is MentionNode mentionNode)
|
|
||||||
{
|
|
||||||
// Meta mention node
|
|
||||||
if (mentionNode.Type == MentionType.Meta)
|
|
||||||
{
|
|
||||||
return mentionNode.Id;
|
|
||||||
}
|
|
||||||
|
|
||||||
// User mention node
|
|
||||||
if (mentionNode.Type == MentionType.User)
|
|
||||||
{
|
|
||||||
var user = _chatLog.Mentionables.GetUser(mentionNode.Id);
|
|
||||||
return $"@{user.Name}";
|
|
||||||
}
|
|
||||||
|
|
||||||
// Channel mention node
|
|
||||||
if (mentionNode.Type == MentionType.Channel)
|
|
||||||
{
|
|
||||||
var channel = _chatLog.Mentionables.GetChannel(mentionNode.Id);
|
|
||||||
return $"#{channel.Name}";
|
|
||||||
}
|
|
||||||
|
|
||||||
// Role mention node
|
|
||||||
if (mentionNode.Type == MentionType.Role)
|
|
||||||
{
|
|
||||||
var role = _chatLog.Mentionables.GetRole(mentionNode.Id);
|
|
||||||
return $"@{role.Name}";
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Emoji node
|
|
||||||
if (node is EmojiNode emojiNode)
|
|
||||||
{
|
|
||||||
return emojiNode.IsCustomEmoji ? $":{emojiNode.Name}:" : emojiNode.Name;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Throw on unexpected nodes
|
|
||||||
throw new InvalidOperationException($"Unexpected node: [{node.GetType()}].");
|
|
||||||
}
|
|
||||||
|
|
||||||
private string FormatMarkdown(IEnumerable<Node> nodes) => nodes.Select(FormatMarkdown).JoinToString("");
|
|
||||||
|
|
||||||
private string FormatMarkdown(string markdown) => FormatMarkdown(MarkdownParser.ParseMinimal(markdown));
|
|
||||||
|
|
||||||
private async Task RenderFieldAsync(TextWriter writer, string value)
|
|
||||||
{
|
|
||||||
var encodedValue = value.Replace("\"", "\"\"");
|
|
||||||
await writer.WriteAsync($"\"{encodedValue}\";");
|
|
||||||
}
|
|
||||||
|
|
||||||
private async Task RenderMessageAsync(TextWriter writer, Message message)
|
|
||||||
{
|
|
||||||
// Author ID
|
|
||||||
await RenderFieldAsync(writer, message.Author.Id);
|
|
||||||
|
|
||||||
// Author
|
|
||||||
await RenderFieldAsync(writer, message.Author.FullName);
|
|
||||||
|
|
||||||
// Timestamp
|
|
||||||
await RenderFieldAsync(writer, FormatDate(message.Timestamp));
|
|
||||||
|
|
||||||
// Content
|
|
||||||
await RenderFieldAsync(writer, FormatMarkdown(message.Content));
|
|
||||||
|
|
||||||
// Attachments
|
|
||||||
var formattedAttachments = message.Attachments.Select(a => a.Url).JoinToString(",");
|
|
||||||
await RenderFieldAsync(writer, formattedAttachments);
|
|
||||||
|
|
||||||
// Reactions
|
|
||||||
var formattedReactions = message.Reactions.Select(r => $"{r.Emoji.Name} ({r.Count})").JoinToString(",");
|
|
||||||
await RenderFieldAsync(writer, formattedReactions);
|
|
||||||
|
|
||||||
// Line break
|
|
||||||
await writer.WriteLineAsync();
|
|
||||||
}
|
|
||||||
|
|
||||||
public async Task RenderAsync(TextWriter writer)
|
|
||||||
{
|
|
||||||
// Headers
|
|
||||||
await writer.WriteLineAsync("AuthorID;Author;Date;Content;Attachments;Reactions;");
|
|
||||||
|
|
||||||
// Log
|
|
||||||
foreach (var message in _chatLog.Messages)
|
|
||||||
await RenderMessageAsync(writer, message);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,26 +0,0 @@
|
|||||||
<Project Sdk="Microsoft.NET.Sdk">
|
|
||||||
|
|
||||||
<PropertyGroup>
|
|
||||||
<TargetFrameworks>net46;netstandard2.0</TargetFrameworks>
|
|
||||||
<LangVersion>latest</LangVersion>
|
|
||||||
</PropertyGroup>
|
|
||||||
|
|
||||||
<ItemGroup>
|
|
||||||
<EmbeddedResource Include="Resources\HtmlDark.css" />
|
|
||||||
<EmbeddedResource Include="Resources\HtmlDark.html" />
|
|
||||||
<EmbeddedResource Include="Resources\HtmlLight.css" />
|
|
||||||
<EmbeddedResource Include="Resources\HtmlLight.html" />
|
|
||||||
<EmbeddedResource Include="Resources\HtmlShared.css" />
|
|
||||||
<EmbeddedResource Include="Resources\HtmlShared.html" />
|
|
||||||
</ItemGroup>
|
|
||||||
|
|
||||||
<ItemGroup>
|
|
||||||
<PackageReference Include="Scriban" Version="2.1.0" />
|
|
||||||
</ItemGroup>
|
|
||||||
|
|
||||||
<ItemGroup>
|
|
||||||
<ProjectReference Include="..\DiscordChatExporter.Core.Markdown\DiscordChatExporter.Core.Markdown.csproj" />
|
|
||||||
<ProjectReference Include="..\DiscordChatExporter.Core.Models\DiscordChatExporter.Core.Models.csproj" />
|
|
||||||
</ItemGroup>
|
|
||||||
|
|
||||||
</Project>
|
|
||||||
@@ -1,25 +0,0 @@
|
|||||||
using System;
|
|
||||||
using System.Collections.Generic;
|
|
||||||
using DiscordChatExporter.Core.Models;
|
|
||||||
|
|
||||||
namespace DiscordChatExporter.Core.Rendering
|
|
||||||
{
|
|
||||||
public partial class HtmlChatLogRenderer
|
|
||||||
{
|
|
||||||
private class MessageGroup
|
|
||||||
{
|
|
||||||
public User Author { get; }
|
|
||||||
|
|
||||||
public DateTimeOffset Timestamp { get; }
|
|
||||||
|
|
||||||
public IReadOnlyList<Message> Messages { get; }
|
|
||||||
|
|
||||||
public MessageGroup(User author, DateTimeOffset timestamp, IReadOnlyList<Message> messages)
|
|
||||||
{
|
|
||||||
Author = author;
|
|
||||||
Timestamp = timestamp;
|
|
||||||
Messages = messages;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,27 +0,0 @@
|
|||||||
using System.Reflection;
|
|
||||||
using System.Threading.Tasks;
|
|
||||||
using Scriban;
|
|
||||||
using Scriban.Parsing;
|
|
||||||
using Scriban.Runtime;
|
|
||||||
using Tyrrrz.Extensions;
|
|
||||||
|
|
||||||
namespace DiscordChatExporter.Core.Rendering
|
|
||||||
{
|
|
||||||
public partial class HtmlChatLogRenderer
|
|
||||||
{
|
|
||||||
private class TemplateLoader : ITemplateLoader
|
|
||||||
{
|
|
||||||
private const string ResourceRootNamespace = "DiscordChatExporter.Core.Rendering.Resources";
|
|
||||||
|
|
||||||
public string Load(string templatePath) =>
|
|
||||||
Assembly.GetExecutingAssembly().GetManifestResourceString($"{ResourceRootNamespace}.{templatePath}");
|
|
||||||
|
|
||||||
public string GetPath(TemplateContext context, SourceSpan callerSpan, string templateName) => templateName;
|
|
||||||
|
|
||||||
public string Load(TemplateContext context, SourceSpan callerSpan, string templatePath) => Load(templatePath);
|
|
||||||
|
|
||||||
public ValueTask<string> LoadAsync(TemplateContext context, SourceSpan callerSpan, string templatePath) =>
|
|
||||||
new ValueTask<string>(Load(templatePath));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,210 +0,0 @@
|
|||||||
using System;
|
|
||||||
using System.Collections.Generic;
|
|
||||||
using System.Globalization;
|
|
||||||
using System.IO;
|
|
||||||
using System.Linq;
|
|
||||||
using System.Net;
|
|
||||||
using System.Text.RegularExpressions;
|
|
||||||
using System.Threading.Tasks;
|
|
||||||
using DiscordChatExporter.Core.Markdown;
|
|
||||||
using DiscordChatExporter.Core.Markdown.Nodes;
|
|
||||||
using DiscordChatExporter.Core.Models;
|
|
||||||
using Scriban;
|
|
||||||
using Scriban.Runtime;
|
|
||||||
using Tyrrrz.Extensions;
|
|
||||||
|
|
||||||
namespace DiscordChatExporter.Core.Rendering
|
|
||||||
{
|
|
||||||
public partial class HtmlChatLogRenderer : IChatLogRenderer
|
|
||||||
{
|
|
||||||
private readonly ChatLog _chatLog;
|
|
||||||
private readonly string _themeName;
|
|
||||||
private readonly string _dateFormat;
|
|
||||||
|
|
||||||
public HtmlChatLogRenderer(ChatLog chatLog, string themeName, string dateFormat)
|
|
||||||
{
|
|
||||||
_chatLog = chatLog;
|
|
||||||
_themeName = themeName;
|
|
||||||
_dateFormat = dateFormat;
|
|
||||||
}
|
|
||||||
|
|
||||||
private string HtmlEncode(string s) => WebUtility.HtmlEncode(s);
|
|
||||||
|
|
||||||
private string FormatDate(DateTimeOffset date) =>
|
|
||||||
date.ToLocalTime().ToString(_dateFormat, CultureInfo.InvariantCulture);
|
|
||||||
|
|
||||||
private IEnumerable<MessageGroup> GroupMessages(IEnumerable<Message> messages) =>
|
|
||||||
messages.GroupContiguous((buffer, message) =>
|
|
||||||
{
|
|
||||||
// Break group if the author changed
|
|
||||||
if (buffer.Last().Author.Id != message.Author.Id)
|
|
||||||
return false;
|
|
||||||
|
|
||||||
// Break group if last message was more than 7 minutes ago
|
|
||||||
if ((message.Timestamp - buffer.Last().Timestamp).TotalMinutes > 7)
|
|
||||||
return false;
|
|
||||||
|
|
||||||
return true;
|
|
||||||
}).Select(g => new MessageGroup(g.First().Author, g.First().Timestamp, g));
|
|
||||||
|
|
||||||
private string FormatMarkdown(Node node, bool isJumbo)
|
|
||||||
{
|
|
||||||
// Text node
|
|
||||||
if (node is TextNode textNode)
|
|
||||||
{
|
|
||||||
// Return HTML-encoded text
|
|
||||||
return HtmlEncode(textNode.Text);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Formatted node
|
|
||||||
if (node is FormattedNode formattedNode)
|
|
||||||
{
|
|
||||||
// Recursively get inner html
|
|
||||||
var innerHtml = FormatMarkdown(formattedNode.Children, false);
|
|
||||||
|
|
||||||
// Bold
|
|
||||||
if (formattedNode.Formatting == TextFormatting.Bold)
|
|
||||||
return $"<strong>{innerHtml}</strong>";
|
|
||||||
|
|
||||||
// Italic
|
|
||||||
if (formattedNode.Formatting == TextFormatting.Italic)
|
|
||||||
return $"<em>{innerHtml}</em>";
|
|
||||||
|
|
||||||
// Underline
|
|
||||||
if (formattedNode.Formatting == TextFormatting.Underline)
|
|
||||||
return $"<u>{innerHtml}</u>";
|
|
||||||
|
|
||||||
// Strikethrough
|
|
||||||
if (formattedNode.Formatting == TextFormatting.Strikethrough)
|
|
||||||
return $"<s>{innerHtml}</s>";
|
|
||||||
|
|
||||||
// Spoiler
|
|
||||||
if (formattedNode.Formatting == TextFormatting.Spoiler)
|
|
||||||
return $"<span class=\"spoiler\">{innerHtml}</span>";
|
|
||||||
|
|
||||||
// Quote
|
|
||||||
if (formattedNode.Formatting == TextFormatting.Quote)
|
|
||||||
return $"<div class=\"quote\">{innerHtml}</div>";
|
|
||||||
}
|
|
||||||
|
|
||||||
// Inline code block node
|
|
||||||
if (node is InlineCodeBlockNode inlineCodeBlockNode)
|
|
||||||
{
|
|
||||||
return $"<span class=\"pre pre--inline\">{HtmlEncode(inlineCodeBlockNode.Code)}</span>";
|
|
||||||
}
|
|
||||||
|
|
||||||
// Multi-line code block node
|
|
||||||
if (node is MultiLineCodeBlockNode multilineCodeBlockNode)
|
|
||||||
{
|
|
||||||
// Set CSS class for syntax highlighting
|
|
||||||
var highlightCssClass = !multilineCodeBlockNode.Language.IsNullOrWhiteSpace()
|
|
||||||
? $"language-{multilineCodeBlockNode.Language}"
|
|
||||||
: "nohighlight";
|
|
||||||
|
|
||||||
return $"<div class=\"pre pre--multiline {highlightCssClass}\">{HtmlEncode(multilineCodeBlockNode.Code)}</div>";
|
|
||||||
}
|
|
||||||
|
|
||||||
// Mention node
|
|
||||||
if (node is MentionNode mentionNode)
|
|
||||||
{
|
|
||||||
// Meta mention node
|
|
||||||
if (mentionNode.Type == MentionType.Meta)
|
|
||||||
{
|
|
||||||
return $"<span class=\"mention\">@{HtmlEncode(mentionNode.Id)}</span>";
|
|
||||||
}
|
|
||||||
|
|
||||||
// User mention node
|
|
||||||
if (mentionNode.Type == MentionType.User)
|
|
||||||
{
|
|
||||||
var user = _chatLog.Mentionables.GetUser(mentionNode.Id);
|
|
||||||
return $"<span class=\"mention\" title=\"{HtmlEncode(user.FullName)}\">@{HtmlEncode(user.Name)}</span>";
|
|
||||||
}
|
|
||||||
|
|
||||||
// Channel mention node
|
|
||||||
if (mentionNode.Type == MentionType.Channel)
|
|
||||||
{
|
|
||||||
var channel = _chatLog.Mentionables.GetChannel(mentionNode.Id);
|
|
||||||
return $"<span class=\"mention\">#{HtmlEncode(channel.Name)}</span>";
|
|
||||||
}
|
|
||||||
|
|
||||||
// Role mention node
|
|
||||||
if (mentionNode.Type == MentionType.Role)
|
|
||||||
{
|
|
||||||
var role = _chatLog.Mentionables.GetRole(mentionNode.Id);
|
|
||||||
return $"<span class=\"mention\">@{HtmlEncode(role.Name)}</span>";
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Emoji node
|
|
||||||
if (node is EmojiNode emojiNode)
|
|
||||||
{
|
|
||||||
// Get emoji image URL
|
|
||||||
var emojiImageUrl = Emoji.GetImageUrl(emojiNode.Id, emojiNode.Name, emojiNode.IsAnimated);
|
|
||||||
|
|
||||||
// Make emoji large if it's jumbo
|
|
||||||
var jumboableCssClass = isJumbo ? "emoji--large" : null;
|
|
||||||
|
|
||||||
return $"<img class=\"emoji {jumboableCssClass}\" alt=\"{emojiNode.Name}\" title=\"{emojiNode.Name}\" src=\"{emojiImageUrl}\" />";
|
|
||||||
}
|
|
||||||
|
|
||||||
// Link node
|
|
||||||
if (node is LinkNode linkNode)
|
|
||||||
{
|
|
||||||
// Extract message ID if the link points to a Discord message
|
|
||||||
var linkedMessageId = Regex.Match(linkNode.Url, "^https?://discordapp.com/channels/.*?/(\\d+)/?$").Groups[1].Value;
|
|
||||||
|
|
||||||
return linkedMessageId.IsNullOrWhiteSpace()
|
|
||||||
? $"<a href=\"{Uri.EscapeUriString(linkNode.Url)}\">{HtmlEncode(linkNode.Title)}</a>"
|
|
||||||
: $"<a href=\"{Uri.EscapeUriString(linkNode.Url)}\" onclick=\"scrollToMessage(event, '{linkedMessageId}')\">{HtmlEncode(linkNode.Title)}</a>";
|
|
||||||
}
|
|
||||||
|
|
||||||
// Throw on unexpected nodes
|
|
||||||
throw new InvalidOperationException($"Unexpected node: [{node.GetType()}].");
|
|
||||||
}
|
|
||||||
|
|
||||||
private string FormatMarkdown(IReadOnlyList<Node> nodes, bool isTopLevel)
|
|
||||||
{
|
|
||||||
// Emojis are jumbo if all top-level nodes are emoji nodes or whitespace text nodes
|
|
||||||
var isJumbo = isTopLevel && nodes.All(n => n is EmojiNode || n is TextNode textNode && textNode.Text.IsNullOrWhiteSpace());
|
|
||||||
|
|
||||||
return nodes.Select(n => FormatMarkdown(n, isJumbo)).JoinToString("");
|
|
||||||
}
|
|
||||||
|
|
||||||
private string FormatMarkdown(string markdown) => FormatMarkdown(MarkdownParser.Parse(markdown), true);
|
|
||||||
|
|
||||||
public async Task RenderAsync(TextWriter writer)
|
|
||||||
{
|
|
||||||
// Create template loader
|
|
||||||
var loader = new TemplateLoader();
|
|
||||||
|
|
||||||
// Get template
|
|
||||||
var templateCode = loader.Load($"Html{_themeName}.html");
|
|
||||||
var template = Template.Parse(templateCode);
|
|
||||||
|
|
||||||
// Create template context
|
|
||||||
var context = new TemplateContext
|
|
||||||
{
|
|
||||||
TemplateLoader = loader,
|
|
||||||
MemberRenamer = m => m.Name,
|
|
||||||
MemberFilter = m => true,
|
|
||||||
LoopLimit = int.MaxValue,
|
|
||||||
StrictVariables = true
|
|
||||||
};
|
|
||||||
|
|
||||||
// Create template model
|
|
||||||
var model = new ScriptObject();
|
|
||||||
model.SetValue("Model", _chatLog, true);
|
|
||||||
model.Import(nameof(GroupMessages), new Func<IEnumerable<Message>, IEnumerable<MessageGroup>>(GroupMessages));
|
|
||||||
model.Import(nameof(FormatDate), new Func<DateTimeOffset, string>(FormatDate));
|
|
||||||
model.Import(nameof(FormatMarkdown), new Func<string, string>(FormatMarkdown));
|
|
||||||
context.PushGlobal(model);
|
|
||||||
|
|
||||||
// Configure output
|
|
||||||
context.PushOutput(new TextWriterOutput(writer));
|
|
||||||
|
|
||||||
// HACK: Render output in a separate thread
|
|
||||||
// (even though Scriban has async API, it still makes a lot of blocking CPU-bound calls)
|
|
||||||
await Task.Run(async () => await context.EvaluateAsync(template.Page));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,10 +0,0 @@
|
|||||||
using System.IO;
|
|
||||||
using System.Threading.Tasks;
|
|
||||||
|
|
||||||
namespace DiscordChatExporter.Core.Rendering
|
|
||||||
{
|
|
||||||
public interface IChatLogRenderer
|
|
||||||
{
|
|
||||||
Task RenderAsync(TextWriter writer);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,236 +0,0 @@
|
|||||||
using System;
|
|
||||||
using System.Collections.Generic;
|
|
||||||
using System.Globalization;
|
|
||||||
using System.IO;
|
|
||||||
using System.Linq;
|
|
||||||
using System.Threading.Tasks;
|
|
||||||
using DiscordChatExporter.Core.Markdown;
|
|
||||||
using DiscordChatExporter.Core.Markdown.Nodes;
|
|
||||||
using DiscordChatExporter.Core.Models;
|
|
||||||
using Tyrrrz.Extensions;
|
|
||||||
|
|
||||||
namespace DiscordChatExporter.Core.Rendering
|
|
||||||
{
|
|
||||||
public class PlainTextChatLogRenderer : IChatLogRenderer
|
|
||||||
{
|
|
||||||
private readonly ChatLog _chatLog;
|
|
||||||
private readonly string _dateFormat;
|
|
||||||
|
|
||||||
public PlainTextChatLogRenderer(ChatLog chatLog, string dateFormat)
|
|
||||||
{
|
|
||||||
_chatLog = chatLog;
|
|
||||||
_dateFormat = dateFormat;
|
|
||||||
}
|
|
||||||
|
|
||||||
private string FormatDate(DateTimeOffset date) =>
|
|
||||||
date.ToLocalTime().ToString(_dateFormat, CultureInfo.InvariantCulture);
|
|
||||||
|
|
||||||
private string FormatDateRange(DateTimeOffset? after, DateTimeOffset? before)
|
|
||||||
{
|
|
||||||
// Both 'after' and 'before'
|
|
||||||
if (after != null && before != null)
|
|
||||||
return $"{FormatDate(after.Value)} to {FormatDate(before.Value)}";
|
|
||||||
|
|
||||||
// Just 'after'
|
|
||||||
if (after != null)
|
|
||||||
return $"after {FormatDate(after.Value)}";
|
|
||||||
|
|
||||||
// Just 'before'
|
|
||||||
if (before != null)
|
|
||||||
return $"before {FormatDate(before.Value)}";
|
|
||||||
|
|
||||||
// Neither
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
private string FormatMarkdown(Node node)
|
|
||||||
{
|
|
||||||
// Text node
|
|
||||||
if (node is TextNode textNode)
|
|
||||||
{
|
|
||||||
return textNode.Text;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Mention node
|
|
||||||
if (node is MentionNode mentionNode)
|
|
||||||
{
|
|
||||||
// Meta mention node
|
|
||||||
if (mentionNode.Type == MentionType.Meta)
|
|
||||||
{
|
|
||||||
return mentionNode.Id;
|
|
||||||
}
|
|
||||||
|
|
||||||
// User mention node
|
|
||||||
if (mentionNode.Type == MentionType.User)
|
|
||||||
{
|
|
||||||
var user = _chatLog.Mentionables.GetUser(mentionNode.Id);
|
|
||||||
return $"@{user.Name}";
|
|
||||||
}
|
|
||||||
|
|
||||||
// Channel mention node
|
|
||||||
if (mentionNode.Type == MentionType.Channel)
|
|
||||||
{
|
|
||||||
var channel = _chatLog.Mentionables.GetChannel(mentionNode.Id);
|
|
||||||
return $"#{channel.Name}";
|
|
||||||
}
|
|
||||||
|
|
||||||
// Role mention node
|
|
||||||
if (mentionNode.Type == MentionType.Role)
|
|
||||||
{
|
|
||||||
var role = _chatLog.Mentionables.GetRole(mentionNode.Id);
|
|
||||||
return $"@{role.Name}";
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Emoji node
|
|
||||||
if (node is EmojiNode emojiNode)
|
|
||||||
{
|
|
||||||
return emojiNode.IsCustomEmoji ? $":{emojiNode.Name}:" : emojiNode.Name;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Throw on unexpected nodes
|
|
||||||
throw new InvalidOperationException($"Unexpected node: [{node.GetType()}].");
|
|
||||||
}
|
|
||||||
|
|
||||||
private string FormatMarkdown(IEnumerable<Node> nodes) => nodes.Select(FormatMarkdown).JoinToString("");
|
|
||||||
|
|
||||||
private string FormatMarkdown(string markdown) => FormatMarkdown(MarkdownParser.ParseMinimal(markdown));
|
|
||||||
|
|
||||||
private async Task RenderMessageHeaderAsync(TextWriter writer, Message message)
|
|
||||||
{
|
|
||||||
// Timestamp
|
|
||||||
await writer.WriteAsync($"[{FormatDate(message.Timestamp)}]");
|
|
||||||
|
|
||||||
// Author
|
|
||||||
await writer.WriteAsync($" {message.Author.FullName}");
|
|
||||||
|
|
||||||
// Whether the message is pinned
|
|
||||||
if (message.IsPinned)
|
|
||||||
await writer.WriteAsync(" (pinned)");
|
|
||||||
|
|
||||||
await writer.WriteLineAsync();
|
|
||||||
}
|
|
||||||
|
|
||||||
private async Task RenderAttachmentsAsync(TextWriter writer, IReadOnlyList<Attachment> attachments)
|
|
||||||
{
|
|
||||||
if (attachments.Any())
|
|
||||||
{
|
|
||||||
await writer.WriteLineAsync("{Attachments}");
|
|
||||||
|
|
||||||
foreach (var attachment in attachments)
|
|
||||||
await writer.WriteLineAsync(attachment.Url);
|
|
||||||
|
|
||||||
await writer.WriteLineAsync();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private async Task RenderEmbedsAsync(TextWriter writer, IReadOnlyList<Embed> embeds)
|
|
||||||
{
|
|
||||||
foreach (var embed in embeds)
|
|
||||||
{
|
|
||||||
await writer.WriteLineAsync("{Embed}");
|
|
||||||
|
|
||||||
// Author name
|
|
||||||
if (!(embed.Author?.Name).IsNullOrWhiteSpace())
|
|
||||||
await writer.WriteLineAsync(embed.Author?.Name);
|
|
||||||
|
|
||||||
// URL
|
|
||||||
if (!embed.Url.IsNullOrWhiteSpace())
|
|
||||||
await writer.WriteLineAsync(embed.Url);
|
|
||||||
|
|
||||||
// Title
|
|
||||||
if (!embed.Title.IsNullOrWhiteSpace())
|
|
||||||
await writer.WriteLineAsync(FormatMarkdown(embed.Title));
|
|
||||||
|
|
||||||
// Description
|
|
||||||
if (!embed.Description.IsNullOrWhiteSpace())
|
|
||||||
await writer.WriteLineAsync(FormatMarkdown(embed.Description));
|
|
||||||
|
|
||||||
// Fields
|
|
||||||
foreach (var field in embed.Fields)
|
|
||||||
{
|
|
||||||
// Name
|
|
||||||
if (!field.Name.IsNullOrWhiteSpace())
|
|
||||||
await writer.WriteLineAsync(field.Name);
|
|
||||||
|
|
||||||
// Value
|
|
||||||
if (!field.Value.IsNullOrWhiteSpace())
|
|
||||||
await writer.WriteLineAsync(field.Value);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Thumbnail URL
|
|
||||||
if (!(embed.Thumbnail?.Url).IsNullOrWhiteSpace())
|
|
||||||
await writer.WriteLineAsync(embed.Thumbnail?.Url);
|
|
||||||
|
|
||||||
// Image URL
|
|
||||||
if (!(embed.Image?.Url).IsNullOrWhiteSpace())
|
|
||||||
await writer.WriteLineAsync(embed.Image?.Url);
|
|
||||||
|
|
||||||
// Footer text
|
|
||||||
if (!(embed.Footer?.Text).IsNullOrWhiteSpace())
|
|
||||||
await writer.WriteLineAsync(embed.Footer?.Text);
|
|
||||||
|
|
||||||
await writer.WriteLineAsync();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private async Task RenderReactionsAsync(TextWriter writer, IReadOnlyList<Reaction> reactions)
|
|
||||||
{
|
|
||||||
if (reactions.Any())
|
|
||||||
{
|
|
||||||
await writer.WriteLineAsync("{Reactions}");
|
|
||||||
|
|
||||||
foreach (var reaction in reactions)
|
|
||||||
{
|
|
||||||
await writer.WriteAsync(reaction.Emoji.Name);
|
|
||||||
|
|
||||||
if (reaction.Count > 1)
|
|
||||||
await writer.WriteAsync($" ({reaction.Count})");
|
|
||||||
|
|
||||||
await writer.WriteAsync(" ");
|
|
||||||
}
|
|
||||||
|
|
||||||
await writer.WriteLineAsync();
|
|
||||||
await writer.WriteLineAsync();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private async Task RenderMessageAsync(TextWriter writer, Message message)
|
|
||||||
{
|
|
||||||
// Header
|
|
||||||
await RenderMessageHeaderAsync(writer, message);
|
|
||||||
|
|
||||||
// Content
|
|
||||||
await writer.WriteLineAsync(FormatMarkdown(message.Content));
|
|
||||||
|
|
||||||
// Separator
|
|
||||||
await writer.WriteLineAsync();
|
|
||||||
|
|
||||||
// Attachments
|
|
||||||
await RenderAttachmentsAsync(writer, message.Attachments);
|
|
||||||
|
|
||||||
// Embeds
|
|
||||||
await RenderEmbedsAsync(writer, message.Embeds);
|
|
||||||
|
|
||||||
// Reactions
|
|
||||||
await RenderReactionsAsync(writer, message.Reactions);
|
|
||||||
}
|
|
||||||
|
|
||||||
public async Task RenderAsync(TextWriter writer)
|
|
||||||
{
|
|
||||||
// Metadata
|
|
||||||
await writer.WriteLineAsync('='.Repeat(62));
|
|
||||||
await writer.WriteLineAsync($"Guild: {_chatLog.Guild.Name}");
|
|
||||||
await writer.WriteLineAsync($"Channel: {_chatLog.Channel.Name}");
|
|
||||||
await writer.WriteLineAsync($"Topic: {_chatLog.Channel.Topic}");
|
|
||||||
await writer.WriteLineAsync($"Messages: {_chatLog.Messages.Count:N0}");
|
|
||||||
await writer.WriteLineAsync($"Range: {FormatDateRange(_chatLog.After, _chatLog.Before)}");
|
|
||||||
await writer.WriteLineAsync('='.Repeat(62));
|
|
||||||
await writer.WriteLineAsync();
|
|
||||||
|
|
||||||
// Log
|
|
||||||
foreach (var message in _chatLog.Messages)
|
|
||||||
await RenderMessageAsync(writer, message);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,3 +0,0 @@
|
|||||||
{{~ ThemeStyleSheet = include "HtmlDark.css" ~}}
|
|
||||||
{{~ HighlightJsStyleName = "solarized-dark" ~}}
|
|
||||||
{{~ include "HtmlShared.html" ~}}
|
|
||||||
@@ -1,3 +0,0 @@
|
|||||||
{{~ ThemeStyleSheet = include "HtmlLight.css" ~}}
|
|
||||||
{{~ HighlightJsStyleName = "solarized-light" ~}}
|
|
||||||
{{~ include "HtmlShared.html" ~}}
|
|
||||||
@@ -1,255 +0,0 @@
|
|||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en">
|
|
||||||
|
|
||||||
<head>
|
|
||||||
{{~ # Metadata ~}}
|
|
||||||
<title>{{ Model.Guild.Name | html.escape }} - {{ Model.Channel.Name | html.escape }}</title>
|
|
||||||
<meta charset="utf-8" />
|
|
||||||
<meta name="viewport" content="width=device-width" />
|
|
||||||
|
|
||||||
{{~ # Styles ~}}
|
|
||||||
<style>
|
|
||||||
{{ include "HtmlShared.css" }}
|
|
||||||
</style>
|
|
||||||
<style>
|
|
||||||
{{ ThemeStyleSheet }}
|
|
||||||
</style>
|
|
||||||
|
|
||||||
{{~ # Local scripts ~}}
|
|
||||||
<script>
|
|
||||||
function scrollToMessage(event, id) {
|
|
||||||
var element = document.getElementById('message-' + id);
|
|
||||||
|
|
||||||
if (element !== null && element !== undefined) {
|
|
||||||
event.preventDefault();
|
|
||||||
|
|
||||||
element.classList.add('chatlog__message--highlighted');
|
|
||||||
|
|
||||||
window.scrollTo({
|
|
||||||
top: element.getBoundingClientRect().top - document.body.getBoundingClientRect().top - (window.innerHeight / 2),
|
|
||||||
behavior: 'smooth'
|
|
||||||
});
|
|
||||||
|
|
||||||
window.setTimeout(function() {
|
|
||||||
element.classList.remove('chatlog__message--highlighted');
|
|
||||||
}, 2000);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
</script>
|
|
||||||
|
|
||||||
{{~ # Syntax highlighting ~}}
|
|
||||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.15.6/styles/{{HighlightJsStyleName}}.min.css">
|
|
||||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.15.6/highlight.min.js"></script>
|
|
||||||
<script>
|
|
||||||
document.addEventListener('DOMContentLoaded', () => {
|
|
||||||
document.querySelectorAll('.pre--multiline').forEach((block) => {
|
|
||||||
hljs.highlightBlock(block);
|
|
||||||
});
|
|
||||||
});
|
|
||||||
</script>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
|
|
||||||
{{~ # Info ~}}
|
|
||||||
<div class="info">
|
|
||||||
<div class="info__guild-icon-container">
|
|
||||||
<img class="info__guild-icon" src="{{ Model.Guild.IconUrl }}" />
|
|
||||||
</div>
|
|
||||||
<div class="info__metadata">
|
|
||||||
<div class="info__guild-name">{{ Model.Guild.Name | html.escape }}</div>
|
|
||||||
<div class="info__channel-name">{{ Model.Channel.Name | html.escape }}</div>
|
|
||||||
|
|
||||||
{{~ if Model.Channel.Topic ~}}
|
|
||||||
<div class="info__channel-topic">{{ Model.Channel.Topic | html.escape }}</div>
|
|
||||||
{{~ end ~}}
|
|
||||||
|
|
||||||
<div class="info__channel-message-count">{{ Model.Messages | array.size | object.format "N0" }} messages</div>
|
|
||||||
|
|
||||||
{{~ if Model.After || Model.Before ~}}
|
|
||||||
<div class="info__channel-date-range">
|
|
||||||
{{~ if Model.After && Model.Before ~}}
|
|
||||||
Between {{ Model.After | FormatDate | html.escape }} and {{ Model.Before | FormatDate | html.escape }}
|
|
||||||
{{~ else if Model.After ~}}
|
|
||||||
After {{ Model.After | FormatDate | html.escape }}
|
|
||||||
{{~ else if Model.Before ~}}
|
|
||||||
Before {{ Model.Before | FormatDate | html.escape }}
|
|
||||||
{{~ end ~}}
|
|
||||||
</div>
|
|
||||||
{{~ end ~}}
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
{{~ # Log ~}}
|
|
||||||
<div class="chatlog">
|
|
||||||
{{~ for group in Model.Messages | GroupMessages ~}}
|
|
||||||
<div class="chatlog__message-group">
|
|
||||||
{{~ # Avatar ~}}
|
|
||||||
<div class="chatlog__author-avatar-container">
|
|
||||||
<img class="chatlog__author-avatar" src="{{ group.Author.AvatarUrl }}" />
|
|
||||||
</div>
|
|
||||||
<div class="chatlog__messages">
|
|
||||||
{{~ # Author name and timestamp ~}}
|
|
||||||
<span class="chatlog__author-name" title="{{ group.Author.FullName | html.escape }}" data-user-id="{{ group.Author.Id | html.escape }}">{{ group.Author.Name | html.escape }}</span>
|
|
||||||
|
|
||||||
{{~ # Bot tag ~}}
|
|
||||||
{{~ if group.Author.IsBot ~}}
|
|
||||||
<span class="chatlog__bot-tag">BOT</span>
|
|
||||||
{{~ end ~}}
|
|
||||||
|
|
||||||
<span class="chatlog__timestamp">{{ group.Timestamp | FormatDate | html.escape }}</span>
|
|
||||||
|
|
||||||
{{~ # Messages ~}}
|
|
||||||
{{~ for message in group.Messages ~}}
|
|
||||||
<div class="chatlog__message {{if message.IsPinned }}chatlog__message--pinned{{ end }}" data-message-id="{{ message.Id }}" id="message-{{ message.Id }}">
|
|
||||||
{{~ # Content ~}}
|
|
||||||
{{~ if message.Content ~}}
|
|
||||||
<div class="chatlog__content">
|
|
||||||
<span class="markdown">{{ message.Content | FormatMarkdown }}</span>
|
|
||||||
|
|
||||||
{{~ # Edited timestamp ~}}
|
|
||||||
{{~ if message.EditedTimestamp ~}}
|
|
||||||
<span class="chatlog__edited-timestamp" title="{{ message.EditedTimestamp | FormatDate | html.escape }}">(edited)</span>
|
|
||||||
{{~ end ~}}
|
|
||||||
</div>
|
|
||||||
{{~ end ~}}
|
|
||||||
|
|
||||||
{{~ # Attachments ~}}
|
|
||||||
{{~ for attachment in message.Attachments ~}}
|
|
||||||
<div class="chatlog__attachment">
|
|
||||||
<a href="{{ attachment.Url }}">
|
|
||||||
{{ # Image }}
|
|
||||||
{{~ if attachment.IsImage ~}}
|
|
||||||
<img class="chatlog__attachment-thumbnail" src="{{ attachment.Url }}" />
|
|
||||||
{{~ # Non-image ~}}
|
|
||||||
{{~ else ~}}
|
|
||||||
Attachment: {{ attachment.FileName }} ({{ attachment.FileSize }})
|
|
||||||
{{~ end ~}}
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
{{~ end ~}}
|
|
||||||
|
|
||||||
{{~ # Embeds ~}}
|
|
||||||
{{~ for embed in message.Embeds ~}}
|
|
||||||
<div class="chatlog__embed">
|
|
||||||
<div class="chatlog__embed-color-pill" style="background-color: rgba({{ embed.Color.R }},{{ embed.Color.G }},{{ embed.Color.B }},{{ embed.Color.A }})"></div>
|
|
||||||
<div class="chatlog__embed-content-container">
|
|
||||||
<div class="chatlog__embed-content">
|
|
||||||
<div class="chatlog__embed-text">
|
|
||||||
{{~ # Author ~}}
|
|
||||||
{{~ if embed.Author ~}}
|
|
||||||
<div class="chatlog__embed-author">
|
|
||||||
{{~ if embed.Author.IconUrl ~}}
|
|
||||||
<img class="chatlog__embed-author-icon" src="{{ embed.Author.IconUrl }}" />
|
|
||||||
{{~ end ~}}
|
|
||||||
|
|
||||||
{{~ if embed.Author.Name ~}}
|
|
||||||
<span class="chatlog__embed-author-name">
|
|
||||||
{{~ if embed.Author.Url ~}}
|
|
||||||
<a class="chatlog__embed-author-name-link" href="{{ embed.Author.Url }}">{{ embed.Author.Name | html.escape }}</a>
|
|
||||||
{{~ else ~}}
|
|
||||||
{{ embed.Author.Name | html.escape }}
|
|
||||||
{{~ end ~}}
|
|
||||||
</span>
|
|
||||||
{{~ end ~}}
|
|
||||||
</div>
|
|
||||||
{{~ end ~}}
|
|
||||||
|
|
||||||
{{~ # Title ~}}
|
|
||||||
{{~ if embed.Title ~}}
|
|
||||||
<div class="chatlog__embed-title">
|
|
||||||
{{~ if embed.Url ~}}
|
|
||||||
<a class="chatlog__embed-title-link" href="{{ embed.Url }}"><span class="markdown">{{ embed.Title | FormatMarkdown }}</span></a>
|
|
||||||
{{~ else ~}}
|
|
||||||
<span class="markdown">{{ embed.Title | FormatMarkdown }}</span>
|
|
||||||
{{~ end ~}}
|
|
||||||
</div>
|
|
||||||
{{~ end ~}}
|
|
||||||
|
|
||||||
{{~ # Description ~}}
|
|
||||||
{{~ if embed.Description ~}}
|
|
||||||
<div class="chatlog__embed-description"><span class="markdown">{{ embed.Description | FormatMarkdown }}</span></div>
|
|
||||||
{{~ end ~}}
|
|
||||||
|
|
||||||
{{~ # Fields ~}}
|
|
||||||
{{~ if embed.Fields | array.size > 0 ~}}
|
|
||||||
<div class="chatlog__embed-fields">
|
|
||||||
{{~ for field in embed.Fields ~}}
|
|
||||||
<div class="chatlog__embed-field {{ if field.IsInline }} chatlog__embed-field--inline {{ end }}">
|
|
||||||
{{~ if field.Name ~}}
|
|
||||||
<div class="chatlog__embed-field-name"><span class="markdown">{{ field.Name | FormatMarkdown }}</span></div>
|
|
||||||
{{~ end ~}}
|
|
||||||
{{~ if field.Value ~}}
|
|
||||||
<div class="chatlog__embed-field-value"><span class="markdown">{{ field.Value | FormatMarkdown }}</span></div>
|
|
||||||
{{~ end ~}}
|
|
||||||
</div>
|
|
||||||
{{~ end ~}}
|
|
||||||
</div>
|
|
||||||
{{~ end ~}}
|
|
||||||
</div>
|
|
||||||
|
|
||||||
{{~ # Thumbnail ~}}
|
|
||||||
{{~ if embed.Thumbnail ~}}
|
|
||||||
<div class="chatlog__embed-thumbnail-container">
|
|
||||||
<a class="chatlog__embed-thumbnail-link" href="{{ embed.Thumbnail.Url }}">
|
|
||||||
<img class="chatlog__embed-thumbnail" src="{{ embed.Thumbnail.Url }}" />
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
{{~ end ~}}
|
|
||||||
</div>
|
|
||||||
|
|
||||||
{{~ # Image ~}}
|
|
||||||
{{~ if embed.Image ~}}
|
|
||||||
<div class="chatlog__embed-image-container">
|
|
||||||
<a class="chatlog__embed-image-link" href="{{ embed.Image.Url }}">
|
|
||||||
<img class="chatlog__embed-image" src="{{ embed.Image.Url }}" />
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
{{~ end ~}}
|
|
||||||
|
|
||||||
{{~ # Footer ~}}
|
|
||||||
{{~ if embed.Footer || embed.Timestamp ~}}
|
|
||||||
<div class="chatlog__embed-footer">
|
|
||||||
{{~ if embed.Footer ~}}
|
|
||||||
{{~ if embed.Footer.Text && embed.Footer.IconUrl ~}}
|
|
||||||
<img class="chatlog__embed-footer-icon" src="{{ embed.Footer.IconUrl }}" />
|
|
||||||
{{~ end ~}}
|
|
||||||
{{~ end ~}}
|
|
||||||
|
|
||||||
<span class="chatlog__embed-footer-text">
|
|
||||||
{{~ if embed.Footer ~}}
|
|
||||||
{{~ if embed.Footer.Text ~}}
|
|
||||||
{{ embed.Footer.Text | html.escape }}
|
|
||||||
{{ if embed.Timestamp }} • {{ end }}
|
|
||||||
{{~ end ~}}
|
|
||||||
{{~ end ~}}
|
|
||||||
|
|
||||||
{{~ if embed.Timestamp ~}}
|
|
||||||
{{ embed.Timestamp | FormatDate | html.escape }}
|
|
||||||
{{~ end ~}}
|
|
||||||
</span>
|
|
||||||
</div>
|
|
||||||
{{~ end ~}}
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
{{~ end ~}}
|
|
||||||
|
|
||||||
{{~ # Reactions ~}}
|
|
||||||
{{~ if message.Reactions | array.size > 0 ~}}
|
|
||||||
<div class="chatlog__reactions">
|
|
||||||
{{~ for reaction in message.Reactions ~}}
|
|
||||||
<div class="chatlog__reaction">
|
|
||||||
<img class="emoji emoji--small" alt="{{ reaction.Emoji.Name }}" title="{{ reaction.Emoji.Name }}" src="{{ reaction.Emoji.ImageUrl }}" />
|
|
||||||
<span class="chatlog__reaction-count">{{ reaction.Count }}</span>
|
|
||||||
</div>
|
|
||||||
{{~ end ~}}
|
|
||||||
</div>
|
|
||||||
{{~ end ~}}
|
|
||||||
</div>
|
|
||||||
{{~ end ~}}
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
{{~ end ~}}
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
@@ -1,211 +0,0 @@
|
|||||||
using System;
|
|
||||||
using System.Drawing;
|
|
||||||
using System.Linq;
|
|
||||||
using DiscordChatExporter.Core.Models;
|
|
||||||
using DiscordChatExporter.Core.Services.Internal;
|
|
||||||
using Newtonsoft.Json.Linq;
|
|
||||||
using Tyrrrz.Extensions;
|
|
||||||
|
|
||||||
namespace DiscordChatExporter.Core.Services
|
|
||||||
{
|
|
||||||
public partial class DataService
|
|
||||||
{
|
|
||||||
private User ParseUser(JToken json)
|
|
||||||
{
|
|
||||||
var id = json["id"].Value<string>();
|
|
||||||
var discriminator = json["discriminator"].Value<int>();
|
|
||||||
var name = json["username"].Value<string>();
|
|
||||||
var avatarHash = json["avatar"].Value<string>();
|
|
||||||
var isBot = json["bot"]?.Value<bool>() ?? false;
|
|
||||||
|
|
||||||
return new User(id, discriminator, name, avatarHash, isBot);
|
|
||||||
}
|
|
||||||
|
|
||||||
private Guild ParseGuild(JToken json)
|
|
||||||
{
|
|
||||||
var id = json["id"].Value<string>();
|
|
||||||
var name = json["name"].Value<string>();
|
|
||||||
var iconHash = json["icon"].Value<string>();
|
|
||||||
|
|
||||||
return new Guild(id, name, iconHash);
|
|
||||||
}
|
|
||||||
|
|
||||||
private Channel ParseChannel(JToken json)
|
|
||||||
{
|
|
||||||
// Get basic data
|
|
||||||
var id = json["id"].Value<string>();
|
|
||||||
var parentId = json["parent_id"]?.Value<string>();
|
|
||||||
var type = (ChannelType) json["type"].Value<int>();
|
|
||||||
var topic = json["topic"]?.Value<string>();
|
|
||||||
|
|
||||||
// Try to extract guild ID
|
|
||||||
var guildId = json["guild_id"]?.Value<string>();
|
|
||||||
|
|
||||||
// If the guild ID is blank, it's direct messages
|
|
||||||
if (guildId.IsNullOrWhiteSpace())
|
|
||||||
guildId = Guild.DirectMessages.Id;
|
|
||||||
|
|
||||||
// Try to extract name
|
|
||||||
var name = json["name"]?.Value<string>();
|
|
||||||
|
|
||||||
// If the name is blank, it's direct messages
|
|
||||||
if (name.IsNullOrWhiteSpace())
|
|
||||||
name = json["recipients"].Select(ParseUser).Select(u => u.Name).JoinToString(", ");
|
|
||||||
|
|
||||||
return new Channel(id, parentId, guildId, name, topic, type);
|
|
||||||
}
|
|
||||||
|
|
||||||
private Role ParseRole(JToken json)
|
|
||||||
{
|
|
||||||
var id = json["id"].Value<string>();
|
|
||||||
var name = json["name"].Value<string>();
|
|
||||||
|
|
||||||
return new Role(id, name);
|
|
||||||
}
|
|
||||||
|
|
||||||
private Attachment ParseAttachment(JToken json)
|
|
||||||
{
|
|
||||||
var id = json["id"].Value<string>();
|
|
||||||
var url = json["url"].Value<string>();
|
|
||||||
var width = json["width"]?.Value<int>();
|
|
||||||
var height = json["height"]?.Value<int>();
|
|
||||||
var fileName = json["filename"].Value<string>();
|
|
||||||
var fileSizeBytes = json["size"].Value<long>();
|
|
||||||
|
|
||||||
var fileSize = new FileSize(fileSizeBytes);
|
|
||||||
|
|
||||||
return new Attachment(id, width, height, url, fileName, fileSize);
|
|
||||||
}
|
|
||||||
|
|
||||||
private EmbedAuthor ParseEmbedAuthor(JToken json)
|
|
||||||
{
|
|
||||||
var name = json["name"]?.Value<string>();
|
|
||||||
var url = json["url"]?.Value<string>();
|
|
||||||
var iconUrl = json["icon_url"]?.Value<string>();
|
|
||||||
|
|
||||||
return new EmbedAuthor(name, url, iconUrl);
|
|
||||||
}
|
|
||||||
|
|
||||||
private EmbedField ParseEmbedField(JToken json)
|
|
||||||
{
|
|
||||||
var name = json["name"].Value<string>();
|
|
||||||
var value = json["value"].Value<string>();
|
|
||||||
var isInline = json["inline"]?.Value<bool>() ?? false;
|
|
||||||
|
|
||||||
return new EmbedField(name, value, isInline);
|
|
||||||
}
|
|
||||||
|
|
||||||
private EmbedImage ParseEmbedImage(JToken json)
|
|
||||||
{
|
|
||||||
var url = json["url"]?.Value<string>();
|
|
||||||
var width = json["width"]?.Value<int>();
|
|
||||||
var height = json["height"]?.Value<int>();
|
|
||||||
|
|
||||||
return new EmbedImage(url, width, height);
|
|
||||||
}
|
|
||||||
|
|
||||||
private EmbedFooter ParseEmbedFooter(JToken json)
|
|
||||||
{
|
|
||||||
var text = json["text"].Value<string>();
|
|
||||||
var iconUrl = json["icon_url"]?.Value<string>();
|
|
||||||
|
|
||||||
return new EmbedFooter(text, iconUrl);
|
|
||||||
}
|
|
||||||
|
|
||||||
private Embed ParseEmbed(JToken json)
|
|
||||||
{
|
|
||||||
// Get basic data
|
|
||||||
var title = json["title"]?.Value<string>();
|
|
||||||
var description = json["description"]?.Value<string>();
|
|
||||||
var url = json["url"]?.Value<string>();
|
|
||||||
var timestamp = json["timestamp"]?.Value<DateTime>().ToDateTimeOffset();
|
|
||||||
|
|
||||||
// Get color
|
|
||||||
var color = json["color"] != null
|
|
||||||
? Color.FromArgb(json["color"].Value<int>()).ResetAlpha()
|
|
||||||
: Color.FromArgb(79, 84, 92); // default color
|
|
||||||
|
|
||||||
// Get author
|
|
||||||
var author = json["author"] != null ? ParseEmbedAuthor(json["author"]) : null;
|
|
||||||
|
|
||||||
// Get fields
|
|
||||||
var fields = json["fields"].EmptyIfNull().Select(ParseEmbedField).ToArray();
|
|
||||||
|
|
||||||
// Get thumbnail
|
|
||||||
var thumbnail = json["thumbnail"] != null ? ParseEmbedImage(json["thumbnail"]) : null;
|
|
||||||
|
|
||||||
// Get image
|
|
||||||
var image = json["image"] != null ? ParseEmbedImage(json["image"]) : null;
|
|
||||||
|
|
||||||
// Get footer
|
|
||||||
var footer = json["footer"] != null ? ParseEmbedFooter(json["footer"]) : null;
|
|
||||||
|
|
||||||
return new Embed(title, url, timestamp, color, author, description, fields, thumbnail, image, footer);
|
|
||||||
}
|
|
||||||
|
|
||||||
private Emoji ParseEmoji(JToken json)
|
|
||||||
{
|
|
||||||
var id = json["id"]?.Value<string>();
|
|
||||||
var name = json["name"]?.Value<string>();
|
|
||||||
var isAnimated = json["animated"]?.Value<bool>() ?? false;
|
|
||||||
|
|
||||||
return new Emoji(id, name, isAnimated);
|
|
||||||
}
|
|
||||||
|
|
||||||
private Reaction ParseReaction(JToken json)
|
|
||||||
{
|
|
||||||
var count = json["count"].Value<int>();
|
|
||||||
var emoji = ParseEmoji(json["emoji"]);
|
|
||||||
|
|
||||||
return new Reaction(count, emoji);
|
|
||||||
}
|
|
||||||
|
|
||||||
private Message ParseMessage(JToken json)
|
|
||||||
{
|
|
||||||
// Get basic data
|
|
||||||
var id = json["id"].Value<string>();
|
|
||||||
var channelId = json["channel_id"].Value<string>();
|
|
||||||
var timestamp = json["timestamp"].Value<DateTime>().ToDateTimeOffset();
|
|
||||||
var editedTimestamp = json["edited_timestamp"]?.Value<DateTime?>()?.ToDateTimeOffset();
|
|
||||||
var content = json["content"].Value<string>();
|
|
||||||
var type = (MessageType) json["type"].Value<int>();
|
|
||||||
|
|
||||||
// Workarounds for non-default types
|
|
||||||
if (type == MessageType.RecipientAdd)
|
|
||||||
content = "Added a recipient.";
|
|
||||||
else if (type == MessageType.RecipientRemove)
|
|
||||||
content = "Removed a recipient.";
|
|
||||||
else if (type == MessageType.Call)
|
|
||||||
content = "Started a call.";
|
|
||||||
else if (type == MessageType.ChannelNameChange)
|
|
||||||
content = "Changed the channel name.";
|
|
||||||
else if (type == MessageType.ChannelIconChange)
|
|
||||||
content = "Changed the channel icon.";
|
|
||||||
else if (type == MessageType.ChannelPinnedMessage)
|
|
||||||
content = "Pinned a message.";
|
|
||||||
else if (type == MessageType.GuildMemberJoin)
|
|
||||||
content = "Joined the server.";
|
|
||||||
|
|
||||||
// Get author
|
|
||||||
var author = ParseUser(json["author"]);
|
|
||||||
|
|
||||||
// Get attachments
|
|
||||||
var attachments = json["attachments"].EmptyIfNull().Select(ParseAttachment).ToArray();
|
|
||||||
|
|
||||||
// Get embeds
|
|
||||||
var embeds = json["embeds"].EmptyIfNull().Select(ParseEmbed).ToArray();
|
|
||||||
|
|
||||||
// Get reactions
|
|
||||||
var reactions = json["reactions"].EmptyIfNull().Select(ParseReaction).ToArray();
|
|
||||||
|
|
||||||
// Get mentioned users
|
|
||||||
var mentionedUsers = json["mentions"].EmptyIfNull().Select(ParseUser).ToArray();
|
|
||||||
|
|
||||||
// Get whether this message is pinned
|
|
||||||
var isPinned = json["pinned"].Value<bool>();
|
|
||||||
|
|
||||||
return new Message(id, channelId, type, author, timestamp, editedTimestamp, content, attachments, embeds,
|
|
||||||
reactions, mentionedUsers, isPinned);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,256 +0,0 @@
|
|||||||
using System;
|
|
||||||
using System.Collections.Generic;
|
|
||||||
using System.Linq;
|
|
||||||
using System.Net.Http;
|
|
||||||
using System.Net.Http.Headers;
|
|
||||||
using System.Threading.Tasks;
|
|
||||||
using DiscordChatExporter.Core.Models;
|
|
||||||
using DiscordChatExporter.Core.Services.Exceptions;
|
|
||||||
using DiscordChatExporter.Core.Services.Internal;
|
|
||||||
using Failsafe;
|
|
||||||
using Newtonsoft.Json.Linq;
|
|
||||||
using Tyrrrz.Extensions;
|
|
||||||
|
|
||||||
namespace DiscordChatExporter.Core.Services
|
|
||||||
{
|
|
||||||
public partial class DataService : IDisposable
|
|
||||||
{
|
|
||||||
private readonly HttpClient _httpClient = new HttpClient();
|
|
||||||
|
|
||||||
private async Task<JToken> GetApiResponseAsync(AuthToken token, string resource, string endpoint,
|
|
||||||
params string[] parameters)
|
|
||||||
{
|
|
||||||
// Create retry policy
|
|
||||||
var retry = Retry.Create()
|
|
||||||
.Catch<HttpErrorStatusCodeException>(false, e => (int) e.StatusCode >= 500)
|
|
||||||
.Catch<HttpErrorStatusCodeException>(false, e => (int) e.StatusCode == 429)
|
|
||||||
.WithMaxTryCount(10)
|
|
||||||
.WithDelay(TimeSpan.FromSeconds(0.4));
|
|
||||||
|
|
||||||
// Send request
|
|
||||||
return await retry.ExecuteAsync(async () =>
|
|
||||||
{
|
|
||||||
// Create request
|
|
||||||
const string apiRoot = "https://discordapp.com/api/v6";
|
|
||||||
using (var request = new HttpRequestMessage(HttpMethod.Get, $"{apiRoot}/{resource}/{endpoint}"))
|
|
||||||
{
|
|
||||||
// Set authorization header
|
|
||||||
request.Headers.Authorization = token.Type == AuthTokenType.Bot
|
|
||||||
? new AuthenticationHeaderValue("Bot", token.Value)
|
|
||||||
: new AuthenticationHeaderValue(token.Value);
|
|
||||||
|
|
||||||
// Add parameters
|
|
||||||
foreach (var parameter in parameters)
|
|
||||||
{
|
|
||||||
var key = parameter.SubstringUntil("=");
|
|
||||||
var value = parameter.SubstringAfter("=");
|
|
||||||
|
|
||||||
// Skip empty values
|
|
||||||
if (value.IsNullOrWhiteSpace())
|
|
||||||
continue;
|
|
||||||
|
|
||||||
request.RequestUri = request.RequestUri.SetQueryParameter(key, value);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Get response
|
|
||||||
using (var response = await _httpClient.SendAsync(request))
|
|
||||||
{
|
|
||||||
// Check status code
|
|
||||||
// We throw our own exception here because default one doesn't have status code
|
|
||||||
if (!response.IsSuccessStatusCode)
|
|
||||||
throw new HttpErrorStatusCodeException(response.StatusCode, response.ReasonPhrase);
|
|
||||||
|
|
||||||
// Get content
|
|
||||||
var raw = await response.Content.ReadAsStringAsync();
|
|
||||||
|
|
||||||
// Parse
|
|
||||||
return JToken.Parse(raw);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
public async Task<Guild> GetGuildAsync(AuthToken token, string guildId)
|
|
||||||
{
|
|
||||||
// Special case for direct messages pseudo-guild
|
|
||||||
if (guildId == Guild.DirectMessages.Id)
|
|
||||||
return Guild.DirectMessages;
|
|
||||||
|
|
||||||
var response = await GetApiResponseAsync(token, "guilds", guildId);
|
|
||||||
var guild = ParseGuild(response);
|
|
||||||
|
|
||||||
return guild;
|
|
||||||
}
|
|
||||||
|
|
||||||
public async Task<Channel> GetChannelAsync(AuthToken token, string channelId)
|
|
||||||
{
|
|
||||||
var response = await GetApiResponseAsync(token, "channels", channelId);
|
|
||||||
var channel = ParseChannel(response);
|
|
||||||
|
|
||||||
return channel;
|
|
||||||
}
|
|
||||||
|
|
||||||
public async Task<IReadOnlyList<Guild>> GetUserGuildsAsync(AuthToken token)
|
|
||||||
{
|
|
||||||
var response = await GetApiResponseAsync(token, "users", "@me/guilds", "limit=100");
|
|
||||||
var guilds = response.Select(ParseGuild).ToArray();
|
|
||||||
|
|
||||||
return guilds;
|
|
||||||
}
|
|
||||||
|
|
||||||
public async Task<IReadOnlyList<Channel>> GetDirectMessageChannelsAsync(AuthToken token)
|
|
||||||
{
|
|
||||||
var response = await GetApiResponseAsync(token, "users", "@me/channels");
|
|
||||||
var channels = response.Select(ParseChannel).ToArray();
|
|
||||||
|
|
||||||
return channels;
|
|
||||||
}
|
|
||||||
|
|
||||||
public async Task<IReadOnlyList<Channel>> GetGuildChannelsAsync(AuthToken token, string guildId)
|
|
||||||
{
|
|
||||||
var response = await GetApiResponseAsync(token, "guilds", $"{guildId}/channels");
|
|
||||||
var channels = response.Select(ParseChannel).ToArray();
|
|
||||||
|
|
||||||
return channels;
|
|
||||||
}
|
|
||||||
|
|
||||||
public async Task<IReadOnlyList<Role>> GetGuildRolesAsync(AuthToken token, string guildId)
|
|
||||||
{
|
|
||||||
var response = await GetApiResponseAsync(token, "guilds", $"{guildId}/roles");
|
|
||||||
var roles = response.Select(ParseRole).ToArray();
|
|
||||||
|
|
||||||
return roles;
|
|
||||||
}
|
|
||||||
|
|
||||||
public async Task<IReadOnlyList<Message>> GetChannelMessagesAsync(AuthToken token, string channelId,
|
|
||||||
DateTimeOffset? after = null, DateTimeOffset? before = null, IProgress<double> progress = null)
|
|
||||||
{
|
|
||||||
var result = new List<Message>();
|
|
||||||
|
|
||||||
// Get the last message
|
|
||||||
var response = await GetApiResponseAsync(token, "channels", $"{channelId}/messages",
|
|
||||||
"limit=1", $"before={before?.ToSnowflake()}");
|
|
||||||
var lastMessage = response.Select(ParseMessage).FirstOrDefault();
|
|
||||||
|
|
||||||
// If the last message doesn't exist or it's outside of range - return
|
|
||||||
if (lastMessage == null || lastMessage.Timestamp < after)
|
|
||||||
{
|
|
||||||
progress?.Report(1);
|
|
||||||
return result;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Get other messages
|
|
||||||
var offsetId = after?.ToSnowflake() ?? "0";
|
|
||||||
while (true)
|
|
||||||
{
|
|
||||||
// Get message batch
|
|
||||||
response = await GetApiResponseAsync(token, "channels", $"{channelId}/messages",
|
|
||||||
"limit=100", $"after={offsetId}");
|
|
||||||
|
|
||||||
// Parse
|
|
||||||
var messages = response
|
|
||||||
.Select(ParseMessage)
|
|
||||||
.Reverse() // reverse because messages appear newest first
|
|
||||||
.ToArray();
|
|
||||||
|
|
||||||
// Break if there are no messages (can happen if messages are deleted during execution)
|
|
||||||
if (!messages.Any())
|
|
||||||
break;
|
|
||||||
|
|
||||||
// Trim messages to range (until last message)
|
|
||||||
var messagesInRange = messages
|
|
||||||
.TakeWhile(m => m.Id != lastMessage.Id && m.Timestamp < lastMessage.Timestamp)
|
|
||||||
.ToArray();
|
|
||||||
|
|
||||||
// Add to result
|
|
||||||
result.AddRange(messagesInRange);
|
|
||||||
|
|
||||||
// Break if messages were trimmed (which means the last message was encountered)
|
|
||||||
if (messagesInRange.Length != messages.Length)
|
|
||||||
break;
|
|
||||||
|
|
||||||
// Report progress (based on the time range of parsed messages compared to total)
|
|
||||||
progress?.Report((result.Last().Timestamp - result.First().Timestamp).TotalSeconds /
|
|
||||||
(lastMessage.Timestamp - result.First().Timestamp).TotalSeconds);
|
|
||||||
|
|
||||||
// Move offset
|
|
||||||
offsetId = result.Last().Id;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Add last message
|
|
||||||
result.Add(lastMessage);
|
|
||||||
|
|
||||||
// Report progress
|
|
||||||
progress?.Report(1);
|
|
||||||
|
|
||||||
return result;
|
|
||||||
}
|
|
||||||
|
|
||||||
public async Task<Mentionables> GetMentionablesAsync(AuthToken token, string guildId,
|
|
||||||
IEnumerable<Message> messages)
|
|
||||||
{
|
|
||||||
// Get channels and roles
|
|
||||||
var channels = guildId != Guild.DirectMessages.Id
|
|
||||||
? await GetGuildChannelsAsync(token, guildId)
|
|
||||||
: Array.Empty<Channel>();
|
|
||||||
var roles = guildId != Guild.DirectMessages.Id
|
|
||||||
? await GetGuildRolesAsync(token, guildId)
|
|
||||||
: Array.Empty<Role>();
|
|
||||||
|
|
||||||
// Get users
|
|
||||||
var userMap = new Dictionary<string, User>();
|
|
||||||
foreach (var message in messages)
|
|
||||||
{
|
|
||||||
// Author
|
|
||||||
userMap[message.Author.Id] = message.Author;
|
|
||||||
|
|
||||||
// Mentioned users
|
|
||||||
foreach (var mentionedUser in message.MentionedUsers)
|
|
||||||
userMap[mentionedUser.Id] = mentionedUser;
|
|
||||||
}
|
|
||||||
|
|
||||||
var users = userMap.Values.ToArray();
|
|
||||||
|
|
||||||
return new Mentionables(users, channels, roles);
|
|
||||||
}
|
|
||||||
|
|
||||||
public async Task<ChatLog> GetChatLogAsync(AuthToken token, Guild guild, Channel channel,
|
|
||||||
DateTimeOffset? after = null, DateTimeOffset? before = null, IProgress<double> progress = null)
|
|
||||||
{
|
|
||||||
// Get messages
|
|
||||||
var messages = await GetChannelMessagesAsync(token, channel.Id, after, before, progress);
|
|
||||||
|
|
||||||
// Get mentionables
|
|
||||||
var mentionables = await GetMentionablesAsync(token, guild.Id, messages);
|
|
||||||
|
|
||||||
return new ChatLog(guild, channel, after, before, messages, mentionables);
|
|
||||||
}
|
|
||||||
|
|
||||||
public async Task<ChatLog> GetChatLogAsync(AuthToken token, Channel channel,
|
|
||||||
DateTimeOffset? after = null, DateTimeOffset? before = null, IProgress<double> progress = null)
|
|
||||||
{
|
|
||||||
// Get guild
|
|
||||||
var guild = channel.GuildId == Guild.DirectMessages.Id
|
|
||||||
? Guild.DirectMessages
|
|
||||||
: await GetGuildAsync(token, channel.GuildId);
|
|
||||||
|
|
||||||
// Get the chat log
|
|
||||||
return await GetChatLogAsync(token, guild, channel, after, before, progress);
|
|
||||||
}
|
|
||||||
|
|
||||||
public async Task<ChatLog> GetChatLogAsync(AuthToken token, string channelId,
|
|
||||||
DateTimeOffset? after = null, DateTimeOffset? before = null, IProgress<double> progress = null)
|
|
||||||
{
|
|
||||||
// Get channel
|
|
||||||
var channel = await GetChannelAsync(token, channelId);
|
|
||||||
|
|
||||||
// Get the chat log
|
|
||||||
return await GetChatLogAsync(token, channel, after, before, progress);
|
|
||||||
}
|
|
||||||
|
|
||||||
public void Dispose()
|
|
||||||
{
|
|
||||||
_httpClient.Dispose();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
<Project Sdk="Microsoft.NET.Sdk">
|
|
||||||
|
|
||||||
<PropertyGroup>
|
|
||||||
<TargetFrameworks>net46;netstandard2.0</TargetFrameworks>
|
|
||||||
<LangVersion>latest</LangVersion>
|
|
||||||
</PropertyGroup>
|
|
||||||
|
|
||||||
<ItemGroup>
|
|
||||||
<PackageReference Include="Failsafe" Version="1.1.0" />
|
|
||||||
<PackageReference Include="Newtonsoft.Json" Version="12.0.2" />
|
|
||||||
<PackageReference Include="Onova" Version="2.4.5" />
|
|
||||||
<PackageReference Include="Tyrrrz.Extensions" Version="1.6.2" />
|
|
||||||
<PackageReference Include="Tyrrrz.Settings" Version="1.3.4" />
|
|
||||||
</ItemGroup>
|
|
||||||
|
|
||||||
<ItemGroup>
|
|
||||||
<ProjectReference Include="..\DiscordChatExporter.Core.Models\DiscordChatExporter.Core.Models.csproj" />
|
|
||||||
<ProjectReference Include="..\DiscordChatExporter.Core.Rendering\DiscordChatExporter.Core.Rendering.csproj" />
|
|
||||||
</ItemGroup>
|
|
||||||
|
|
||||||
</Project>
|
|
||||||
@@ -1,19 +0,0 @@
|
|||||||
using System;
|
|
||||||
using System.Net;
|
|
||||||
|
|
||||||
namespace DiscordChatExporter.Core.Services.Exceptions
|
|
||||||
{
|
|
||||||
public class HttpErrorStatusCodeException : Exception
|
|
||||||
{
|
|
||||||
public HttpStatusCode StatusCode { get; }
|
|
||||||
|
|
||||||
public string ReasonPhrase { get; }
|
|
||||||
|
|
||||||
public HttpErrorStatusCodeException(HttpStatusCode statusCode, string reasonPhrase)
|
|
||||||
: base($"Error HTTP status code: {statusCode} - {reasonPhrase}")
|
|
||||||
{
|
|
||||||
StatusCode = statusCode;
|
|
||||||
ReasonPhrase = reasonPhrase;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,89 +0,0 @@
|
|||||||
using System;
|
|
||||||
using System.IO;
|
|
||||||
using System.Linq;
|
|
||||||
using System.Threading.Tasks;
|
|
||||||
using DiscordChatExporter.Core.Models;
|
|
||||||
using DiscordChatExporter.Core.Rendering;
|
|
||||||
using Tyrrrz.Extensions;
|
|
||||||
|
|
||||||
namespace DiscordChatExporter.Core.Services
|
|
||||||
{
|
|
||||||
public class ExportService
|
|
||||||
{
|
|
||||||
private readonly SettingsService _settingsService;
|
|
||||||
|
|
||||||
public ExportService(SettingsService settingsService)
|
|
||||||
{
|
|
||||||
_settingsService = settingsService;
|
|
||||||
}
|
|
||||||
|
|
||||||
private IChatLogRenderer CreateRenderer(ChatLog chatLog, ExportFormat format)
|
|
||||||
{
|
|
||||||
if (format == ExportFormat.PlainText)
|
|
||||||
return new PlainTextChatLogRenderer(chatLog, _settingsService.DateFormat);
|
|
||||||
|
|
||||||
if (format == ExportFormat.HtmlDark)
|
|
||||||
return new HtmlChatLogRenderer(chatLog, "Dark", _settingsService.DateFormat);
|
|
||||||
|
|
||||||
if (format == ExportFormat.HtmlLight)
|
|
||||||
return new HtmlChatLogRenderer(chatLog, "Light", _settingsService.DateFormat);
|
|
||||||
|
|
||||||
if (format == ExportFormat.Csv)
|
|
||||||
return new CsvChatLogRenderer(chatLog, _settingsService.DateFormat);
|
|
||||||
|
|
||||||
throw new ArgumentOutOfRangeException(nameof(format), $"Unknown format [{format}].");
|
|
||||||
}
|
|
||||||
|
|
||||||
private async Task ExportChatLogAsync(ChatLog chatLog, string filePath, ExportFormat format)
|
|
||||||
{
|
|
||||||
// Create output directory
|
|
||||||
var dirPath = Path.GetDirectoryName(filePath);
|
|
||||||
if (!dirPath.IsNullOrWhiteSpace())
|
|
||||||
Directory.CreateDirectory(dirPath);
|
|
||||||
|
|
||||||
// Render chat log to output file
|
|
||||||
using (var writer = File.CreateText(filePath))
|
|
||||||
await CreateRenderer(chatLog, format).RenderAsync(writer);
|
|
||||||
}
|
|
||||||
|
|
||||||
public async Task ExportChatLogAsync(ChatLog chatLog, string filePath, ExportFormat format, int? partitionLimit)
|
|
||||||
{
|
|
||||||
// If partitioning is disabled or there are fewer messages in chat log than the limit - process it without partitioning
|
|
||||||
if (partitionLimit == null || partitionLimit <= 0 || chatLog.Messages.Count <= partitionLimit)
|
|
||||||
{
|
|
||||||
await ExportChatLogAsync(chatLog, filePath, format);
|
|
||||||
}
|
|
||||||
// Otherwise split into partitions and export separately
|
|
||||||
else
|
|
||||||
{
|
|
||||||
// Create partitions by grouping up to X contiguous messages into separate chat logs
|
|
||||||
var partitions = chatLog.Messages.GroupContiguous(g => g.Count < partitionLimit.Value)
|
|
||||||
.Select(g => new ChatLog(chatLog.Guild, chatLog.Channel, chatLog.After, chatLog.Before, g, chatLog.Mentionables))
|
|
||||||
.ToArray();
|
|
||||||
|
|
||||||
// Split file path into components
|
|
||||||
var dirPath = Path.GetDirectoryName(filePath);
|
|
||||||
var fileNameWithoutExt = Path.GetFileNameWithoutExtension(filePath);
|
|
||||||
var fileExt = Path.GetExtension(filePath);
|
|
||||||
|
|
||||||
// Export each partition separately
|
|
||||||
var partitionNumber = 1;
|
|
||||||
foreach (var partition in partitions)
|
|
||||||
{
|
|
||||||
// Compose new file name
|
|
||||||
var partitionFilePath = $"{fileNameWithoutExt} [{partitionNumber} of {partitions.Length}]{fileExt}";
|
|
||||||
|
|
||||||
// Compose full file path
|
|
||||||
if (!dirPath.IsNullOrWhiteSpace())
|
|
||||||
partitionFilePath = Path.Combine(dirPath, partitionFilePath);
|
|
||||||
|
|
||||||
// Export
|
|
||||||
await ExportChatLogAsync(partition, partitionFilePath, format);
|
|
||||||
|
|
||||||
// Increment partition number
|
|
||||||
partitionNumber++;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,59 +0,0 @@
|
|||||||
using System;
|
|
||||||
using System.IO;
|
|
||||||
using System.Linq;
|
|
||||||
using System.Text;
|
|
||||||
using DiscordChatExporter.Core.Models;
|
|
||||||
using Tyrrrz.Extensions;
|
|
||||||
|
|
||||||
namespace DiscordChatExporter.Core.Services.Helpers
|
|
||||||
{
|
|
||||||
public static class ExportHelper
|
|
||||||
{
|
|
||||||
public static bool IsDirectoryPath(string path) =>
|
|
||||||
path.Last() == Path.DirectorySeparatorChar ||
|
|
||||||
path.Last() == Path.AltDirectorySeparatorChar ||
|
|
||||||
(Path.GetExtension(path).IsNullOrWhiteSpace() && !File.Exists(path));
|
|
||||||
|
|
||||||
public static string GetDefaultExportFileName(ExportFormat format, Guild guild, Channel channel,
|
|
||||||
DateTimeOffset? after = null, DateTimeOffset? before = null)
|
|
||||||
{
|
|
||||||
var result = new StringBuilder();
|
|
||||||
|
|
||||||
// Append guild and channel names
|
|
||||||
result.Append($"{guild.Name} - {channel.Name} [{channel.Id}]");
|
|
||||||
|
|
||||||
// Append date range
|
|
||||||
if (after != null || before != null)
|
|
||||||
{
|
|
||||||
result.Append(" (");
|
|
||||||
|
|
||||||
// Both 'after' and 'before' are set
|
|
||||||
if (after != null && before != null)
|
|
||||||
{
|
|
||||||
result.Append($"{after:yyyy-MM-dd} to {before:yyyy-MM-dd}");
|
|
||||||
}
|
|
||||||
// Only 'after' is set
|
|
||||||
else if (after != null)
|
|
||||||
{
|
|
||||||
result.Append($"after {after:yyyy-MM-dd}");
|
|
||||||
}
|
|
||||||
// Only 'before' is set
|
|
||||||
else
|
|
||||||
{
|
|
||||||
result.Append($"before {before:yyyy-MM-dd}");
|
|
||||||
}
|
|
||||||
|
|
||||||
result.Append(")");
|
|
||||||
}
|
|
||||||
|
|
||||||
// Append extension
|
|
||||||
result.Append($".{format.GetFileExtension()}");
|
|
||||||
|
|
||||||
// Replace invalid chars
|
|
||||||
foreach (var invalidChar in Path.GetInvalidFileNameChars())
|
|
||||||
result.Replace(invalidChar, '_');
|
|
||||||
|
|
||||||
return result.ToString();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,18 +0,0 @@
|
|||||||
using System;
|
|
||||||
using System.Drawing;
|
|
||||||
|
|
||||||
namespace DiscordChatExporter.Core.Services.Internal
|
|
||||||
{
|
|
||||||
internal static class Extensions
|
|
||||||
{
|
|
||||||
public static DateTimeOffset ToDateTimeOffset(this DateTime dateTime) => new DateTimeOffset(dateTime);
|
|
||||||
|
|
||||||
public static string ToSnowflake(this DateTimeOffset dateTime)
|
|
||||||
{
|
|
||||||
var value = ((ulong) dateTime.ToUnixTimeMilliseconds() - 1420070400000UL) << 22;
|
|
||||||
return value.ToString();
|
|
||||||
}
|
|
||||||
|
|
||||||
public static Color ResetAlpha(this Color color) => Color.FromArgb(1, color);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -0,0 +1,25 @@
|
|||||||
|
using System.Net.Http.Headers;
|
||||||
|
|
||||||
|
namespace DiscordChatExporter.Domain.Discord
|
||||||
|
{
|
||||||
|
public enum AuthTokenType { User, Bot }
|
||||||
|
|
||||||
|
public class AuthToken
|
||||||
|
{
|
||||||
|
public AuthTokenType Type { get; }
|
||||||
|
|
||||||
|
public string Value { get; }
|
||||||
|
|
||||||
|
public AuthToken(AuthTokenType type, string value)
|
||||||
|
{
|
||||||
|
Type = type;
|
||||||
|
Value = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
public AuthenticationHeaderValue GetAuthorizationHeader() => Type == AuthTokenType.User
|
||||||
|
? new AuthenticationHeaderValue(Value)
|
||||||
|
: new AuthenticationHeaderValue("Bot", Value);
|
||||||
|
|
||||||
|
public override string ToString() => Value;
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,285 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Net;
|
||||||
|
using System.Net.Http;
|
||||||
|
using System.Text.Json;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
using DiscordChatExporter.Domain.Discord.Models;
|
||||||
|
using DiscordChatExporter.Domain.Exceptions;
|
||||||
|
using DiscordChatExporter.Domain.Internal;
|
||||||
|
using Polly;
|
||||||
|
|
||||||
|
namespace DiscordChatExporter.Domain.Discord
|
||||||
|
{
|
||||||
|
public partial class DiscordClient
|
||||||
|
{
|
||||||
|
private readonly AuthToken _token;
|
||||||
|
private readonly HttpClient _httpClient;
|
||||||
|
private readonly IAsyncPolicy<HttpResponseMessage> _httpRequestPolicy;
|
||||||
|
|
||||||
|
private readonly Uri _baseUri = new Uri("https://discordapp.com/api/v6/", UriKind.Absolute);
|
||||||
|
|
||||||
|
public DiscordClient(AuthToken token, HttpClient httpClient)
|
||||||
|
{
|
||||||
|
_token = token;
|
||||||
|
_httpClient = httpClient;
|
||||||
|
|
||||||
|
// Discord seems to always respond with 429 on the first request with unreasonable wait time (10+ minutes).
|
||||||
|
// For that reason the policy will start respecting their retry-after header only after Nth failed response.
|
||||||
|
_httpRequestPolicy = Policy
|
||||||
|
.HandleResult<HttpResponseMessage>(m => m.StatusCode == HttpStatusCode.TooManyRequests)
|
||||||
|
.OrResult(m => m.StatusCode >= HttpStatusCode.InternalServerError)
|
||||||
|
.WaitAndRetryAsync(6,
|
||||||
|
(i, result, ctx) =>
|
||||||
|
{
|
||||||
|
if (i <= 3)
|
||||||
|
return TimeSpan.FromSeconds(2 * i);
|
||||||
|
|
||||||
|
if (i <= 5)
|
||||||
|
return TimeSpan.FromSeconds(5 * i);
|
||||||
|
|
||||||
|
return result.Result.Headers.RetryAfter.Delta ?? TimeSpan.FromSeconds(10 * i);
|
||||||
|
},
|
||||||
|
(response, timespan, retryCount, context) => Task.CompletedTask);
|
||||||
|
}
|
||||||
|
|
||||||
|
public DiscordClient(AuthToken token)
|
||||||
|
: this(token, LazyHttpClient.Value)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
private async Task<HttpResponseMessage> GetResponseAsync(string url)
|
||||||
|
{
|
||||||
|
return await _httpRequestPolicy.ExecuteAsync(async () =>
|
||||||
|
{
|
||||||
|
using var request = new HttpRequestMessage(HttpMethod.Get, new Uri(_baseUri, url));
|
||||||
|
request.Headers.Authorization = _token.GetAuthorizationHeader();
|
||||||
|
|
||||||
|
return await _httpClient.SendAsync(request, HttpCompletionOption.ResponseHeadersRead);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
private async Task<JsonElement> GetJsonResponseAsync(string url)
|
||||||
|
{
|
||||||
|
using var response = await GetResponseAsync(url);
|
||||||
|
|
||||||
|
if (!response.IsSuccessStatusCode)
|
||||||
|
{
|
||||||
|
throw response.StatusCode switch
|
||||||
|
{
|
||||||
|
HttpStatusCode.Unauthorized => DiscordChatExporterException.Unauthorized(),
|
||||||
|
HttpStatusCode.Forbidden => DiscordChatExporterException.Forbidden(),
|
||||||
|
HttpStatusCode.NotFound => DiscordChatExporterException.NotFound(),
|
||||||
|
_ => DiscordChatExporterException.FailedHttpRequest(response)
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
return await response.Content.ReadAsJsonAsync();
|
||||||
|
}
|
||||||
|
|
||||||
|
private async Task<JsonElement?> TryGetJsonResponseAsync(string url)
|
||||||
|
{
|
||||||
|
using var response = await GetResponseAsync(url);
|
||||||
|
|
||||||
|
return response.IsSuccessStatusCode
|
||||||
|
? await response.Content.ReadAsJsonAsync()
|
||||||
|
: (JsonElement?) null;
|
||||||
|
}
|
||||||
|
|
||||||
|
public async IAsyncEnumerable<Guild> GetUserGuildsAsync()
|
||||||
|
{
|
||||||
|
yield return Guild.DirectMessages;
|
||||||
|
|
||||||
|
var afterId = "";
|
||||||
|
while (true)
|
||||||
|
{
|
||||||
|
var url = new UrlBuilder()
|
||||||
|
.SetPath("users/@me/guilds")
|
||||||
|
.SetQueryParameter("limit", "100")
|
||||||
|
.SetQueryParameterIfNotNullOrWhiteSpace("after", afterId)
|
||||||
|
.Build();
|
||||||
|
|
||||||
|
var response = await GetJsonResponseAsync(url);
|
||||||
|
|
||||||
|
var isEmpty = true;
|
||||||
|
foreach (var guildJson in response.EnumerateArray())
|
||||||
|
{
|
||||||
|
var guild = Guild.Parse(guildJson);
|
||||||
|
yield return guild;
|
||||||
|
|
||||||
|
afterId = guild.Id;
|
||||||
|
isEmpty = false;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (isEmpty)
|
||||||
|
yield break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public async Task<Guild> GetGuildAsync(string guildId)
|
||||||
|
{
|
||||||
|
if (guildId == Guild.DirectMessages.Id)
|
||||||
|
return Guild.DirectMessages;
|
||||||
|
|
||||||
|
var response = await GetJsonResponseAsync($"guilds/{guildId}");
|
||||||
|
return Guild.Parse(response);
|
||||||
|
}
|
||||||
|
|
||||||
|
public async IAsyncEnumerable<Channel> GetGuildChannelsAsync(string guildId)
|
||||||
|
{
|
||||||
|
if (guildId == Guild.DirectMessages.Id)
|
||||||
|
{
|
||||||
|
var response = await GetJsonResponseAsync("users/@me/channels");
|
||||||
|
foreach (var channelJson in response.EnumerateArray())
|
||||||
|
yield return Channel.Parse(channelJson);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
var response = await GetJsonResponseAsync($"guilds/{guildId}/channels");
|
||||||
|
|
||||||
|
var categories = response
|
||||||
|
.EnumerateArray()
|
||||||
|
.ToDictionary(
|
||||||
|
j => j.GetProperty("id").GetString(),
|
||||||
|
j => j.GetProperty("name").GetString()
|
||||||
|
);
|
||||||
|
|
||||||
|
foreach (var channelJson in response.EnumerateArray())
|
||||||
|
{
|
||||||
|
var parentId = channelJson.GetPropertyOrNull("parent_id")?.GetString();
|
||||||
|
var category = !string.IsNullOrWhiteSpace(parentId)
|
||||||
|
? categories.GetValueOrDefault(parentId)
|
||||||
|
: null;
|
||||||
|
|
||||||
|
var channel = Channel.Parse(channelJson, category);
|
||||||
|
|
||||||
|
// Skip non-text channels
|
||||||
|
if (!channel.IsTextChannel)
|
||||||
|
continue;
|
||||||
|
|
||||||
|
yield return channel;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public async IAsyncEnumerable<Role> GetGuildRolesAsync(string guildId)
|
||||||
|
{
|
||||||
|
if (guildId == Guild.DirectMessages.Id)
|
||||||
|
yield break;
|
||||||
|
|
||||||
|
var response = await GetJsonResponseAsync($"guilds/{guildId}/roles");
|
||||||
|
|
||||||
|
foreach (var roleJson in response.EnumerateArray())
|
||||||
|
yield return Role.Parse(roleJson);
|
||||||
|
}
|
||||||
|
|
||||||
|
public async Task<Member?> TryGetGuildMemberAsync(string guildId, User user)
|
||||||
|
{
|
||||||
|
if (guildId == Guild.DirectMessages.Id)
|
||||||
|
return Member.CreateForUser(user);
|
||||||
|
|
||||||
|
var response = await TryGetJsonResponseAsync($"guilds/{guildId}/members/{user.Id}");
|
||||||
|
return response?.Pipe(Member.Parse);
|
||||||
|
}
|
||||||
|
|
||||||
|
private async Task<string> GetChannelCategoryAsync(string channelParentId)
|
||||||
|
{
|
||||||
|
var response = await GetJsonResponseAsync($"channels/{channelParentId}");
|
||||||
|
return response.GetProperty("name").GetString();
|
||||||
|
}
|
||||||
|
|
||||||
|
public async Task<Channel> GetChannelAsync(string channelId)
|
||||||
|
{
|
||||||
|
var response = await GetJsonResponseAsync($"channels/{channelId}");
|
||||||
|
|
||||||
|
var parentId = response.GetPropertyOrNull("parent_id")?.GetString();
|
||||||
|
var category = !string.IsNullOrWhiteSpace(parentId)
|
||||||
|
? await GetChannelCategoryAsync(parentId)
|
||||||
|
: null;
|
||||||
|
|
||||||
|
return Channel.Parse(response, category);
|
||||||
|
}
|
||||||
|
|
||||||
|
private async Task<Message?> TryGetLastMessageAsync(string channelId, DateTimeOffset? before = null)
|
||||||
|
{
|
||||||
|
var url = new UrlBuilder()
|
||||||
|
.SetPath($"channels/{channelId}/messages")
|
||||||
|
.SetQueryParameter("limit", "1")
|
||||||
|
.SetQueryParameterIfNotNullOrWhiteSpace("before", before?.ToSnowflake())
|
||||||
|
.Build();
|
||||||
|
|
||||||
|
var response = await GetJsonResponseAsync(url);
|
||||||
|
return response.EnumerateArray().Select(Message.Parse).LastOrDefault();
|
||||||
|
}
|
||||||
|
|
||||||
|
public async IAsyncEnumerable<Message> GetMessagesAsync(
|
||||||
|
string channelId,
|
||||||
|
DateTimeOffset? after = null,
|
||||||
|
DateTimeOffset? before = null,
|
||||||
|
IProgress<double>? progress = null)
|
||||||
|
{
|
||||||
|
// Get the last message in the specified range
|
||||||
|
var lastMessage = await TryGetLastMessageAsync(channelId, before);
|
||||||
|
if (lastMessage == null || lastMessage.Timestamp < after)
|
||||||
|
yield break;
|
||||||
|
|
||||||
|
var firstMessage = default(Message);
|
||||||
|
var afterId = after?.ToSnowflake() ?? "0";
|
||||||
|
|
||||||
|
while (true)
|
||||||
|
{
|
||||||
|
var url = new UrlBuilder()
|
||||||
|
.SetPath($"channels/{channelId}/messages")
|
||||||
|
.SetQueryParameter("limit", "100")
|
||||||
|
.SetQueryParameter("after", afterId)
|
||||||
|
.Build();
|
||||||
|
|
||||||
|
var response = await GetJsonResponseAsync(url);
|
||||||
|
|
||||||
|
var messages = response
|
||||||
|
.EnumerateArray()
|
||||||
|
.Select(Message.Parse)
|
||||||
|
.Reverse() // reverse because messages appear newest first
|
||||||
|
.ToArray();
|
||||||
|
|
||||||
|
// Break if there are no messages (can happen if messages are deleted during execution)
|
||||||
|
if (!messages.Any())
|
||||||
|
yield break;
|
||||||
|
|
||||||
|
foreach (var message in messages)
|
||||||
|
{
|
||||||
|
firstMessage ??= message;
|
||||||
|
|
||||||
|
// Ensure messages are in range (take into account that last message could have been deleted)
|
||||||
|
if (message.Timestamp > lastMessage.Timestamp)
|
||||||
|
yield break;
|
||||||
|
|
||||||
|
// Report progress based on the duration of parsed messages divided by total
|
||||||
|
progress?.Report(
|
||||||
|
(message.Timestamp - firstMessage.Timestamp) /
|
||||||
|
(lastMessage.Timestamp - firstMessage.Timestamp)
|
||||||
|
);
|
||||||
|
|
||||||
|
yield return message;
|
||||||
|
afterId = message.Id;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public partial class DiscordClient
|
||||||
|
{
|
||||||
|
private static readonly Lazy<HttpClient> LazyHttpClient = new Lazy<HttpClient>(() =>
|
||||||
|
{
|
||||||
|
var handler = new HttpClientHandler();
|
||||||
|
|
||||||
|
if (handler.SupportsAutomaticDecompression)
|
||||||
|
handler.AutomaticDecompression = DecompressionMethods.GZip | DecompressionMethods.Deflate;
|
||||||
|
|
||||||
|
handler.UseCookies = false;
|
||||||
|
|
||||||
|
return new HttpClient(handler, true);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,60 @@
|
|||||||
|
using System;
|
||||||
|
using System.IO;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text.Json;
|
||||||
|
using DiscordChatExporter.Domain.Discord.Models.Common;
|
||||||
|
using DiscordChatExporter.Domain.Internal;
|
||||||
|
|
||||||
|
namespace DiscordChatExporter.Domain.Discord.Models
|
||||||
|
{
|
||||||
|
// https://discordapp.com/developers/docs/resources/channel#attachment-object
|
||||||
|
public partial class Attachment : IHasId
|
||||||
|
{
|
||||||
|
public string Id { get; }
|
||||||
|
|
||||||
|
public string Url { get; }
|
||||||
|
|
||||||
|
public string FileName { get; }
|
||||||
|
|
||||||
|
public int? Width { get; }
|
||||||
|
|
||||||
|
public int? Height { get; }
|
||||||
|
|
||||||
|
public bool IsImage =>
|
||||||
|
ImageFileExtensions.Contains(Path.GetExtension(FileName), StringComparer.OrdinalIgnoreCase);
|
||||||
|
|
||||||
|
public bool IsSpoiler =>
|
||||||
|
IsImage && FileName.StartsWith("SPOILER_", StringComparison.Ordinal);
|
||||||
|
|
||||||
|
public FileSize FileSize { get; }
|
||||||
|
|
||||||
|
public Attachment(string id, string url, string fileName, int? width, int? height, FileSize fileSize)
|
||||||
|
{
|
||||||
|
Id = id;
|
||||||
|
Url = url;
|
||||||
|
FileName = fileName;
|
||||||
|
Width = width;
|
||||||
|
Height = height;
|
||||||
|
FileSize = fileSize;
|
||||||
|
}
|
||||||
|
|
||||||
|
public override string ToString() => FileName;
|
||||||
|
}
|
||||||
|
|
||||||
|
public partial class Attachment
|
||||||
|
{
|
||||||
|
private static readonly string[] ImageFileExtensions = {".jpg", ".jpeg", ".png", ".gif", ".bmp"};
|
||||||
|
|
||||||
|
public static Attachment Parse(JsonElement json)
|
||||||
|
{
|
||||||
|
var id = json.GetProperty("id").GetString();
|
||||||
|
var url = json.GetProperty("url").GetString();
|
||||||
|
var width = json.GetPropertyOrNull("width")?.GetInt32();
|
||||||
|
var height = json.GetPropertyOrNull("height")?.GetInt32();
|
||||||
|
var fileName = json.GetProperty("filename").GetString();
|
||||||
|
var fileSize = json.GetProperty("size").GetInt64().Pipe(FileSize.FromBytes);
|
||||||
|
|
||||||
|
return new Attachment(id, url, fileName, width, height, fileSize);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,91 @@
|
|||||||
|
using System.Linq;
|
||||||
|
using System.Text.Json;
|
||||||
|
using DiscordChatExporter.Domain.Discord.Models.Common;
|
||||||
|
using DiscordChatExporter.Domain.Internal;
|
||||||
|
using Tyrrrz.Extensions;
|
||||||
|
|
||||||
|
namespace DiscordChatExporter.Domain.Discord.Models
|
||||||
|
{
|
||||||
|
// https://discordapp.com/developers/docs/resources/channel#channel-object-channel-types
|
||||||
|
// Order of enum fields needs to match the order in the docs.
|
||||||
|
public enum ChannelType
|
||||||
|
{
|
||||||
|
GuildTextChat,
|
||||||
|
DirectTextChat,
|
||||||
|
GuildVoiceChat,
|
||||||
|
DirectGroupTextChat,
|
||||||
|
GuildCategory,
|
||||||
|
GuildNews,
|
||||||
|
GuildStore
|
||||||
|
}
|
||||||
|
|
||||||
|
// https://discordapp.com/developers/docs/resources/channel#channel-object
|
||||||
|
public partial class Channel : IHasId
|
||||||
|
{
|
||||||
|
public string Id { get; }
|
||||||
|
|
||||||
|
public ChannelType Type { get; }
|
||||||
|
|
||||||
|
public bool IsTextChannel =>
|
||||||
|
Type == ChannelType.GuildTextChat ||
|
||||||
|
Type == ChannelType.DirectTextChat ||
|
||||||
|
Type == ChannelType.DirectGroupTextChat ||
|
||||||
|
Type == ChannelType.GuildNews ||
|
||||||
|
Type == ChannelType.GuildStore;
|
||||||
|
|
||||||
|
public string GuildId { get; }
|
||||||
|
|
||||||
|
public string Category { get; }
|
||||||
|
|
||||||
|
public string Name { get; }
|
||||||
|
|
||||||
|
public string? Topic { get; }
|
||||||
|
|
||||||
|
public Channel(string id, ChannelType type, string guildId, string category, string name, string? topic)
|
||||||
|
{
|
||||||
|
Id = id;
|
||||||
|
Type = type;
|
||||||
|
GuildId = guildId;
|
||||||
|
Category = category;
|
||||||
|
Name = name;
|
||||||
|
Topic = topic;
|
||||||
|
}
|
||||||
|
|
||||||
|
public override string ToString() => Name;
|
||||||
|
}
|
||||||
|
|
||||||
|
public partial class Channel
|
||||||
|
{
|
||||||
|
private static string GetDefaultCategory(ChannelType channelType) => channelType switch
|
||||||
|
{
|
||||||
|
ChannelType.GuildTextChat => "Text",
|
||||||
|
ChannelType.DirectTextChat => "Private",
|
||||||
|
ChannelType.DirectGroupTextChat => "Group",
|
||||||
|
ChannelType.GuildNews => "News",
|
||||||
|
ChannelType.GuildStore => "Store",
|
||||||
|
_ => "Default"
|
||||||
|
};
|
||||||
|
|
||||||
|
public static Channel Parse(JsonElement json, string? category = null)
|
||||||
|
{
|
||||||
|
var id = json.GetProperty("id").GetString();
|
||||||
|
var guildId = json.GetPropertyOrNull("guild_id")?.GetString();
|
||||||
|
var topic = json.GetPropertyOrNull("topic")?.GetString();
|
||||||
|
|
||||||
|
var type = (ChannelType) json.GetProperty("type").GetInt32();
|
||||||
|
|
||||||
|
var name =
|
||||||
|
json.GetPropertyOrNull("name")?.GetString() ??
|
||||||
|
json.GetPropertyOrNull("recipients")?.EnumerateArray().Select(User.Parse).Select(u => u.Name).JoinToString(", ") ??
|
||||||
|
id;
|
||||||
|
|
||||||
|
return new Channel(
|
||||||
|
id,
|
||||||
|
type,
|
||||||
|
guildId ?? Guild.DirectMessages.Id,
|
||||||
|
category ?? GetDefaultCategory(type),
|
||||||
|
name,
|
||||||
|
topic);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,65 @@
|
|||||||
|
using System;
|
||||||
|
|
||||||
|
namespace DiscordChatExporter.Domain.Discord.Models.Common
|
||||||
|
{
|
||||||
|
// Loosely based on https://github.com/omar/ByteSize (MIT license)
|
||||||
|
public readonly partial struct FileSize
|
||||||
|
{
|
||||||
|
public long TotalBytes { get; }
|
||||||
|
|
||||||
|
public double TotalKiloBytes => TotalBytes / 1024.0;
|
||||||
|
public double TotalMegaBytes => TotalKiloBytes / 1024.0;
|
||||||
|
public double TotalGigaBytes => TotalMegaBytes / 1024.0;
|
||||||
|
public double TotalTeraBytes => TotalGigaBytes / 1024.0;
|
||||||
|
public double TotalPetaBytes => TotalTeraBytes / 1024.0;
|
||||||
|
|
||||||
|
public FileSize(long bytes) => TotalBytes = bytes;
|
||||||
|
|
||||||
|
private double GetLargestWholeNumberValue()
|
||||||
|
{
|
||||||
|
if (Math.Abs(TotalPetaBytes) >= 1)
|
||||||
|
return TotalPetaBytes;
|
||||||
|
|
||||||
|
if (Math.Abs(TotalTeraBytes) >= 1)
|
||||||
|
return TotalTeraBytes;
|
||||||
|
|
||||||
|
if (Math.Abs(TotalGigaBytes) >= 1)
|
||||||
|
return TotalGigaBytes;
|
||||||
|
|
||||||
|
if (Math.Abs(TotalMegaBytes) >= 1)
|
||||||
|
return TotalMegaBytes;
|
||||||
|
|
||||||
|
if (Math.Abs(TotalKiloBytes) >= 1)
|
||||||
|
return TotalKiloBytes;
|
||||||
|
|
||||||
|
return TotalBytes;
|
||||||
|
}
|
||||||
|
|
||||||
|
private string GetLargestWholeNumberSymbol()
|
||||||
|
{
|
||||||
|
if (Math.Abs(TotalPetaBytes) >= 1)
|
||||||
|
return "PB";
|
||||||
|
|
||||||
|
if (Math.Abs(TotalTeraBytes) >= 1)
|
||||||
|
return "TB";
|
||||||
|
|
||||||
|
if (Math.Abs(TotalGigaBytes) >= 1)
|
||||||
|
return "GB";
|
||||||
|
|
||||||
|
if (Math.Abs(TotalMegaBytes) >= 1)
|
||||||
|
return "MB";
|
||||||
|
|
||||||
|
if (Math.Abs(TotalKiloBytes) >= 1)
|
||||||
|
return "KB";
|
||||||
|
|
||||||
|
return "B";
|
||||||
|
}
|
||||||
|
|
||||||
|
public override string ToString() => $"{GetLargestWholeNumberValue():0.##} {GetLargestWholeNumberSymbol()}";
|
||||||
|
}
|
||||||
|
|
||||||
|
public partial struct FileSize
|
||||||
|
{
|
||||||
|
public static FileSize FromBytes(long bytes) => new FileSize(bytes);
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,7 @@
|
|||||||
|
namespace DiscordChatExporter.Domain.Discord.Models.Common
|
||||||
|
{
|
||||||
|
public interface IHasId
|
||||||
|
{
|
||||||
|
string Id { get; }
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,17 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
|
||||||
|
namespace DiscordChatExporter.Domain.Discord.Models.Common
|
||||||
|
{
|
||||||
|
public partial class IdBasedEqualityComparer : IEqualityComparer<IHasId>
|
||||||
|
{
|
||||||
|
public bool Equals(IHasId? x, IHasId? y) => StringComparer.Ordinal.Equals(x?.Id, y?.Id);
|
||||||
|
|
||||||
|
public int GetHashCode(IHasId obj) => StringComparer.Ordinal.GetHashCode(obj.Id);
|
||||||
|
}
|
||||||
|
|
||||||
|
public partial class IdBasedEqualityComparer
|
||||||
|
{
|
||||||
|
public static IdBasedEqualityComparer Instance { get; } = new IdBasedEqualityComparer();
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,93 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Drawing;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text.Json;
|
||||||
|
using DiscordChatExporter.Domain.Internal;
|
||||||
|
|
||||||
|
namespace DiscordChatExporter.Domain.Discord.Models
|
||||||
|
{
|
||||||
|
// https://discordapp.com/developers/docs/resources/channel#embed-object
|
||||||
|
public partial class Embed
|
||||||
|
{
|
||||||
|
public string? Title { get; }
|
||||||
|
|
||||||
|
public string? Url { get; }
|
||||||
|
|
||||||
|
public DateTimeOffset? Timestamp { get; }
|
||||||
|
|
||||||
|
public Color? Color { get; }
|
||||||
|
|
||||||
|
public EmbedAuthor? Author { get; }
|
||||||
|
|
||||||
|
public string? Description { get; }
|
||||||
|
|
||||||
|
public IReadOnlyList<EmbedField> Fields { get; }
|
||||||
|
|
||||||
|
public EmbedImage? Thumbnail { get; }
|
||||||
|
|
||||||
|
public EmbedImage? Image { get; }
|
||||||
|
|
||||||
|
public EmbedFooter? Footer { get; }
|
||||||
|
|
||||||
|
public Embed(
|
||||||
|
string? title,
|
||||||
|
string? url,
|
||||||
|
DateTimeOffset? timestamp,
|
||||||
|
Color? color,
|
||||||
|
EmbedAuthor? author,
|
||||||
|
string? description,
|
||||||
|
IReadOnlyList<EmbedField> fields,
|
||||||
|
EmbedImage? thumbnail,
|
||||||
|
EmbedImage? image,
|
||||||
|
EmbedFooter? footer)
|
||||||
|
{
|
||||||
|
Title = title;
|
||||||
|
Url = url;
|
||||||
|
Timestamp = timestamp;
|
||||||
|
Color = color;
|
||||||
|
Author = author;
|
||||||
|
Description = description;
|
||||||
|
Fields = fields;
|
||||||
|
Thumbnail = thumbnail;
|
||||||
|
Image = image;
|
||||||
|
Footer = footer;
|
||||||
|
}
|
||||||
|
|
||||||
|
public override string ToString() => Title ?? "<untitled embed>";
|
||||||
|
}
|
||||||
|
|
||||||
|
public partial class Embed
|
||||||
|
{
|
||||||
|
public static Embed Parse(JsonElement json)
|
||||||
|
{
|
||||||
|
var title = json.GetPropertyOrNull("title")?.GetString();
|
||||||
|
var description = json.GetPropertyOrNull("description")?.GetString();
|
||||||
|
var url = json.GetPropertyOrNull("url")?.GetString();
|
||||||
|
var timestamp = json.GetPropertyOrNull("timestamp")?.GetDateTimeOffset();
|
||||||
|
var color = json.GetPropertyOrNull("color")?.GetInt32().Pipe(System.Drawing.Color.FromArgb).ResetAlpha();
|
||||||
|
|
||||||
|
var author = json.GetPropertyOrNull("author")?.Pipe(EmbedAuthor.Parse);
|
||||||
|
var thumbnail = json.GetPropertyOrNull("thumbnail")?.Pipe(EmbedImage.Parse);
|
||||||
|
var image = json.GetPropertyOrNull("image")?.Pipe(EmbedImage.Parse);
|
||||||
|
var footer = json.GetPropertyOrNull("footer")?.Pipe(EmbedFooter.Parse);
|
||||||
|
|
||||||
|
var fields =
|
||||||
|
json.GetPropertyOrNull("fields")?.EnumerateArray().Select(EmbedField.Parse).ToArray() ??
|
||||||
|
Array.Empty<EmbedField>();
|
||||||
|
|
||||||
|
return new Embed(
|
||||||
|
title,
|
||||||
|
url,
|
||||||
|
timestamp,
|
||||||
|
color,
|
||||||
|
author,
|
||||||
|
description,
|
||||||
|
fields,
|
||||||
|
thumbnail,
|
||||||
|
image,
|
||||||
|
footer
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,36 @@
|
|||||||
|
using System.Text.Json;
|
||||||
|
using DiscordChatExporter.Domain.Internal;
|
||||||
|
|
||||||
|
namespace DiscordChatExporter.Domain.Discord.Models
|
||||||
|
{
|
||||||
|
// https://discordapp.com/developers/docs/resources/channel#embed-object-embed-author-structure
|
||||||
|
public partial class EmbedAuthor
|
||||||
|
{
|
||||||
|
public string? Name { get; }
|
||||||
|
|
||||||
|
public string? Url { get; }
|
||||||
|
|
||||||
|
public string? IconUrl { get; }
|
||||||
|
|
||||||
|
public EmbedAuthor(string? name, string? url, string? iconUrl)
|
||||||
|
{
|
||||||
|
Name = name;
|
||||||
|
Url = url;
|
||||||
|
IconUrl = iconUrl;
|
||||||
|
}
|
||||||
|
|
||||||
|
public override string ToString() => Name ?? "<unnamed author>";
|
||||||
|
}
|
||||||
|
|
||||||
|
public partial class EmbedAuthor
|
||||||
|
{
|
||||||
|
public static EmbedAuthor Parse(JsonElement json)
|
||||||
|
{
|
||||||
|
var name = json.GetPropertyOrNull("name")?.GetString();
|
||||||
|
var url = json.GetPropertyOrNull("url")?.GetString();
|
||||||
|
var iconUrl = json.GetPropertyOrNull("icon_url")?.GetString();
|
||||||
|
|
||||||
|
return new EmbedAuthor(name, url, iconUrl);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,36 @@
|
|||||||
|
using System.Text.Json;
|
||||||
|
using DiscordChatExporter.Domain.Internal;
|
||||||
|
|
||||||
|
namespace DiscordChatExporter.Domain.Discord.Models
|
||||||
|
{
|
||||||
|
// https://discordapp.com/developers/docs/resources/channel#embed-object-embed-field-structure
|
||||||
|
public partial class EmbedField
|
||||||
|
{
|
||||||
|
public string Name { get; }
|
||||||
|
|
||||||
|
public string Value { get; }
|
||||||
|
|
||||||
|
public bool IsInline { get; }
|
||||||
|
|
||||||
|
public EmbedField(string name, string value, bool isInline)
|
||||||
|
{
|
||||||
|
Name = name;
|
||||||
|
Value = value;
|
||||||
|
IsInline = isInline;
|
||||||
|
}
|
||||||
|
|
||||||
|
public override string ToString() => $"{Name} | {Value}";
|
||||||
|
}
|
||||||
|
|
||||||
|
public partial class EmbedField
|
||||||
|
{
|
||||||
|
public static EmbedField Parse(JsonElement json)
|
||||||
|
{
|
||||||
|
var name = json.GetProperty("name").GetString();
|
||||||
|
var value = json.GetProperty("value").GetString();
|
||||||
|
var isInline = json.GetPropertyOrNull("inline")?.GetBoolean() ?? false;
|
||||||
|
|
||||||
|
return new EmbedField(name, value, isInline);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,32 @@
|
|||||||
|
using System.Text.Json;
|
||||||
|
using DiscordChatExporter.Domain.Internal;
|
||||||
|
|
||||||
|
namespace DiscordChatExporter.Domain.Discord.Models
|
||||||
|
{
|
||||||
|
// https://discordapp.com/developers/docs/resources/channel#embed-object-embed-footer-structure
|
||||||
|
public partial class EmbedFooter
|
||||||
|
{
|
||||||
|
public string Text { get; }
|
||||||
|
|
||||||
|
public string? IconUrl { get; }
|
||||||
|
|
||||||
|
public EmbedFooter(string text, string? iconUrl)
|
||||||
|
{
|
||||||
|
Text = text;
|
||||||
|
IconUrl = iconUrl;
|
||||||
|
}
|
||||||
|
|
||||||
|
public override string ToString() => Text;
|
||||||
|
}
|
||||||
|
|
||||||
|
public partial class EmbedFooter
|
||||||
|
{
|
||||||
|
public static EmbedFooter Parse(JsonElement json)
|
||||||
|
{
|
||||||
|
var text = json.GetProperty("text").GetString();
|
||||||
|
var iconUrl = json.GetPropertyOrNull("icon_url")?.GetString();
|
||||||
|
|
||||||
|
return new EmbedFooter(text, iconUrl);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,34 @@
|
|||||||
|
using System.Text.Json;
|
||||||
|
using DiscordChatExporter.Domain.Internal;
|
||||||
|
|
||||||
|
namespace DiscordChatExporter.Domain.Discord.Models
|
||||||
|
{
|
||||||
|
// https://discordapp.com/developers/docs/resources/channel#embed-object-embed-image-structure
|
||||||
|
public partial class EmbedImage
|
||||||
|
{
|
||||||
|
public string? Url { get; }
|
||||||
|
|
||||||
|
public int? Width { get; }
|
||||||
|
|
||||||
|
public int? Height { get; }
|
||||||
|
|
||||||
|
public EmbedImage(string? url, int? width, int? height)
|
||||||
|
{
|
||||||
|
Url = url;
|
||||||
|
Height = height;
|
||||||
|
Width = width;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public partial class EmbedImage
|
||||||
|
{
|
||||||
|
public static EmbedImage Parse(JsonElement json)
|
||||||
|
{
|
||||||
|
var url = json.GetPropertyOrNull("url")?.GetString();
|
||||||
|
var width = json.GetPropertyOrNull("width")?.GetInt32();
|
||||||
|
var height = json.GetPropertyOrNull("height")?.GetInt32();
|
||||||
|
|
||||||
|
return new EmbedImage(url, width, height);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,79 @@
|
|||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Text.Json;
|
||||||
|
using DiscordChatExporter.Domain.Internal;
|
||||||
|
using Tyrrrz.Extensions;
|
||||||
|
|
||||||
|
namespace DiscordChatExporter.Domain.Discord.Models
|
||||||
|
{
|
||||||
|
// https://discordapp.com/developers/docs/resources/emoji#emoji-object
|
||||||
|
public partial class Emoji
|
||||||
|
{
|
||||||
|
public string? Id { get; }
|
||||||
|
|
||||||
|
public string Name { get; }
|
||||||
|
|
||||||
|
public bool IsAnimated { get; }
|
||||||
|
|
||||||
|
public string ImageUrl { get; }
|
||||||
|
|
||||||
|
public Emoji(string? id, string name, bool isAnimated)
|
||||||
|
{
|
||||||
|
Id = id;
|
||||||
|
Name = name;
|
||||||
|
IsAnimated = isAnimated;
|
||||||
|
|
||||||
|
ImageUrl = GetImageUrl(id, name, isAnimated);
|
||||||
|
}
|
||||||
|
|
||||||
|
public override string ToString() => Name;
|
||||||
|
}
|
||||||
|
|
||||||
|
public partial class Emoji
|
||||||
|
{
|
||||||
|
private static IEnumerable<Rune> GetRunes(string emoji)
|
||||||
|
{
|
||||||
|
var lastIndex = 0;
|
||||||
|
while (lastIndex < emoji.Length && Rune.TryGetRuneAt(emoji, lastIndex, out var rune))
|
||||||
|
{
|
||||||
|
// Skip variant selector rune
|
||||||
|
if (rune.Value != 0xfe0f)
|
||||||
|
yield return rune;
|
||||||
|
|
||||||
|
lastIndex += rune.Utf16SequenceLength;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private static string GetTwemojiName(IEnumerable<Rune> runes) =>
|
||||||
|
runes.Select(r => r.Value.ToString("x")).JoinToString("-");
|
||||||
|
|
||||||
|
public static string GetImageUrl(string? id, string name, bool isAnimated)
|
||||||
|
{
|
||||||
|
// Custom emoji
|
||||||
|
if (!string.IsNullOrWhiteSpace(id))
|
||||||
|
{
|
||||||
|
// Animated
|
||||||
|
if (isAnimated)
|
||||||
|
return $"https://cdn.discordapp.com/emojis/{id}.gif";
|
||||||
|
|
||||||
|
// Non-animated
|
||||||
|
return $"https://cdn.discordapp.com/emojis/{id}.png";
|
||||||
|
}
|
||||||
|
|
||||||
|
// Standard emoji
|
||||||
|
var emojiRunes = GetRunes(name).ToArray();
|
||||||
|
var twemojiName = GetTwemojiName(emojiRunes);
|
||||||
|
return $"https://twemoji.maxcdn.com/2/72x72/{twemojiName}.png";
|
||||||
|
}
|
||||||
|
|
||||||
|
public static Emoji Parse(JsonElement json)
|
||||||
|
{
|
||||||
|
var id = json.GetPropertyOrNull("id")?.GetString();
|
||||||
|
var name = json.GetProperty("name").GetString();
|
||||||
|
var isAnimated = json.GetPropertyOrNull("animated")?.GetBoolean() ?? false;
|
||||||
|
|
||||||
|
return new Emoji(id, name, isAnimated);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,45 @@
|
|||||||
|
using System.Text.Json;
|
||||||
|
using DiscordChatExporter.Domain.Discord.Models.Common;
|
||||||
|
|
||||||
|
namespace DiscordChatExporter.Domain.Discord.Models
|
||||||
|
{
|
||||||
|
// https://discordapp.com/developers/docs/resources/guild#guild-object
|
||||||
|
public partial class Guild : IHasId
|
||||||
|
{
|
||||||
|
public string Id { get; }
|
||||||
|
|
||||||
|
public string Name { get; }
|
||||||
|
|
||||||
|
public string IconUrl { get; }
|
||||||
|
|
||||||
|
public Guild(string id, string name, string? iconHash)
|
||||||
|
{
|
||||||
|
Id = id;
|
||||||
|
Name = name;
|
||||||
|
|
||||||
|
IconUrl = GetIconUrl(id, iconHash);
|
||||||
|
}
|
||||||
|
|
||||||
|
public override string ToString() => Name;
|
||||||
|
}
|
||||||
|
|
||||||
|
public partial class Guild
|
||||||
|
{
|
||||||
|
public static Guild DirectMessages { get; } =
|
||||||
|
new Guild("@me", "Direct Messages", null);
|
||||||
|
|
||||||
|
private static string GetIconUrl(string id, string? iconHash) =>
|
||||||
|
!string.IsNullOrWhiteSpace(iconHash)
|
||||||
|
? $"https://cdn.discordapp.com/icons/{id}/{iconHash}.png"
|
||||||
|
: "https://cdn.discordapp.com/embed/avatars/0.png";
|
||||||
|
|
||||||
|
public static Guild Parse(JsonElement json)
|
||||||
|
{
|
||||||
|
var id = json.GetProperty("id").GetString();
|
||||||
|
var name = json.GetProperty("name").GetString();
|
||||||
|
var iconHash = json.GetProperty("icon").GetString();
|
||||||
|
|
||||||
|
return new Guild(id, name, iconHash);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,52 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text.Json;
|
||||||
|
using DiscordChatExporter.Domain.Discord.Models.Common;
|
||||||
|
using DiscordChatExporter.Domain.Internal;
|
||||||
|
|
||||||
|
namespace DiscordChatExporter.Domain.Discord.Models
|
||||||
|
{
|
||||||
|
// https://discordapp.com/developers/docs/resources/guild#guild-member-object
|
||||||
|
public partial class Member : IHasId
|
||||||
|
{
|
||||||
|
public string Id => User.Id;
|
||||||
|
|
||||||
|
public User User { get; }
|
||||||
|
|
||||||
|
public string Nick { get; }
|
||||||
|
|
||||||
|
public IReadOnlyList<string> RoleIds { get; }
|
||||||
|
|
||||||
|
public Member(User user, string? nick, IReadOnlyList<string> roleIds)
|
||||||
|
{
|
||||||
|
User = user;
|
||||||
|
Nick = nick ?? user.Name;
|
||||||
|
RoleIds = roleIds;
|
||||||
|
}
|
||||||
|
|
||||||
|
public override string ToString() => Nick;
|
||||||
|
}
|
||||||
|
|
||||||
|
public partial class Member
|
||||||
|
{
|
||||||
|
public static Member CreateForUser(User user) =>
|
||||||
|
new Member(user, null, Array.Empty<string>());
|
||||||
|
|
||||||
|
public static Member Parse(JsonElement json)
|
||||||
|
{
|
||||||
|
var user = json.GetProperty("user").Pipe(User.Parse);
|
||||||
|
var nick = json.GetPropertyOrNull("nick")?.GetString();
|
||||||
|
|
||||||
|
var roleIds =
|
||||||
|
json.GetPropertyOrNull("roles")?.EnumerateArray().Select(j => j.GetString()).ToArray() ??
|
||||||
|
Array.Empty<string>();
|
||||||
|
|
||||||
|
return new Member(
|
||||||
|
user,
|
||||||
|
nick,
|
||||||
|
roleIds
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,134 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text.Json;
|
||||||
|
using DiscordChatExporter.Domain.Discord.Models.Common;
|
||||||
|
using DiscordChatExporter.Domain.Internal;
|
||||||
|
|
||||||
|
namespace DiscordChatExporter.Domain.Discord.Models
|
||||||
|
{
|
||||||
|
// https://discordapp.com/developers/docs/resources/channel#message-object-message-types
|
||||||
|
public enum MessageType
|
||||||
|
{
|
||||||
|
Default,
|
||||||
|
RecipientAdd,
|
||||||
|
RecipientRemove,
|
||||||
|
Call,
|
||||||
|
ChannelNameChange,
|
||||||
|
ChannelIconChange,
|
||||||
|
ChannelPinnedMessage,
|
||||||
|
GuildMemberJoin
|
||||||
|
}
|
||||||
|
|
||||||
|
// https://discordapp.com/developers/docs/resources/channel#message-object
|
||||||
|
public partial class Message : IHasId
|
||||||
|
{
|
||||||
|
public string Id { get; }
|
||||||
|
|
||||||
|
public MessageType Type { get; }
|
||||||
|
|
||||||
|
public User Author { get; }
|
||||||
|
|
||||||
|
public DateTimeOffset Timestamp { get; }
|
||||||
|
|
||||||
|
public DateTimeOffset? EditedTimestamp { get; }
|
||||||
|
|
||||||
|
public bool IsPinned { get; }
|
||||||
|
|
||||||
|
public string Content { get; }
|
||||||
|
|
||||||
|
public IReadOnlyList<Attachment> Attachments { get; }
|
||||||
|
|
||||||
|
public IReadOnlyList<Embed> Embeds { get; }
|
||||||
|
|
||||||
|
public IReadOnlyList<Reaction> Reactions { get; }
|
||||||
|
|
||||||
|
public IReadOnlyList<User> MentionedUsers { get; }
|
||||||
|
|
||||||
|
public Message(
|
||||||
|
string id,
|
||||||
|
MessageType type,
|
||||||
|
User author,
|
||||||
|
DateTimeOffset timestamp,
|
||||||
|
DateTimeOffset? editedTimestamp,
|
||||||
|
bool isPinned,
|
||||||
|
string content,
|
||||||
|
IReadOnlyList<Attachment> attachments,
|
||||||
|
IReadOnlyList<Embed> embeds,
|
||||||
|
IReadOnlyList<Reaction> reactions,
|
||||||
|
IReadOnlyList<User> mentionedUsers)
|
||||||
|
{
|
||||||
|
Id = id;
|
||||||
|
Type = type;
|
||||||
|
Author = author;
|
||||||
|
Timestamp = timestamp;
|
||||||
|
EditedTimestamp = editedTimestamp;
|
||||||
|
IsPinned = isPinned;
|
||||||
|
Content = content;
|
||||||
|
Attachments = attachments;
|
||||||
|
Embeds = embeds;
|
||||||
|
Reactions = reactions;
|
||||||
|
MentionedUsers = mentionedUsers;
|
||||||
|
}
|
||||||
|
|
||||||
|
public override string ToString() =>
|
||||||
|
Content ?? (Embeds.Any()
|
||||||
|
? "<embed>"
|
||||||
|
: "<no content>");
|
||||||
|
}
|
||||||
|
|
||||||
|
public partial class Message
|
||||||
|
{
|
||||||
|
public static Message Parse(JsonElement json)
|
||||||
|
{
|
||||||
|
var id = json.GetProperty("id").GetString();
|
||||||
|
var author = json.GetProperty("author").Pipe(User.Parse);
|
||||||
|
var timestamp = json.GetProperty("timestamp").GetDateTimeOffset();
|
||||||
|
var editedTimestamp = json.GetPropertyOrNull("edited_timestamp")?.GetDateTimeOffset();
|
||||||
|
var type = (MessageType) json.GetProperty("type").GetInt32();
|
||||||
|
var isPinned = json.GetPropertyOrNull("pinned")?.GetBoolean() ?? false;
|
||||||
|
|
||||||
|
var content = type switch
|
||||||
|
{
|
||||||
|
MessageType.RecipientAdd => "Added a recipient.",
|
||||||
|
MessageType.RecipientRemove => "Removed a recipient.",
|
||||||
|
MessageType.Call => "Started a call.",
|
||||||
|
MessageType.ChannelNameChange => "Changed the channel name.",
|
||||||
|
MessageType.ChannelIconChange => "Changed the channel icon.",
|
||||||
|
MessageType.ChannelPinnedMessage => "Pinned a message.",
|
||||||
|
MessageType.GuildMemberJoin => "Joined the server.",
|
||||||
|
_ => json.GetPropertyOrNull("content")?.GetString() ?? ""
|
||||||
|
};
|
||||||
|
|
||||||
|
var attachments =
|
||||||
|
json.GetPropertyOrNull("attachments")?.EnumerateArray().Select(Attachment.Parse).ToArray() ??
|
||||||
|
Array.Empty<Attachment>();
|
||||||
|
|
||||||
|
var embeds =
|
||||||
|
json.GetPropertyOrNull("embeds")?.EnumerateArray().Select(Embed.Parse).ToArray() ??
|
||||||
|
Array.Empty<Embed>();
|
||||||
|
|
||||||
|
var reactions =
|
||||||
|
json.GetPropertyOrNull("reactions")?.EnumerateArray().Select(Reaction.Parse).ToArray() ??
|
||||||
|
Array.Empty<Reaction>();
|
||||||
|
|
||||||
|
var mentionedUsers =
|
||||||
|
json.GetPropertyOrNull("mentions")?.EnumerateArray().Select(User.Parse).ToArray() ??
|
||||||
|
Array.Empty<User>();
|
||||||
|
|
||||||
|
return new Message(
|
||||||
|
id,
|
||||||
|
type,
|
||||||
|
author,
|
||||||
|
timestamp,
|
||||||
|
editedTimestamp,
|
||||||
|
isPinned,
|
||||||
|
content,
|
||||||
|
attachments,
|
||||||
|
embeds,
|
||||||
|
reactions,
|
||||||
|
mentionedUsers
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,32 @@
|
|||||||
|
using System.Text.Json;
|
||||||
|
using DiscordChatExporter.Domain.Internal;
|
||||||
|
|
||||||
|
namespace DiscordChatExporter.Domain.Discord.Models
|
||||||
|
{
|
||||||
|
// https://discordapp.com/developers/docs/resources/channel#reaction-object
|
||||||
|
public partial class Reaction
|
||||||
|
{
|
||||||
|
public Emoji Emoji { get; }
|
||||||
|
|
||||||
|
public int Count { get; }
|
||||||
|
|
||||||
|
public Reaction(Emoji emoji, int count)
|
||||||
|
{
|
||||||
|
Emoji = emoji;
|
||||||
|
Count = count;
|
||||||
|
}
|
||||||
|
|
||||||
|
public override string ToString() => $"{Emoji} ({Count})";
|
||||||
|
}
|
||||||
|
|
||||||
|
public partial class Reaction
|
||||||
|
{
|
||||||
|
public static Reaction Parse(JsonElement json)
|
||||||
|
{
|
||||||
|
var count = json.GetProperty("count").GetInt32();
|
||||||
|
var emoji = json.GetProperty("emoji").Pipe(Emoji.Parse);
|
||||||
|
|
||||||
|
return new Reaction(emoji, count);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,46 @@
|
|||||||
|
using System.Drawing;
|
||||||
|
using System.Text.Json;
|
||||||
|
using DiscordChatExporter.Domain.Internal;
|
||||||
|
|
||||||
|
namespace DiscordChatExporter.Domain.Discord.Models
|
||||||
|
{
|
||||||
|
// https://discordapp.com/developers/docs/topics/permissions#role-object
|
||||||
|
public partial class Role
|
||||||
|
{
|
||||||
|
public string Id { get; }
|
||||||
|
|
||||||
|
public string Name { get; }
|
||||||
|
|
||||||
|
public int Position { get; }
|
||||||
|
|
||||||
|
public Color? Color { get; }
|
||||||
|
|
||||||
|
public Role(string id, string name, int position, Color? color)
|
||||||
|
{
|
||||||
|
Id = id;
|
||||||
|
Name = name;
|
||||||
|
Position = position;
|
||||||
|
Color = color;
|
||||||
|
}
|
||||||
|
|
||||||
|
public override string ToString() => Name;
|
||||||
|
}
|
||||||
|
|
||||||
|
public partial class Role
|
||||||
|
{
|
||||||
|
public static Role Parse(JsonElement json)
|
||||||
|
{
|
||||||
|
var id = json.GetProperty("id").GetString();
|
||||||
|
var name = json.GetProperty("name").GetString();
|
||||||
|
var position = json.GetProperty("position").GetInt32();
|
||||||
|
|
||||||
|
var color = json.GetPropertyOrNull("color")?
|
||||||
|
.GetInt32()
|
||||||
|
.Pipe(System.Drawing.Color.FromArgb)
|
||||||
|
.ResetAlpha()
|
||||||
|
.NullIf(c => c.ToRgb() <= 0);
|
||||||
|
|
||||||
|
return new Role(id, name, position, color);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,66 @@
|
|||||||
|
using System;
|
||||||
|
using System.Text.Json;
|
||||||
|
using DiscordChatExporter.Domain.Discord.Models.Common;
|
||||||
|
using DiscordChatExporter.Domain.Internal;
|
||||||
|
|
||||||
|
namespace DiscordChatExporter.Domain.Discord.Models
|
||||||
|
{
|
||||||
|
// https://discordapp.com/developers/docs/resources/user#user-object
|
||||||
|
public partial class User : IHasId
|
||||||
|
{
|
||||||
|
public string Id { get; }
|
||||||
|
|
||||||
|
public bool IsBot { get; }
|
||||||
|
|
||||||
|
public int Discriminator { get; }
|
||||||
|
|
||||||
|
public string Name { get; }
|
||||||
|
|
||||||
|
public string FullName => $"{Name}#{Discriminator:0000}";
|
||||||
|
|
||||||
|
public string AvatarUrl { get; }
|
||||||
|
|
||||||
|
public User(string id, bool isBot, int discriminator, string name, string? avatarHash)
|
||||||
|
{
|
||||||
|
Id = id;
|
||||||
|
IsBot = isBot;
|
||||||
|
Discriminator = discriminator;
|
||||||
|
Name = name;
|
||||||
|
|
||||||
|
AvatarUrl = GetAvatarUrl(id, discriminator, avatarHash);
|
||||||
|
}
|
||||||
|
|
||||||
|
public override string ToString() => FullName;
|
||||||
|
}
|
||||||
|
|
||||||
|
public partial class User
|
||||||
|
{
|
||||||
|
private static string GetAvatarUrl(string id, int discriminator, string? avatarHash)
|
||||||
|
{
|
||||||
|
// Custom avatar
|
||||||
|
if (!string.IsNullOrWhiteSpace(avatarHash))
|
||||||
|
{
|
||||||
|
// Animated
|
||||||
|
if (avatarHash.StartsWith("a_", StringComparison.Ordinal))
|
||||||
|
return $"https://cdn.discordapp.com/avatars/{id}/{avatarHash}.gif";
|
||||||
|
|
||||||
|
// Non-animated
|
||||||
|
return $"https://cdn.discordapp.com/avatars/{id}/{avatarHash}.png";
|
||||||
|
}
|
||||||
|
|
||||||
|
// Default avatar
|
||||||
|
return $"https://cdn.discordapp.com/embed/avatars/{discriminator % 5}.png";
|
||||||
|
}
|
||||||
|
|
||||||
|
public static User Parse(JsonElement json)
|
||||||
|
{
|
||||||
|
var id = json.GetProperty("id").GetString();
|
||||||
|
var discriminator = json.GetProperty("discriminator").GetString().Pipe(int.Parse);
|
||||||
|
var name = json.GetProperty("username").GetString();
|
||||||
|
var avatarHash = json.GetProperty("avatar").GetString();
|
||||||
|
var isBot = json.GetPropertyOrNull("bot")?.GetBoolean() ?? false;
|
||||||
|
|
||||||
|
return new User(id, isBot, discriminator, name, avatarHash);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,48 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Net;
|
||||||
|
using System.Text;
|
||||||
|
|
||||||
|
namespace DiscordChatExporter.Domain.Discord
|
||||||
|
{
|
||||||
|
internal class UrlBuilder
|
||||||
|
{
|
||||||
|
private string _path = "";
|
||||||
|
|
||||||
|
private readonly Dictionary<string, string?> _queryParameters =
|
||||||
|
new Dictionary<string, string?>(StringComparer.OrdinalIgnoreCase);
|
||||||
|
|
||||||
|
public UrlBuilder SetPath(string path)
|
||||||
|
{
|
||||||
|
_path = path;
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
|
public UrlBuilder SetQueryParameter(string key, string? value)
|
||||||
|
{
|
||||||
|
var keyEncoded = WebUtility.UrlEncode(key);
|
||||||
|
var valueEncoded = WebUtility.UrlEncode(value);
|
||||||
|
_queryParameters[keyEncoded] = valueEncoded;
|
||||||
|
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
|
public UrlBuilder SetQueryParameterIfNotNullOrWhiteSpace(string key, string? value) =>
|
||||||
|
!string.IsNullOrWhiteSpace(value)
|
||||||
|
? SetQueryParameter(key, value)
|
||||||
|
: this;
|
||||||
|
|
||||||
|
public string Build()
|
||||||
|
{
|
||||||
|
var buffer = new StringBuilder();
|
||||||
|
|
||||||
|
buffer.Append(_path);
|
||||||
|
|
||||||
|
if (_queryParameters.Any())
|
||||||
|
buffer.Append('?').AppendJoin('&', _queryParameters.Select(kvp => $"{kvp.Key}={kvp.Value}"));
|
||||||
|
|
||||||
|
return buffer.ToString();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,18 @@
|
|||||||
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
|
<Import Project="../DiscordChatExporter.props" />
|
||||||
|
|
||||||
|
<ItemGroup>
|
||||||
|
<PackageReference Include="Polly" Version="7.2.0" />
|
||||||
|
<PackageReference Include="Scriban" Version="2.1.2" />
|
||||||
|
<PackageReference Include="Tyrrrz.Extensions" Version="1.6.5" />
|
||||||
|
</ItemGroup>
|
||||||
|
|
||||||
|
<ItemGroup>
|
||||||
|
<EmbeddedResource Include="Exporting\Resources\HtmlCore.css" />
|
||||||
|
<EmbeddedResource Include="Exporting\Resources\HtmlDark.css" />
|
||||||
|
<EmbeddedResource Include="Exporting\Resources\HtmlLayoutTemplate.html" />
|
||||||
|
<EmbeddedResource Include="Exporting\Resources\HtmlLight.css" />
|
||||||
|
<EmbeddedResource Include="Exporting\Resources\HtmlMessageGroupTemplate.html" />
|
||||||
|
</ItemGroup>
|
||||||
|
|
||||||
|
</Project>
|
||||||
@@ -0,0 +1,59 @@
|
|||||||
|
using System;
|
||||||
|
using System.Net.Http;
|
||||||
|
using DiscordChatExporter.Domain.Discord.Models;
|
||||||
|
|
||||||
|
namespace DiscordChatExporter.Domain.Exceptions
|
||||||
|
{
|
||||||
|
public partial class DiscordChatExporterException : Exception
|
||||||
|
{
|
||||||
|
public bool IsCritical { get; }
|
||||||
|
|
||||||
|
public DiscordChatExporterException(string message, bool isCritical = false)
|
||||||
|
: base(message)
|
||||||
|
{
|
||||||
|
IsCritical = isCritical;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public partial class DiscordChatExporterException
|
||||||
|
{
|
||||||
|
internal static DiscordChatExporterException FailedHttpRequest(HttpResponseMessage response)
|
||||||
|
{
|
||||||
|
var message = $@"
|
||||||
|
Failed to perform an HTTP request.
|
||||||
|
|
||||||
|
{response.RequestMessage}
|
||||||
|
|
||||||
|
{response}";
|
||||||
|
|
||||||
|
return new DiscordChatExporterException(message.Trim(), true);
|
||||||
|
}
|
||||||
|
|
||||||
|
internal static DiscordChatExporterException Unauthorized()
|
||||||
|
{
|
||||||
|
const string message = "Authentication token is invalid.";
|
||||||
|
return new DiscordChatExporterException(message);
|
||||||
|
}
|
||||||
|
|
||||||
|
internal static DiscordChatExporterException Forbidden()
|
||||||
|
{
|
||||||
|
const string message = "Access is forbidden.";
|
||||||
|
return new DiscordChatExporterException(message);
|
||||||
|
}
|
||||||
|
|
||||||
|
internal static DiscordChatExporterException NotFound()
|
||||||
|
{
|
||||||
|
const string message = "Not found.";
|
||||||
|
return new DiscordChatExporterException(message);
|
||||||
|
}
|
||||||
|
|
||||||
|
internal static DiscordChatExporterException ChannelEmpty(string channel)
|
||||||
|
{
|
||||||
|
var message = $"Channel '{channel}' contains no messages for the specified period.";
|
||||||
|
return new DiscordChatExporterException(message);
|
||||||
|
}
|
||||||
|
|
||||||
|
internal static DiscordChatExporterException ChannelEmpty(Channel channel) =>
|
||||||
|
ChannelEmpty(channel.Name);
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,146 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.IO;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
using DiscordChatExporter.Domain.Discord;
|
||||||
|
using DiscordChatExporter.Domain.Discord.Models;
|
||||||
|
using DiscordChatExporter.Domain.Discord.Models.Common;
|
||||||
|
using DiscordChatExporter.Domain.Exceptions;
|
||||||
|
using DiscordChatExporter.Domain.Utilities;
|
||||||
|
|
||||||
|
namespace DiscordChatExporter.Domain.Exporting
|
||||||
|
{
|
||||||
|
public partial class ChannelExporter
|
||||||
|
{
|
||||||
|
private readonly DiscordClient _discord;
|
||||||
|
|
||||||
|
public ChannelExporter(DiscordClient discord) => _discord = discord;
|
||||||
|
|
||||||
|
public ChannelExporter(AuthToken token) : this(new DiscordClient(token)) {}
|
||||||
|
|
||||||
|
public async Task ExportAsync(
|
||||||
|
Guild guild,
|
||||||
|
Channel channel,
|
||||||
|
string outputPath,
|
||||||
|
ExportFormat format,
|
||||||
|
string dateFormat,
|
||||||
|
int? partitionLimit,
|
||||||
|
DateTimeOffset? after = null,
|
||||||
|
DateTimeOffset? before = null,
|
||||||
|
IProgress<double>? progress = null)
|
||||||
|
{
|
||||||
|
var baseFilePath = GetFilePathFromOutputPath(guild, channel, outputPath, format, after, before);
|
||||||
|
|
||||||
|
// Options
|
||||||
|
var options = new ExportOptions(baseFilePath, format, partitionLimit);
|
||||||
|
|
||||||
|
// Context
|
||||||
|
var contextMembers = new HashSet<Member>(IdBasedEqualityComparer.Instance);
|
||||||
|
var contextChannels = await _discord.GetGuildChannelsAsync(guild.Id);
|
||||||
|
var contextRoles = await _discord.GetGuildRolesAsync(guild.Id);
|
||||||
|
|
||||||
|
var context = new ExportContext(
|
||||||
|
guild, channel, after, before, dateFormat,
|
||||||
|
contextMembers, contextChannels, contextRoles
|
||||||
|
);
|
||||||
|
|
||||||
|
await using var messageExporter = new MessageExporter(options, context);
|
||||||
|
|
||||||
|
var exportedAnything = false;
|
||||||
|
var encounteredUsers = new HashSet<User>(IdBasedEqualityComparer.Instance);
|
||||||
|
await foreach (var message in _discord.GetMessagesAsync(channel.Id, after, before, progress))
|
||||||
|
{
|
||||||
|
// Resolve members for referenced users
|
||||||
|
foreach (var referencedUser in message.MentionedUsers.Prepend(message.Author))
|
||||||
|
{
|
||||||
|
if (encounteredUsers.Add(referencedUser))
|
||||||
|
{
|
||||||
|
var member =
|
||||||
|
await _discord.TryGetGuildMemberAsync(guild.Id, referencedUser) ??
|
||||||
|
Member.CreateForUser(referencedUser);
|
||||||
|
|
||||||
|
contextMembers.Add(member);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Export message
|
||||||
|
await messageExporter.ExportMessageAsync(message);
|
||||||
|
exportedAnything = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Throw if no messages were exported
|
||||||
|
if (!exportedAnything)
|
||||||
|
throw DiscordChatExporterException.ChannelEmpty(channel);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public partial class ChannelExporter
|
||||||
|
{
|
||||||
|
public static string GetDefaultExportFileName(
|
||||||
|
Guild guild,
|
||||||
|
Channel channel,
|
||||||
|
ExportFormat format,
|
||||||
|
DateTimeOffset? after = null,
|
||||||
|
DateTimeOffset? before = null)
|
||||||
|
{
|
||||||
|
var buffer = new StringBuilder();
|
||||||
|
|
||||||
|
// Guild and channel names
|
||||||
|
buffer.Append($"{guild.Name} - {channel.Category} - {channel.Name} [{channel.Id}]");
|
||||||
|
|
||||||
|
// Date range
|
||||||
|
if (after != null || before != null)
|
||||||
|
{
|
||||||
|
buffer.Append(" (");
|
||||||
|
|
||||||
|
// Both 'after' and 'before' are set
|
||||||
|
if (after != null && before != null)
|
||||||
|
{
|
||||||
|
buffer.Append($"{after:yyyy-MM-dd} to {before:yyyy-MM-dd}");
|
||||||
|
}
|
||||||
|
// Only 'after' is set
|
||||||
|
else if (after != null)
|
||||||
|
{
|
||||||
|
buffer.Append($"after {after:yyyy-MM-dd}");
|
||||||
|
}
|
||||||
|
// Only 'before' is set
|
||||||
|
else
|
||||||
|
{
|
||||||
|
buffer.Append($"before {before:yyyy-MM-dd}");
|
||||||
|
}
|
||||||
|
|
||||||
|
buffer.Append(")");
|
||||||
|
}
|
||||||
|
|
||||||
|
// File extension
|
||||||
|
buffer.Append($".{format.GetFileExtension()}");
|
||||||
|
|
||||||
|
// Replace invalid chars
|
||||||
|
foreach (var invalidChar in Path.GetInvalidFileNameChars())
|
||||||
|
buffer.Replace(invalidChar, '_');
|
||||||
|
|
||||||
|
return buffer.ToString();
|
||||||
|
}
|
||||||
|
|
||||||
|
private static string GetFilePathFromOutputPath(
|
||||||
|
Guild guild,
|
||||||
|
Channel channel,
|
||||||
|
string outputPath,
|
||||||
|
ExportFormat format,
|
||||||
|
DateTimeOffset? after = null,
|
||||||
|
DateTimeOffset? before = null)
|
||||||
|
{
|
||||||
|
// Output is a directory
|
||||||
|
if (Directory.Exists(outputPath) || string.IsNullOrWhiteSpace(Path.GetExtension(outputPath)))
|
||||||
|
{
|
||||||
|
var fileName = GetDefaultExportFileName(guild, channel, format, after, before);
|
||||||
|
return Path.Combine(outputPath, fileName);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Output is a file
|
||||||
|
return outputPath;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,70 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Drawing;
|
||||||
|
using System.Linq;
|
||||||
|
using DiscordChatExporter.Domain.Discord.Models;
|
||||||
|
|
||||||
|
namespace DiscordChatExporter.Domain.Exporting
|
||||||
|
{
|
||||||
|
public class ExportContext
|
||||||
|
{
|
||||||
|
public Guild Guild { get; }
|
||||||
|
|
||||||
|
public Channel Channel { get; }
|
||||||
|
|
||||||
|
public DateTimeOffset? After { get; }
|
||||||
|
|
||||||
|
public DateTimeOffset? Before { get; }
|
||||||
|
|
||||||
|
public string DateFormat { get; }
|
||||||
|
|
||||||
|
public IReadOnlyCollection<Member> Members { get; }
|
||||||
|
|
||||||
|
public IReadOnlyCollection<Channel> Channels { get; }
|
||||||
|
|
||||||
|
public IReadOnlyCollection<Role> Roles { get; }
|
||||||
|
|
||||||
|
public ExportContext(
|
||||||
|
Guild guild,
|
||||||
|
Channel channel,
|
||||||
|
DateTimeOffset? after,
|
||||||
|
DateTimeOffset? before,
|
||||||
|
string dateFormat,
|
||||||
|
IReadOnlyCollection<Member> members,
|
||||||
|
IReadOnlyCollection<Channel> channels,
|
||||||
|
IReadOnlyCollection<Role> roles)
|
||||||
|
{
|
||||||
|
Guild = guild;
|
||||||
|
Channel = channel;
|
||||||
|
After = after;
|
||||||
|
Before = before;
|
||||||
|
DateFormat = dateFormat;
|
||||||
|
Members = members;
|
||||||
|
Channels = channels;
|
||||||
|
Roles = roles;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Member? TryGetMentionedMember(string id) =>
|
||||||
|
Members.FirstOrDefault(m => m.Id == id);
|
||||||
|
|
||||||
|
public Channel? TryGetMentionedChannel(string id) =>
|
||||||
|
Channels.FirstOrDefault(c => c.Id == id);
|
||||||
|
|
||||||
|
public Role? TryGetMentionedRole(string id) =>
|
||||||
|
Roles.FirstOrDefault(r => r.Id == id);
|
||||||
|
|
||||||
|
public Member? TryGetUserMember(User user) => Members
|
||||||
|
.FirstOrDefault(m => m.Id == user.Id);
|
||||||
|
|
||||||
|
public Color? TryGetUserColor(User user)
|
||||||
|
{
|
||||||
|
var member = TryGetUserMember(user);
|
||||||
|
var roles = member?.RoleIds.Join(Roles, i => i, r => r.Id, (_, role) => role);
|
||||||
|
|
||||||
|
return roles?
|
||||||
|
.OrderByDescending(r => r.Position)
|
||||||
|
.Select(r => r.Color)
|
||||||
|
.FirstOrDefault(c => c != null);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,36 @@
|
|||||||
|
using System;
|
||||||
|
|
||||||
|
namespace DiscordChatExporter.Domain.Exporting
|
||||||
|
{
|
||||||
|
public enum ExportFormat
|
||||||
|
{
|
||||||
|
PlainText,
|
||||||
|
HtmlDark,
|
||||||
|
HtmlLight,
|
||||||
|
Csv,
|
||||||
|
Json
|
||||||
|
}
|
||||||
|
|
||||||
|
public static class ExportFormatExtensions
|
||||||
|
{
|
||||||
|
public static string GetFileExtension(this ExportFormat format) => format switch
|
||||||
|
{
|
||||||
|
ExportFormat.PlainText => "txt",
|
||||||
|
ExportFormat.HtmlDark => "html",
|
||||||
|
ExportFormat.HtmlLight => "html",
|
||||||
|
ExportFormat.Csv => "csv",
|
||||||
|
ExportFormat.Json => "json",
|
||||||
|
_ => throw new ArgumentOutOfRangeException(nameof(format))
|
||||||
|
};
|
||||||
|
|
||||||
|
public static string GetDisplayName(this ExportFormat format) => format switch
|
||||||
|
{
|
||||||
|
ExportFormat.PlainText => "TXT",
|
||||||
|
ExportFormat.HtmlDark => "HTML (Dark)",
|
||||||
|
ExportFormat.HtmlLight => "HTML (Light)",
|
||||||
|
ExportFormat.Csv => "CSV",
|
||||||
|
ExportFormat.Json => "JSON",
|
||||||
|
_ => throw new ArgumentOutOfRangeException(nameof(format))
|
||||||
|
};
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,18 @@
|
|||||||
|
namespace DiscordChatExporter.Domain.Exporting
|
||||||
|
{
|
||||||
|
public class ExportOptions
|
||||||
|
{
|
||||||
|
public string BaseFilePath { get; }
|
||||||
|
|
||||||
|
public ExportFormat Format { get; }
|
||||||
|
|
||||||
|
public int? PartitionLimit { get; }
|
||||||
|
|
||||||
|
public ExportOptions(string baseFilePath, ExportFormat format, int? partitionLimit)
|
||||||
|
{
|
||||||
|
BaseFilePath = baseFilePath;
|
||||||
|
Format = format;
|
||||||
|
PartitionLimit = partitionLimit;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,112 @@
|
|||||||
|
using System;
|
||||||
|
using System.IO;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
using DiscordChatExporter.Domain.Discord.Models;
|
||||||
|
using DiscordChatExporter.Domain.Exporting.Writers;
|
||||||
|
|
||||||
|
namespace DiscordChatExporter.Domain.Exporting
|
||||||
|
{
|
||||||
|
internal partial class MessageExporter : IAsyncDisposable
|
||||||
|
{
|
||||||
|
private readonly ExportOptions _options;
|
||||||
|
private readonly ExportContext _context;
|
||||||
|
|
||||||
|
private long _renderedMessageCount;
|
||||||
|
private int _partitionIndex;
|
||||||
|
private MessageWriter? _writer;
|
||||||
|
|
||||||
|
public MessageExporter(ExportOptions options, ExportContext context)
|
||||||
|
{
|
||||||
|
_options = options;
|
||||||
|
_context = context;
|
||||||
|
}
|
||||||
|
|
||||||
|
private bool IsPartitionLimitReached() =>
|
||||||
|
_renderedMessageCount > 0 &&
|
||||||
|
_options.PartitionLimit != null &&
|
||||||
|
_options.PartitionLimit != 0 &&
|
||||||
|
_renderedMessageCount % _options.PartitionLimit == 0;
|
||||||
|
|
||||||
|
private async Task ResetWriterAsync()
|
||||||
|
{
|
||||||
|
if (_writer != null)
|
||||||
|
{
|
||||||
|
await _writer.WritePostambleAsync();
|
||||||
|
await _writer.DisposeAsync();
|
||||||
|
_writer = null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private async Task<MessageWriter> GetWriterAsync()
|
||||||
|
{
|
||||||
|
// Ensure partition limit has not been exceeded
|
||||||
|
if (IsPartitionLimitReached())
|
||||||
|
{
|
||||||
|
await ResetWriterAsync();
|
||||||
|
_partitionIndex++;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Writer is still valid - return
|
||||||
|
if (_writer != null)
|
||||||
|
return _writer;
|
||||||
|
|
||||||
|
var filePath = GetPartitionFilePath(_options.BaseFilePath, _partitionIndex);
|
||||||
|
|
||||||
|
var dirPath = Path.GetDirectoryName(_options.BaseFilePath);
|
||||||
|
if (!string.IsNullOrWhiteSpace(dirPath))
|
||||||
|
Directory.CreateDirectory(dirPath);
|
||||||
|
|
||||||
|
var writer = CreateMessageWriter(filePath, _options.Format, _context);
|
||||||
|
await writer.WritePreambleAsync();
|
||||||
|
|
||||||
|
return _writer = writer;
|
||||||
|
}
|
||||||
|
|
||||||
|
public async Task ExportMessageAsync(Message message)
|
||||||
|
{
|
||||||
|
var writer = await GetWriterAsync();
|
||||||
|
await writer.WriteMessageAsync(message);
|
||||||
|
_renderedMessageCount++;
|
||||||
|
}
|
||||||
|
|
||||||
|
public async ValueTask DisposeAsync() => await ResetWriterAsync();
|
||||||
|
}
|
||||||
|
|
||||||
|
internal partial class MessageExporter
|
||||||
|
{
|
||||||
|
private static string GetPartitionFilePath(string baseFilePath, int partitionIndex)
|
||||||
|
{
|
||||||
|
// First partition - don't change file name
|
||||||
|
if (partitionIndex <= 0)
|
||||||
|
return baseFilePath;
|
||||||
|
|
||||||
|
// Inject partition index into file name
|
||||||
|
var fileNameWithoutExt = Path.GetFileNameWithoutExtension(baseFilePath);
|
||||||
|
var fileExt = Path.GetExtension(baseFilePath);
|
||||||
|
var fileName = $"{fileNameWithoutExt} [part {partitionIndex + 1}]{fileExt}";
|
||||||
|
|
||||||
|
// Generate new path
|
||||||
|
var dirPath = Path.GetDirectoryName(baseFilePath);
|
||||||
|
if (!string.IsNullOrWhiteSpace(dirPath))
|
||||||
|
return Path.Combine(dirPath, fileName);
|
||||||
|
|
||||||
|
return fileName;
|
||||||
|
}
|
||||||
|
|
||||||
|
private static MessageWriter CreateMessageWriter(string filePath, ExportFormat format, ExportContext context)
|
||||||
|
{
|
||||||
|
// Stream will be disposed by the underlying writer
|
||||||
|
var stream = File.Create(filePath);
|
||||||
|
|
||||||
|
return format switch
|
||||||
|
{
|
||||||
|
ExportFormat.PlainText => new PlainTextMessageWriter(stream, context),
|
||||||
|
ExportFormat.Csv => new CsvMessageWriter(stream, context),
|
||||||
|
ExportFormat.HtmlDark => new HtmlMessageWriter(stream, context, "Dark"),
|
||||||
|
ExportFormat.HtmlLight => new HtmlMessageWriter(stream, context, "Light"),
|
||||||
|
ExportFormat.Json => new JsonMessageWriter(stream, context),
|
||||||
|
_ => throw new ArgumentOutOfRangeException(nameof(format), $"Unknown export format '{format}'.")
|
||||||
|
};
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,31 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using DiscordChatExporter.Domain.Discord.Models;
|
||||||
|
|
||||||
|
namespace DiscordChatExporter.Domain.Exporting
|
||||||
|
{
|
||||||
|
// Used for grouping contiguous messages in HTML export
|
||||||
|
internal partial class MessageGroup
|
||||||
|
{
|
||||||
|
public User Author { get; }
|
||||||
|
|
||||||
|
public DateTimeOffset Timestamp { get; }
|
||||||
|
|
||||||
|
public IReadOnlyList<Message> Messages { get; }
|
||||||
|
|
||||||
|
public MessageGroup(User author, DateTimeOffset timestamp, IReadOnlyList<Message> messages)
|
||||||
|
{
|
||||||
|
Author = author;
|
||||||
|
Timestamp = timestamp;
|
||||||
|
Messages = messages;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
internal partial class MessageGroup
|
||||||
|
{
|
||||||
|
public static bool CanGroup(Message message1, Message message2) =>
|
||||||
|
string.Equals(message1.Author.Id, message2.Author.Id, StringComparison.Ordinal) &&
|
||||||
|
string.Equals(message1.Author.FullName, message2.Author.FullName, StringComparison.Ordinal) &&
|
||||||
|
(message2.Timestamp - message1.Timestamp).Duration().TotalMinutes <= 7;
|
||||||
|
}
|
||||||
|
}
|
||||||
+140
-86
@@ -1,4 +1,4 @@
|
|||||||
/* === GENERAL === */
|
/* General */
|
||||||
|
|
||||||
@font-face {
|
@font-face {
|
||||||
font-family: Whitney;
|
font-family: Whitney;
|
||||||
@@ -48,20 +48,71 @@ img {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.markdown {
|
.markdown {
|
||||||
|
max-width: 100%;
|
||||||
white-space: pre-wrap;
|
white-space: pre-wrap;
|
||||||
line-height: 1.3;
|
line-height: 1.3;
|
||||||
overflow-wrap: break-word;
|
overflow-wrap: break-word;
|
||||||
}
|
}
|
||||||
|
|
||||||
.spoiler {
|
.spoiler {
|
||||||
|
width: fit-content;
|
||||||
|
}
|
||||||
|
|
||||||
|
.spoiler--hidden {
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
.spoiler-text {
|
||||||
border-radius: 3px;
|
border-radius: 3px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.spoiler--hidden .spoiler-text {
|
||||||
|
color: rgba(0, 0, 0, 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
.spoiler--hidden .spoiler-text::selection {
|
||||||
|
color: rgba(0, 0, 0, 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
.spoiler-image {
|
||||||
|
position: relative;
|
||||||
|
overflow: hidden;
|
||||||
|
border-radius: 3px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.spoiler--hidden .spoiler-image {
|
||||||
|
box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.1);
|
||||||
|
}
|
||||||
|
|
||||||
|
.spoiler--hidden .spoiler-image img {
|
||||||
|
filter: blur(44px);
|
||||||
|
}
|
||||||
|
|
||||||
|
.spoiler--hidden .spoiler-image:after {
|
||||||
|
content: "SPOILER";
|
||||||
|
color: #dcddde;
|
||||||
|
background-color: rgba(0, 0, 0, 0.6);
|
||||||
|
position: absolute;
|
||||||
|
left: 50%;
|
||||||
|
top: 50%;
|
||||||
|
transform: translate(-50%, -50%);
|
||||||
|
font-weight: 600;
|
||||||
|
padding: 0.5em 0.7em;
|
||||||
|
border-radius: 20px;
|
||||||
|
letter-spacing: 0.05em;
|
||||||
|
font-size: 0.9em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.spoiler--hidden:hover .spoiler-image:after {
|
||||||
|
color: #fff;
|
||||||
|
background-color: rgba(0, 0, 0, 0.9);
|
||||||
|
}
|
||||||
|
|
||||||
.quote {
|
.quote {
|
||||||
|
margin: 0.1em 0;
|
||||||
|
padding-left: 0.6em;
|
||||||
border-left: 4px solid;
|
border-left: 4px solid;
|
||||||
border-radius: 3px;
|
border-radius: 3px;
|
||||||
margin: 8px 0;
|
|
||||||
padding-left: 10px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.pre {
|
.pre {
|
||||||
@@ -69,8 +120,8 @@ img {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.pre--multiline {
|
.pre--multiline {
|
||||||
margin-top: 4px;
|
margin-top: 0.25em;
|
||||||
padding: 8px;
|
padding: 0.5em;
|
||||||
border: 2px solid;
|
border: 2px solid;
|
||||||
border-radius: 5px;
|
border-radius: 5px;
|
||||||
}
|
}
|
||||||
@@ -78,88 +129,81 @@ img {
|
|||||||
.pre--inline {
|
.pre--inline {
|
||||||
padding: 2px;
|
padding: 2px;
|
||||||
border-radius: 3px;
|
border-radius: 3px;
|
||||||
font-size: 85%;
|
font-size: 0.85em;
|
||||||
}
|
}
|
||||||
|
|
||||||
.mention {
|
.mention {
|
||||||
|
border-radius: 3px;
|
||||||
|
padding: 0 2px;
|
||||||
|
color: #7289da;
|
||||||
|
background: rgba(114, 137, 218, .1);
|
||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
}
|
}
|
||||||
|
|
||||||
.emoji {
|
.emoji {
|
||||||
width: 1.45em;
|
width: 1.25em;
|
||||||
height: 1.45em;
|
height: 1.25em;
|
||||||
margin: 0 1px;
|
margin: 0 0.06em;
|
||||||
vertical-align: -0.4em;
|
vertical-align: -0.4em;
|
||||||
}
|
}
|
||||||
|
|
||||||
.emoji--small {
|
.emoji--small {
|
||||||
width: 1rem;
|
width: 1em;
|
||||||
height: 1rem;
|
height: 1em;
|
||||||
}
|
}
|
||||||
|
|
||||||
.emoji--large {
|
.emoji--large {
|
||||||
width: 2rem;
|
width: 2.8em;
|
||||||
height: 2rem;
|
height: 2.8em;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* === INFO === */
|
/* Preamble */
|
||||||
|
|
||||||
.info {
|
.preamble {
|
||||||
display: flex;
|
display: grid;
|
||||||
|
margin: 0 0.3em 0.6em 0.3em;
|
||||||
max-width: 100%;
|
max-width: 100%;
|
||||||
margin: 0 5px 10px 5px;
|
grid-template-columns: auto 1fr;
|
||||||
}
|
}
|
||||||
|
|
||||||
.info__guild-icon-container {
|
.preamble__guild-icon-container {
|
||||||
flex: 0;
|
grid-column: 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
.info__guild-icon {
|
.preamble__guild-icon {
|
||||||
max-width: 88px;
|
max-width: 88px;
|
||||||
max-height: 88px;
|
max-height: 88px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.info__metadata {
|
.preamble__entries-container {
|
||||||
flex: 1;
|
grid-column: 2;
|
||||||
margin-left: 10px;
|
margin-left: 0.6em;
|
||||||
}
|
}
|
||||||
|
|
||||||
.info__guild-name {
|
.preamble__entry {
|
||||||
font-size: 1.4em;
|
font-size: 1.4em;
|
||||||
}
|
}
|
||||||
|
|
||||||
.info__channel-name {
|
.preamble__entry--small {
|
||||||
font-size: 1.2em;
|
font-size: 1em;
|
||||||
}
|
}
|
||||||
|
|
||||||
.info__channel-topic {
|
/* Chatlog */
|
||||||
margin-top: 2px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.info__channel-message-count {
|
|
||||||
margin-top: 2px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.info__channel-date-range {
|
|
||||||
margin-top: 2px;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* === CHATLOG === */
|
|
||||||
|
|
||||||
.chatlog {
|
.chatlog {
|
||||||
max-width: 100%;
|
max-width: 100%;
|
||||||
margin-bottom: 24px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.chatlog__message-group {
|
.chatlog__message-group {
|
||||||
display: flex;
|
display: grid;
|
||||||
margin: 0 10px;
|
margin: 0 0.6em;
|
||||||
padding: 15px 0;
|
padding: 0.9em 0;
|
||||||
border-top: 1px solid;
|
border-top: 1px solid;
|
||||||
|
grid-template-columns: auto 1fr;
|
||||||
}
|
}
|
||||||
|
|
||||||
.chatlog__author-avatar-container {
|
.chatlog__author-avatar-container {
|
||||||
flex: 0;
|
grid-column: 1;
|
||||||
width: 40px;
|
width: 40px;
|
||||||
height: 40px;
|
height: 40px;
|
||||||
}
|
}
|
||||||
@@ -171,55 +215,57 @@ img {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.chatlog__messages {
|
.chatlog__messages {
|
||||||
flex: 1;
|
grid-column: 2;
|
||||||
|
margin-left: 1.2em;
|
||||||
min-width: 50%;
|
min-width: 50%;
|
||||||
margin-left: 20px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.chatlog__author-name {
|
.chatlog__author-name {
|
||||||
font-size: 1em;
|
|
||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
}
|
}
|
||||||
|
|
||||||
.chatlog__timestamp {
|
.chatlog__timestamp {
|
||||||
margin-left: 5px;
|
margin-left: 0.3em;
|
||||||
font-size: .75em;
|
font-size: 0.75em;
|
||||||
}
|
}
|
||||||
|
|
||||||
.chatlog__message {
|
.chatlog__message {
|
||||||
padding: 2px 5px;
|
padding: 0.1em 0.3em;
|
||||||
margin-right: -5px;
|
margin: 0 -0.3em;
|
||||||
margin-left: -5px;
|
|
||||||
background-color: transparent;
|
background-color: transparent;
|
||||||
transition: background-color 1s ease;
|
transition: background-color 1s ease;
|
||||||
}
|
}
|
||||||
|
|
||||||
.chatlog__content {
|
.chatlog__content {
|
||||||
font-size: .9375em;
|
font-size: 0.95em;
|
||||||
word-wrap: break-word;
|
word-wrap: break-word;
|
||||||
}
|
}
|
||||||
|
|
||||||
.chatlog__edited-timestamp {
|
.chatlog__edited-timestamp {
|
||||||
margin-left: 3px;
|
margin-left: 0.15em;
|
||||||
font-size: .8em;
|
font-size: 0.8em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.chatlog__attachment {
|
||||||
|
margin-top: 0.3em;
|
||||||
}
|
}
|
||||||
|
|
||||||
.chatlog__attachment-thumbnail {
|
.chatlog__attachment-thumbnail {
|
||||||
margin-top: 5px;
|
vertical-align: top;
|
||||||
max-width: 50%;
|
max-width: 45vw;
|
||||||
max-height: 500px;
|
max-height: 500px;
|
||||||
border-radius: 3px;
|
border-radius: 3px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.chatlog__embed {
|
.chatlog__embed {
|
||||||
margin-top: 5px;
|
|
||||||
display: flex;
|
display: flex;
|
||||||
|
margin-top: 0.3em;
|
||||||
max-width: 520px;
|
max-width: 520px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.chatlog__embed-color-pill {
|
.chatlog__embed-color-pill {
|
||||||
flex-shrink: 0;
|
flex-shrink: 0;
|
||||||
width: 4px;
|
width: 0.25em;
|
||||||
border-top-left-radius: 3px;
|
border-top-left-radius: 3px;
|
||||||
border-bottom-left-radius: 3px;
|
border-bottom-left-radius: 3px;
|
||||||
}
|
}
|
||||||
@@ -227,15 +273,15 @@ img {
|
|||||||
.chatlog__embed-content-container {
|
.chatlog__embed-content-container {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
padding: 8px 10px;
|
padding: 0.5em 0.6em;
|
||||||
border: 1px solid;
|
border: 1px solid;
|
||||||
border-top-right-radius: 3px;
|
border-top-right-radius: 3px;
|
||||||
border-bottom-right-radius: 3px;
|
border-bottom-right-radius: 3px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.chatlog__embed-content {
|
.chatlog__embed-content {
|
||||||
width: 100%;
|
|
||||||
display: flex;
|
display: flex;
|
||||||
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.chatlog__embed-text {
|
.chatlog__embed-text {
|
||||||
@@ -244,31 +290,31 @@ img {
|
|||||||
|
|
||||||
.chatlog__embed-author {
|
.chatlog__embed-author {
|
||||||
display: flex;
|
display: flex;
|
||||||
|
margin-bottom: 0.3em;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
margin-bottom: 5px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.chatlog__embed-author-icon {
|
.chatlog__embed-author-icon {
|
||||||
|
margin-right: 0.5em;
|
||||||
width: 20px;
|
width: 20px;
|
||||||
height: 20px;
|
height: 20px;
|
||||||
margin-right: 9px;
|
|
||||||
border-radius: 50%;
|
border-radius: 50%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.chatlog__embed-author-name {
|
.chatlog__embed-author-name {
|
||||||
font-size: .875em;
|
font-size: 0.875em;
|
||||||
font-weight: 600;
|
font-weight: 600;
|
||||||
}
|
}
|
||||||
|
|
||||||
.chatlog__embed-title {
|
.chatlog__embed-title {
|
||||||
margin-bottom: 4px;
|
margin-bottom: 0.2em;
|
||||||
font-size: .875em;
|
font-size: 0.875em;
|
||||||
font-weight: 600;
|
font-weight: 600;
|
||||||
}
|
}
|
||||||
|
|
||||||
.chatlog__embed-description {
|
.chatlog__embed-description {
|
||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
font-size: 14px;
|
font-size: 0.85em;
|
||||||
}
|
}
|
||||||
|
|
||||||
.chatlog__embed-fields {
|
.chatlog__embed-fields {
|
||||||
@@ -280,7 +326,8 @@ img {
|
|||||||
flex: 0;
|
flex: 0;
|
||||||
min-width: 100%;
|
min-width: 100%;
|
||||||
max-width: 506px;
|
max-width: 506px;
|
||||||
padding-top: 10px;
|
padding-top: 0.6em;
|
||||||
|
font-size: 0.875em;
|
||||||
}
|
}
|
||||||
|
|
||||||
.chatlog__embed-field--inline {
|
.chatlog__embed-field--inline {
|
||||||
@@ -290,26 +337,24 @@ img {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.chatlog__embed-field-name {
|
.chatlog__embed-field-name {
|
||||||
margin-bottom: 4px;
|
margin-bottom: 0.2em;
|
||||||
font-size: .875em;
|
|
||||||
font-weight: 600;
|
font-weight: 600;
|
||||||
}
|
}
|
||||||
|
|
||||||
.chatlog__embed-field-value {
|
.chatlog__embed-field-value {
|
||||||
font-size: .875em;
|
|
||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
}
|
}
|
||||||
|
|
||||||
.chatlog__embed-thumbnail {
|
.chatlog__embed-thumbnail {
|
||||||
flex: 0;
|
flex: 0;
|
||||||
margin-left: 20px;
|
margin-left: 1.2em;
|
||||||
max-width: 80px;
|
max-width: 80px;
|
||||||
max-height: 80px;
|
max-height: 80px;
|
||||||
border-radius: 3px;
|
border-radius: 3px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.chatlog__embed-image-container {
|
.chatlog__embed-image-container {
|
||||||
margin-top: 10px;
|
margin-top: 0.6em;
|
||||||
}
|
}
|
||||||
|
|
||||||
.chatlog__embed-image {
|
.chatlog__embed-image {
|
||||||
@@ -319,11 +364,11 @@ img {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.chatlog__embed-footer {
|
.chatlog__embed-footer {
|
||||||
margin-top: 10px;
|
margin-top: 0.6em;
|
||||||
}
|
}
|
||||||
|
|
||||||
.chatlog__embed-footer-icon {
|
.chatlog__embed-footer-icon {
|
||||||
margin-right: 4px;
|
margin-right: 0.2em;
|
||||||
width: 20px;
|
width: 20px;
|
||||||
height: 20px;
|
height: 20px;
|
||||||
border-radius: 50%;
|
border-radius: 50%;
|
||||||
@@ -331,8 +376,8 @@ img {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.chatlog__embed-footer-text {
|
.chatlog__embed-footer-text {
|
||||||
|
font-size: 0.75em;
|
||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
font-size: .75em;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.chatlog__reactions {
|
.chatlog__reactions {
|
||||||
@@ -342,26 +387,35 @@ img {
|
|||||||
.chatlog__reaction {
|
.chatlog__reaction {
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
margin: 6px 2px 2px 2px;
|
margin: 0.35em 0.1em 0.1em 0.1em;
|
||||||
padding: 3px 6px;
|
padding: 0.2em 0.35em;
|
||||||
border-radius: 3px;
|
border-radius: 3px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.chatlog__reaction-count {
|
.chatlog__reaction-count {
|
||||||
min-width: 9px;
|
min-width: 9px;
|
||||||
margin-left: 6px;
|
margin-left: 0.35em;
|
||||||
font-size: .875em;
|
font-size: 0.875em;
|
||||||
}
|
}
|
||||||
|
|
||||||
.chatlog__bot-tag {
|
.chatlog__bot-tag {
|
||||||
|
position: relative;
|
||||||
|
top: -.2em;
|
||||||
margin-left: 0.3em;
|
margin-left: 0.3em;
|
||||||
background: #7289da;
|
padding: 0.05em 0.3em;
|
||||||
color: #ffffff;
|
|
||||||
font-size: 0.625em;
|
|
||||||
padding: 1px 2px;
|
|
||||||
border-radius: 3px;
|
border-radius: 3px;
|
||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
line-height: 1.3;
|
line-height: 1.3;
|
||||||
position: relative;
|
background: #7289da;
|
||||||
top: -.2em;
|
color: #ffffff;
|
||||||
|
font-size: 0.625em;
|
||||||
|
font-weight: 500;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Postamble */
|
||||||
|
|
||||||
|
.postamble {
|
||||||
|
margin: 1.4em 0.3em 0.6em 0.3em;
|
||||||
|
padding: 1em;
|
||||||
|
border-top: 1px solid;
|
||||||
}
|
}
|
||||||
+28
-18
@@ -1,4 +1,4 @@
|
|||||||
/* === GENERAL === */
|
/* General */
|
||||||
|
|
||||||
body {
|
body {
|
||||||
background-color: #36393e;
|
background-color: #36393e;
|
||||||
@@ -9,10 +9,18 @@ a {
|
|||||||
color: #0096cf;
|
color: #0096cf;
|
||||||
}
|
}
|
||||||
|
|
||||||
.spoiler {
|
.spoiler-text {
|
||||||
background-color: rgba(255, 255, 255, 0.1);
|
background-color: rgba(255, 255, 255, 0.1);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.spoiler--hidden .spoiler-text {
|
||||||
|
background-color: #202225;
|
||||||
|
}
|
||||||
|
|
||||||
|
.spoiler--hidden:hover .spoiler-text {
|
||||||
|
background-color: rgba(32, 34, 37, 0.8);
|
||||||
|
}
|
||||||
|
|
||||||
.quote {
|
.quote {
|
||||||
border-color: #4f545c;
|
border-color: #4f545c;
|
||||||
}
|
}
|
||||||
@@ -23,28 +31,16 @@ a {
|
|||||||
|
|
||||||
.pre--multiline {
|
.pre--multiline {
|
||||||
border-color: #282b30 !important;
|
border-color: #282b30 !important;
|
||||||
color: #839496 !important;
|
color: #b9bbbe !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.mention {
|
/* === Preamble === */
|
||||||
color: #7289da;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* === INFO === */
|
.preamble__entry {
|
||||||
|
|
||||||
.info__guild-name {
|
|
||||||
color: #ffffff;
|
color: #ffffff;
|
||||||
}
|
}
|
||||||
|
|
||||||
.info__channel-name {
|
/* Chatlog */
|
||||||
color: #ffffff;
|
|
||||||
}
|
|
||||||
|
|
||||||
.info__channel-topic {
|
|
||||||
color: #ffffff;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* === CHATLOG === */
|
|
||||||
|
|
||||||
.chatlog__message-group {
|
.chatlog__message-group {
|
||||||
border-color: rgba(255, 255, 255, 0.1);
|
border-color: rgba(255, 255, 255, 0.1);
|
||||||
@@ -70,6 +66,10 @@ a {
|
|||||||
color: rgba(255, 255, 255, 0.2);
|
color: rgba(255, 255, 255, 0.2);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.chatlog__embed-color-pill--default {
|
||||||
|
background-color: rgba(79, 84, 92, 1);
|
||||||
|
}
|
||||||
|
|
||||||
.chatlog__embed-content-container {
|
.chatlog__embed-content-container {
|
||||||
background-color: rgba(46, 48, 54, 0.3);
|
background-color: rgba(46, 48, 54, 0.3);
|
||||||
border-color: rgba(46, 48, 54, 0.6);
|
border-color: rgba(46, 48, 54, 0.6);
|
||||||
@@ -109,4 +109,14 @@ a {
|
|||||||
|
|
||||||
.chatlog__reaction-count {
|
.chatlog__reaction-count {
|
||||||
color: rgba(255, 255, 255, 0.3);
|
color: rgba(255, 255, 255, 0.3);
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Postamble */
|
||||||
|
|
||||||
|
.postamble {
|
||||||
|
border-color: rgba(255, 255, 255, 0.1);
|
||||||
|
}
|
||||||
|
|
||||||
|
.postamble__entry {
|
||||||
|
color: #ffffff;
|
||||||
}
|
}
|
||||||
@@ -0,0 +1,96 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
|
||||||
|
<head>
|
||||||
|
{{~ # Metadata ~}}
|
||||||
|
<title>{{ Context.Guild.Name | html.escape }} - {{ Context.Channel.Name | html.escape }}</title>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta name="viewport" content="width=device-width">
|
||||||
|
|
||||||
|
{{~ # Styles ~}}
|
||||||
|
<style>
|
||||||
|
{{ CoreStyleSheet }}
|
||||||
|
</style>
|
||||||
|
<style>
|
||||||
|
{{ ThemeStyleSheet }}
|
||||||
|
</style>
|
||||||
|
|
||||||
|
{{~ # Syntax highlighting ~}}
|
||||||
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.15.6/styles/{{HighlightJsStyleName}}.min.css">
|
||||||
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.15.6/highlight.min.js"></script>
|
||||||
|
<script>
|
||||||
|
document.addEventListener('DOMContentLoaded', () => {
|
||||||
|
document.querySelectorAll('.pre--multiline').forEach(block => hljs.highlightBlock(block));
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
|
||||||
|
{{~ # Local scripts ~}}
|
||||||
|
<script>
|
||||||
|
function scrollToMessage(event, id) {
|
||||||
|
var element = document.getElementById('message-' + id);
|
||||||
|
|
||||||
|
if (element) {
|
||||||
|
event.preventDefault();
|
||||||
|
|
||||||
|
element.classList.add('chatlog__message--highlighted');
|
||||||
|
|
||||||
|
window.scrollTo({
|
||||||
|
top: element.getBoundingClientRect().top - document.body.getBoundingClientRect().top - (window.innerHeight / 2),
|
||||||
|
behavior: 'smooth'
|
||||||
|
});
|
||||||
|
|
||||||
|
window.setTimeout(function() {
|
||||||
|
element.classList.remove('chatlog__message--highlighted');
|
||||||
|
}, 2000);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function showSpoiler(event, element) {
|
||||||
|
if (element && element.classList.contains('spoiler--hidden')) {
|
||||||
|
event.preventDefault();
|
||||||
|
element.classList.remove('spoiler--hidden');
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
|
||||||
|
{{~ # Preamble ~}}
|
||||||
|
<div class="preamble">
|
||||||
|
<div class="preamble__guild-icon-container">
|
||||||
|
<img class="preamble__guild-icon" src="{{ Context.Guild.IconUrl }}" alt="Guild icon">
|
||||||
|
</div>
|
||||||
|
<div class="preamble__entries-container">
|
||||||
|
<div class="preamble__entry">{{ Context.Guild.Name | html.escape }}</div>
|
||||||
|
<div class="preamble__entry">{{ Context.Channel.Category | html.escape }} / {{ Context.Channel.Name | html.escape }}</div>
|
||||||
|
|
||||||
|
{{~ if Context.Channel.Topic ~}}
|
||||||
|
<div class="preamble__entry preamble__entry--small">{{ Context.Channel.Topic | html.escape }}</div>
|
||||||
|
{{~ end ~}}
|
||||||
|
|
||||||
|
{{~ if Context.After || Context.Before ~}}
|
||||||
|
<div class="preamble__entry preamble__entry--small">
|
||||||
|
{{~ if Context.After && Context.Before ~}}
|
||||||
|
Between {{ Context.After | FormatDate | html.escape }} and {{ Context.Before | FormatDate | html.escape }}
|
||||||
|
{{~ else if Context.After ~}}
|
||||||
|
After {{ Context.After | FormatDate | html.escape }}
|
||||||
|
{{~ else if Context.Before ~}}
|
||||||
|
Before {{ Context.Before | FormatDate | html.escape }}
|
||||||
|
{{~ end ~}}
|
||||||
|
</div>
|
||||||
|
{{~ end ~}}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{{~ # Log ~}}
|
||||||
|
<div class="chatlog">
|
||||||
|
{{~ %SPLIT% ~}}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{{~ # Postamble ~}}
|
||||||
|
<div class="postamble">
|
||||||
|
<div class="postamble__entry">Exported {{ MessageCount | object.format "N0" }} message(s)</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
+27
-18
@@ -1,4 +1,4 @@
|
|||||||
/* === GENERAL === */
|
/* General */
|
||||||
|
|
||||||
body {
|
body {
|
||||||
background-color: #ffffff;
|
background-color: #ffffff;
|
||||||
@@ -10,10 +10,18 @@ a {
|
|||||||
color: #00b0f4;
|
color: #00b0f4;
|
||||||
}
|
}
|
||||||
|
|
||||||
.spoiler {
|
.spoiler-text {
|
||||||
background-color: rgba(0, 0, 0, 0.1);
|
background-color: rgba(0, 0, 0, 0.1);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.spoiler--hidden .spoiler-text {
|
||||||
|
background-color: #b9bbbe;
|
||||||
|
}
|
||||||
|
|
||||||
|
.spoiler--hidden:hover .spoiler-text {
|
||||||
|
background-color: rgba(185, 187, 190, 0.8);
|
||||||
|
}
|
||||||
|
|
||||||
.quote {
|
.quote {
|
||||||
border-color: #c7ccd1;
|
border-color: #c7ccd1;
|
||||||
}
|
}
|
||||||
@@ -27,26 +35,13 @@ a {
|
|||||||
color: #657b83 !important;
|
color: #657b83 !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.mention {
|
/* Preamble */
|
||||||
background-color: #f1f3fb;
|
|
||||||
color: #7289da;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* === INFO === */
|
.preamble__entry {
|
||||||
|
|
||||||
.info__guild-name {
|
|
||||||
color: #2f3136;
|
color: #2f3136;
|
||||||
}
|
}
|
||||||
|
|
||||||
.info__channel-name {
|
/* Chatlog */
|
||||||
color: #2f3136;
|
|
||||||
}
|
|
||||||
|
|
||||||
.info__channel-topic {
|
|
||||||
color: #2f3136;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* === CHATLOG === */
|
|
||||||
|
|
||||||
.chatlog__message-group {
|
.chatlog__message-group {
|
||||||
border-color: #eceeef;
|
border-color: #eceeef;
|
||||||
@@ -73,6 +68,10 @@ a {
|
|||||||
color: #747f8d;
|
color: #747f8d;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.chatlog__embed-color-pill--default {
|
||||||
|
background-color: rgba(227, 229, 232, 1);
|
||||||
|
}
|
||||||
|
|
||||||
.chatlog__embed-content-container {
|
.chatlog__embed-content-container {
|
||||||
background-color: rgba(249, 249, 249, 0.3);
|
background-color: rgba(249, 249, 249, 0.3);
|
||||||
border-color: rgba(204, 204, 204, 0.3);
|
border-color: rgba(204, 204, 204, 0.3);
|
||||||
@@ -112,4 +111,14 @@ a {
|
|||||||
|
|
||||||
.chatlog__reaction-count {
|
.chatlog__reaction-count {
|
||||||
color: #747f8d;
|
color: #747f8d;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Postamble */
|
||||||
|
|
||||||
|
.postamble {
|
||||||
|
border-color: #eceeef;
|
||||||
|
}
|
||||||
|
|
||||||
|
.postamble__entry {
|
||||||
|
color: #2f3136;
|
||||||
}
|
}
|
||||||
@@ -0,0 +1,184 @@
|
|||||||
|
<div class="chatlog__message-group">
|
||||||
|
{{~ # Avatar ~}}
|
||||||
|
<div class="chatlog__author-avatar-container">
|
||||||
|
<img class="chatlog__author-avatar" src="{{ MessageGroup.Author.AvatarUrl }}" alt="Avatar">
|
||||||
|
</div>
|
||||||
|
<div class="chatlog__messages">
|
||||||
|
{{~ # Author name and timestamp ~}}
|
||||||
|
{{~ userColor = TryGetUserColor MessageGroup.Author | FormatColorRgb ~}}
|
||||||
|
<span class="chatlog__author-name" title="{{ MessageGroup.Author.FullName | html.escape }}" data-user-id="{{ MessageGroup.Author.Id | html.escape }}" {{ if userColor }} style="color: {{ userColor }}" {{ end }}>{{ (TryGetUserNick MessageGroup.Author ?? MessageGroup.Author.Name) | html.escape }}</span>
|
||||||
|
|
||||||
|
{{~ # Bot tag ~}}
|
||||||
|
{{~ if MessageGroup.Author.IsBot ~}}
|
||||||
|
<span class="chatlog__bot-tag">BOT</span>
|
||||||
|
{{~ end ~}}
|
||||||
|
|
||||||
|
<span class="chatlog__timestamp">{{ MessageGroup.Timestamp | FormatDate | html.escape }}</span>
|
||||||
|
|
||||||
|
{{~ # Messages ~}}
|
||||||
|
{{~ for message in MessageGroup.Messages ~}}
|
||||||
|
<div class="chatlog__message {{ if message.IsPinned }}chatlog__message--pinned{{ end }}" data-message-id="{{ message.Id }}" id="message-{{ message.Id }}">
|
||||||
|
{{~ # Content ~}}
|
||||||
|
{{~ if message.Content ~}}
|
||||||
|
<div class="chatlog__content">
|
||||||
|
<div class="markdown">
|
||||||
|
{{- message.Content | FormatMarkdown -}}
|
||||||
|
|
||||||
|
{{- # Edited timestamp -}}
|
||||||
|
{{- if message.EditedTimestamp -}}
|
||||||
|
{{-}}<span class="chatlog__edited-timestamp" title="{{ message.EditedTimestamp | FormatDate | html.escape }}">(edited)</span>{{-}}
|
||||||
|
{{- end -}}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{{~ end ~}}
|
||||||
|
|
||||||
|
{{~ # Attachments ~}}
|
||||||
|
{{~ for attachment in message.Attachments ~}}
|
||||||
|
<div class="chatlog__attachment">
|
||||||
|
{{ # Spoiler image }}
|
||||||
|
{{~ if attachment.IsSpoiler ~}}
|
||||||
|
<div class="spoiler spoiler--hidden" onclick="showSpoiler(event, this)">
|
||||||
|
<div class="spoiler-image">
|
||||||
|
<a href="{{ attachment.Url }}">
|
||||||
|
<img class="chatlog__attachment-thumbnail" src="{{ attachment.Url }}" alt="Attachment">
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{{~ else ~}}
|
||||||
|
<a href="{{ attachment.Url }}">
|
||||||
|
{{ # Non-spoiler image }}
|
||||||
|
{{~ if attachment.IsImage ~}}
|
||||||
|
<img class="chatlog__attachment-thumbnail" src="{{ attachment.Url }}" alt="Attachment">
|
||||||
|
{{~ # Non-image ~}}
|
||||||
|
{{~ else ~}}
|
||||||
|
Attachment: {{ attachment.FileName }} ({{ attachment.FileSize }})
|
||||||
|
{{~ end ~}}
|
||||||
|
</a>
|
||||||
|
{{~ end ~}}
|
||||||
|
</div>
|
||||||
|
{{~ end ~}}
|
||||||
|
|
||||||
|
{{~ # Embeds ~}}
|
||||||
|
{{~ for embed in message.Embeds ~}}
|
||||||
|
<div class="chatlog__embed">
|
||||||
|
{{~ if embed.Color ~}}
|
||||||
|
<div class="chatlog__embed-color-pill" style="background-color: rgba({{ embed.Color.R }},{{ embed.Color.G }},{{ embed.Color.B }},{{ embed.Color.A }})"></div>
|
||||||
|
{{~ else ~}}
|
||||||
|
<div class="chatlog__embed-color-pill chatlog__embed-color-pill--default"></div>
|
||||||
|
{{~ end ~}}
|
||||||
|
<div class="chatlog__embed-content-container">
|
||||||
|
<div class="chatlog__embed-content">
|
||||||
|
<div class="chatlog__embed-text">
|
||||||
|
{{~ # Author ~}}
|
||||||
|
{{~ if embed.Author ~}}
|
||||||
|
<div class="chatlog__embed-author">
|
||||||
|
{{~ if embed.Author.IconUrl ~}}
|
||||||
|
<img class="chatlog__embed-author-icon" src="{{ embed.Author.IconUrl }}" alt="Author icon">
|
||||||
|
{{~ end ~}}
|
||||||
|
|
||||||
|
{{~ if embed.Author.Name ~}}
|
||||||
|
<span class="chatlog__embed-author-name">
|
||||||
|
{{~ if embed.Author.Url ~}}
|
||||||
|
<a class="chatlog__embed-author-name-link" href="{{ embed.Author.Url }}">{{ embed.Author.Name | html.escape }}</a>
|
||||||
|
{{~ else ~}}
|
||||||
|
{{ embed.Author.Name | html.escape }}
|
||||||
|
{{~ end ~}}
|
||||||
|
</span>
|
||||||
|
{{~ end ~}}
|
||||||
|
</div>
|
||||||
|
{{~ end ~}}
|
||||||
|
|
||||||
|
{{~ # Title ~}}
|
||||||
|
{{~ if embed.Title ~}}
|
||||||
|
<div class="chatlog__embed-title">
|
||||||
|
{{~ if embed.Url ~}}
|
||||||
|
<a class="chatlog__embed-title-link" href="{{ embed.Url }}"><div class="markdown">{{ embed.Title | FormatEmbedMarkdown }}</div></a>
|
||||||
|
{{~ else ~}}
|
||||||
|
<div class="markdown">{{ embed.Title | FormatEmbedMarkdown }}</div>
|
||||||
|
{{~ end ~}}
|
||||||
|
</div>
|
||||||
|
{{~ end ~}}
|
||||||
|
|
||||||
|
{{~ # Description ~}}
|
||||||
|
{{~ if embed.Description ~}}
|
||||||
|
<div class="chatlog__embed-description"><div class="markdown">{{ embed.Description | FormatEmbedMarkdown }}</div></div>
|
||||||
|
{{~ end ~}}
|
||||||
|
|
||||||
|
{{~ # Fields ~}}
|
||||||
|
{{~ if embed.Fields | array.size > 0 ~}}
|
||||||
|
<div class="chatlog__embed-fields">
|
||||||
|
{{~ for field in embed.Fields ~}}
|
||||||
|
<div class="chatlog__embed-field {{ if field.IsInline }} chatlog__embed-field--inline {{ end }}">
|
||||||
|
{{~ if field.Name ~}}
|
||||||
|
<div class="chatlog__embed-field-name"><div class="markdown">{{ field.Name | FormatEmbedMarkdown }}</div></div>
|
||||||
|
{{~ end ~}}
|
||||||
|
{{~ if field.Value ~}}
|
||||||
|
<div class="chatlog__embed-field-value"><div class="markdown">{{ field.Value | FormatEmbedMarkdown }}</div></div>
|
||||||
|
{{~ end ~}}
|
||||||
|
</div>
|
||||||
|
{{~ end ~}}
|
||||||
|
</div>
|
||||||
|
{{~ end ~}}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{{~ # Thumbnail ~}}
|
||||||
|
{{~ if embed.Thumbnail ~}}
|
||||||
|
<div class="chatlog__embed-thumbnail-container">
|
||||||
|
<a class="chatlog__embed-thumbnail-link" href="{{ embed.Thumbnail.Url }}">
|
||||||
|
<img class="chatlog__embed-thumbnail" src="{{ embed.Thumbnail.Url }}" alt="Thumbnail">
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
{{~ end ~}}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{{~ # Image ~}}
|
||||||
|
{{~ if embed.Image ~}}
|
||||||
|
<div class="chatlog__embed-image-container">
|
||||||
|
<a class="chatlog__embed-image-link" href="{{ embed.Image.Url }}">
|
||||||
|
<img class="chatlog__embed-image" src="{{ embed.Image.Url }}" alt="Image">
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
{{~ end ~}}
|
||||||
|
|
||||||
|
{{~ # Footer ~}}
|
||||||
|
{{~ if embed.Footer || embed.Timestamp ~}}
|
||||||
|
<div class="chatlog__embed-footer">
|
||||||
|
{{~ if embed.Footer ~}}
|
||||||
|
{{~ if embed.Footer.Text && embed.Footer.IconUrl ~}}
|
||||||
|
<img class="chatlog__embed-footer-icon" src="{{ embed.Footer.IconUrl }}" alt="Footer icon">
|
||||||
|
{{~ end ~}}
|
||||||
|
{{~ end ~}}
|
||||||
|
|
||||||
|
<span class="chatlog__embed-footer-text">
|
||||||
|
{{~ if embed.Footer ~}}
|
||||||
|
{{~ if embed.Footer.Text ~}}
|
||||||
|
{{ embed.Footer.Text | html.escape }}
|
||||||
|
{{ if embed.Timestamp }} • {{ end }}
|
||||||
|
{{~ end ~}}
|
||||||
|
{{~ end ~}}
|
||||||
|
|
||||||
|
{{~ if embed.Timestamp ~}}
|
||||||
|
{{ embed.Timestamp | FormatDate | html.escape }}
|
||||||
|
{{~ end ~}}
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
{{~ end ~}}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{{~ end ~}}
|
||||||
|
|
||||||
|
{{~ # Reactions ~}}
|
||||||
|
{{~ if message.Reactions | array.size > 0 ~}}
|
||||||
|
<div class="chatlog__reactions">
|
||||||
|
{{~ for reaction in message.Reactions ~}}
|
||||||
|
<div class="chatlog__reaction">
|
||||||
|
<img class="emoji emoji--small" alt="{{ reaction.Emoji.Name }}" title="{{ reaction.Emoji.Name }}" src="{{ reaction.Emoji.ImageUrl }}">
|
||||||
|
<span class="chatlog__reaction-count">{{ reaction.Count }}</span>
|
||||||
|
</div>
|
||||||
|
{{~ end ~}}
|
||||||
|
</div>
|
||||||
|
{{~ end ~}}
|
||||||
|
</div>
|
||||||
|
{{~ end ~}}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user