Merge branch 'master' of git.reim.ar:ReiMerc/temperature-alarm
This commit is contained in:
commit
1ca64702d7
@ -10,7 +10,7 @@ document.getElementById("loginForm").addEventListener("submit", function(event)
|
|||||||
|
|
||||||
login(emailOrUsername, password)
|
login(emailOrUsername, password)
|
||||||
.then(response => {
|
.then(response => {
|
||||||
document.cookie = `auth-token=${response.token}`;
|
document.cookie = `auth-token=${response.token}; Path=/`;
|
||||||
|
|
||||||
localStorage.setItem("user", {
|
localStorage.setItem("user", {
|
||||||
id: response.id,
|
id: response.id,
|
||||||
|
@ -3,13 +3,16 @@ import { address } from "./constants.js";
|
|||||||
export async function request(method, path, body = null) {
|
export async function request(method, path, body = null) {
|
||||||
const token = document.cookie.match(/\bauth-token=([^;\s]+)/);
|
const token = document.cookie.match(/\bauth-token=([^;\s]+)/);
|
||||||
|
|
||||||
|
const headers = {};
|
||||||
|
if (body)
|
||||||
|
headers["Content-Type"] = "application/json";
|
||||||
|
if (token?.length > 1)
|
||||||
|
headers["Authorization"] = `Bearer ${token[1]}`;
|
||||||
|
|
||||||
return new Promise((resolve, reject) => {
|
return new Promise((resolve, reject) => {
|
||||||
fetch(address + path, {
|
fetch(address + path, {
|
||||||
method,
|
method,
|
||||||
headers: {
|
headers,
|
||||||
"Content-Type": body ? "application/json" : undefined,
|
|
||||||
"Authorization": token?.length > 1 ? `Bearer ${token[1]}` : undefined,
|
|
||||||
},
|
|
||||||
body: body ? JSON.stringify(body) : undefined,
|
body: body ? JSON.stringify(body) : undefined,
|
||||||
})
|
})
|
||||||
.then(async response => {
|
.then(async response => {
|
||||||
|
Loading…
Reference in New Issue
Block a user