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
|
const express = require('express');
const quoteDB = require('../../models/quote.js');
const router = express.Router();
const pendingQuote = quoteDB.pendingQuote;
const approvedQuote = quoteDB.quote;
router.get('/pending-quotes', async (req, res) => {
try {
const quotes = await pendingQuote.findAll();
res.json(quotes);
} catch (error) {
console.error('Error fetching quotes:', error);
res.status(500).send('Internal Server Error');
}
});
router.post('/approve-quote', async (req, res) => {
const { id } = req.body;
try {
const quote = await pendingQuote.findByPk(id);
if (quote) {
await approvedQuote.create({
author: quote.author,
authorImage: quote.authorImage,
quote: quote.quote,
year: quote.year,
submitter: quote.submitterID
});
await pendingQuote.destroy({ where: { id } });
res.status(200).send('Quote approved');
} else {
res.status(404).send('Quote not found');
}
} catch (error) {
console.error('Error approving quote:', error);
res.status(500).send('Internal Server Error');
}
});
router.post('/reject-quote', async (req, res) => {
const { id } = req.body;
try {
const quote = await pendingQuote.findByPk(id);
if (quote) {
await pendingQuote.destroy({ where: { id } });
res.status(200).send('Quote rejected');
} else {
res.status(404).send('Quote not found');
}
} catch (error) {
console.error('Error rejecting quote:', error);
res.status(500).send('Internal Server Error');
}
});
module.exports = router;
|