blob: ab51c05966880a005ad213236dcaacaf28c01d04 (
plain)
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
|
// basic cookie handling
//////////////////////////////////////////////////////////////////////////////
/** create cookie
*
* @param {string} name : cookie name
* @param {*} value : cookie value
* @param {int} expire : expiration time (in seconds)
*/
function createCookie(name, value, expire) {
var expires;
if (expire) {
var date = new Date();
date.setTime(date.getTime()+(expire * 1000));
expires = "; expires=" + date.toGMTString();
} else {
expires = "";
}
// encode cookie
let enc = encodeRFC3986URIComponent(value);
document.cookie = name +"="+ enc + expires +"; path=/; SameSite=Strict";
}
/** read cookie
*
* @param {string} name : cookie name
* @returns cookie value
*/
function readCookie(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 decodeURIComponent(c.substring(nameEQ.length,c.length));
}
}
return null;
}
/** remove cookie
* == create cookie with empty string, already expired
*/
function removeCookie(name) {
createCookie(name, "", -1);
}
/** cookie exists
*
* @param {string} name
* @returns {boolean} true|false
*/
function cookieExists(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 true;
}
}
return false;
}
/** encodeRFC3986URIComponent
*
* RFC3986 compatible URI encoding
*
* @param str
* @returns (string) RCF3986 compatible encoded str
*/
function encodeRFC3986URIComponent(str) {
return encodeURIComponent(str).replace(
/[!'()*]/g,
(c) => `%${c.charCodeAt(0).toString(16).toUpperCase()}`,
);
}
/** example:
* --- -- -- - - -
*
* read connection cookie (as json object)
*
* connection = JSON.parse(decodeURIComponent(readCookie('con')))
*
* then...
* connection = {
* rid: `role-id`,
* name: `full name` of connected user
* }
*
* so to refer to user's name ...
* console.log(connection.name)
*
*/
|