mirror of
https://github.com/SophiaAtkinson/steamwidgets-web.git
synced 2025-06-27 10:17:41 -07:00
47 lines
1.1 KiB
PHP
47 lines
1.1 KiB
PHP
<?php
|
|
|
|
/**
|
|
* Class SteamServerModel
|
|
*
|
|
* Responsible for querying Steam server data
|
|
*/
|
|
class SteamServer
|
|
{
|
|
const STEAM_ENDPOINT = 'https://api.steampowered.com/IGameServersService/GetServerList/v1/';
|
|
|
|
/**
|
|
* Query item data from Steam
|
|
*
|
|
* @param $appid
|
|
* @param $lang
|
|
* @return mixed
|
|
* @throws \Exception
|
|
*/
|
|
public static function querySteamData($key, $addr)
|
|
{
|
|
$url = self::STEAM_ENDPOINT . "?key={$key}&filter=addr\\{$addr}";
|
|
|
|
$handle = curl_init($url);
|
|
|
|
curl_setopt($handle, CURLOPT_HEADER, false);
|
|
curl_setopt($handle, CURLOPT_RETURNTRANSFER, true);
|
|
curl_setopt($handle, CURLOPT_FOLLOWLOCATION, true);
|
|
|
|
$response = curl_exec($handle);
|
|
|
|
if(curl_error($handle) !== '') {
|
|
throw new \Exception('cURL error occured');
|
|
}
|
|
|
|
curl_close($handle);
|
|
|
|
$obj = json_decode($response);
|
|
|
|
if (isset($obj->response->servers[0])) {
|
|
return $obj->response->servers[0];
|
|
}
|
|
|
|
throw new \Exception('Invalid data response');
|
|
}
|
|
}
|