101 lines
2.3 KiB
PHP
101 lines
2.3 KiB
PHP
<?php
|
|
|
|
class ps4 {
|
|
|
|
public function dbconf() {
|
|
global $dbconf;
|
|
$dbconf = require "dbconf.php";
|
|
return $dbconf;
|
|
|
|
}
|
|
|
|
function mysql_conn($sql=null) {
|
|
|
|
$db = $this->dbconf();
|
|
|
|
// Create connection
|
|
$conn = new mysqli($db["servername"], $db["username"], $db["password"], $db["dbname"]);
|
|
$conn->set_charset("utf8");
|
|
// Check connection
|
|
if ($conn->connect_error) {
|
|
die("Connection failed: " . $conn->connect_error);
|
|
}
|
|
|
|
if ($sql == null) {
|
|
echo "Error: No SQL Request?";
|
|
$conn->close();
|
|
return null;
|
|
} else {
|
|
$return = $conn->query($sql);
|
|
$conn->close();
|
|
return $return;
|
|
}
|
|
}
|
|
|
|
function playtime($seconds, $text=false) {
|
|
$playtime = null;
|
|
$label = null;
|
|
|
|
if ($seconds < 60) {
|
|
if ($text == true) {
|
|
$label = "second";
|
|
}
|
|
if ($seconds > 1) { $label .= "s"; }
|
|
$playtime = $seconds;
|
|
} else
|
|
if ($seconds/60 < 60) {
|
|
if ($text == true) {
|
|
$label = "minute";
|
|
}
|
|
if ($seconds/60 > 1) { $label .= "s"; }
|
|
$playtime = round($seconds/60,2);
|
|
} else {
|
|
if ($text == true) {
|
|
$label = "hour";
|
|
}
|
|
if ($seconds/60/60 > 1) { $label .= "s"; }
|
|
$playtime = round($seconds/60/60,2);
|
|
}
|
|
|
|
$return = $playtime;
|
|
if ($text == true) { $return = $return ." ". $label; }
|
|
return $return;
|
|
}
|
|
|
|
function secondsToDate($seconds) {
|
|
return date("d/m/Y H:i:s", $seconds/1000);
|
|
}
|
|
|
|
function thumbnailurl($game_id) {
|
|
$result = $this->mysql_conn("SELECT thumbnail_url FROM game_thumbnail WHERE game_id = '". $game_id ."' limit 1;");
|
|
if ($result->num_rows > 0) {
|
|
while ($row = $result->fetch_assoc()) {
|
|
$url = $row["thumbnail_url"];
|
|
}
|
|
} else {
|
|
$url = "no-thumbnail.png";
|
|
}
|
|
return $url;
|
|
}
|
|
|
|
function thumbnailupdateurl($gameid,$gamename,$url) {
|
|
$actualurl = $this->thumbnailurl($gameid);
|
|
if ($actualurl == "no-thumbnail.png") {
|
|
$sql = "INSERT INTO game_thumbnail (game_id, thumbnail_url) VALUES ('".$gameid."', '".$url."');";
|
|
} else {
|
|
$sql = "UPDATE game_thumbnail SET thumbnail_url = '".$url."' WHERE game_id = '".$gameid."';";
|
|
}
|
|
|
|
$result = $this->mysql_conn($sql);
|
|
if ($result == 1) {
|
|
echo "<strong>SUCCESS:</strong> Updated image URL for <strong>". $gamename ."</strong> (". $gameid .")";
|
|
echo "<br/><br/>";
|
|
} else {
|
|
echo "<strong>ERROR:</strong> Can't update image URL for <strong>". $gamename ."</strong> (". $gameid .")";
|
|
echo "<br/><br/>";
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
?>
|