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
|
const bcrypt = require('bcryptjs');
const jwt = require('jsonwebtoken');
const Mutations = {
async createItem(parent, args, ctx, info) {
// TODO: Check if they are logged in
const item = await ctx.db.mutation.createItem(
{
data: {
...args,
},
},
info
);
console.log(item);
return item;
},
updateItem(parent, args, ctx, info) {
// first take a copy of the updates
const updates = { ...args };
// remove the ID from the updates
delete updates.id;
// run the update method
return ctx.db.mutation.updateItem(
{
data: updates,
where: {
id: args.id,
},
},
info
);
},
async deleteItem(parent, args, ctx, info) {
const where = { id: args.id };
// 1. find the item
const item = await ctx.db.query.item({ where }, `{ id title}`);
// 2. Check if they own that item, or have the permissions
// TODO
// 3. Delete it!
return ctx.db.mutation.deleteItem({ where }, info);
},
async signup(parent, args, ctx, info) {
// lowercase their email
args.email = args.email.toLowerCase();
// hash their password
const password = await bcrypt.hash(args.password, 10);
// create the user in the database
const user = await ctx.db.mutation.createUser(
{
data: {
...args,
password,
permissions: { set: ['USER'] },
},
},
info
);
// create the JWT token for them
const token = jwt.sign({ userId: user.id }, process.env.APP_SECRET);
// We set the jwt as a cookie on the response
ctx.response.cookie('token', token, {
httpOnly: true,
maxAge: 1000 * 60 * 60 * 24 * 365, // 1 year cookie
});
// Finalllllly we return the user to the browser
return user;
},
async signin(parent, { email, password }, ctx, info) {
// 1. check if there is a user with that email
const user = await ctx.db.query.user({ where: { email } });
if (!user) {
throw new Error(`No such user found for email ${email}`);
}
// 2. Check if their password is correct
const valid = await bcrypt.compare(password, user.password);
if (!valid) {
throw new Error('Invalid Password!');
}
// 3. generate the JWT Token
const token = jwt.sign({ userId: user.id }, process.env.APP_SECRET);
// 4. Set the cookie with the token
ctx.response.cookie('token', token, {
httpOnly: true,
maxAge: 1000 * 60 * 60 * 24 * 365,
});
// 5. Return the user
return user;
},
};
module.exports = Mutations;
|