-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
125 lines (93 loc) · 2.87 KB
/
index.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
const express = require('express');
const mysql = require('mysql');
const app = express();
const bodyParser = require('body-parser');
app.set('view engine', 'ejs')
app.use(express.static('public'));
app.use(bodyParser.urlencoded({extended:false}))
const db = mysql.createConnection({
localhost: 'localhost',
user: 'root',
password: '',
database:'node-me',
})
db.connect(function(err) {
if (err) {
throw err;
}
//Select only "name" and "address" from "customers":
});
app.get('/',(req,res)=> {
db.query("SELECT id,unit_name,monthly_rent FROM rooms", function (err, result, fields) {
if (err) {
throw err;
}
else {
console.log(result.length);
}
// res.send(result);
res.render('pages/index', { results:result });
});
})
app.get('/edit/:id', (req, res,next) => {
const id = req.params.id;
const sql = 'SELECT id,unit_name,monthly_rent FROM rooms WHERE id = ?';
db.query(sql,[id],(err,result,fields)=> {
if (err) throw err;
console.log(' going to update',result[0].id);
res.render('pages/edit',{data:result})
});
})
app.get('/single-view/:id', (req, res,next) => {
const id = req.params.id;
const sql = 'SELECT id,unit_name,monthly_rent FROM rooms WHERE id = ?';
db.query(sql,[id],(err,result,fields)=> {
if (err) {
throw err;
}
else {
console.log(result);
res.render('pages/single-view',{data:result})
}
});
})
app.post('/edit-single/:id', (req, res, next) => {
//res.send(req.body);
const id = req.params.id;
const sql = 'UPDATE rooms SET unit_name=?,monthly_rent=? WHERE id=?';
db.query(sql,[req.body.unit_name,req.body.monthly_rent,id],(err,result,fields)=> {
if (err) throw err;
console.log('updated t',id);
res.redirect('/')
//res.render('pages/edit',{data:result})
});
})
app.get('/delete/:id', (req, res,next) => {
const id = req.params.id;
const sql = 'DELETE FROM rooms WHERE id = ?';
db.query(sql,[id],(err,result)=> {
if (err) throw err;
console.log(result.affectedRows + ' room deleted');
res.redirect('/');
});
})
app.get('/new',(req,res)=> {
res.render('pages/new');
})
app.post('/new', (req, res) => {
const unit_name = req.body.unit_name;
const monthly_rent = req.body.monthly_rent;
const sql = `INSERT INTO rooms (unit_name,monthly_rent) VALUES ("${unit_name}","${monthly_rent}")`;
db.query(sql, (err,result) => {
if (err) {
throw err;
console.log()
} else {
console.log('added ',result.affectedRows);
res.redirect('/');
}
});
})
app.listen('3000', () => {
console.log('locoalhost:3000');
});