mirror of
https://github.com/KevinMidboe/zoff.git
synced 2025-10-29 18:00:23 +00:00
Fixed viewer count
This commit is contained in:
@@ -272,10 +272,10 @@ function getTitle()
|
|||||||
async: false,
|
async: false,
|
||||||
success: function(data) {
|
success: function(data) {
|
||||||
viewers = $.parseJSON(data);
|
viewers = $.parseJSON(data);
|
||||||
var outPutWord = viewers[5] > 1 ? "viewers" : "viewer";
|
var outPutWord = viewers[5].length > 1 ? "viewers" : "viewer";
|
||||||
var title= viewers[4].replace(/\\\'/g, "'").replace(/\\\"/g,"'");
|
var title= viewers[4].replace(/\\\'/g, "'").replace(/\\\"/g,"'");
|
||||||
document.title = title + " • Zöff";
|
document.title = title + " • Zöff";
|
||||||
document.getElementsByName('v')[0].placeholder = title + " • " + viewers[5] + " " + outPutWord;
|
document.getElementsByName('v')[0].placeholder = title + " • " + viewers[5].length + " " + outPutWord;
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|||||||
@@ -2,18 +2,13 @@
|
|||||||
//making our guid, its unique and coooooool
|
//making our guid, its unique and coooooool
|
||||||
$guid=substr(base64_encode(crc32($_SERVER['HTTP_USER_AGENT'].$_SERVER['REMOTE_ADDR'].$_SERVER['HTTP_ACCEPT_LANGUAGE'])), 0, 8);
|
$guid=substr(base64_encode(crc32($_SERVER['HTTP_USER_AGENT'].$_SERVER['REMOTE_ADDR'].$_SERVER['HTTP_ACCEPT_LANGUAGE'])), 0, 8);
|
||||||
|
|
||||||
if(isset($_REQUEST['test'])){
|
|
||||||
echo($guid);
|
|
||||||
exit;
|
|
||||||
}
|
|
||||||
|
|
||||||
//save or delete(oid) //getting the list we are in
|
//save or delete(oid) //getting the list we are in
|
||||||
$list = explode("/", htmlspecialchars(strtolower($_SERVER["REQUEST_URI"])));
|
$list = explode("/", htmlspecialchars(strtolower($_SERVER["REQUEST_URI"])));
|
||||||
if($list[1]==""||!isset($list[1])||count($list)<=1)$list="videos";
|
if($list[1]==""||!isset($list[1])||count($list)<=1)$list="videos";
|
||||||
else $list=$list[1];
|
else $list=$list[1];
|
||||||
|
|
||||||
$list="../lists/".$list.".json"; //actually setting the list for the target. Under is the array for an empty list being created
|
$list="../lists/".$list.".json"; //actually setting the list for the target. Under is the array for an empty list being created
|
||||||
$array = array("nowPlaying" => array(), "songs" => array(), "conf" => array("startTime" => time(), "views" => 0, "skips" => array()));
|
$array = array("nowPlaying" => array(), "songs" => array(), "conf" => array("startTime" => time(), "views" => array(), "skips" => array()));
|
||||||
$array = json_encode($array); //encoding the array
|
$array = json_encode($array); //encoding the array
|
||||||
$f = @fopen($list,"x"); //opening a file, ignoring warnings
|
$f = @fopen($list,"x"); //opening a file, ignoring warnings
|
||||||
if($f){ fwrite($f,$array); fclose($f); } //if the file doesn't exist, we create a new one, and adds the newly made array there
|
if($f){ fwrite($f,$array); fclose($f); } //if the file doesn't exist, we create a new one, and adds the newly made array there
|
||||||
@@ -25,6 +20,12 @@ $np = array_values($np);
|
|||||||
$firstSong = array_values($songs);
|
$firstSong = array_values($songs);
|
||||||
$save = false; //declares the save variable, see further down for why
|
$save = false; //declares the save variable, see further down for why
|
||||||
|
|
||||||
|
|
||||||
|
if(!in_array($guid, $data["conf"]["views"])){ //add viewer in viewers if not already in there
|
||||||
|
array_push($data["conf"]["views"], $guid);
|
||||||
|
file_put_contents($list, json_encode($data));
|
||||||
|
}
|
||||||
|
|
||||||
//If test for either saving when the song is done, or an error has occured
|
//If test for either saving when the song is done, or an error has occured
|
||||||
if(isset($_REQUEST['thisUrl'])){
|
if(isset($_REQUEST['thisUrl'])){
|
||||||
$string = $_REQUEST['thisUrl']; //saving string as the id of the song
|
$string = $_REQUEST['thisUrl']; //saving string as the id of the song
|
||||||
@@ -52,7 +53,7 @@ if(isset($_REQUEST['thisUrl'])){
|
|||||||
//array_push($data["songs"], $add);
|
//array_push($data["songs"], $add);
|
||||||
$data["conf"]["skips"] = array(); //resets the skip count
|
$data["conf"]["skips"] = array(); //resets the skip count
|
||||||
$data["conf"]["startTime"] = time(); //resets the starttime of the song so it will be sorted accordingly
|
$data["conf"]["startTime"] = time(); //resets the starttime of the song so it will be sorted accordingly
|
||||||
$data["conf"]["views"] = 1; //resets the views ??must be fixed..
|
$data["conf"]["views"]= array($guid); //reset the viewers so you dont count old viewers
|
||||||
foreach($data["songs"] as $k=>$v) { //the next 5 lines of code is just for sorting the array with highest votes at the top, and the lowest time added at the top, so that the voting will be alot more fair
|
foreach($data["songs"] as $k=>$v) { //the next 5 lines of code is just for sorting the array with highest votes at the top, and the lowest time added at the top, so that the voting will be alot more fair
|
||||||
$sort['votes'][$k] = $v['votes'];
|
$sort['votes'][$k] = $v['votes'];
|
||||||
$sort['added'][$k] = $v['added'];
|
$sort['added'][$k] = $v['added'];
|
||||||
@@ -72,7 +73,6 @@ if(isset($_REQUEST['thisUrl'])){
|
|||||||
}
|
}
|
||||||
if($action == "save" && !$save) //count views
|
if($action == "save" && !$save) //count views
|
||||||
{
|
{
|
||||||
$data["conf"]["views"] = $data["conf"]["views"] + 1;
|
|
||||||
file_put_contents($list, json_encode($data));
|
file_put_contents($list, json_encode($data));
|
||||||
}
|
}
|
||||||
$newPlaying = array_values($data["nowPlaying"]); //returning the new songs id to the javascript so it gets what song to start next
|
$newPlaying = array_values($data["nowPlaying"]); //returning the new songs id to the javascript so it gets what song to start next
|
||||||
@@ -161,7 +161,7 @@ else if(isset($_GET['vote'])){ //if th
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
else if(isset($_GET['skip'])){ //skip, really similar to the save function, not going in depth here.
|
else if(isset($_GET['skip'])){ //skip, really similar to the save function, not going in depth here.
|
||||||
$viewers=$data["conf"]["views"];
|
$viewers=count($data["conf"]["views"]);
|
||||||
$skips=count($data["conf"]["skips"]); //Counting how many GUIDS there are under the skip key
|
$skips=count($data["conf"]["skips"]); //Counting how many GUIDS there are under the skip key
|
||||||
if(!in_array($guid, $data["conf"]["skips"])){ //If the users GUID isn't in the array, its added
|
if(!in_array($guid, $data["conf"]["skips"])){ //If the users GUID isn't in the array, its added
|
||||||
array_push($data["conf"]["skips"], $guid);
|
array_push($data["conf"]["skips"], $guid);
|
||||||
@@ -180,7 +180,6 @@ else if(isset($_GET['skip'])){ //skip,
|
|||||||
//array_push($data["songs"], $add);
|
//array_push($data["songs"], $add);
|
||||||
$data["conf"]["skips"] = array();
|
$data["conf"]["skips"] = array();
|
||||||
$data["conf"]["startTime"] = time();
|
$data["conf"]["startTime"] = time();
|
||||||
$data["conf"]["views"] = 1;
|
|
||||||
foreach($data["songs"] as $k=>$v) {
|
foreach($data["songs"] as $k=>$v) {
|
||||||
$sort['votes'][$k] = $v['votes'];
|
$sort['votes'][$k] = $v['votes'];
|
||||||
$sort['added'][$k] = $v['added'];
|
$sort['added'][$k] = $v['added'];
|
||||||
@@ -197,7 +196,7 @@ else if(isset($_GET['skip'])){ //skip,
|
|||||||
$data["conf"]["addsongs"] = $_POST['addsongs'];
|
$data["conf"]["addsongs"] = $_POST['addsongs'];
|
||||||
$data["conf"]["longsongs"] = $_POST['longsongs'];
|
$data["conf"]["longsongs"] = $_POST['longsongs'];
|
||||||
$data["conf"]["frontpage"] = $_POST['frontpage'];
|
$data["conf"]["frontpage"] = $_POST['frontpage'];
|
||||||
$data["conf"]["onlymusic"] = $_POST['onlymusic'];
|
$data["conf"]["allvideos"] = $_POST['allvideos'];
|
||||||
$data["conf"]["removeplay"] = $_POST['removeplay'];
|
$data["conf"]["removeplay"] = $_POST['removeplay'];
|
||||||
$pass = htmlspecialchars($_POST['pass']);
|
$pass = htmlspecialchars($_POST['pass']);
|
||||||
$x = explode("/", htmlspecialchars(strtolower($_SERVER["REQUEST_URI"])));
|
$x = explode("/", htmlspecialchars(strtolower($_SERVER["REQUEST_URI"])));
|
||||||
@@ -210,7 +209,7 @@ else if(isset($_GET['skip'])){ //skip,
|
|||||||
//$data["conf"]["addsongs"] = $addsongs;
|
//$data["conf"]["addsongs"] = $addsongs;
|
||||||
//$data["conf"]["longsongs"] = $longsongs;
|
//$data["conf"]["longsongs"] = $longsongs;
|
||||||
//$data["conf"]["frontpage"] = $frontpage;
|
//$data["conf"]["frontpage"] = $frontpage;
|
||||||
//$data["conf"]["onlymusic"] = $onlymusic;
|
//$data["conf"]["allvideos"] = $allvideos;
|
||||||
//$data["conf"]["removeplay"] = $removeplay;
|
//$data["conf"]["removeplay"] = $removeplay;
|
||||||
if($data["conf"]["adminpass"] == $pass || $q != 1) //if the password is the same as the one in the jsonfile, we are updating the settings (not in use yet)
|
if($data["conf"]["adminpass"] == $pass || $q != 1) //if the password is the same as the one in the jsonfile, we are updating the settings (not in use yet)
|
||||||
{
|
{
|
||||||
@@ -220,12 +219,6 @@ else if(isset($_GET['skip'])){ //skip,
|
|||||||
{
|
{
|
||||||
echo "wrong";
|
echo "wrong";
|
||||||
}
|
}
|
||||||
}else if(isset($_GET['timedifference'])){ //deprecated i think
|
|
||||||
|
|
||||||
$diff = (time() - $data["conf"]["startTime"]);
|
|
||||||
$returnArray = array($diff, $firstSong[0]["id"], time(), $data["conf"]["startTime"], $firstSong[0]["title"], $data["conf"]["views"]);
|
|
||||||
$returnArray = json_encode($returnArray);
|
|
||||||
echo($data);
|
|
||||||
}else{ //printing the whole data array json encoded for youtube.js or list.js to pick up
|
}else{ //printing the whole data array json encoded for youtube.js or list.js to pick up
|
||||||
echo json_encode($data);
|
echo json_encode($data);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user