-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcookie.js
More file actions
65 lines (56 loc) · 2.02 KB
/
cookie.js
File metadata and controls
65 lines (56 loc) · 2.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
function setCookie(name,value,days) {
var expires = "";
if (days) {
var date = new Date();
date.setTime(date.getTime() + (days*24*60*60*1000));
expires = "; expires=" + date.toUTCString();
}
document.cookie = name + "=" + (value || "") + expires + "; path=/";
}
function getCookie(name) {
var nameEQ = name + "=";
var ca = document.cookie.split(';');
for(var i=0;i < ca.length;i++) {
var c = ca[i];
while (c.charAt(0)==' ') c = c.substring(1,c.length);
if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length,c.length);
}
return null;
}
function eraseCookie(name) {
document.cookie = name+'=; Max-Age=-99999999;';
}
function getId(addingContact){
var token = getCookie('token');
// console.log("cheker");
//console.log(token);
var form_data = JSON.stringify({ token:token });
$.ajax({
url: "https://www.hammerfall.xyz/API-Files/api/User/validate.php",
type : "POST",
contentType : 'application/json',
data : form_data,
success : function(result){//response
if(addingContact){
submitContact(result.data);
holder = result.data;
}
else{
loadContacts(result.data);
holder = result.data;
}
// console.log("ID of the currently logged in person: " + result.data.idUsers);
// store jwt to cookie
return(result.data.idUsers);
},
error: function(xhr, resp, text){
// console.log("NOPE!");
alert("Please login to view the page");
// on error, tell the user login has failed & empty the input boxes
}
});
}
function populate(id)
{
alert("PRESSED");
}