-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmutation.js
More file actions
236 lines (226 loc) · 6.34 KB
/
Copy pathmutation.js
File metadata and controls
236 lines (226 loc) · 6.34 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
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
const { setTransaction } = require('./utils/dbqueries');
const { uploadFile } = require('./utils/upload');
const { AuthenticationError } = require('apollo-server');
const { logInUser } = require('./models/User');
const { addTag } = require('./models/Tag');
const { dateToString } = require('./utils/date');
const Mutation = {
createPost: async (
_,
{ title, text, tags, isTesting = false, file },
{ user, pubsub }
) => {
if (!user)
return new AuthenticationError(
'You must be logged in to perform createPost action!'
);
const dateString = dateToString(new Date());
const userId = user.userId;
const capitalizedTags = tags.map((tag) =>
tag.replace(/(^\w{1})|(\s{1}\w{1})/g, (match) => match.toUpperCase())
);
let uploadedFile = null;
let res = null;
if (file) {
uploadedFile = await uploadFile(_, { file, isTesting });
const values = [
title,
text,
dateString,
userId,
capitalizedTags,
uploadedFile.path || null,
];
[res] = await setTransaction(
'INSERT INTO "Post" (title, text, "createdAt", "userId", "tags", "imageUrl") VALUES ($1, $2, $3, $4, $5, $6) RETURNING *',
values,
isTesting
);
} else {
const values = [title, text, dateString, userId, capitalizedTags];
[res] = await setTransaction(
'INSERT INTO "Post" (title, text, "createdAt", "userId", "tags") VALUES ($1, $2, $3, $4, $5) RETURNING *',
values,
isTesting
);
}
// add tag to db or increment its weight
const tagRes = await Promise.all(
capitalizedTags.map(async (tag) => {
try {
return await addTag(tag);
} catch (err) {
throw err;
}
})
);
// return tag name only
tags = tagRes.map((tag) => {
return tag[0].tag;
});
pubsub.publish(`post`, {
post: { mutation: 'CREATED', data: { ...res, tags } },
});
console.log({ ...res, tags });
return { ...res, tags };
},
deletePostById: async (_, { id, isTesting = false }, pubsub) => {
const [res] = await setTransaction(
`DELETE FROM "Post" WHERE "id"=${id} RETURNING *`,
_,
isTesting
);
pubsub.publish(`post`, {
post: {
mutation: 'DELETED',
data: res,
},
});
return res;
},
deleteCommentById: async (_, { id, isTesting = false }, pubsub) => {
const [res] = await setTransaction(
`DELETE FROM "Comment" WHERE "id"=${id} RETURNING *`,
_,
isTesting
);
pubsub.publish(`comment ${res.postId}`, {
comment: {
mutation: 'DELETED',
data: res,
},
});
return res;
},
uploadFile: async (_, { file, isTesting = false }) =>
await uploadFile(_, { file, isTesting }),
createComment: async (
_,
{ postId, text, user, isTesting = false },
pubsub
) => {
const dateString = dateToString(new Date());
const values = [postId, text, user, dateString];
const [res] = await setTransaction(
'INSERT INTO "Comment" ("postId", text, "user", "createdAt") VALUES ($1, $2, $3, $4) RETURNING *',
values,
isTesting
);
pubsub.publish(`comment ${postId}`, {
comment: {
mutation: 'CREATED',
data: res,
},
});
return res;
},
updateComment: async (_, { text, id, isTesting = false }, pubsub) => {
const [res] = await setTransaction(
`UPDATE "Comment" SET text='${text}' WHERE id='${id}' RETURNING *`,
_,
isTesting
);
pubsub.publish(`comment ${res.postId}`, {
comment: {
mutation: 'UPDATED',
data: res,
},
});
return res;
},
updatePost: async (
_,
{ title, id, text, tags, file, isTesting = false },
pubsub
) => {
if (tags && file) {
uploadedFile = await uploadFile(_, { file, isTesting });
const [res] = await setTransaction(
`UPDATE "Post" SET title='${title}', "text"='${text}', "tags"='{${tags}}', "imageUrl"='${uploadedFile.path}' WHERE id='${id}' RETURNING *`,
_,
isTesting
);
const capitalizedTags = tags.map((tag) =>
tag.replace(/(^\w{1})|(\s{1}\w{1})/g, (match) => match.toUpperCase())
);
const tagRes = await Promise.all(
capitalizedTags.map(async (tag) => {
try {
return await addTag(tag);
} catch (err) {
throw err;
}
})
);
tags = tagRes.map((tag) => {
return tag[0].tag;
});
pubsub.publish(`post`, {
post: {
mutation: 'UPDATED',
data: { ...res, tags },
},
});
return { ...res, tags };
}
if (file) {
uploadedFile = await uploadFile(_, { file, isTesting });
const [res] = await setTransaction(
`UPDATE "Post" SET title='${title}', "text"='${text}', "imageUrl"='${uploadedFile.path}' WHERE id='${id}' RETURNING *`,
_,
isTesting
);
pubsub.publish(`post`, {
post: {
mutation: 'UPDATED',
data: { ...res, tags },
},
});
return { ...res, tags };
}
if (tags) {
const [res] = await setTransaction(
`UPDATE "Post" SET title='${title}', "text"='${text}', "tags"='{${tags}}' WHERE id='${id}' RETURNING *`,
_,
isTesting
);
const capitalizedTags = tags.map((tag) =>
tag.replace(/(^\w{1})|(\s{1}\w{1})/g, (match) => match.toUpperCase())
);
const tagRes = await Promise.all(
capitalizedTags.map(async (tag) => {
try {
return await addTag(tag);
} catch (err) {
throw err;
}
})
);
tags = tagRes.map((tag) => {
return tag[0].tag;
});
pubsub.publish(`post`, {
post: {
mutation: 'UPDATED',
data: { ...res, tags },
},
});
return { ...res, tags };
} else {
const [res] = await setTransaction(
`UPDATE "Post" SET title='${title}', "text"='${text}' WHERE id='${id}' RETURNING *`,
_,
isTesting
);
pubsub.publish(`post`, {
post: {
mutation: 'UPDATED',
data: { ...res, tags },
},
});
return { ...res, tags };
}
},
logIn: async (_, { email, password }) => await logInUser(email, password),
};
module.exports = Mutation;