Merge branch 'main' of https://github.com/fosrl/pangolin
This commit is contained in:
commit
9a1388b195
8 changed files with 47 additions and 36 deletions
|
@ -62,7 +62,7 @@ esbuild
|
||||||
packagePath: getPackagePaths(),
|
packagePath: getPackagePaths(),
|
||||||
}),
|
}),
|
||||||
],
|
],
|
||||||
sourcemap: false,
|
sourcemap: true,
|
||||||
target: "node20",
|
target: "node20",
|
||||||
})
|
})
|
||||||
.then(() => {
|
.then(() => {
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@fossorial/pangolin",
|
"name": "@fossorial/pangolin",
|
||||||
"version": "1.0.0",
|
"version": "1.0.0-beta.1",
|
||||||
"private": true,
|
"private": true,
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
@ -9,7 +9,7 @@
|
||||||
"db:push": "npx tsx server/db/migrate.ts",
|
"db:push": "npx tsx server/db/migrate.ts",
|
||||||
"db:studio": "drizzle-kit studio",
|
"db:studio": "drizzle-kit studio",
|
||||||
"build": "mkdir -p dist && next build && node esbuild.mjs -e server/index.ts -o dist/server.mjs",
|
"build": "mkdir -p dist && next build && node esbuild.mjs -e server/index.ts -o dist/server.mjs",
|
||||||
"start": "NODE_ENV=development ENVIRONMENT=prod node dist/server.mjs",
|
"start": "NODE_ENV=development ENVIRONMENT=prod NODE_OPTIONS=--enable-source-maps node dist/server.mjs",
|
||||||
"email": "email dev --dir server/emails/templates --port 3005"
|
"email": "email dev --dir server/emails/templates --port 3005"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
|
|
@ -88,19 +88,20 @@ export async function validateResourceSessionToken(
|
||||||
.where(eq(resourceSessions.sessionId, resourceSessions.sessionId));
|
.where(eq(resourceSessions.sessionId, resourceSessions.sessionId));
|
||||||
return { resourceSession: null };
|
return { resourceSession: null };
|
||||||
} else if (
|
} else if (
|
||||||
!resourceSession.doNotExtend &&
|
|
||||||
Date.now() >=
|
Date.now() >=
|
||||||
resourceSession.expiresAt - resourceSession.sessionLength / 2
|
resourceSession.expiresAt - resourceSession.sessionLength / 2
|
||||||
) {
|
) {
|
||||||
resourceSession.expiresAt = new Date(
|
if (!resourceSession.doNotExtend) {
|
||||||
Date.now() + resourceSession.sessionLength
|
resourceSession.expiresAt = new Date(
|
||||||
).getTime();
|
Date.now() + resourceSession.sessionLength
|
||||||
await db
|
).getTime();
|
||||||
|
await db
|
||||||
.update(resourceSessions)
|
.update(resourceSessions)
|
||||||
.set({
|
.set({
|
||||||
expiresAt: resourceSession.expiresAt
|
expiresAt: resourceSession.expiresAt
|
||||||
})
|
})
|
||||||
.where(eq(resourceSessions.sessionId, resourceSession.sessionId));
|
.where(eq(resourceSessions.sessionId, resourceSession.sessionId));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return { resourceSession };
|
return { resourceSession };
|
||||||
|
|
|
@ -14,7 +14,7 @@ const portSchema = z.number().positive().gt(0).lte(65535);
|
||||||
|
|
||||||
const environmentSchema = z.object({
|
const environmentSchema = z.object({
|
||||||
app: z.object({
|
app: z.object({
|
||||||
base_url: z.string().url(),
|
base_url: z.string().url().transform((url) => url.toLowerCase()),
|
||||||
log_level: z.enum(["debug", "info", "warn", "error"]),
|
log_level: z.enum(["debug", "info", "warn", "error"]),
|
||||||
save_logs: z.boolean()
|
save_logs: z.boolean()
|
||||||
}),
|
}),
|
||||||
|
@ -22,9 +22,8 @@ const environmentSchema = z.object({
|
||||||
external_port: portSchema,
|
external_port: portSchema,
|
||||||
internal_port: portSchema,
|
internal_port: portSchema,
|
||||||
next_port: portSchema,
|
next_port: portSchema,
|
||||||
internal_hostname: z.string(),
|
internal_hostname: z.string().transform((url) => url.toLowerCase()),
|
||||||
secure_cookies: z.boolean(),
|
secure_cookies: z.boolean(),
|
||||||
signup_secret: z.string().optional(),
|
|
||||||
session_cookie_name: z.string(),
|
session_cookie_name: z.string(),
|
||||||
resource_session_cookie_name: z.string()
|
resource_session_cookie_name: z.string()
|
||||||
}),
|
}),
|
||||||
|
@ -36,7 +35,7 @@ const environmentSchema = z.object({
|
||||||
}),
|
}),
|
||||||
gerbil: z.object({
|
gerbil: z.object({
|
||||||
start_port: portSchema,
|
start_port: portSchema,
|
||||||
base_endpoint: z.string(),
|
base_endpoint: z.string().transform((url) => url.toLowerCase()),
|
||||||
use_subdomain: z.boolean(),
|
use_subdomain: z.boolean(),
|
||||||
subnet_group: z.string(),
|
subnet_group: z.string(),
|
||||||
block_size: z.number().positive().gt(0)
|
block_size: z.number().positive().gt(0)
|
||||||
|
|
|
@ -105,7 +105,7 @@ export async function authWithAccessToken(
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
const validCode = await verifyPassword(tokenItem.tokenHash, accessToken);
|
const validCode = await verifyPassword(accessToken, tokenItem.tokenHash);
|
||||||
|
|
||||||
if (!validCode) {
|
if (!validCode) {
|
||||||
return next(
|
return next(
|
||||||
|
@ -132,7 +132,7 @@ export async function authWithAccessToken(
|
||||||
accessTokenId: tokenItem.accessTokenId,
|
accessTokenId: tokenItem.accessTokenId,
|
||||||
sessionLength: tokenItem.sessionLength,
|
sessionLength: tokenItem.sessionLength,
|
||||||
expiresAt: tokenItem.expiresAt,
|
expiresAt: tokenItem.expiresAt,
|
||||||
doNotExtend: tokenItem.expiresAt ? false : true
|
doNotExtend: tokenItem.expiresAt ? true : false
|
||||||
});
|
});
|
||||||
const cookieName = `${config.server.resource_session_cookie_name}_${resource.resourceId}`;
|
const cookieName = `${config.server.resource_session_cookie_name}_${resource.resourceId}`;
|
||||||
const cookie = serializeResourceSessionCookie(cookieName, token);
|
const cookie = serializeResourceSessionCookie(cookieName, token);
|
||||||
|
|
|
@ -51,7 +51,9 @@ export async function createResource(
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
const { name, subdomain } = parsedBody.data;
|
let { name, subdomain } = parsedBody.data;
|
||||||
|
|
||||||
|
subdomain = subdomain.toLowerCase(); // always to lower case
|
||||||
|
|
||||||
// Validate request params
|
// Validate request params
|
||||||
const parsedParams = createResourceParamsSchema.safeParse(req.params);
|
const parsedParams = createResourceParamsSchema.safeParse(req.params);
|
||||||
|
|
|
@ -41,7 +41,7 @@ export async function setupServerAdmin() {
|
||||||
await trx
|
await trx
|
||||||
.update(users)
|
.update(users)
|
||||||
.set({ passwordHash })
|
.set({ passwordHash })
|
||||||
.where(eq(users.email, email));
|
.where(eq(users.userId, existing.userId));
|
||||||
|
|
||||||
// this isn't using the transaction, but it's probably fine
|
// this isn't using the transaction, but it's probably fine
|
||||||
await invalidateAllSessions(existing.userId);
|
await invalidateAllSessions(existing.userId);
|
||||||
|
@ -50,6 +50,7 @@ export async function setupServerAdmin() {
|
||||||
}
|
}
|
||||||
|
|
||||||
if (existing.serverAdmin) {
|
if (existing.serverAdmin) {
|
||||||
|
logger.info(`Server admin (${email}) already exists`)
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -62,7 +63,7 @@ export async function setupServerAdmin() {
|
||||||
})
|
})
|
||||||
.where(eq(users.email, email));
|
.where(eq(users.email, email));
|
||||||
|
|
||||||
logger.info(`Server admin (${email}) updated`);
|
logger.info(`Server admin (${email}) set`);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -5,6 +5,10 @@ import { Toaster } from "@/components/ui/toaster";
|
||||||
import { ThemeProvider } from "@app/providers/ThemeProvider";
|
import { ThemeProvider } from "@app/providers/ThemeProvider";
|
||||||
import EnvProvider from "@app/providers/EnvProvider";
|
import EnvProvider from "@app/providers/EnvProvider";
|
||||||
import { Separator } from "@app/components/ui/separator";
|
import { Separator } from "@app/components/ui/separator";
|
||||||
|
import { cache } from "react";
|
||||||
|
import { verifySession } from "@app/lib/auth/verifySession";
|
||||||
|
import Header from "@app/components/Header";
|
||||||
|
import UserProvider from "@app/providers/UserProvider";
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: `Dashboard - Pangolin`,
|
title: `Dashboard - Pangolin`,
|
||||||
|
@ -20,6 +24,9 @@ export default async function RootLayout({
|
||||||
}>) {
|
}>) {
|
||||||
const version = process.env.APP_VERSION;
|
const version = process.env.APP_VERSION;
|
||||||
|
|
||||||
|
const getUser = cache(verifySession);
|
||||||
|
const user = await getUser();
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<html suppressHydrationWarning>
|
<html suppressHydrationWarning>
|
||||||
<body className={`${font.className}`}>
|
<body className={`${font.className}`}>
|
||||||
|
@ -39,8 +46,10 @@ export default async function RootLayout({
|
||||||
ENVIRONMENT: process.env.ENVIRONMENT as string,
|
ENVIRONMENT: process.env.ENVIRONMENT as string,
|
||||||
EMAIL_ENABLED: process.env.EMAIL_ENABLED as string,
|
EMAIL_ENABLED: process.env.EMAIL_ENABLED as string,
|
||||||
// optional
|
// optional
|
||||||
DISABLE_USER_CREATE_ORG: process.env.DISABLE_USER_CREATE_ORG,
|
DISABLE_USER_CREATE_ORG:
|
||||||
DISABLE_SIGNUP_WITHOUT_INVITE: process.env.DISABLE_SIGNUP_WITHOUT_INVITE,
|
process.env.DISABLE_USER_CREATE_ORG,
|
||||||
|
DISABLE_SIGNUP_WITHOUT_INVITE:
|
||||||
|
process.env.DISABLE_SIGNUP_WITHOUT_INVITE
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
{children}
|
{children}
|
||||||
|
@ -49,24 +58,23 @@ export default async function RootLayout({
|
||||||
<div className="container mx-auto flex justify-center items-center h-5 space-x-4 text-sm text-neutral-400 select-none">
|
<div className="container mx-auto flex justify-center items-center h-5 space-x-4 text-sm text-neutral-400 select-none">
|
||||||
<div>Built by Fossorial</div>
|
<div>Built by Fossorial</div>
|
||||||
<Separator orientation="vertical" />
|
<Separator orientation="vertical" />
|
||||||
<div className="flex items-center space-x-3">
|
<a
|
||||||
<div>Open Source</div>
|
href="https://github.com/fosrl/pangolin"
|
||||||
<a
|
target="_blank"
|
||||||
href="https://github.com/fosrl/pangolin"
|
rel="noopener noreferrer"
|
||||||
target="_blank"
|
aria-label="GitHub"
|
||||||
rel="noopener noreferrer"
|
className="flex items-center space-x-3 underline"
|
||||||
aria-label="GitHub"
|
>
|
||||||
|
<span>Open Source</span>
|
||||||
|
<svg
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
viewBox="0 0 24 24"
|
||||||
|
fill="currentColor"
|
||||||
|
className="w-4 h-4"
|
||||||
>
|
>
|
||||||
<svg
|
<path d="M12 0C5.37 0 0 5.373 0 12c0 5.303 3.438 9.8 8.207 11.385.6.11.82-.26.82-.577v-2.17c-3.338.726-4.042-1.61-4.042-1.61-.546-1.385-1.333-1.755-1.333-1.755-1.09-.744.082-.73.082-.73 1.205.085 1.84 1.24 1.84 1.24 1.07 1.835 2.807 1.305 3.492.997.107-.775.42-1.305.763-1.605-2.665-.305-5.467-1.335-5.467-5.93 0-1.31.468-2.382 1.236-3.22-.123-.303-.535-1.523.117-3.176 0 0 1.008-.322 3.3 1.23a11.52 11.52 0 013.006-.403c1.02.005 2.045.137 3.006.403 2.29-1.552 3.295-1.23 3.295-1.23.654 1.653.242 2.873.12 3.176.77.838 1.235 1.91 1.235 3.22 0 4.605-2.805 5.623-5.475 5.92.43.37.814 1.1.814 2.22v3.293c0 .32.217.693.825.576C20.565 21.795 24 17.298 24 12 24 5.373 18.627 0 12 0z" />
|
||||||
xmlns="http://www.w3.org/2000/svg"
|
</svg>
|
||||||
viewBox="0 0 24 24"
|
</a>
|
||||||
fill="currentColor"
|
|
||||||
className="w-4 h-4"
|
|
||||||
>
|
|
||||||
<path d="M12 0C5.37 0 0 5.373 0 12c0 5.303 3.438 9.8 8.207 11.385.6.11.82-.26.82-.577v-2.17c-3.338.726-4.042-1.61-4.042-1.61-.546-1.385-1.333-1.755-1.333-1.755-1.09-.744.082-.73.082-.73 1.205.085 1.84 1.24 1.84 1.24 1.07 1.835 2.807 1.305 3.492.997.107-.775.42-1.305.763-1.605-2.665-.305-5.467-1.335-5.467-5.93 0-1.31.468-2.382 1.236-3.22-.123-.303-.535-1.523.117-3.176 0 0 1.008-.322 3.3 1.23a11.52 11.52 0 013.006-.403c1.02.005 2.045.137 3.006.403 2.29-1.552 3.295-1.23 3.295-1.23.654 1.653.242 2.873.12 3.176.77.838 1.235 1.91 1.235 3.22 0 4.605-2.805 5.623-5.475 5.92.43.37.814 1.1.814 2.22v3.293c0 .32.217.693.825.576C20.565 21.795 24 17.298 24 12 24 5.373 18.627 0 12 0z" />
|
|
||||||
</svg>
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
{version && (
|
{version && (
|
||||||
<>
|
<>
|
||||||
<Separator orientation="vertical" />
|
<Separator orientation="vertical" />
|
||||||
|
|
Loading…
Add table
Reference in a new issue