-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.js
303 lines (267 loc) · 8.85 KB
/
app.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
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
// Setting up dependencies
const mysql = require("mysql2");
const inquirer = require("inquirer");
const cTable = require("console.table");
require("dotenv").config();
// Setting up env for security.
const connection = mysql.createConnection({
host: "localhost",
port: process.env.DB_PORT,
user: process.env.DB_USER,
password: process.env.DB_PASSWORD,
database: process.env.DB_DB,
multipleStatements: true,
});
// Creating a connection and initiating the initial question prompt.
connection.connect(function(err) {
if (err) throw err;
start();
});
function start() {
inquirer.prompt({
name:"action",
type: "list",
message: "What would you like to do?",
choices: [
"View All Employees",
"View All Employees by Department",
"View All Employees by Manager",
"Add Employee",
"Update Employee Role",
"View All Roles",
"View All Departments",
"Add Role",
"Add Department",
"Quit"
]
}).then(function(response) {
switch(response.action) {
case "View All Employees":
allEmployees("ORDER BY id");
break;
case "View All Employees by Department":
employeeByDept();
break;
case "View All Employees by Manager":
employeeByManage();
break;
case "Add Employee":
addEmployee();
break;
case "Update Employee Role":
updateRole();
break;
case "View All Roles":
viewAllRoles();
break;
case "View All Departments":
viewAllDepts();
break;
case "Add Role":
addRole();
break;
case "Add Department":
addDept();
break;
case "Quit":
connection.end();
break;
};
});
};
const query = `SELECT e.id AS ID, e.first_name AS 'First Name', e.last_name AS 'Last Name', r.title AS Role, d.name AS Department, r.salary AS Salary, CONCAT(m.first_name,' ',m.last_name) AS Manager FROM employee e LEFT JOIN role r ON e.role_id = r.id LEFT JOIN department d ON r.department_id = d.id LEFT JOIN employee m ON e.manager_id = m.id`;
// I realize that the way I am doing this is setting me up to be vulnerable to SQL injections. I have been trying to get it to work with placeholders, but I keep getting an error. I will keep it this way for now.
// Function to generate all employees table
function allEmployees(request) {
connection.query(`${query} ${request}`, function(err, res)
{
if (err) throw err;
console.table(res);
start();
});
};
// Function to query for employees by dept
function employeeByDept() {
deptChoice().then(([rows]) => {
const departments = rows.map(r => r.name)
inquirer.prompt({
name:"department",
type: "list",
message: "Please select a Department.",
choices: departments
}).then(function(response) {
allEmployees(`WHERE d.name = "${response.department}"`)
})
})
}
// Function to query employees by manager
function employeeByManage() {
employeeChoice().then(([rows]) => {
let employees = rows.map(r => ({name: r.first_name + " " + r.last_name, value: r.id}));
let managerIds = rows.map(r => r.manager_id);
let idArr = [...new Set(managerIds)];
let managers = employees.filter(e => idArr.includes(e.value));
inquirer.prompt({
name:"manager",
type: "list",
message: "Please select a Manager.",
choices: managers
}).then(function(response) {
allEmployees(`WHERE e.manager_id = "${response.manager}"`);
});
});
};
// Function to add an employee. Tried to get some help with having the results come up as names, but after many hours spent and a couple of office hours and tutoring sessions, I will go with this for now.
function addEmployee() {
employeeChoice().then(([rows]) => {
let roleId = rows.map(r => r.role_id);
let employees = rows.map(r => r.id);
employees.push("null");
inquirer.prompt([
{
name:"first_name",
type:"input",
message:"What is the employee's first name?"
},
{
name:"last_name",
type:"input",
message:"What is the employee's last name?"
},
{
name:"role_id",
type:"list",
message:"Please select a role ID",
choices: roleId
},
{
name:"manager",
type:"list",
message:"Please select a manager ID?",
choices: employees
}
]).then(function(response) {
createEmployee(response.first_name, response.last_name, response.role_id, response.manager)
})
})
}
// Function to update an employee's role
function updateRole() {
employeeChoice().then(([rows]) => {
let employees = rows.map(r => ({name: r.first_name + " " + r.last_name, value: r.id}));
let roleId = rows.map(r => r.role_id);
inquirer.prompt([
{
name:"employee",
type:"list",
message:"Which employee which you like to update?",
choices: employees
},
{
name:"role_id",
type:"list",
message:"Please select a new role ID.",
choices: roleId
}
]).then(function(response) {
updateemployeeRole(response.employee, response.role_id);
})
})
}
// Function to view all roles
function viewAllRoles() {
roleChoice().then(([rows]) => {
console.table(rows);
start();
})
}
// Function to view all departments
function viewAllDepts() {
deptChoice().then(([rows]) => {
console.table(rows);
start();
})
}
// Function to add a role
function addRole() {
deptIdChoice().then(([rows]) => {
let deptId = rows.map(r => r.id);
inquirer.prompt([
{
name:"title",
type:"input",
message:"What is the role title?",
},
{
name:"salary",
type:"input",
message:"What is the role's salary?",
},
{
name:"department_id",
type:"list",
message:"Select the department ID for this role.",
choices: deptId
},
]).then(function(response) {
addNewRole(response.title, response.salary, response.department_id);
})
})
}
// Function to add a department
function addDept() {
inquirer.prompt([
{
name:"name",
type:"input",
message:"What is the department name?",
},
]).then(function(response) {
addNewDept(response.name);
})
}
// Queries
function deptChoice() {
return connection.promise().query("SELECT name FROM department")
}
function deptIdChoice() {
return connection.promise().query("SELECT id FROM department")
}
function employeeChoice() {
return connection.promise().query("SELECT * FROM employee")
}
function roleChoice() {
return connection.promise().query("SELECT title FROM role")
}
function createEmployee(first_name, last_name, role_id, manager) {
if (manager === "null") {
connection.query("INSERT INTO employee (first_name, last_name, role_id) VALUES (?, ?, ?)", [`${first_name}`, `${last_name}`, `${role_id}`], function(err,res) {
if (err) throw err;
start();
}
)
} else {
connection.query("INSERT INTO employee (first_name, last_name, role_id, manager_id) VALUES (?, ?, ?, ?)", [`${first_name}`, `${last_name}`, `${role_id}`, `${manager}`], function(err,res) {
if (err) throw err;
start();
})
}
}
function updateemployeeRole(employee_id, role_id) {
connection.query("UPDATE employee SET role_id = ? WHERE id = ?", [`${role_id}`, `${employee_id}`], function (err, res) {
if (err) throw err;
start();
})
}
function addNewRole(title, salary, department_id) {
connection.query("INSERT INTO role (title, salary, department_id) VALUES (?, ?, ?)", [`${title}`, `${salary}`, `${department_id}`], function (err, res) {
if (err) throw err;
start();
})
}
function addNewDept(name) {
connection.query("INSERT INTO department (name) VALUES (?)", [`${name}`], function (err, res) {
if (err) throw err;
start();
})
}