* Highlight /about in nav * Refine full frame icon * Add timestamp to /about * Add /about to cmdk menu * Enrich /about content * Make /about categories responsive * Enlarge app nav buttons * Add /about richer categories * Widen main nav buttons * Add more /about category content * Catch db errors in /about * Update key /about image * Add /about avatar * Add jest TextEncoder polyfill * Refactor sidebar text configuration * Show /about hero photo meta * Hoist about content to server page * Hide admin email on small screens * Add basic about page form * Finalize basic /about upsert functionality * Make /about/edit safe for blank templates * Add configuration to hide /about page * Add default /about title text * Add interactive photos to /about edit form * Apply final /about i18n * Ensure /about static optimization * Add CTA for admins to add /about descriptions * Add convenience for accepting full photo urls * Add photo placeholder icon * Show /about empty state when there are no photos * Hide sort control when in app empty state
59 lines
1.7 KiB
TypeScript
59 lines
1.7 KiB
TypeScript
import { auth } from './src/auth/server';
|
|
import { NextRequest, NextResponse } from 'next/server';
|
|
import type { NextApiRequest, NextApiResponse } from 'next';
|
|
import {
|
|
PATH_ADMIN,
|
|
PATH_ADMIN_PHOTOS,
|
|
PATH_OG,
|
|
PATH_OG_SAMPLE,
|
|
PREFIX_PHOTO,
|
|
PREFIX_TAG,
|
|
} from './src/app/path';
|
|
|
|
export function proxy(req: NextRequest, res:NextResponse) {
|
|
const pathname = req.nextUrl.pathname;
|
|
|
|
if (pathname === PATH_ADMIN) {
|
|
return NextResponse.redirect(new URL(PATH_ADMIN_PHOTOS, req.url));
|
|
} else if (pathname === PATH_OG) {
|
|
return NextResponse.redirect(new URL(PATH_OG_SAMPLE, req.url));
|
|
} else if (/^\/photos\/(.)+$/.test(pathname)) {
|
|
// Accept /photos/* paths, but serve /p/*
|
|
const matches = pathname.match(/^\/photos\/(.+)$/);
|
|
return NextResponse.rewrite(new URL(
|
|
`${PREFIX_PHOTO}/${matches?.[1]}`,
|
|
req.url,
|
|
));
|
|
} else if (/^\/t\/(.)+$/.test(pathname)) {
|
|
// Accept /t/* paths, but serve /tag/*
|
|
const matches = pathname.match(/^\/t\/(.+)$/);
|
|
return NextResponse.rewrite(new URL(
|
|
`${PREFIX_TAG}/${matches?.[1]}`,
|
|
req.url,
|
|
));
|
|
}
|
|
|
|
return auth(
|
|
req as unknown as NextApiRequest,
|
|
res as unknown as NextApiResponse,
|
|
);
|
|
}
|
|
|
|
export const config = {
|
|
// Excludes:
|
|
// - /api + /api/auth*
|
|
// - /_next/static*
|
|
// - /_next/image*
|
|
// - /favicon.ico + /favicons/*
|
|
// - /grid
|
|
// - /full
|
|
// - /about
|
|
// - / (root)
|
|
// - /home-image
|
|
// - /template-image
|
|
// - /template-image-tight
|
|
// - /template-url
|
|
// eslint-disable-next-line max-len
|
|
matcher: ['/((?!api$|api/auth|_next/static|_next/image|favicon.ico$|favicons/|grid$|full$|about$|home-image$|template-image$|template-image-tight$|template-url$|$).*)'],
|
|
};
|