discord-bot/Clients
2019-07-28 15:51:11 +05:00
..
AppveyorClient fix appveyor times being converted to local time automatically 2019-05-10 19:08:35 +05:00
CompatApiClient check for header magic numbers instead of just file extensions 2019-07-28 15:51:11 +05:00
GithubClient some docs 2019-04-01 22:52:27 +05:00
IrdLibraryClient update deps 2019-06-03 14:00:02 +05:00
PsnClient fix psn scraper by hardcoding the known psn stores 2019-06-03 17:46:55 +05:00
readme.md some docs 2019-04-01 22:52:27 +05:00

Clients

Here we keep all the 3rd party service clients used by the bot. Most infrastructure is in the CompatApi client, and other clients reference it to use these classes, along with the configured Log.

  • CompatApi is the custom API provided by the RPCS3 website. It provides information about game compatibility and RPCS3 updates.

  • IRD Library contains the largest public repository of IRD files. It has no official API, so everything is reverse-engineered from the website web UI.

    Client implements automatic caching of the downloaded IRD files on the local filesystem for future uses.

  • PSN Client is a result of reverse-engineering the JSON API of the Playstation Store. Currently it implements resolving metadata content by its ID, as well as full-text search.

  • GitHub Client implements a barebone set of requests to resolve pull-request information, along with some additional data about the CI states.

    We do not use any form of authentication, and are limited by the regular rate of 60 API requests per hour.

  • AppVeyor Client implements most of the read-only calls to read the build history, job status, and artifact information.