-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathupgradePaymentController.js
94 lines (82 loc) · 2.67 KB
/
upgradePaymentController.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
const {
get_all_upgrade_payment,
get_upgrade_payment_by_id,
add_upgrade_payment,
upgrade_upgrade_payment,
} = require("../services/upgradePaymentService");
const messages = {
notFound: "No Data Found",
serverError: "Internal Server Error",
};
const getAllPaymentForAccountUpgradeAndTrendingLevel = async (req, res) => {
try {
const data = await get_all_upgrade_payment();
if (data.length > 0) {
return res.status(200).json(data);
} else {
return res.status(404).json({ message: messages.notFound });
}
} catch (error) {
return res.status(500).json({ message: messages.serverError });
}
};
const addPaymentForAccountUpgradeAndTrendingLevel = (req, res) => {
const data = add_upgrade_payment(req.body);
return res.json(data);
};
const getOnePaymentForAccountUpgradeAndTrendingLevel = async (req, res) => {
const updatePaymentId = req.params.upgradePaymentId;
try {
const data = await get_upgrade_payment_by_id(updatePaymentId);
if (data.data) {
return res.status(200).json(data);
} else {
return res.status(404).json({ message: messages.notFound });
}
} catch (error) {
console.error(error);
return res.status(500).json({ message: messages.serverError });
}
};
const updatePaymentForAccountUpgradeAndTrendingLevel = async (req, res) => {
const updatePaymentId = req.params.upgradePaymentId;
try {
const data = await upgrade_upgrade_payment(updatePaymentId, req.body);
if (data.data) {
return res.status(200).json(data);
} else {
return res.status(404).json({ message: messages.notFound });
}
} catch (error) {
console.error(error);
return res.status(500).json({ message: messages.serverError });
}
};
const upgradePaymentDisableEnable = async (req, res) => {
const updatePaymentId = req.params.upgradePaymentId;
try {
const existingData = await get_upgrade_payment_by_id(updatePaymentId);
if (existingData.error) {
return res.status(500).json({ message: messages.serverError });
}
const updatedData = await upgrade_upgrade_payment(updatePaymentId, {
...existingData,
isActive: !existingData.data.isActive,
});
if (updatedData.data) {
return res.status(200).json(updatedData);
} else {
return res.status(404).json({ message: messages.notFound });
}
} catch (error) {
console.error(error);
return res.status(500).json({ message: messages.serverError });
}
};
module.exports = {
getAllPaymentForAccountUpgradeAndTrendingLevel,
getOnePaymentForAccountUpgradeAndTrendingLevel,
addPaymentForAccountUpgradeAndTrendingLevel,
updatePaymentForAccountUpgradeAndTrendingLevel,
upgradePaymentDisableEnable,
};