Compare commits
No commits in common. "main" and "v1.5" have entirely different histories.
4 changed files with 16 additions and 178 deletions
|
@ -8,17 +8,6 @@
|
||||||
border: 1px solid white;
|
border: 1px solid white;
|
||||||
}
|
}
|
||||||
|
|
||||||
.latest-guess {
|
|
||||||
visibility: hidden;
|
|
||||||
opacity: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.latest-guess.fade {
|
|
||||||
visibility: inherit;
|
|
||||||
opacity: 1;
|
|
||||||
transition: opacity 1s;
|
|
||||||
}
|
|
||||||
|
|
||||||
.innot {
|
.innot {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
109
index.php
109
index.php
|
@ -41,16 +41,12 @@
|
||||||
|
|
||||||
<div id="tsparticles"></div>
|
<div id="tsparticles"></div>
|
||||||
<hr style="width: 100%; box-sizing: border-box;">
|
<hr style="width: 100%; box-sizing: border-box;">
|
||||||
<div style="margin-top:5px;text-align:center;"> <b>Dünün Şanslı Kişisi:</b> <span id="previous-person"><i>yükleniyor</i></span></div>
|
<div id="sorumli" style="margin-top:auto;text-align:center;">Veri Sorumlusu: <b>Ömer Arda Muratoğlu</b><br>Her türlü kaldırılmasını, eklenmesini ve/veya değiştirilmesi istediğiniz veriler için kendisi ile iletişime geçiniz !</div>
|
||||||
<hr style="width: 100%; box-sizing: border-box;">
|
|
||||||
<div id="sorumli" style="margin-top:5px;text-align:center;">Veri Sorumlusu: <b>Ömer Arda Muratoğlu</b><br>Her türlü kaldırılmasını, eklenmesini ve/veya değiştirilmesi istediğiniz veriler için kendisi ile iletişime geçiniz !</div>
|
|
||||||
<hr style="width: 100%; box-sizing: border-box;">
|
|
||||||
<div style="margin-top:5px;text-align:center;">Fikir için <b>Cem Deniz Akdeniz</b>'e Teşekkürler !</div>
|
|
||||||
<hr style="width: 100%; box-sizing: border-box;">
|
<hr style="width: 100%; box-sizing: border-box;">
|
||||||
<div style="text-align:center;">Son veri güncelleme: <span id="latest-data"></span>
|
<div style="text-align:center;">Son veri güncelleme: <span id="latest-data"></span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div style="text-align: center;align-self:center;background-color: darkblue;border-radius:10px; padding:1px;"><a style="color: orange;font-weight:800;" href="https://asandikci.com/bagis/">👉 Bana Bi' Kahve Ismarla ☕</a></div>
|
<div style="text-align: center;align-self:center;"><a href="https://asandikci.com/bagis/">Bana Bi' Kahve Ismarla ☕</a></div>
|
||||||
</article>
|
</article>
|
||||||
|
|
||||||
<footer>
|
<footer>
|
||||||
|
@ -106,54 +102,11 @@
|
||||||
}, 250);
|
}, 250);
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
<script>
|
|
||||||
function updateData() {
|
|
||||||
xmlHttp = new XMLHttpRequest();
|
|
||||||
xmlHttp.onreadystatechange = function() {
|
|
||||||
if (this.readyState == 4 && this.status == 200) {
|
|
||||||
var response = xmlHttp.responseText
|
|
||||||
if (response.includes("parseError")) {
|
|
||||||
console.error("VERİLER YANLIŞ ŞEKİLDE GİRİLMİŞ, LÜTFEN ifl/YurdleBackend PROJESİNDEKİ VERİ DOSYASINI KONTROL EDİNİZ");
|
|
||||||
console.warn(response);
|
|
||||||
} else if (response.includes("fileError")) {
|
|
||||||
console.error("VERİ DOSYASI SUNUCUDA BULUNAMADI, SUNUCUYU KONTROL EDİNİZ");
|
|
||||||
console.warn(response);
|
|
||||||
} else if (response.includes("success")) {
|
|
||||||
console.info("VERİLER BAŞARIYLA GÜNCELLENDİ")
|
|
||||||
} else {
|
|
||||||
console.warn("VERİ GÜNCELLENİRKEN BİR HATA OLUŞTU, SAYFAYI YENİLEMEYİ DENEYİN");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
};
|
|
||||||
params = "updateData=yes";
|
|
||||||
xmlHttp.open("POST", "src/server.php", true);
|
|
||||||
xmlHttp.setRequestHeader('Content-type', 'application/x-www-form-urlencoded');
|
|
||||||
xmlHttp.send(params);
|
|
||||||
flag = true;
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
function getPreviousData() {
|
|
||||||
xmlHttp = new XMLHttpRequest();
|
|
||||||
xmlHttp.onreadystatechange = function() {
|
|
||||||
if (this.readyState == 4 && this.status == 200) {
|
|
||||||
var response = xmlHttp.responseText;
|
|
||||||
document.getElementById("previous-person").innerHTML = "<b style='color:red';>" + response + "</b>";
|
|
||||||
console.debug("Dünün Şanslı Kişisi: " + response);
|
|
||||||
}
|
|
||||||
};
|
|
||||||
params = "getPreviousPerson=yes";
|
|
||||||
xmlHttp.open("POST", "src/server.php", true);
|
|
||||||
xmlHttp.setRequestHeader('Content-type', 'application/x-www-form-urlencoded');
|
|
||||||
xmlHttp.send(params);
|
|
||||||
flag = true;
|
|
||||||
}
|
|
||||||
</script>
|
|
||||||
<script>
|
<script>
|
||||||
function isSameDay(a, b) {
|
function isSameDay(a, b) {
|
||||||
return a.toDateString() == b.toDateString();
|
return a.toDateString() == b.toDateString();
|
||||||
}
|
}
|
||||||
getPreviousData();
|
|
||||||
if (localStorage.getItem("win") == null) {
|
if (localStorage.getItem("win") == null) {
|
||||||
localStorage.setItem("win", "none");
|
localStorage.setItem("win", "none");
|
||||||
}
|
}
|
||||||
|
@ -178,7 +131,6 @@
|
||||||
localStorage.removeItem("guesses");
|
localStorage.removeItem("guesses");
|
||||||
localStorage.removeItem("latest_guess");
|
localStorage.removeItem("latest_guess");
|
||||||
localStorage.removeItem("win");
|
localStorage.removeItem("win");
|
||||||
document.getElementById("tebriks").style.display = "none";
|
|
||||||
}
|
}
|
||||||
localStorage.setItem("latest_visit", date);
|
localStorage.setItem("latest_visit", date);
|
||||||
}
|
}
|
||||||
|
@ -244,8 +196,6 @@
|
||||||
tr.appendChild(th);
|
tr.appendChild(th);
|
||||||
}
|
}
|
||||||
|
|
||||||
// REVIEW Daha optimize ve karışık olmayacak şekilde yazılabilir
|
|
||||||
|
|
||||||
for (let i = gj["Guesses"].length - 1; i >= 0; i--) {
|
for (let i = gj["Guesses"].length - 1; i >= 0; i--) {
|
||||||
// revit = gj["Guesses"].length - i - 1;
|
// revit = gj["Guesses"].length - i - 1;
|
||||||
const tr = document.createElement("tr");
|
const tr = document.createElement("tr");
|
||||||
|
@ -258,12 +208,7 @@
|
||||||
if (innerFlag) crit_num++;
|
if (innerFlag) crit_num++;
|
||||||
const td = document.createElement("td");
|
const td = document.createElement("td");
|
||||||
const td_text = document.createTextNode(indata[key][1]);
|
const td_text = document.createTextNode(indata[key][1]);
|
||||||
|
|
||||||
// FIXME isim_soyisim renkli olmasın diye kontrol yapılıyor ama bu durumda isim soyisim haricinde diğer tüm özellikleri aynı olan başka biri daha olursa onu da doğru sayar !!!
|
|
||||||
if (key != "isim_soyisim") {
|
if (key != "isim_soyisim") {
|
||||||
if (i == gj["Guesses"].length - 1 && flagSame == 0) {
|
|
||||||
td.classList.add("latest-guess");
|
|
||||||
}
|
|
||||||
switch (indata[key][0]) {
|
switch (indata[key][0]) {
|
||||||
case 0:
|
case 0:
|
||||||
td.classList.add("type0");
|
td.classList.add("type0");
|
||||||
|
@ -291,23 +236,10 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
var lat = document.getElementsByClassName("latest-guess");
|
// console.log(gj);
|
||||||
var le = lat.length;
|
if (crit_num == (true_num + 1)) // +1 isim_soyisim sayılmadığı için
|
||||||
|
{
|
||||||
function delay(time) {
|
// console.warn(crit_num, true_num);
|
||||||
return new Promise(resolve => setTimeout(resolve, time));
|
|
||||||
}
|
|
||||||
async function delayeffect() {
|
|
||||||
for (let i = 0; i < lat.length; i++) {
|
|
||||||
const element = lat[i];
|
|
||||||
await delay(750);
|
|
||||||
element.classList.toggle('fade');
|
|
||||||
}
|
|
||||||
}
|
|
||||||
delayeffect();
|
|
||||||
|
|
||||||
async function yepwin() {
|
|
||||||
await delay(5000);
|
|
||||||
document.getElementById("tebriks").style.display = "block";
|
document.getElementById("tebriks").style.display = "block";
|
||||||
document.getElementById("tebriks").innerHTML = "Tebrikler, günün şanslı kişisini buldun!"
|
document.getElementById("tebriks").innerHTML = "Tebrikler, günün şanslı kişisini buldun!"
|
||||||
localStorage.setItem("win", "winned");
|
localStorage.setItem("win", "winned");
|
||||||
|
@ -315,11 +247,6 @@
|
||||||
callConfetti();
|
callConfetti();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
// console.log(gj);
|
|
||||||
if (crit_num == (true_num + 1)) // +1 isim_soyisim sayılmadığı için
|
|
||||||
{
|
|
||||||
yepwin();
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
// NOTICES
|
// NOTICES
|
||||||
|
@ -336,8 +263,8 @@
|
||||||
} else {
|
} else {
|
||||||
innot = document.createElement("p");
|
innot = document.createElement("p");
|
||||||
innot.classList.add("innot");
|
innot.classList.add("innot");
|
||||||
innot_text = element;
|
innot_text = document.createTextNode(element);
|
||||||
innot.innerHTML = innot_text;
|
innot.appendChild(innot_text);
|
||||||
notic.appendChild(innot);
|
notic.appendChild(innot);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
@ -458,25 +385,9 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
const persons2 = <?php echo json_encode(getAllPersonNames(), JSON_UNESCAPED_UNICODE) ?>;
|
const persons2 = <?php echo json_encode(getAllPersonNames(), JSON_UNESCAPED_UNICODE) ?>;
|
||||||
persons2.sort();
|
|
||||||
autocomplete(document.getElementById("mainInput"), persons2);
|
|
||||||
</script>
|
|
||||||
<script>
|
|
||||||
var t = setInterval(tick, 1000);
|
|
||||||
|
|
||||||
function tick() {
|
autocomplete(document.getElementById("mainInput"), persons2);
|
||||||
var curTime = new Date();
|
|
||||||
if (curTime.getHours() == 0 && curTime.getMinutes() == 0 && curTime.getSeconds() > 1 && curTime.getSeconds() < 3) {
|
|
||||||
console.debug("Kullanıcının Ekranı Açıkken Farklı Bir Güne Geçiş Yapıldı, Statlar Sıfırlanıyor ve Kullanıcı Bilgilendiriliyor");
|
|
||||||
localStorage.removeItem("guesses");
|
|
||||||
localStorage.removeItem("latest_guess");
|
|
||||||
localStorage.removeItem("win");
|
|
||||||
document.getElementById("tebriks").style.display = "none";
|
|
||||||
document.getElementById("tahminler").innerHTML = "<h2 style='text-align:center;'>Gece Yarısını Geçtiniz, Lütfen Sayfayı Yenile<span style='color:red;'>ME</span>den direkt yeni tahminizde bulununuz👆</h2><p style='text-align:center;'>Kullanıcının cihazının saati baz alınmıştır, sunucunun yenilenmesi için birkaç saniye daha beklemeniz gerekebilir</p>"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
</script>
|
</script>
|
||||||
<script src="https://cdn.jsdelivr.net/npm/@tsparticles/confetti@3.0.3/tsparticles.confetti.bundle.min.js"></script>
|
<script src="https://cdn.jsdelivr.net/npm/@tsparticles/confetti@3.0.3/tsparticles.confetti.bundle.min.js"></script>
|
||||||
|
|
||||||
|
|
||||||
</html>
|
</html>
|
|
@ -1 +0,0 @@
|
||||||
<?php $PREVIOUS_PERSON = "aliberk_sandikci24";
|
|
|
@ -3,7 +3,6 @@
|
||||||
use Yosymfony\Toml\Toml;
|
use Yosymfony\Toml\Toml;
|
||||||
|
|
||||||
include __DIR__ . '/todays.php';
|
include __DIR__ . '/todays.php';
|
||||||
include __DIR__ . '/previous.php';
|
|
||||||
include __DIR__ . '/../config.php';
|
include __DIR__ . '/../config.php';
|
||||||
require __DIR__ . '/../vendor/autoload.php';
|
require __DIR__ . '/../vendor/autoload.php';
|
||||||
|
|
||||||
|
@ -11,29 +10,13 @@ $parser = new Toml();
|
||||||
$dock_local_test = 1;
|
$dock_local_test = 1;
|
||||||
|
|
||||||
# Fetch Remote data and update data.toml (running each 10 min with cronjob)
|
# Fetch Remote data and update data.toml (running each 10 min with cronjob)
|
||||||
function testData($toml)
|
|
||||||
{
|
|
||||||
global $parser;
|
|
||||||
try {
|
|
||||||
$array = $parser::Parse($toml);
|
|
||||||
} catch (Exception $e) {
|
|
||||||
$ans = 'Caught exception: ' . $e->getMessage() . "\n";
|
|
||||||
return $ans;
|
|
||||||
}
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
function updateRemoteData()
|
function updateRemoteData()
|
||||||
{
|
{
|
||||||
global $DATAACCESS_TOKEN;
|
global $DATAACCESS_TOKEN;
|
||||||
global $APP_NAME;
|
global $APP_NAME;
|
||||||
$string = file_get_contents("https://git.aliberksandikci.com.tr/api/v1/repos/ifl/YurdleBackend/raw/data.toml?access_token=" . $DATAACCESS_TOKEN);
|
$string = file_get_contents("https://git.aliberksandikci.com.tr/api/v1/repos/ifl/YurdleBackend/raw/data.toml?access_token=" . $DATAACCESS_TOKEN);
|
||||||
if ($string === FALSE) {
|
if ($string === FALSE) {
|
||||||
echo "fileError: Could not read the file or could not get the file from server";
|
echo "Could not read the file.";
|
||||||
return;
|
|
||||||
} else if (testData($string) != 0) {
|
|
||||||
echo "parseError: " . testData($string);
|
|
||||||
return;
|
|
||||||
} else {
|
} else {
|
||||||
$file = __DIR__ . "/../data.toml";
|
$file = __DIR__ . "/../data.toml";
|
||||||
file_put_contents($file, $string, LOCK_EX);
|
file_put_contents($file, $string, LOCK_EX);
|
||||||
|
@ -42,41 +25,25 @@ function updateRemoteData()
|
||||||
chown("$file", $APP_NAME);
|
chown("$file", $APP_NAME);
|
||||||
|
|
||||||
parseTOML(); // not necessary
|
parseTOML(); // not necessary
|
||||||
echo "success";
|
|
||||||
}
|
}
|
||||||
|
|
||||||
# get random person
|
|
||||||
function randomizerr($array)
|
|
||||||
{
|
|
||||||
srand();
|
|
||||||
$random_number = random_int(0, count($array) - 1);
|
|
||||||
$choosen = $array[$random_number];
|
|
||||||
return $choosen;
|
|
||||||
}
|
|
||||||
|
|
||||||
# Choose the todays person (running each day with cronjob)
|
# Choose the todays person (running each day with cronjob)
|
||||||
function chooseTodayPerson()
|
function chooseTodayPerson()
|
||||||
{
|
{
|
||||||
global $APP_NAME;
|
global $APP_NAME;
|
||||||
global $TODAYS_PERSON;
|
|
||||||
$data = parseTOML()["data"];
|
$data = parseTOML()["data"];
|
||||||
|
|
||||||
backupPreviousPerson($TODAYS_PERSON);
|
|
||||||
|
|
||||||
$personArr = array();
|
$personArr = array();
|
||||||
foreach ($data as $key => $value) {
|
foreach ($data as $key => $value) {
|
||||||
array_push($personArr, $key);
|
array_push($personArr, $key);
|
||||||
}
|
}
|
||||||
|
print_r($personArr);
|
||||||
|
srand();
|
||||||
|
$random_number = random_int(0, count($personArr) - 1);
|
||||||
|
$choosen = $personArr[$random_number];
|
||||||
|
|
||||||
|
// TODO control each person if already choosed recently? (make all persons avaliable AFTER all of them choosed )
|
||||||
|
|
||||||
$choosen = randomizerr($personArr);
|
|
||||||
echo $choosen . " - " . $TODAYS_PERSON;
|
|
||||||
while ($choosen == $TODAYS_PERSON) {
|
|
||||||
echo "!!!";
|
|
||||||
$choosen = randomizerr($personArr);
|
|
||||||
echo $choosen . " - " . $TODAYS_PERSON;
|
|
||||||
}
|
|
||||||
|
|
||||||
$string = "<?php \$TODAYS_PERSON = \"$choosen\";";
|
$string = "<?php \$TODAYS_PERSON = \"$choosen\";";
|
||||||
$file = __DIR__ . "/todays.php";
|
$file = __DIR__ . "/todays.php";
|
||||||
|
@ -85,25 +52,6 @@ function chooseTodayPerson()
|
||||||
chown("$file", $APP_NAME);
|
chown("$file", $APP_NAME);
|
||||||
}
|
}
|
||||||
|
|
||||||
# Backup previous person to previous.php file
|
|
||||||
function backupPreviousPerson($previous)
|
|
||||||
{
|
|
||||||
global $APP_NAME;
|
|
||||||
|
|
||||||
$string = "<?php \$PREVIOUS_PERSON = \"$previous\";";
|
|
||||||
$file = __DIR__ . "/previous.php";
|
|
||||||
file_put_contents($file, $string, LOCK_EX);
|
|
||||||
chmod("$file", 0700);
|
|
||||||
chown("$file", $APP_NAME);
|
|
||||||
}
|
|
||||||
|
|
||||||
# get Previous Person Name (isi_soyisim)
|
|
||||||
function getPreviousPersonName()
|
|
||||||
{
|
|
||||||
global $PREVIOUS_PERSON;
|
|
||||||
return parseTOML()["data"][$PREVIOUS_PERSON]["isim_soyisim"];
|
|
||||||
}
|
|
||||||
|
|
||||||
# Send all person names to frontend
|
# Send all person names to frontend
|
||||||
function getAllPersonNames()
|
function getAllPersonNames()
|
||||||
{
|
{
|
||||||
|
@ -241,12 +189,3 @@ function parseTOML()
|
||||||
$array = $parser::ParseFile(__DIR__ . "/../data.toml");
|
$array = $parser::ParseFile(__DIR__ . "/../data.toml");
|
||||||
return $array;
|
return $array;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
if ($_POST['updateData'] != null && $_POST['updateData'] == "yes") {
|
|
||||||
updateRemoteData();
|
|
||||||
}
|
|
||||||
|
|
||||||
if ($_POST['getPreviousPerson'] != null && $_POST['getPreviousPerson'] == "yes") {
|
|
||||||
echo getPreviousPersonName();
|
|
||||||
}
|
|
||||||
|
|
Loading…
Reference in a new issue