Supression message merge
This commit is contained in:
parent
029572cde2
commit
7318a88909
1 changed files with 0 additions and 34 deletions
|
@ -1,5 +1,4 @@
|
|||
<?php
|
||||
<<<<<<< HEAD
|
||||
|
||||
/*
|
||||
Application web pour voir la durée pour finir à 100% des jeux de son compte steam
|
||||
|
@ -9,8 +8,6 @@ git: https://git.gnous.eu/Rick/triAchievements
|
|||
version: 1.0.1
|
||||
*/
|
||||
|
||||
=======
|
||||
>>>>>>> cef27d06ae6b3d2283ea412da6e09d1c8957c49c
|
||||
// ~ 4 minutes pour ~ 350 jeux
|
||||
$config = parse_ini_file("config.ini");
|
||||
define('API_KEY', $config["steam_api_key"]);
|
||||
|
@ -19,15 +16,12 @@ $apikey = $config["steam_api_key"];
|
|||
|
||||
/**
|
||||
* retourne un objet json à partir d'une url
|
||||
<<<<<<< HEAD
|
||||
*
|
||||
* @param string $url
|
||||
* l’url retournant un json
|
||||
* @return
|
||||
* - l’objet JSON de l’url
|
||||
* - NULL si l’url ne renvoie pas de json
|
||||
=======
|
||||
>>>>>>> cef27d06ae6b3d2283ea412da6e09d1c8957c49c
|
||||
*/
|
||||
function getJson($url)
|
||||
{
|
||||
|
@ -38,15 +32,12 @@ function getJson($url)
|
|||
|
||||
/**
|
||||
* renvoie le nombre d'heures qu'il faut pour finir un jeu à 100%
|
||||
<<<<<<< HEAD
|
||||
*
|
||||
* @param int $appid
|
||||
* l’id steam du jeu dont il faut récupérer l’heure de complétion sur astat
|
||||
* @return string|null
|
||||
* - le temps qu’il faut pour finir le jeu
|
||||
* - null si le jeu n’a pas de temps renseigné
|
||||
=======
|
||||
>>>>>>> cef27d06ae6b3d2283ea412da6e09d1c8957c49c
|
||||
*/
|
||||
function getHours($appid)
|
||||
{
|
||||
|
@ -78,14 +69,11 @@ function getHours($appid)
|
|||
|
||||
/**
|
||||
* check si un jeu a des succès
|
||||
<<<<<<< HEAD
|
||||
*
|
||||
* @param int $appid
|
||||
* id du jeu à vérifier
|
||||
* @return bool
|
||||
* true si le jeu à des succès, false sinon
|
||||
=======
|
||||
>>>>>>> cef27d06ae6b3d2283ea412da6e09d1c8957c49c
|
||||
*/
|
||||
function hasAchievements($appid)
|
||||
{
|
||||
|
@ -99,7 +87,6 @@ function hasAchievements($appid)
|
|||
}
|
||||
}
|
||||
|
||||
<<<<<<< HEAD
|
||||
/**
|
||||
* verifie si le jeu est fini à 100%
|
||||
*
|
||||
|
@ -109,11 +96,6 @@ function hasAchievements($appid)
|
|||
* l’id steam du compte possédant le jeu
|
||||
* @return bool
|
||||
* true si le jeu est fini, false sinon
|
||||
=======
|
||||
|
||||
/**
|
||||
* verifie si le jeu est fini à 100%
|
||||
>>>>>>> cef27d06ae6b3d2283ea412da6e09d1c8957c49c
|
||||
*/
|
||||
function checkComplete($appid, $steamid)
|
||||
{
|
||||
|
@ -125,15 +107,8 @@ function checkComplete($appid, $steamid)
|
|||
}
|
||||
}
|
||||
return true;
|
||||
<<<<<<< HEAD
|
||||
}
|
||||
|
||||
=======
|
||||
|
||||
}
|
||||
|
||||
|
||||
>>>>>>> cef27d06ae6b3d2283ea412da6e09d1c8957c49c
|
||||
/**
|
||||
* affiche un tableau HTML contenant les jeux triés par ordre croissant de temps de fin
|
||||
*/
|
||||
|
@ -144,11 +119,8 @@ if (isset($_POST['steamid'])) {
|
|||
$listGames = file_get_contents($url);
|
||||
if ($listGames == NULL) {
|
||||
$ret = array('error' => 'User not found.', 'response' => $http_response_header);
|
||||
<<<<<<< HEAD
|
||||
} elseif (empty($listGames["response"])) {
|
||||
$ret = array('error' => 'Private Account.', 'response' => $http_response_header);
|
||||
=======
|
||||
>>>>>>> cef27d06ae6b3d2283ea412da6e09d1c8957c49c
|
||||
} else {
|
||||
$url = "http://api.steampowered.com/ISteamUser/GetPlayerSummaries/v0002/?key=".API_KEY."&steamids=".$steamid;
|
||||
$userInformations = getJson($url);
|
||||
|
@ -177,12 +149,6 @@ if (isset($_POST['steamid'])) {
|
|||
}
|
||||
}
|
||||
}
|
||||
<<<<<<< HEAD
|
||||
=======
|
||||
//$fileJson = fopen('result.json', 'w');
|
||||
//fwrite($fileJson, json_encode($ret));
|
||||
//fclose($fileJson);
|
||||
>>>>>>> cef27d06ae6b3d2283ea412da6e09d1c8957c49c
|
||||
$retJson = json_encode($ret);
|
||||
$_POST["game"] = $retJson;
|
||||
header('Content-Type: application/json');
|
||||
|
|
Loading…
Reference in a new issue