2025-01-23 16:46:23 +08:00
|
|
|
|
"use server";
|
|
|
|
|
|
2025-03-03 18:37:04 +08:00
|
|
|
|
import { ObjectId } from "mongodb";
|
2025-01-23 16:46:23 +08:00
|
|
|
|
import { getCollection } from "../mongodb";
|
|
|
|
|
|
|
|
|
|
export type Link = {
|
|
|
|
|
name: string;
|
|
|
|
|
link?: string;
|
|
|
|
|
description: string;
|
|
|
|
|
_id: string;
|
|
|
|
|
type: string;
|
|
|
|
|
priority: number;
|
2025-02-13 15:54:18 +08:00
|
|
|
|
articleId?: string;
|
2025-01-23 16:46:23 +08:00
|
|
|
|
logoLink: string;
|
|
|
|
|
isHot?: boolean;
|
|
|
|
|
addTime: number;
|
|
|
|
|
|
|
|
|
|
}
|
2025-02-13 15:54:18 +08:00
|
|
|
|
|
|
|
|
|
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-13 15:54:18 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
2025-02-27 18:40:23 +08:00
|
|
|
|
},
|
|
|
|
|
{
|
2025-02-13 15:54:18 +08:00
|
|
|
|
'$lookup': {
|
2025-02-27 18:40:23 +08:00
|
|
|
|
'from': 'link-article',
|
|
|
|
|
'localField': '_id',
|
|
|
|
|
'foreignField': '_id',
|
2025-02-13 15:54:18 +08:00
|
|
|
|
'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
|
|
|
|
|
2025-02-13 15:54:18 +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;
|
|
|
|
|
}
|
2025-02-13 15:54:18 +08:00
|
|
|
|
|
|
|
|
|
// Link 类型定义
|
2025-03-03 18:37:04 +08:00
|
|
|
|
export async function getLinkList({ page = 1, pageSize = 9999, filter = {} }: {
|
2025-01-23 16:46:23 +08:00
|
|
|
|
page?: number;
|
|
|
|
|
pageSize?: number;
|
2025-03-03 18:37:04 +08:00
|
|
|
|
filter?: Partial<Link>;
|
2025-01-23 16:46:23 +08:00
|
|
|
|
}) {
|
|
|
|
|
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;
|
|
|
|
|
}
|
2025-01-23 16:46:23 +08:00
|
|
|
|
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 } },
|
2025-01-23 16:46:23 +08:00
|
|
|
|
{ $skip: startIndex },
|
|
|
|
|
{ $limit: pageSize },
|
|
|
|
|
{
|
|
|
|
|
$addFields: {
|
|
|
|
|
_id: { $toString: "$_id" }
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
];
|
|
|
|
|
const cursor = collection.aggregate<Link>(pipeline);
|
2025-02-24 19:06:15 +08:00
|
|
|
|
|
2025-01-23 16:46:23 +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
|
|
|
|
|
})
|
|
|
|
|
|
2025-01-23 16:46:23 +08:00
|
|
|
|
}
|