ai-bot/app/_lib/actions/search.ts

39 lines
957 B
TypeScript
Raw Permalink Normal View History

2025-02-18 18:36:06 +08:00
"use server"
import { ArticleType } from "../data/article"
import { Link } from "../data/link"
2025-02-25 19:04:37 +08:00
import { getCollection } from "../mongodb";
2025-02-18 18:36:06 +08:00
export type SiteSearchType = {
articles: ArticleType[];
articleCount: number;
links: Link[];
linkCount: number;
}
export async function doSearch(wd: string) {
2025-02-25 19:04:37 +08:00
//实现对link的搜索
const linkCol = await getCollection('link')
2025-02-18 18:36:06 +08:00
2025-02-25 19:04:37 +08:00
const linkList = await linkCol.aggregate([
{
$match: {
$or: [ // 任意字段匹配即返回
{ name: { $regex: wd, $options: "i" } },
{ description: { $regex: wd, $options: "i" } },
{ tags: { $regex: wd, $options: "i" } }
]
}
},
{
$addFields: {
_id: { $toString: "$_id" }
}
}
]).toArray();
2025-02-18 18:36:06 +08:00
return {
2025-02-25 19:04:37 +08:00
list: linkList,
count: linkList.length
2025-02-18 18:36:06 +08:00
}
}