mirror of
https://github.com/Ategon/Jamjar.git
synced 2025-02-12 06:16:21 +00:00
Fix cookie checking
This commit is contained in:
parent
047d630b14
commit
2d2ffa7d12
3 changed files with 23 additions and 12 deletions
|
@ -1,6 +1,6 @@
|
|||
"use client";
|
||||
|
||||
import { getCookies, hasCookie } from "@/helpers/cookie";
|
||||
import { getCookie, hasCookie } from "@/helpers/cookie";
|
||||
import { Button, Form, Input, Textarea } from "@nextui-org/react";
|
||||
import { redirect } from "next/navigation";
|
||||
import { useState } from "react";
|
||||
|
@ -41,7 +41,7 @@ export default function CreatePostPage() {
|
|||
return;
|
||||
}
|
||||
|
||||
if (!hasCookie()) {
|
||||
if (!hasCookie("token")) {
|
||||
setErrors({ content: "You are not logged in" });
|
||||
return;
|
||||
}
|
||||
|
@ -54,12 +54,12 @@ export default function CreatePostPage() {
|
|||
body: JSON.stringify({
|
||||
title: title,
|
||||
content: content,
|
||||
username: getCookies().user,
|
||||
username: getCookie("user"),
|
||||
}),
|
||||
method: "POST",
|
||||
headers: {
|
||||
"Content-Type": "application/json",
|
||||
authorization: `Bearer ${getCookies().token}`,
|
||||
authorization: `Bearer ${getCookie("token")}`,
|
||||
},
|
||||
}
|
||||
);
|
||||
|
|
|
@ -22,7 +22,7 @@ import {
|
|||
import { SiDiscord, SiForgejo, SiGithub } from "@icons-pack/react-simple-icons";
|
||||
import { LogInIcon, NotebookPen, SquarePen } from "lucide-react";
|
||||
import { useEffect, useState } from "react";
|
||||
import { hasCookie, getCookies } from "@/helpers/cookie";
|
||||
import { hasCookie, getCookie } from "@/helpers/cookie";
|
||||
import { usePathname } from "next/navigation";
|
||||
import { UserType } from "@/types/UserType";
|
||||
|
||||
|
@ -33,17 +33,17 @@ export default function Navbar() {
|
|||
useEffect(() => {
|
||||
loadUser();
|
||||
async function loadUser() {
|
||||
if (!hasCookie()) {
|
||||
if (!hasCookie("token")) {
|
||||
setUser(undefined);
|
||||
return;
|
||||
}
|
||||
|
||||
const response = await fetch(
|
||||
process.env.NEXT_PUBLIC_MODE === "PROD"
|
||||
? `https://d2jam.com/api/v1/self?username=${getCookies().user}`
|
||||
: `http://localhost:3005/api/v1/self?username=${getCookies().user}`,
|
||||
? `https://d2jam.com/api/v1/self?username=${getCookie("user")}`
|
||||
: `http://localhost:3005/api/v1/self?username=${getCookie("user")}`,
|
||||
{
|
||||
headers: { authorization: `Bearer ${getCookies().token}` },
|
||||
headers: { authorization: `Bearer ${getCookie("token")}` },
|
||||
}
|
||||
);
|
||||
|
||||
|
|
|
@ -8,11 +8,22 @@ export function getCookies() {
|
|||
return cookies;
|
||||
}
|
||||
|
||||
export function hasCookie() {
|
||||
export function getCookie(cookie: string) {
|
||||
const pairs = document.cookie.split(";");
|
||||
for (let i = 0; i < pairs.length; i++) {
|
||||
const pair = pairs[i].split("=");
|
||||
if (pair[0] == "token") {
|
||||
const pair = pairs[i].trim().split("=");
|
||||
if (pair[0] == cookie) {
|
||||
return pair[1];
|
||||
}
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
||||
export function hasCookie(cookie: string) {
|
||||
const pairs = document.cookie.split(";");
|
||||
for (let i = 0; i < pairs.length; i++) {
|
||||
const pair = pairs[i].trim().split("=");
|
||||
if (pair[0] == cookie) {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue