feat: 修改路由判断方式 & 增加入口路由打印
All checks were successful
CI Monitor MIflow / build-image (push) Successful in 36s

This commit is contained in:
zhaoyingbo 2024-07-30 09:29:45 +00:00
parent 5d9923749b
commit 012fa97e8b
2 changed files with 16 additions and 8 deletions

View File

@ -12,15 +12,16 @@ const PREFIX = "/gitlab_monitor"
const server = Bun.serve({
async fetch(req) {
try {
const checkPath = makeCheckPathTool(req.url, PREFIX)
// 根路由
if (checkPath("/")) return netTool.ok("hello, glade to see you!")
// 打印当前路由
console.log("🚀 ~ serve ~ req.url", req.url)
// 路由处理
const { exactCheck } = makeCheckPathTool(req.url, PREFIX)
// CI 监控
if (checkPath("/ci")) return manageCIMonitorReq(req)
if (exactCheck("/ci")) return manageCIMonitorReq(req)
// Gitlab 事件
if (checkPath("/event")) return manageGitlabEventReq(req)
if (exactCheck("/event")) return manageGitlabEventReq(req)
// 其他
return netTool.ok("hello, glade to see you!")
return netTool.ok("hello, there is gitlab monitor, glade to serve you!")
} catch (error: any) {
// 错误处理
console.error("🚀 ~ serve ~ error", error)

View File

@ -1,4 +1,11 @@
export const makeCheckPathTool = (url: string, prefix: string) => {
export const makeCheckPathTool = (url: string, prefix?: string) => {
const { pathname } = new URL(url)
return (path: string) => pathname === `${prefix}/${path}`
const prefixPath = prefix ? `${prefix}/` : ""
return {
// 精确匹配
exactCheck: (path: string) => pathname === `${prefixPath}${path}`,
// 前缀匹配
startsWithCheck: (path: string) =>
pathname.startsWith(`${prefixPath}${path}`),
}
}