-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathqueries.js
159 lines (148 loc) · 2.84 KB
/
queries.js
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
const Pool = require('pg').Pool;
const pool = new Pool({
user: 'me',
host: 'localhost',
database: 'myspellbook_api',
password: 'password',
port: 5432,
});
const userId = 44808;
const getCharacters = (request, response) => {
pool.query(
`SELECT
c.name,
c.id,
c.level,
description,
cc.id AS classId,
ss.first,
ss.second
FROM characters c
JOIN class_code cc ON c.class = cc.id
LEFT JOIN spell_slots ss ON c.id = ss.id
ORDER BY id ASC`, (error, results) => {
if (error) {
throw error
}
data = convertSpellSlotsToObject(results.rows);
response.status(200).json(results.rows)
})
};
const getSingleCharacter = (req, res) => {
pool.query(
`SELECT
c.*,
ss.first,
ss.second
description
FROM characters c
JOIN class_code cc ON c.class = cc.id
JOIN spell_slots ss ON c.id = ss.id
WHERE c.id = $1`, [
req.body.id
], (err, results) => {
res.status(200).json(results.rows);
}
)
};
const getClassDetails = (req, res) => {
pool.query(
`SELECT *
FROM class_code
ORDER BY description ASC`, (error,results) => {
if (error) {
throw error;
}
res.status(200).json(results.rows);
})
};
const insertChar = (req, res) => {
let data = req.body;
pool.query(
`INSERT INTO characters
(user_id, name, level, class)
VALUES ($1,$2,$3,$4)`, [
44808,
data.name,
data.level,
data.classId
], (error, results) => {
if(error) {
throw error;
}
res.status(200).json(`Success! ${data.name} has been created`);
})
};
const updateCharacter = (req, res) => {
let data = req.body;
pool.query(
`UPDATE characters SET
name = $3,
level = $4,
class = $5
WHERE user_id = $1
AND id = $2`, [
userId,
data.id,
data.name,
data.level,
data.classId
], (err, results) => {
if (err) {
throw err;
}
res.status(200).json(`Success! ${data.name} has been updated`);
})
};
const deleteCharacter = (req, res) => {
let id = req.body.id;
pool.query(
`DELETE
FROM characters
WHERE id = $1`, [
id
], (err, results) => {
if (err) {
throw err;
}
res.status(200).json('Character deleted');
}
)
};
// TODO this will have to expand as we add additional available spell levels
const getCharacterSpellSlots = (req, res) => {
const id = req.body.id;
pool.query(
`SELECT first,
second
FROM spell_slots
WHERE id = $1`, [
id,
], (err, results) => {
if(err) {
throw err;
}
res.status(200).json(results.rows);
}
)
};
function convertSpellSlotsToObject(data) {
data.forEach((e, i) => {
e.spellSlots = {
first: e['first'],
second: e['second'],
};
delete e['first'];
delete e['second'];
});
return data;
}
module.exports = {
getCharacters,
getSingleCharacter,
getClassDetails,
insertChar,
updateCharacter,
deleteCharacter,
getCharacterSpellSlots,
};