[PR #676] [MERGED] Implement Mediafire log source handler #738

Closed
opened 2026-02-15 15:56:45 -05:00 by yindo · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/RPCS3/discord-bot/pull/676
Author: @13xforever
Created: 11/19/2020
Status: Merged
Merged: 11/19/2020
Merged by: @13xforever

Base: masterHead: vnext


📝 Commits (3)

  • ed45c50 improve error messaging for invalid log archives
  • bcecd54 implement mediafire log source handler
  • d508201 update 3rd party dependencies

📊 Changes

10 files changed (+263 additions, -12 deletions)

View changed files

Clients/MediafireClient/Client.cs (+91 -0)
Clients/MediafireClient/MediafireClient.csproj (+12 -0)
Clients/MediafireClient/POCOs/LinksResult.cs (+26 -0)
📝 CompatBot/CompatBot.csproj (+9 -8)
📝 CompatBot/EventHandlers/LogParsing/ArchiveHandlers/RarHandler.cs (+1 -1)
📝 CompatBot/EventHandlers/LogParsing/ArchiveHandlers/SevenZipHandler.cs (+2 -2)
📝 CompatBot/EventHandlers/LogParsing/ArchiveHandlers/ZipHandler.cs (+1 -1)
CompatBot/EventHandlers/LogParsing/SourceHandlers/MediafireHandler.cs (+113 -0)
📝 CompatBot/EventHandlers/LogParsingHandler.cs (+1 -0)
📝 discord-bot-net.sln (+7 -0)

📄 Description

Unfortunately official API requires apikey, and that has been discontinued for years, so resort to usual web page scraping. It seems to be working at low volume traffic.


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/RPCS3/discord-bot/pull/676 **Author:** [@13xforever](https://github.com/13xforever) **Created:** 11/19/2020 **Status:** ✅ Merged **Merged:** 11/19/2020 **Merged by:** [@13xforever](https://github.com/13xforever) **Base:** `master` ← **Head:** `vnext` --- ### 📝 Commits (3) - [`ed45c50`](https://github.com/RPCS3/discord-bot/commit/ed45c505dca6d5f7818e8fb1b54adc48dcb11dfb) improve error messaging for invalid log archives - [`bcecd54`](https://github.com/RPCS3/discord-bot/commit/bcecd545f14ffe93ee017f5b748dbc8d3bc2115b) implement mediafire log source handler - [`d508201`](https://github.com/RPCS3/discord-bot/commit/d50820144bd114cb7a20df1c7d7ab7a64d6a06df) update 3rd party dependencies ### 📊 Changes **10 files changed** (+263 additions, -12 deletions) <details> <summary>View changed files</summary> ➕ `Clients/MediafireClient/Client.cs` (+91 -0) ➕ `Clients/MediafireClient/MediafireClient.csproj` (+12 -0) ➕ `Clients/MediafireClient/POCOs/LinksResult.cs` (+26 -0) 📝 `CompatBot/CompatBot.csproj` (+9 -8) 📝 `CompatBot/EventHandlers/LogParsing/ArchiveHandlers/RarHandler.cs` (+1 -1) 📝 `CompatBot/EventHandlers/LogParsing/ArchiveHandlers/SevenZipHandler.cs` (+2 -2) 📝 `CompatBot/EventHandlers/LogParsing/ArchiveHandlers/ZipHandler.cs` (+1 -1) ➕ `CompatBot/EventHandlers/LogParsing/SourceHandlers/MediafireHandler.cs` (+113 -0) 📝 `CompatBot/EventHandlers/LogParsingHandler.cs` (+1 -0) 📝 `discord-bot-net.sln` (+7 -0) </details> ### 📄 Description Unfortunately official API requires apikey, and that has been discontinued for years, so resort to usual web page scraping. It seems to be working at low volume traffic. --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
yindo added the pull-request label 2026-02-15 15:56:45 -05:00
yindo closed this issue 2026-02-15 15:56:45 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: RPCS3/discord-bot#738