jitsi-roomsv2/frontend/src/background/cookies.ts

25 lines
675 B
TypeScript
Raw Normal View History

2023-02-07 20:31:07 +01:00
function getCookie(cname: string) {
2023-04-10 23:28:28 +02:00
let name = cname + '='
let decodedCookie = decodeURIComponent(document.cookie)
let ca = decodedCookie.split(';')
2023-02-07 20:31:07 +01:00
for (let i = 0; i < ca.length; i++) {
2023-04-10 23:28:28 +02:00
let c = ca[i]
while (c.charAt(0) == ' ') {
c = c.substring(1)
2023-02-07 20:31:07 +01:00
}
if (c.indexOf(name) == 0) {
2023-04-10 23:28:28 +02:00
return c.substring(name.length, c.length)
2023-02-07 20:31:07 +01:00
}
}
2023-04-10 23:28:28 +02:00
return ''
2023-02-07 20:31:07 +01:00
}
function setCookie(cname: string, cvalue: string, exdays = 30) {
2023-04-10 23:28:28 +02:00
const d = new Date()
d.setTime(d.getTime() + exdays * 24 * 60 * 60 * 1000)
let expires = 'expires=' + d.toUTCString()
document.cookie = cname + '=' + cvalue + ';' + expires + ';path=/'
2023-02-07 20:31:07 +01:00
}
2023-04-10 23:28:28 +02:00
export { getCookie, setCookie }