mirror of
https://codeberg.org/demostf/api.git
synced 2026-06-03 18:04:08 +02:00
allow more steamid formats in user api
This commit is contained in:
parent
13e6f950d2
commit
ecb9e41999
4 changed files with 11 additions and 11 deletions
|
|
@ -4,6 +4,7 @@ declare(strict_types=1);
|
|||
|
||||
namespace Demostf\API\Controllers;
|
||||
|
||||
use Demostf\API\Demo\Parser;
|
||||
use Demostf\API\Providers\UserProvider;
|
||||
use flight\net\Request;
|
||||
use flight\net\Response;
|
||||
|
|
@ -20,6 +21,9 @@ class UserController extends BaseController {
|
|||
}
|
||||
|
||||
public function get($steamId) {
|
||||
if (!is_numeric($steamId)) {
|
||||
$steamId = Parser::convertSteamIdToCommunityId($steamId);
|
||||
}
|
||||
\Flight::json($this->userProvider->get($steamId));
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -117,7 +117,7 @@ class Parser {
|
|||
$players[] = new ParsedPlayer(
|
||||
$player['name'],
|
||||
$player['userId'],
|
||||
$this->convertSteamIdToCommunityId($player['steamId']),
|
||||
self::convertSteamIdToCommunityId($player['steamId']),
|
||||
$player['team'] ?? '',
|
||||
$this->getClassName((int) $class)
|
||||
);
|
||||
|
|
@ -151,7 +151,7 @@ class Parser {
|
|||
*
|
||||
* @return string The converted 64bit numeric SteamID
|
||||
*/
|
||||
public function convertSteamIdToCommunityId(string $steamId): string {
|
||||
public static function convertSteamIdToCommunityId(string $steamId): string {
|
||||
if ($steamId === 'STEAM_ID_LAN' || $steamId === 'BOT') {
|
||||
throw new \InvalidArgumentException("Cannot convert SteamID \"$steamId\" to a community ID.");
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue