seek($line_number); $content = $file->current(); $hours = preg_split('/ /', trim($content), 2); unlink($tempFile); return $hours[0]; } else{ unlink($tempFile); return null; } } /** * check si un jeu a des succès */ function hasAchievements($appid) { file_get_contents("http://api.steampowered.com/ISteamUserStats/GetGlobalAchievementPercentagesForApp/v0002/?gameid=".$appid); $pattern = preg_quote(' 403 ', '/'); $pattern = "/^.*$pattern.*\$/m"; if(preg_match($pattern, $http_response_header[0])){ return false; } else { return true; } } /** * verifie si le jeu est fini à 100% */ function checkComplete($appid, $steamid) { $gameInfo = getJson("http://api.steampowered.com/ISteamUserStats/GetPlayerAchievements/v0001/?key=".API_KEY."&steamid=".$steamid."&appid=" . $appid); $listAchievements = $gameInfo["playerstats"]["achievements"]; foreach ($listAchievements as $key => $value) { if ($value["achieved"] == 0) { return false; } } return true; } /** * affiche un tableau HTML contenant les jeux triés par ordre croissant de temps de fin */ if (isset($_POST['steamid'])) { $ret = array(); $steamid = $_POST['steamid']; $url = "http://api.steampowered.com/IPlayerService/GetOwnedGames/v0001/?key=".API_KEY."&steamid=".$steamid; $listGames = file_get_contents($url); if ($listGames == NULL) { $ret = array('error' => 'User not found.', 'response' => $http_response_header); } else { $url = "http://api.steampowered.com/ISteamUser/GetPlayerSummaries/v0002/?key=".API_KEY."&steamids=".$steamid; $userInformations = getJson($url); $ret["username"] = $userInformations["response"]["players"][0]["personaname"]; $listGamesJson = json_decode($listGames, true); $listGamesJson = $listGamesJson["response"]; $url = "http://api.steampowered.com/ISteamUserStats/GetPlayerAchievements/v0001/?key=".API_KEY."&steamid=".$steamid."&appid="; foreach ($listGamesJson["games"] as $key => $value) { $appid = $value["appid"]; if (hasAchievements($appid)) { if (!checkComplete($appid, $steamid)) { $gameName = getJson($url.$appid); $gameName = $gameName["playerstats"]["gameName"]; $hours = getHours($appid); if ($hours == null) { $ret["gameWithoutTime"][] = array('gamename' => $gameName, 'hours' => $hours); } else { $ret["gameWithTime"][] = array('gamename' => $gameName, 'hours' => $hours); } } } } } //$fileJson = fopen('result.json', 'w'); //fwrite($fileJson, json_encode($ret)); //fclose($fileJson); $retJson = json_encode($ret); $_POST["game"] = $retJson; header('Content-Type: application/json'); echo $retJson; } ?>