Source code for RPCS3's Discord bot.
Go to file
13xforever f43de2c1b2 make stage optional in the first line of log
fixes log parsing for mgo2 custom build
2022-07-19 20:58:09 +05:00
.config Add HW DB 2022-06-29 19:08:19 +05:00
.github/workflows Build release configuration for PRs as well 2022-06-30 17:12:36 +05:00
Clients upgrade 3rd party deps 2022-07-03 02:31:56 +05:00
CompatBot make stage optional in the first line of log 2022-07-19 20:58:09 +05:00
HomoglyphConverter use file-scoped namespaces to reduce nesting 2022-06-30 00:59:46 +05:00
SourceGenerators use file-scoped namespaces to reduce nesting 2022-06-30 00:59:46 +05:00
Tests use file-scoped namespaces to reduce nesting 2022-06-30 00:59:46 +05:00
.cirrus.yml add dummy cirrus ci config 2020-05-23 14:22:07 +05:00
.dockerignore better azure pipelines integration and building docker image 2019-09-19 23:32:05 +05:00
.gitattributes RPCS3 Compatibility Bot reimplemented in C# for .NET Core 2018-07-20 09:22:28 +02:00
.gitignore cirrus-ci client 2021-04-14 00:19:55 +05:00
architecture.md some docs 2019-04-01 22:52:27 +05:00
CONTRIBUTING.md update readme 2019-11-05 01:31:04 +05:00
discord-bot-net.sln update ci script for people without docker 2022-06-20 18:15:28 +05:00
discord-bot-net.sln.DotSettings fix resharper warnings 2020-11-14 15:58:16 +05:00
docker-compose.example.yml fml 2019-10-26 18:37:16 +05:00
Dockerfile Update Dockerfile 2022-05-01 17:28:12 +01:00
fortunes_fortuneandframe.txt imported fortunes from fortuneandframe.com 2021-05-12 22:11:15 +05:00
fortunes.txt Update fortunes.txt 2021-03-09 12:40:43 -07:00
get-names_anidb.ps1 add anidb character name dump (no mecha) 2021-03-10 00:56:43 +05:00
get-names_anilist.ps1 add anilist character name dump 2021-03-10 00:44:30 +05:00
LICENSE RPCS3 Compatibility Bot reimplemented in C# for .NET Core 2018-07-20 09:22:28 +02:00
metacritic_ps3.json tweak mc import to cover all available games 2020-04-03 21:02:55 +05:00
names_anidb.txt add anidb character name dump (no mecha) 2021-03-10 00:56:43 +05:00
names_anilist.txt add anilist character name dump 2021-03-10 00:44:30 +05:00
names_anime.txt it's anime time for every rule breaker 2021-03-09 16:46:31 +05:00
nuget.config clean up and update 3rd party deps 2022-06-20 16:12:56 +05:00
README.md Update README.md 2022-03-05 16:08:32 +00:00
SECURITY.md Create SECURITY.md 2019-06-05 23:48:49 +05:00
win32_error_codes.txt add win32 error code reference (with errata) 2021-02-16 20:11:11 +05:00

RPCS3 Compatibility Bot

Build Status RPCS3 discord server

This is a tech support / moderation / crowd entertainment bot for the RPCS3 discord server.

You can read the design and implementation notes by visiting the folders in the web interface, or from the architecture overview notes.

Development Requirements

Runtime Requirements

  • .NET 6.0 SDK or newer to run from sources
    • bot needs dotnet command to be available (i.e. alias for the Snap package)
  • Optionally Google API credentials to access Google Drive:
    • Create new project in the Google Cloud Resource Manager
    • Select the project and enable Google Drive API
    • Open API & Services Credentials
    • Create new credentials:
      • Service account credentials
      • New service account
        • if you select an existing account, new credentials will be generated in addition to previous any ones
      • Role Project > Viewer
      • Key type JSON
      • Create will generate a configuration file
    • Save said configuration file as credentials.json in user secrets folder
      • e.g on Linux this will be ~/.microsoft/usersecrets/c2e6548b-b215-4a18-a010-958ef294b310/credentials.json

How to Build

  • Change configuration for test server in CompatBot/Properties/launchSettings.json
  • Note that token could be set in the settings or supplied as a launch argument (higher priority)
  • If you've changed the database model, add a migration
    • $ dotnet tool install --global dotnet-ef (if you have never installed the tools before)
    • $ cd CompatBot
    • $ dotnet ef migrations add -c [BotDb|ThumbnailDb] MigrationName
    • $ cd ..
  • $ cd CompatBot
  • $ dotnet run [token]

How to Run in Production

Running from source

  • Change configuration if needed (probably just token):
    • use $ dotnet user-secrets set Token <your_token_here>
    • for available configuration variables, see Config.cs
  • Put bot.db in CompatBot/ if you have one
  • $ cd CompatBot
  • $ dotnet run -c Release

Running with Docker

  • Official image is hosted on Docker Hub.
  • You should pull images tagged with release-latest (same thing as latest)
  • Please take a look at the docker-compose.yml for required configuration (bot token and mounting points for persistent data).

External resources that need manual updates