-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.js
53 lines (40 loc) · 1.86 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
const express = require('express');
const app = express();
var bodyParser = require('body-parser');
const port = 3000;
app.use(express.static('public'));
// parse application/x-www-form-urlencoded
app.use(bodyParser.urlencoded({ extended: false }));
// parse application/json
app.use(bodyParser.json());
const db2 = require('./database');
const connection_string = `Driver=IBM i Access ODBC Driver;System=dev400.cmaontheweb.com;UID=NODEDEV;Password=n0d32020`;
app.set('view engine', 'pug')
app.get('/listpatients', async (req, res) => {
const results = await db2.executeStatement(`select * from patient.info`);
res.render('listpatients', {listpatients: results});
});
app.get('/listpatients/:pnumber', async (req, res) => {
const pnumber = req.params.pnumber;
const patresults = await db2.executeStatement(`select * from patient.info where pnumber = ?`, [pnumber]);
const histresults = await db2.executeStatement(`select * from patient.history where hpnumber = ?`, [pnumber]);
res.render('patient', {patient: patresults, history: histresults});
});
app.get('/temp', async (req, res) => {
const results = await db2.executeStatement(`select * from patient.info`);
res.json(results)
});
app.get('/listpatients', async (req, res) => {
res.render('listpatients', {search: true});
});
app.post('/listpatients', async (req, res) => {
var listpatients = undefined;
var searchName = req.body.patname;
if (searchName !== undefined) {
searchName = searchName.toUpperCase();
listpatients = await db2.executeStatement(`select * from patient.info where upper(PFirstname) concat upper(PLastname) like '%' concat ? concat '%'`, [searchName]);
}
res.render('listpatients', {search: true, listpatients});
})
db2.connect(connection_string);
app.listen(port, () => console.log(`Example app listening at http://localhost:${port}`));