[PR #59] [MERGED] Update 2.1 #176

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

📋 Pull Request Information

Original PR: https://github.com/RPCS3/discord-bot/pull/59
Author: @13xforever
Created: 8/5/2018
Status: Merged
Merged: 8/5/2018
Merged by: @Nicba1010

Base: masterHead: thumbs


📝 Commits (3)

  • 7530018 implemented some rudimentary psn api client
  • b94ed1e scrape only full game lists in PSN stores, also cache title names
  • 1c53aa1 ThumbnailSpamId for main server

📊 Changes

79 files changed (+3054 additions, -520 deletions)

View changed files

📝 .gitignore (+1 -0)
📝 CompatApiClient/Client.cs (+71 -44)
📝 CompatApiClient/POCOs/PrInfo.cs (+2 -6)
📝 CompatApiClient/POCOs/UpdateInfo.cs (+1 -3)
CompatApiClient/Utils/ConsoleLogger.cs (+28 -0)
📝 CompatApiClient/Utils/Utils.cs (+1 -1)
📝 CompatBot/Commands/Antipiracy.cs (+12 -24)
📝 CompatBot/Commands/Attributes/CheckBaseAttributeWithReactions.cs (+9 -4)
CompatBot/Commands/Attributes/LimitedToHelpChannel.cs (+22 -0)
CompatBot/Commands/Attributes/LimitedToSpamChannel.cs (+22 -0)
CompatBot/Commands/Attributes/TriggersTyping.cs (+23 -0)
📝 CompatBot/Commands/CompatList.cs (+19 -12)
CompatBot/Commands/CustomBaseCommand.cs (+24 -0)
📝 CompatBot/Commands/Explain.cs (+77 -76)
📝 CompatBot/Commands/Misc.cs (+81 -34)
CompatBot/Commands/Psn.Check.cs (+44 -0)
CompatBot/Commands/Psn.cs (+63 -0)
CompatBot/Commands/Sudo.Bot.Commands.cs (+198 -0)
📝 CompatBot/Commands/Sudo.Bot.cs (+4 -7)
📝 CompatBot/Commands/Sudo.Fix.cs (+26 -21)

...and 59 more files

📄 Description

This is a big one, so.

  • Major changes:
    • PSN metadata scraping. Game thumbnails and titles for now.
    • Ability to check for PS3 game updates.
    • Ability to disable and enable bot commands at runtime (closes #56).
  • Important fixes:
    • Corrected how DbContext is used, fixing some nasty concurrency issues
    • Fixed log parsing that only works by miracle right now
    • Fixed potential lockup during bot self-update
    • Implemented more common issue checks during log parsing
    • Made bot reactions more consistent: using emoji only where permittable, otherwise respond with text
  • Fun stuff

Update requires new channel to reupload thumbnails to work, so waiting for @AniLeo.


🔄 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/59 **Author:** [@13xforever](https://github.com/13xforever) **Created:** 8/5/2018 **Status:** ✅ Merged **Merged:** 8/5/2018 **Merged by:** [@Nicba1010](https://github.com/Nicba1010) **Base:** `master` ← **Head:** `thumbs` --- ### 📝 Commits (3) - [`7530018`](https://github.com/RPCS3/discord-bot/commit/75300186dfede068a912c928eebd6184fbe60faf) implemented some rudimentary psn api client - [`b94ed1e`](https://github.com/RPCS3/discord-bot/commit/b94ed1e9ac11fc93c2f1470b88c50a20ceddf5f5) scrape only full game lists in PSN stores, also cache title names - [`1c53aa1`](https://github.com/RPCS3/discord-bot/commit/1c53aa1a605a43ac014cd0bd626e2af9d04aa4c3) ThumbnailSpamId for main server ### 📊 Changes **79 files changed** (+3054 additions, -520 deletions) <details> <summary>View changed files</summary> 📝 `.gitignore` (+1 -0) 📝 `CompatApiClient/Client.cs` (+71 -44) 📝 `CompatApiClient/POCOs/PrInfo.cs` (+2 -6) 📝 `CompatApiClient/POCOs/UpdateInfo.cs` (+1 -3) ➕ `CompatApiClient/Utils/ConsoleLogger.cs` (+28 -0) 📝 `CompatApiClient/Utils/Utils.cs` (+1 -1) 📝 `CompatBot/Commands/Antipiracy.cs` (+12 -24) 📝 `CompatBot/Commands/Attributes/CheckBaseAttributeWithReactions.cs` (+9 -4) ➕ `CompatBot/Commands/Attributes/LimitedToHelpChannel.cs` (+22 -0) ➕ `CompatBot/Commands/Attributes/LimitedToSpamChannel.cs` (+22 -0) ➕ `CompatBot/Commands/Attributes/TriggersTyping.cs` (+23 -0) 📝 `CompatBot/Commands/CompatList.cs` (+19 -12) ➕ `CompatBot/Commands/CustomBaseCommand.cs` (+24 -0) 📝 `CompatBot/Commands/Explain.cs` (+77 -76) 📝 `CompatBot/Commands/Misc.cs` (+81 -34) ➕ `CompatBot/Commands/Psn.Check.cs` (+44 -0) ➕ `CompatBot/Commands/Psn.cs` (+63 -0) ➕ `CompatBot/Commands/Sudo.Bot.Commands.cs` (+198 -0) 📝 `CompatBot/Commands/Sudo.Bot.cs` (+4 -7) 📝 `CompatBot/Commands/Sudo.Fix.cs` (+26 -21) _...and 59 more files_ </details> ### 📄 Description This is a big one, so. * Major changes: * PSN metadata scraping. Game thumbnails and titles for now. * Ability to check for PS3 game updates. * Ability to disable and enable bot commands at runtime (closes #56). * Important fixes: * Corrected how DbContext is used, fixing some nasty concurrency issues * Fixed log parsing that only works by miracle right now * Fixed potential lockup during bot self-update * Implemented more common issue checks during log parsing * Made bot reactions more consistent: using emoji only where permittable, otherwise respond with text * Fun stuff ~~Update requires new channel to reupload thumbnails to work, so waiting for @AniLeo.~~ --- <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:55:15 -05:00
yindo closed this issue 2026-02-15 15:55:15 -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#176