-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
279 lines (255 loc) · 7.57 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
const express = require('express') //import express
const bodyParser = require('body-parser') //deklarasi body-parser
const req = require('express/lib/request')
const app = express() //deklarasi variabel express
const port = 8080 //deklarasi port
app.use(express.json())
app.use(bodyParser.urlencoded({ extended: true }))
app.get('/', (req, res) => { // endpoint '/'
res.send("Hello Programers!")
})
app.get('/orang/:nama', (req, res) => { //endpoint get untuk mendapatakan nama
var namaOrang = req.params.nama //merequest nama pada endpoint untuk ditampilkan
res.end('Menampilkan nama siswa:' + namaOrang)//menggunakan res.end untuk mengakhiri respon dan menampilkan hasil
})
app.post('/orang', (req, res) => {//endpoint post untuk membuat orang
var namaOrang = req.body.nama//merequest nama menggunakan body pada endpoint untuk ditampilkan
var alamat = req.body.alamat//merequest alamat menggunakan body pada endpoint untuk ditampilkan yang key sudah di deklrasikan di postman
res.end('Menampilkan orang baru, atas nama: ' + namaOrang + ', yang beralamat di ' + alamat)//menggunakan res.end untuk mengakhiri respons dan menampilkan hasil
})
app.delete('/orang/:id', (req, res) => { //endpoint delete untuk menghapus orang dengan menggunakan id
var id = req.params.id // merequest id menggunakan params pada endpoint untuk ditampilkan
var namaOrang = req.body.nama// merequest nama menggunakan body pada endpoint untuk ditampilkan
res.end('ID' + id + ' telah dihapus, atas nama ' + namaOrang)//menggunakan res.end untuk mengakhiri respon dan menampilkan hasil
});
app.put('/orang/:id', (req, res) => {//endpoint put untuk update orang menggunakan id
var id = req.params.id// merequest id menggunakan params pada endpoint untuk ditampilkan
var namaOrang = req.body.nama// merequest nama menggunakan body pada endpoint untuk ditampilkan
var alamat = req.body.alamat// merequest alamat menggunakan body pada endpoint untuk ditampilkan
res.end('Seseorang dengan ID' + id + ', telah terupdate')//menggunakan res.end untuk mengakhiri respon dan menampilkan hasil
});
// data dummy
let nextId = 4;
const books = [{
id: 1,
title: "The First",
year: 2019
},
{
id: 2,
title: "The Second",
year: 2020
},
{
id: 3,
title: "The Third",
year: 2021
},
];
app.get("/books", (req, res) => {
res.send({
message: "Berhasil menampilkan data buku",
data: {
books
}
})
})
app.post("/books", (req, res) => {
const book = {
id: nextId++,
title: req.body.title,
year: req.body.year,
}
books.push(book);
res.send({
message: "Berhasil menambahkan buku",
data: {
newBook: book,
totalBooks: books.length,
}
})
})
//update data
app.put("/books/:id", (req, res) => {
const id = req.params.id;
const book = books.find(book => book.id == id);
if (!book) {
res.status(404).send({
message: "Buku tidak ditemukan"
})
} else {
book.title = req.body.title;
book.year = req.body.year;
res.send({
message: "Berhasil mengubah buku",
data: {
book,
totalBooks: books.length,
}
})
}
})
//delete data
app.delete("/books/:id", (req, res) => {
const id = req.params.id;
const book = books.find(book => book.id == id);
if (!book) {
res.status(404).send({
message: "Buku tidak ditemukan"
})
} else {
const index = books.indexOf(book);
books.splice(index, 1);
res.send({
message: "Berhasil menghapus buku",
data: {
book,
totalBooks: books.length,
}
})
}
})
// konversi suhu
//convert celsius to fahrenheit, kelvin, reamur using express
app.get("/convert/celcius/:suhu", (req, res) => {
const suhu = parseInt(req.params.suhu);
const fahrenheit = suhu * 1.8 + 32;
const kelvin = suhu + 273;
const reamur = suhu * 0.8;
res.send({
message: "Berhasil mengubah suhu",
data: {
fahrenheit,
kelvin,
reamur,
}
})
})
app.get("/convert/fahrenheit/:suhu", (req, res) => {
const suhu = parseInt(req.params.suhu);
const celsius = (suhu - 32) / 1.8;
const kelvin = (suhu + 459.67) * 5 / 9;
const reamur = (suhu - 32) * 4 / 9;
res.send({
message: "Berhasil mengubah suhu",
data: {
celsius,
kelvin,
reamur,
}
})
})
app.get("/convert/kelvin/:suhu", (req, res) => {
const suhu = parseInt(req.params.suhu);
const celsius = suhu - 273;
const fahrenheit = suhu * 1.8 - 459.67;
const reamur = suhu * 0.8 - 273;
res.send({
message: "Berhasil mengubah suhu",
data: {
celsius,
fahrenheit,
reamur,
}
})
})
//reamur
app.get("/convert/reamur/:suhu", (req, res) => {
const suhu = parseInt(req.params.suhu);
const celsius = suhu * 1.25;
const fahrenheit = suhu * 2.25 + 32;
const kelvin = suhu * 1.25 + 273;
res.send({
message: "Berhasil mengubah suhu",
data: {
celsius,
fahrenheit,
kelvin,
}
})
})
//convert decimal, binary, octal, hexadecimal using express
app.get("/convert/decimal/:angka", (req, res) => {
const angka = parseInt(req.params.angka);
const binary = angka.toString(2);
const octal = angka.toString(8);
const hexadecimal = angka.toString(16);
res.send({
message: "Berhasil mengubah angka",
data: {
binary,
octal,
hexadecimal,
}
})
})
app.get("/convert/binary/:angka", (req, res) => {
const angka = parseInt(req.params.angka);
const decimal = parseInt(angka, 2);
const octal = parseInt(angka, 8);
const hexadecimal = parseInt(angka, 16);
res.send({
message: "Berhasil mengubah angka",
data: {
decimal,
octal,
hexadecimal,
}
})
})
app.get("/convert/octal/:angka", (req, res) => {
const angka = parseInt(req.params.angka);
const decimal = parseInt(angka, 8);
const binary = parseInt(angka, 2);
const hexadecimal = parseInt(angka, 16);
res.send({
message: "Berhasil mengubah angka",
data: {
decimal,
binary,
hexadecimal,
}
})
})
app.get("/convert/hexadecimal/:angka", (req, res) => {
const angka = parseInt(req.params.angka);
const decimal = parseInt(angka, 16);
const binary = parseInt(angka, 2);
const octal = parseInt(angka, 8);
res.send({
message: "Berhasil mengubah angka",
data: {
decimal,
binary,
octal,
}
})
})
//calculate BMI using express
app.post("/bmi", (req, res) => {
const { weight, height } = req.body;
const bmi = weight / (height * height);
//calculate category
let category;
if (bmi < 18.5) {
category = "Underweight";
} else if (bmi >= 18.5 && bmi <= 24.9) {
category = "Normal";
} else if (bmi >= 25 && bmi <= 29.9) {
category = "Overweight"
} else if (bmi <= 30) {
category = "Obese"
} else {
category = "Error"
}
res.send({
message: "Berhasil menghitung BMI",
data: {
bmi,
category,
}
})
})
app.listen(port, () => {//app.listen untuk memulai server pada port 8080
console.log(`Server di port ${port}`)
})