ai-bot/app/_lib/data/link.ts

133 lines
3.1 KiB
TypeScript
Raw Normal View History

"use server";
2025-03-03 18:37:04 +08:00
import { ObjectId } from "mongodb";
import { getCollection } from "../mongodb";
export type Link = {
name: string;
link?: string;
description: string;
_id: string;
type: string;
priority: number;
articleId?: string;
logoLink: string;
isHot?: boolean;
addTime: number;
}
export async function getLinkListAll() {
const linkCollection = await getCollection('link');
const list = await linkCollection.aggregate<Link>([
{
'$addFields': {
2025-02-27 18:40:23 +08:00
'_id': {
'$toString': "$_id"
}
}
2025-02-27 18:40:23 +08:00
},
{
'$lookup': {
2025-02-27 18:40:23 +08:00
'from': 'link-article',
'localField': '_id',
'foreignField': '_id',
'as': 'article'
}
}, {
'$addFields': {
'articleId': {
'$toString':
{
'$arrayElemAt': [
'$article._id', 0
]
}
}
}
}, {
'$project': {
'article': 0
}
}
]).toArray();
2025-02-27 18:40:23 +08:00
console.log(list);
2025-03-03 18:37:04 +08:00
return list;
}
2025-03-03 18:37:04 +08:00
function buildDynamicQuery(filter: Partial<Link>) {
const query: Record<string, any> = {};
// 遍历所有有效字段
for (const [key, value] of Object.entries(filter)) {
if (value === undefined) continue;
// 特殊处理 _id 字段ObjectId 转换)
if (key === '_id' && typeof value === 'string') {
query[key] = new ObjectId(value);
}
// 处理其他字段的精确匹配
else {
query[key] = value;
}
}
return query;
}
// Link 类型定义
2025-03-03 18:37:04 +08:00
export async function getLinkList({ page = 1, pageSize = 9999, filter = {} }: {
page?: number;
pageSize?: number;
2025-03-03 18:37:04 +08:00
filter?: Partial<Link>;
}) {
const collection = await getCollection('link');
const startIndex = (page - 1) * pageSize;
// 构建查询条件对象
2025-03-03 18:37:04 +08:00
let query = {} as any
if (filter.name) {
query.name = { $regex: filter.name, $options: 'i' };
2025-02-24 19:06:15 +08:00
2025-03-03 18:37:04 +08:00
}
if (filter.articleId) {
query.articleId = filter.articleId;
}
if (filter.type) {
query.type = filter.type;
}
const pipeline = [
// 根据构建好的查询条件筛选文档
2025-03-03 18:37:04 +08:00
{
$match: query
},
2025-02-24 19:06:15 +08:00
{ $sort: { priority: 1, _id: -1 } },
{ $skip: startIndex },
{ $limit: pageSize },
{
$addFields: {
_id: { $toString: "$_id" }
}
}
];
const cursor = collection.aggregate<Link>(pipeline);
2025-02-24 19:06:15 +08:00
const list = await cursor.toArray();
// 获取符合查询条件的文档总数
const total = await collection.countDocuments(query);
return {
total,
list
}
2025-03-03 18:37:04 +08:00
}
export async function updateLink(id: string, link: Partial<Link>) {
const collection = await getCollection('link');
collection.updateOne({
_id: new ObjectId(id)
}, {
$set: link
})
}