PieInTheSky-Inc / YaDc

This is a Discord bot for Pixel Starships, based on Dolores.
Apache License 2.0
18 stars 19 forks source link

When searching a banned player by ID using `/player`, a different player might be returned. #353

Open Zukunftsmusik opened 1 month ago

Zukunftsmusik commented 1 month ago

Dolores calls /UserService/GetUser to get the player's name by their ID. Then call /UserService/SearchUsers with the name to get the desired information. If the 1st call returns a banned user, the 2nd call won't return the same user (this endpoint doesn't return banned or deleted users) and if the name matches someone else, that player will be returned instead.

Make sure to compare the user ID in the response of the 2nd call with the requested user ID and return a NotFoundError, if they don't match.