-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathresolver_repo.ts
More file actions
578 lines (550 loc) · 13.4 KB
/
resolver_repo.ts
File metadata and controls
578 lines (550 loc) · 13.4 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
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
// nanoid v4 does not work with nodejs. https://github.com/ai/nanoid/issues/365
import { customAlphabet } from "nanoid/async";
import { lowercase, numbers } from "nanoid-dictionary";
import prisma from "./client";
const nanoid = customAlphabet(lowercase + numbers, 20);
async function ensureRepoEditAccess({ repoId, userId }) {
let repo = await prisma.repo.findFirst({
where: {
id: repoId,
OR: [
{ owner: { id: userId || "undefined" } },
{ collaborators: { some: { id: userId || "undefined" } } },
],
},
});
if (!repo) {
// this might be caused by creating a pod and update it too soon before it
// is created on server, which is a time sequence bug
throw new Error("Repo not exists.");
}
}
async function ensurePodEditAccess({ id, userId }) {
let pod = await prisma.pod.findFirst({
where: {
id,
repo: {
OR: [
{ owner: { id: userId || "undefined" } },
{ collaborators: { some: { id: userId || "undefined" } } },
],
},
},
});
if (!pod) {
// this might be caused by creating a pod and update it too soon before it
// is created on server, which is a time sequence bug
throw new Error("Pod not exists.");
}
}
async function getDashboardRepos(_, __, { userId }) {
if (!userId) throw Error("Unauthenticated");
const repos = await prisma.repo.findMany({
where: {
OR: [
{
owner: {
id: userId,
},
},
{
collaborators: {
some: { id: userId },
},
},
],
},
include: {
UserRepoData: {
where: {
userId: userId,
},
},
stargazers: true,
},
});
return repos.map((repo) => {
return {
...repo,
accessedAt:
repo.UserRepoData.length > 0
? repo.UserRepoData[0].accessedAt
: repo.updatedAt,
};
});
}
async function updateUserRepoData({ userId, repoId }) {
// FIXME I should probably rename this from query to mutation?
//
// update AccessTime field
const repoData = await prisma.userRepoData.findFirst({
where: {
userId,
repoId,
},
});
if (!repoData) {
await prisma.userRepoData.create({
data: {
user: { connect: { id: userId } },
repo: { connect: { id: repoId } },
},
});
} else {
await prisma.userRepoData.updateMany({
where: {
user: { id: userId },
repo: { id: repoId },
},
data: {
dummyCount: { increment: 1 },
// TODO I could also update accessedAt directly
// accessedAt: new Date(),
},
});
}
}
async function repo(_, { id }, { userId }) {
// a user can only access a private repo if he is the owner or a collaborator
const repo = await prisma.repo.findFirst({
where: {
OR: [
{ id, public: true },
{ id, owner: { id: userId || "undefined" } },
{ id, collaborators: { some: { id: userId || "undefined" } } },
],
},
include: {
owner: true,
collaborators: true,
pods: {
include: {
children: true,
parent: true,
},
orderBy: {
index: "asc",
},
},
edges: true,
},
});
if (!repo) throw Error("Repo not found");
await updateUserRepoData({ userId, repoId: id });
return {
...repo,
edges: repo.edges.map((edge) => ({
source: edge.sourceId,
target: edge.targetId,
})),
};
}
async function addEdge(_, { source, target }, { userId }) {
if (!userId) throw new Error("Not authenticated.");
const sourcePod = await prisma.pod.findFirst({ where: { id: source } });
const targetPod = await prisma.pod.findFirst({ where: { id: target } });
if (!sourcePod || !targetPod) throw new Error("Pods not found.");
if (sourcePod.repoId !== targetPod.repoId)
throw new Error("Pods are not in the same repo.");
await ensureRepoEditAccess({ repoId: sourcePod.repoId, userId });
await prisma.edge.create({
data: {
source: {
connect: {
id: source,
},
},
target: {
connect: {
id: target,
},
},
repo: {
connect: {
id: sourcePod.repoId,
},
},
},
});
return true;
}
async function deleteEdge(_, { source, target }, { userId }) {
if (!userId) throw new Error("Not authenticated.");
const sourcePod = await prisma.pod.findFirst({ where: { id: source } });
const targetPod = await prisma.pod.findFirst({ where: { id: target } });
if (!sourcePod || !targetPod) throw new Error("Pods not found.");
if (sourcePod.repoId !== targetPod.repoId)
throw new Error("Pods are not in the same repo.");
await ensureRepoEditAccess({ repoId: sourcePod.repoId, userId });
await prisma.edge.deleteMany({
where: {
source: {
id: source,
},
target: {
id: target,
},
},
});
return true;
}
async function createRepo(_, {}, { userId }) {
if (!userId) throw Error("Unauthenticated");
const repo = await prisma.repo.create({
data: {
id: await nanoid(),
owner: {
connect: {
id: userId,
},
},
},
include: {
owner: true,
},
});
return repo;
}
async function getVisibility(_, { repoId }, { userId }) {
if (!userId) throw Error("Unauthenticated");
const repo = await prisma.repo.findFirst({
where: {
id: repoId,
owner: { id: userId || "undefined" },
},
include: {
collaborators: true,
},
});
if (!repo) throw Error("Repo not found");
return { collaborators: repo.collaborators, isPublic: repo.public };
}
async function updateVisibility(_, { repoId, isPublic }, { userId }) {
if (!userId) throw Error("Unauthenticated");
const repo = await prisma.repo.findFirst({
where: {
id: repoId,
owner: { id: userId || "undefined" },
},
});
if (!repo) throw Error("Repo not found");
await prisma.repo.update({
where: {
id: repoId,
},
data: {
public: isPublic,
},
});
return true;
}
async function updateRepo(_, { id, name }, { userId }) {
if (!userId) throw Error("Unauthenticated");
const repo = await prisma.repo.findFirst({
where: {
id,
owner: {
id: userId,
},
},
});
if (!repo) throw new Error("Repo not found");
const updatedRepo = await prisma.repo.update({
where: {
id,
},
data: {
name,
},
});
return true;
}
async function deleteRepo(_, { id }, { userId }) {
if (!userId) throw Error("Unauthenticated");
// only a repo owner can delete a repo.
const repo = await prisma.repo.findFirst({
where: {
id,
owner: {
id: userId,
},
},
});
if (!repo) throw new Error("Repo not found");
// 1. delete all pods
await prisma.pod.deleteMany({
where: {
repo: {
id: repo.id,
},
},
});
// 2. delete UserRepoData
await prisma.userRepoData.deleteMany({
where: {
repo: {
id: repo.id,
},
},
});
// 3. delete the repo itself
await prisma.repo.delete({
where: {
id: repo.id,
},
});
return true;
}
async function addCollaborator(_, { repoId, email }, { userId }) {
// make sure the repo is writable by this user
if (!userId) throw new Error("Not authenticated.");
// 1. find the repo
const repo = await prisma.repo.findFirst({
where: {
id: repoId,
owner: { id: userId },
},
include: {
collaborators: true,
},
});
if (!repo) throw new Error("Repo not found or you are not the owner.");
// 2. find the user
const other = await prisma.user.findFirst({
where: {
email,
},
});
if (!other) throw new Error("User not found");
if (other.id === userId) throw new Error("You are already the owner.");
if (repo.collaborators.findIndex((user) => user.id === other.id) !== -1)
throw new Error("The user is already a collaborator.");
// 3. add the user to the repo
const res = await prisma.repo.update({
where: {
id: repoId,
},
data: {
collaborators: { connect: { id: other.id } },
},
});
return true;
}
async function deleteCollaborator(_, { repoId, collaboratorId }, { userId }) {
if (!userId) throw new Error("Not authenticated.");
// 1. find the repo
const repo = await prisma.repo.findFirst({
where: {
id: repoId,
owner: { id: userId },
},
});
// 2. delete the user from the repo
if (!repo) throw new Error("Repo not found or you are not the owner.");
const res = await prisma.repo.update({
where: {
id: repoId,
},
data: {
collaborators: { disconnect: { id: collaboratorId } },
},
});
return true;
}
async function star(_, { repoId }, { userId }) {
// make sure the repo is visible by this user
if (!userId) throw new Error("Not authenticated.");
let repo = await prisma.repo.findFirst({
where: {
id: repoId,
OR: [
{ owner: { id: userId || "undefined" } },
{ collaborators: { some: { id: userId || "undefined" } } },
{ public: true },
],
},
});
if (!repo) throw new Error("Repo not found.");
// 3. add the user to the repo
await prisma.repo.update({
where: {
id: repoId,
},
data: {
stargazers: { connect: { id: userId } },
},
});
return true;
}
async function unstar(_, { repoId }, { userId }) {
if (!userId) throw new Error("Not authenticated.");
// 1. find the repo
const repo = await prisma.repo.findFirst({
where: {
id: repoId,
},
});
// 2. delete the user from the repo
if (!repo) throw new Error("Repo not found.");
await prisma.repo.update({
where: {
id: repoId,
},
data: {
stargazers: { disconnect: { id: userId } },
},
});
return true;
}
async function updatePod(_, { id, repoId, input }, { userId }) {
if (!userId) throw new Error("Not authenticated.");
await ensureRepoEditAccess({ repoId, userId });
// if repoId has id, just update
let pod_found = await prisma.pod.findFirst({
where: {
id,
repo: {
id: repoId,
},
},
});
// or, return false and leave it dirty
if (!pod_found) return false;
const pod = await prisma.pod.update({
where: {
id,
},
data: {
...input,
parent: input.parent
? input.parent === "ROOT"
? { disconnect: true }
: {
connect: {
id: input.parent,
},
}
: undefined,
children: {
connect: input.children?.map((id) => ({ id })),
},
},
});
return true;
}
async function copyRepo(_, { repoId }, { userId }) {
// Find the repo
const repo = await prisma.repo.findFirst({
where: {
id: repoId,
},
include: {
pods: {
include: {
parent: true,
},
},
},
});
if (!repo) throw new Error("Repo not found");
// Create a new repo
const { id } = await createRepo(_, {}, { userId });
// update the repo name
await prisma.repo.update({
where: {
id,
},
data: {
name: repo.name ? `Copy of ${repo.name}` : `Copy of ${repo.id}`,
},
});
// Create new id for each pod
const sourcePods = repo.pods;
const idMap = await sourcePods.reduce(async (acc, pod) => {
const map = await acc;
const newId = await nanoid();
map.set(pod.id, newId);
return map;
}, Promise.resolve(new Map()));
// Update the parent/child relationship with their new ids
const targetPods = sourcePods.map((pod) => {
return {
...pod,
id: idMap.get(pod.id),
parent: pod.parent ? { id: idMap.get(pod.parent.id) } : undefined,
repoId: id,
parentId: pod.parentId ? idMap.get(pod.parentId) : undefined,
};
});
// Add all nodes without parent/child relationship to the new repo.
//
// TODO: it updates the parent/child relationship automatically somehow,maybe
// because the parentId? Try to figure out why, then refactor addPods method.
await prisma.pod.createMany({
data: targetPods.map((pod) => ({
...pod,
id: pod.id,
index: 0,
parent: undefined,
})),
});
return id;
}
/**
* Create yDoc snapshot upon request.
*/
async function addRepoSnapshot(_, { repoId, message }) {
const repo = await prisma.repo.findFirst({
where: { id: repoId },
include: {
owner: true,
collaborators: true,
},
});
if (!repo) throw Error("Repo not exists.");
if (!repo.yDocBlob) throw Error(`yDocBlob on ${repoId} not found`);
const snapshot = await prisma.yDocSnapshot.create({
data: {
id: await nanoid(),
yDocBlob: repo.yDocBlob,
message: message,
repo: { connect: { id: repoId } },
},
});
return snapshot.id;
}
/**
* Fetch yDoc snapshots for a repo.
*/
async function getRepoSnapshots(_, { repoId }) {
const snapshots = await prisma.yDocSnapshot.findMany({
where: { repo: { id: repoId } },
});
if (!snapshots) throw Error(`No snapshot exists for repo ${repoId}.`);
return snapshots.map((snapshot) => ({
...snapshot,
yDocBlob: JSON.stringify(snapshot.yDocBlob),
}));
}
export default {
Query: {
repo,
getDashboardRepos,
getRepoSnapshots,
},
Mutation: {
createRepo,
updateRepo,
deleteRepo,
copyRepo,
updatePod,
addEdge,
deleteEdge,
addCollaborator,
updateVisibility,
deleteCollaborator,
addRepoSnapshot,
star,
unstar,
},
};