post.service.ts
4.2 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
197
198
199
200
201
202
203
204
205
import { Injectable } from '@nestjs/common';
import { PrismaService } from 'nestjs-prisma';
import { AuthService } from 'src/auth/auth.service';
import { Level } from '.prisma/client';
@Injectable()
export class PostService {
constructor(
private readonly auth: AuthService,
private readonly prisma: PrismaService,
) {}
async createPost(
token: string,
title: string,
privat: boolean,
explain: string,
example: string,
testinput: string[],
testoutput: string[],
) {
const user = await this.auth.validateUser(
(
await this.auth.getUserFromToken(token)
).id,
);
const post = await this.prisma.post.create({
data: {
author: {
connect: {
id: user.id,
},
},
title: title,
private: privat,
explain: explain,
example: example,
testinput: testinput,
testoutput: testoutput,
},
});
return post;
}
async getAll() {
const posts = await this.prisma.post.findMany();
return posts;
}
async getPosts(take: number) {
const posts = await this.prisma.post.findMany({
take: take,
orderBy: {
postlikes: {
_count: 'desc',
},
},
});
return posts;
}
async getPostsByUser(token: string, userId: string, take: number) {
const user = await this.auth.validateUser(token);
const posts = await this.prisma.post.findMany({
where: {
authorId: userId,
},
take: take,
});
return posts;
}
async getPost(id: number) {
const num = +id;
const post = await this.prisma.post.findUnique({
where: { id: num },
});
return post;
}
async updatePost(
token: string,
id: number,
title: string,
privat: boolean,
explain: string,
example: string,
testinput: string[],
testoutput: string[],
) {
const user = await this.auth.validateUser(token);
const post = await this.prisma.post.update({
where: {
id: id,
},
data: {
title: title,
private: privat,
explain: explain,
example: example,
testinput: testinput,
testoutput: testoutput,
},
});
return post;
}
async deletePost(token: string, id: number) {
const user = await this.auth.validateUser(token);
const post = await this.prisma.post.delete({
where: {
id: id,
},
});
return post;
}
async likePost(token: string, id: number) {
const user = await this.auth.validateUser(token);
if (
await this.prisma.postLike.count({
where: {
postId: id,
userId: user.id,
},
})
) {
return {
message: 'You already liked this post',
};
}
const post = await this.prisma.postLike.create({
data: {
post: {
connect: {
id: id,
},
},
user: {
connect: {
id: user.id,
},
},
},
});
return post;
}
async commentPost(token: string, id: number, content: string) {
const user = await this.auth.validateUser(token);
const post = await this.prisma.comment.create({
data: {
post: {
connect: {
id: id,
},
},
author: {
connect: {
id: user.id,
},
},
content: content,
},
});
return post;
}
async deleteComment(token: string, id: string) {
const user = await this.auth.validateUser(token);
const comment = await this.prisma.comment.delete({
where: {
id: id,
},
});
return comment;
}
async getComments(id: number) {
const comments = await this.prisma.comment.findMany({
where: {
postId: id,
},
});
return comments;
}
async getPostbyLevel(difficulty: number) {
let level: Level;
if (difficulty == 1) {
level = 'LOW';
} else if (difficulty == 2) {
level = 'MEDIUM';
} else {
level = 'HIGH';
}
console.log(difficulty);
const posts = await this.prisma.post.findMany({
where: {
level: level,
},
});
return posts;
}
}