forked from mckaywrigley/chatbot-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmiddleware.ts
30 lines (23 loc) · 906 Bytes
/
middleware.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
import {NextRequest, NextResponse} from "next/server";
const Buffer = require('buffer').Buffer;
const BASIC_AUTH_USER = process.env.BASIC_AUTH_USER || "user";
const BASIC_AUTH_PASSWORD = process.env.BASIC_AUTH_PASSWORD || "password";
export function middleware(req: NextRequest) {
if (req.nextUrl.pathname === '/api/health_check') {
return NextResponse.next()
}
const basicAuth = req.headers.get("authorization");
if (basicAuth) {
const auth = basicAuth.split(" ")[1];
const [user, password] = Buffer.from(auth, 'base64').toString().split(":");
if (user === BASIC_AUTH_USER && password === BASIC_AUTH_PASSWORD) {
return NextResponse.next();
}
}
return new Response('Auth required', {
status: 401,
headers: {
'WWW-Authenticate': 'Basic realm="Restricted Area", charset="UTF-8"'
}
})
}