-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathmesh-nodes.service.ts
More file actions
196 lines (167 loc) · 5.6 KB
/
Copy pathmesh-nodes.service.ts
File metadata and controls
196 lines (167 loc) · 5.6 KB
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
import {
Injectable,
NotFoundException,
ForbiddenException,
} from '@nestjs/common';
import { InjectRepository } from '@nestjs/typeorm';
import { Repository, In } from 'typeorm';
import { MeshNode } from './entities/mesh-node.entity';
import { CreateMeshNodeDto } from './dto/create-mesh-node.dto';
import { UpdateMeshNodeDto } from './dto/update-mesh-node.dto';
import { User } from '../users/entities/user.entity';
import { TagsService } from '../tags/tags.service';
@Injectable()
export class MeshNodesService {
constructor(
@InjectRepository(MeshNode)
private meshNodesRepository: Repository<MeshNode>,
private tagsService: TagsService,
) {}
async create(
createMeshNodeDto: CreateMeshNodeDto,
user: User,
): Promise<MeshNode> {
// Process tags if provided
if (createMeshNodeDto.tags && createMeshNodeDto.tags.length > 0) {
await this.tagsService.findOrCreateTags(createMeshNodeDto.tags);
}
const meshNode = this.meshNodesRepository.create({
...createMeshNodeDto,
createdBy: user,
});
return this.meshNodesRepository.save(meshNode);
}
async findAll(): Promise<MeshNode[]> {
return this.meshNodesRepository.find({
relations: ['createdBy'],
select: {
createdBy: {
id: true,
username: true,
},
},
});
}
async findOne(id: number): Promise<MeshNode> {
const meshNode = await this.meshNodesRepository.findOne({
where: { id },
relations: ['createdBy'],
select: {
createdBy: {
id: true,
username: true,
},
},
});
if (!meshNode) {
throw new NotFoundException(`MeshNode with ID ${id} not found`);
}
return meshNode;
}
async update(
id: number,
updateMeshNodeDto: UpdateMeshNodeDto,
user: User,
): Promise<MeshNode> {
const meshNode = await this.findOne(id);
if (meshNode.createdBy.id !== user.id) {
throw new ForbiddenException('You can only update your own mesh nodes');
}
// Process tags if provided
if (updateMeshNodeDto.tags && updateMeshNodeDto.tags.length > 0) {
await this.tagsService.findOrCreateTags(updateMeshNodeDto.tags);
}
Object.assign(meshNode, updateMeshNodeDto);
return this.meshNodesRepository.save(meshNode);
}
async remove(id: number, user: User): Promise<void> {
const meshNode = await this.findOne(id);
if (meshNode.createdBy.id !== user.id) {
throw new ForbiddenException('You can only delete your own mesh nodes');
}
await this.meshNodesRepository.remove(meshNode);
}
async findByUser(userId: number): Promise<MeshNode[]> {
return this.meshNodesRepository.find({
where: { createdBy: { id: userId } },
relations: ['createdBy'],
});
}
async findByCategory(category: string): Promise<MeshNode[]> {
return this.meshNodesRepository.find({
where: { category },
relations: ['createdBy'],
});
}
async findByTags(tags: string[]): Promise<MeshNode[]> {
const query = this.meshNodesRepository
.createQueryBuilder('meshNode')
.leftJoinAndSelect('meshNode.createdBy', 'createdBy')
.select(['meshNode', 'createdBy.id', 'createdBy.username']);
// Filter by tags using JSON operations
for (let i = 0; i < tags.length; i++) {
query.andWhere(`JSON_CONTAINS(meshNode.tags, :tag${i})`, {
[`tag${i}`]: `"${tags[i].toLowerCase()}"`,
});
}
return query.getMany();
}
async findByTagsAny(tags: string[]): Promise<MeshNode[]> {
const query = this.meshNodesRepository
.createQueryBuilder('meshNode')
.leftJoinAndSelect('meshNode.createdBy', 'createdBy')
.select(['meshNode', 'createdBy.id', 'createdBy.username']);
const conditions = tags.map(
(tag, index) => `JSON_CONTAINS(meshNode.tags, :tag${index})`,
);
query.andWhere(`(${conditions.join(' OR ')})`);
const params = {};
tags.forEach((tag, index) => {
params[`tag${index}`] = `"${tag.toLowerCase()}"`;
});
query.setParameters(params);
return query.getMany();
}
async findTrending(limit: number = 20): Promise<any[]> {
const results = await this.meshNodesRepository
.createQueryBuilder('meshNode')
.leftJoin('meshNode.solutions', 'solution')
.leftJoinAndSelect('meshNode.createdBy', 'createdBy')
.addSelect('COUNT(solution.id)::int', 'solutionCount')
.addSelect('COALESCE(SUM(solution.upvotes), 0)::int', 'totalUpvotes')
.addSelect(
`(COUNT(solution.id) * 3 + COALESCE(SUM(solution.upvotes), 0) * 2)
+ (10.0 / (1.0 + EXTRACT(EPOCH FROM (NOW() - meshNode.createdAt)) / 86400.0))`,
'trendingScore',
)
.where('meshNode.status = :status', { status: 'ACTIVE' })
.groupBy('meshNode.id')
.addGroupBy('createdBy.id')
.orderBy('trendingScore', 'DESC')
.limit(limit)
.getRawAndEntities();
const scoreMap = new Map<number, any>();
for (const raw of results.raw) {
scoreMap.set(raw.meshNode_id, {
trendingScore: parseFloat(raw.trendingScore),
solutionCount: raw.solutionCount,
totalUpvotes: raw.totalUpvotes,
});
}
return results.entities.map((entity) => ({
...entity,
trendingScore: scoreMap.get(entity.id)?.trendingScore || 0,
solutionCount: scoreMap.get(entity.id)?.solutionCount || 0,
totalUpvotes: scoreMap.get(entity.id)?.totalUpvotes || 0,
}));
}
async suggestTagsForMeshNode(
title: string,
description: string,
): Promise<{
suggestions: string[];
source: 'ai' | 'fallback';
}> {
return this.tagsService.suggestTags({ title, description });
}
}