import { NextRequest, NextResponse } from 'next/server';
import { includes } from "lodash";
const isAdminRoute = (pathname: string) => {
return pathname.startsWith('/api/admin');
}
const isUserRoute = (pathname: string) => {
return pathname.startsWith('/api/users');
}
export async function middleware(req: NextRequest) {
const role = req.headers.get("authorization");
const { pathname } = req.nextUrl;
if (isUserRoute(pathname) && !includes(["user", "admin"], role)) {
return NextResponse.redirect(new URL('/api/auth/unauthorized', req.url));
}
if (isAdminRoute(pathname) && role !== "admin") {
return NextResponse.redirect(new URL('/api/auth/unauthorized', req.url));
}
return NextResponse.next();
}
export const config = {
matcher: ['/api/users/:path*', '/api/admin/:path*']
};
import { NextResponse } from 'next/server'
import type { NextRequest } from 'next/server'
import { isSeller } from '@/lib/isSeller';
export const config = {
matcher: [
'/dashboard',
'/dashboard/products',
'/dashboard/products/add-product',
'/dashboard/products/[id]',
'/dashboard/profile',
'/dashboard/profile/verify',
],
}
export async function middleware(request: NextRequest) {
if (await isSeller(request)) {
return NextResponse.next()
}
const loginUrl = new URL('/login', request.url)
return NextResponse.redirect(loginUrl)
}
import { NextResponse } from 'next/server';
import type { NextRequest } from 'next/server';
import { IsAuth } from '@/lib/IsAuth';
export const config = {
matcher: [
'/my-account',
'/my-account/profile',
'/my-account/addresses',
'/my-account/payments',
'/my-account/wallet',
'/my-account/point',
'/my-account/following',
'/my-account/searches',
],
}
export async function middleware(request: NextRequest) {
if (await IsAuth(request)) {
return NextResponse.next()
}
const loginUrl = new URL('/login', request.url)
return NextResponse.redirect(loginUrl)
}