Difference between revisions of "MediaWiki:Common.js"

From Johnisdead Wiki
Jump to navigation Jump to search
Line 1: Line 1:
  
  
 +
function setCookie(cname, cvalue, exdays) {
 +
    const d = new Date();
 +
    d.setTime(d.getTime() + (exdays * 24 * 60 * 60 * 1000));
 +
    let expires = "expires="+d.toUTCString();
 +
    document.cookie = cname + "=" + cvalue + ";" + expires + ";path=/";
 +
}
  
 +
function getCookie(cname) {
 +
    let name = cname + "=";
 +
    let ca = document.cookie.split(';');
 +
    for(let i = 0; i < ca.length; i++) {
 +
          let c = ca[i];
 +
          while (c.charAt(0) == ' ') {
 +
              c = c.substring(1);
 +
          }
 +
          if (c.indexOf(name) == 0) {
 +
              return c.substring(name.length, c.length);
 +
          }
 +
    }
 +
    return "";
 +
}
  
  
function checkCookie() {
+
function () {
     let stare = getCookie("stares");
+
     let user = getCookie("stares");
     if (stare != "") {
+
     if (user != "") {
           console.log("Cookie does not exist!");
+
           console.log("Cookie loaded!");
 
     } else {
 
     } else {
           document.cookie = "stares=0; expires=Sat, 11 Nov 2423 12:00:00 UTC";
+
           user = prompt("Please enter your name:", "");
           console.log("Cookie exists and it is " + stare);
+
           if (user != "" && user != null) {
 +
              console.log("Cookie does not exist. Setting up now.");
 +
              setCookie("stares", 0, 365);
 +
          }
 
     }
 
     }
 
}
 
}
 
 
  
  

Revision as of 11:48, 24 September 2024



function setCookie(cname, cvalue, exdays) {
     const d = new Date();
     d.setTime(d.getTime() + (exdays * 24 * 60 * 60 * 1000));
     let expires = "expires="+d.toUTCString();
     document.cookie = cname + "=" + cvalue + ";" + expires + ";path=/";
}

function getCookie(cname) {
     let name = cname + "=";
     let ca = document.cookie.split(';');
     for(let i = 0; i < ca.length; i++) {
          let c = ca[i];
          while (c.charAt(0) == ' ') {
               c = c.substring(1);
          }
          if (c.indexOf(name) == 0) {
               return c.substring(name.length, c.length);
          }
     }
     return "";
}


function () {
     let user = getCookie("stares");
     if (user != "") {
          console.log("Cookie loaded!");
     } else {
          user = prompt("Please enter your name:", "");
          if (user != "" && user != null) {
               console.log("Cookie does not exist. Setting up now.");
               setCookie("stares", 0, 365);
          }
     }
}


var i; 
i = Math.floor(Math.random() * 11);
console.log(i);
if (i == 5) {
document.getElementById('mw-navigation').innerHTML += '<img src="https://johnisdead.withinhubris.com/images/6/63/Stared2.gif" alt="" style="position: absolute;top: 10px;left: 30%;width: 70px;z-index: 10;">'
}