mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
44f8ba407d
* auth integration fixes * auth integration fixes * auth integration fixes * auth integration fixes * dev: update user api to return fallback workspace and improve the structure of the response * dev: fix the issue keyerror and move onboarding logic to serializer method field * dev: use-user-auth hook imlemented for route access validation and build issues resolved effected by user payload * fix: global theme color fix * style: new onboarding ui , fix: use-user-auth hook implemented * fix: command palette, project invite modal and issue detail page mutation type fix * fix: onboarding redirection fix * dev: build isuue resolved * fix: use user auth hook fix * fix: sign in toast alert fix, sign out redirection fix and user theme error fix * fix: user response fix * fix: unAuthorizedStatus logic updated --------- Co-authored-by: pablohashescobar <nikhilschacko@gmail.com> Co-authored-by: gurusainath <gurusainath007@gmail.com> Co-authored-by: anmolsinghbhatia <anmolsinghbhatia@caravel.tech>
204 lines
4.5 KiB
TypeScript
204 lines
4.5 KiB
TypeScript
// cookies
|
|
import { convertCookieStringToObject } from "./cookie";
|
|
// types
|
|
import type { IProjectMember, IUser, IWorkspace, IWorkspaceMember } from "types";
|
|
|
|
export const requiredAuth = async (cookie?: string) => {
|
|
const cookies = convertCookieStringToObject(cookie);
|
|
const token = cookies?.accessToken;
|
|
|
|
if (!token) return null;
|
|
|
|
const baseUrl = process.env.NEXT_PUBLIC_API_BASE_URL || "https://api.plane.so";
|
|
|
|
let user: IUser | null = null;
|
|
|
|
try {
|
|
const data = await fetch(`${baseUrl}/api/users/me/`, {
|
|
method: "GET",
|
|
headers: {
|
|
"Content-Type": "application/json",
|
|
Authorization: `Bearer ${token}`,
|
|
},
|
|
})
|
|
.then((res) => res.json())
|
|
.then((data) => data);
|
|
|
|
user = data.user;
|
|
} catch (err) {
|
|
console.error(err);
|
|
user = null;
|
|
}
|
|
|
|
return user;
|
|
};
|
|
|
|
export const requiredAdmin = async (workspaceSlug: string, projectId: string, cookie?: string) => {
|
|
const user = await requiredAuth(cookie);
|
|
|
|
if (!user) return null;
|
|
|
|
const cookies = convertCookieStringToObject(cookie);
|
|
const token = cookies?.accessToken;
|
|
|
|
const baseUrl = process.env.NEXT_PUBLIC_API_BASE_URL || "https://api.plane.so";
|
|
|
|
let memberDetail: IProjectMember | null = null;
|
|
|
|
try {
|
|
const data = await fetch(
|
|
`${baseUrl}/api/workspaces/${workspaceSlug}/projects/${projectId}/project-members/me/`,
|
|
{
|
|
method: "GET",
|
|
headers: {
|
|
Authorization: `Bearer ${token}`,
|
|
},
|
|
}
|
|
)
|
|
.then((res) => res.json())
|
|
.then((data) => data);
|
|
|
|
memberDetail = data;
|
|
} catch (err) {
|
|
console.error(err);
|
|
memberDetail = null;
|
|
}
|
|
|
|
return memberDetail || null;
|
|
};
|
|
|
|
export const requiredWorkspaceAdmin = async (workspaceSlug: string, cookie?: string) => {
|
|
const user = await requiredAuth(cookie);
|
|
|
|
if (!user) return null;
|
|
|
|
const cookies = convertCookieStringToObject(cookie);
|
|
const token = cookies?.accessToken;
|
|
|
|
const baseUrl = process.env.NEXT_PUBLIC_API_BASE_URL || "https://api.plane.so";
|
|
|
|
let memberDetail: IWorkspaceMember | null = null;
|
|
|
|
try {
|
|
const data = await fetch(`${baseUrl}/api/workspaces/${workspaceSlug}/workspace-members/me/`, {
|
|
method: "GET",
|
|
headers: {
|
|
Authorization: `Bearer ${token}`,
|
|
},
|
|
})
|
|
.then((res) => res.json())
|
|
.then((data) => data);
|
|
|
|
memberDetail = data;
|
|
} catch (err) {
|
|
console.error(err);
|
|
memberDetail = null;
|
|
}
|
|
|
|
return memberDetail || null;
|
|
};
|
|
|
|
export const homePageRedirect = async (cookie?: string) => {
|
|
const user = await requiredAuth(cookie);
|
|
|
|
if (!user)
|
|
return {
|
|
redirect: {
|
|
destination: "/",
|
|
permanent: false,
|
|
},
|
|
};
|
|
|
|
if (!user.is_onboarded)
|
|
return {
|
|
redirect: {
|
|
destination: "/onboarding",
|
|
permanent: false,
|
|
},
|
|
};
|
|
|
|
let workspaces: IWorkspace[] = [];
|
|
|
|
const baseUrl = process.env.NEXT_PUBLIC_API_BASE_URL || "https://api.plane.so";
|
|
|
|
const cookies = convertCookieStringToObject(cookie);
|
|
const token = cookies?.accessToken;
|
|
|
|
try {
|
|
const data = await fetch(`${baseUrl}/api/users/me/workspaces/`, {
|
|
method: "GET",
|
|
headers: {
|
|
"Content-Type": "application/json",
|
|
Authorization: `Bearer ${token}`,
|
|
},
|
|
})
|
|
.then((res) => res.json())
|
|
.then((data) => data);
|
|
|
|
workspaces = data;
|
|
} catch (e) {
|
|
console.error(e);
|
|
return {
|
|
redirect: {
|
|
destination: "/error",
|
|
permanent: false,
|
|
},
|
|
};
|
|
}
|
|
|
|
const lastActiveWorkspace = workspaces.find(
|
|
(workspace) => workspace.id === user.last_workspace_id
|
|
);
|
|
|
|
if (lastActiveWorkspace) {
|
|
return {
|
|
redirect: {
|
|
destination: `/${lastActiveWorkspace.slug}`,
|
|
permanent: false,
|
|
},
|
|
};
|
|
} else if (workspaces.length > 0) {
|
|
return {
|
|
redirect: {
|
|
destination: `/${workspaces[0].slug}`,
|
|
permanent: false,
|
|
},
|
|
};
|
|
}
|
|
|
|
const invitations = await fetch(`${baseUrl}/api/users/me/invitations/workspaces/`, {
|
|
method: "GET",
|
|
headers: {
|
|
"Content-Type": "application/json",
|
|
Authorization: `Bearer ${token}`,
|
|
},
|
|
})
|
|
.then((res) => res.json())
|
|
.then((data) => data)
|
|
.catch((e) => {
|
|
console.error(e);
|
|
return {
|
|
redirect: {
|
|
destination: "/error",
|
|
permanent: false,
|
|
},
|
|
};
|
|
});
|
|
|
|
if (invitations.length > 0)
|
|
return {
|
|
redirect: {
|
|
destination: "/invitations",
|
|
permanent: false,
|
|
},
|
|
};
|
|
else {
|
|
return {
|
|
redirect: {
|
|
destination: "/create-workspace",
|
|
permanent: false,
|
|
},
|
|
};
|
|
}
|
|
};
|