-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathSubmitController.js
152 lines (141 loc) · 3.95 KB
/
SubmitController.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
import Transfer from "../models/Transfer.js";
import { RPC, Eth, Bsc } from "../modules/index.js";
import { bsc, eth, feePercentage } from "../utils/config.js";
import { isValidBglAddress, isValidEthAddress, sha3 } from "../utils/index.js";
import { logger } from "../utils/logger.js";
export const bglToWbgl = async (req, res) => {
const data = req.body;
if (!data.hasOwnProperty("address") || !isValidEthAddress(data.address)) {
res.status(400).json({
status: "error",
field: "address",
message: "No address or invalid ethereum address provided.",
});
return;
}
const chain =
data.hasOwnProperty("chain") && data.chain !== "eth" ? "bsc" : "eth";
const Chain = chain === "eth" ? Eth : Bsc;
try {
let transfer = await Transfer.findOne({
type: "bgl",
chain,
to: data.address,
}).exec();
if (!transfer) {
const bglAddress = await RPC.createAddress();
transfer = new Transfer({
id: sha3("bgl" + chain + bglAddress + data.address),
type: "bgl",
chain,
from: bglAddress,
to: data.address,
});
}
transfer.markModified("type");
await transfer.save();
res.json({
status: "ok",
id: transfer.id,
bglAddress: transfer.from,
balance: await Chain.getWBGLBalance(),
feePercentage: feePercentage,
});
} catch (e) {
console.error(`Error: couldn't reach either RPC server or mongodb `, e);
logger.error(`Error: couldn't reach either RPC server or mongodb `, e);
res.status(400).json({
status: "error",
message: "Network is likely to be down.",
});
return;
}
};
export const wbglToBgl = async (req, res) => {
const data = req.body;
if (
!data.hasOwnProperty("ethAddress") ||
!isValidEthAddress(data.ethAddress)
) {
res.status(400).json({
status: "error",
field: "ethAddress",
message: "No ethereum address or invalid address provided.",
});
return;
}
try {
if (
!data.hasOwnProperty("bglAddress") ||
!(await isValidBglAddress(data.bglAddress))
) {
res.status(400).json({
status: "error",
field: "bglAddress",
message: "No Bitgesell address or invalid address provided.",
});
return;
}
if (
!data.hasOwnProperty("signature") ||
typeof data.signature !== "string"
) {
res.status(400).json({
status: "error",
field: "signature",
message: "No signature or malformed signature provided.",
});
return;
}
const chain =
data.hasOwnProperty("chain") && data.chain !== "eth" ? "bsc" : "eth";
console.log("data.chain :", data.chain);
const Chain = chain === "eth" ? Eth : Bsc;
if (
data.ethAddress.toLowerCase() !==
Chain.web3.eth.accounts.recover(data.bglAddress, data.signature).toLowerCase()
) {
res.status(400).json({
status: "error",
field: "signature",
message: "Signature does not match the address provided.",
});
return;
}
let transfer = await Transfer.findOne({
type: "wbgl",
chain,
from: data.ethAddress,
}).exec();
if (!transfer) {
transfer = new Transfer({
id: sha3("wbgl" + chain + data.ethAddress + data.bglAddress),
type: "wbgl",
chain,
from: data.ethAddress,
to: data.bglAddress,
});
}
transfer.markModified("type");
await transfer.save();
res.json({
status: "ok",
id: transfer.id,
address: chain === "eth" ? eth.account : bsc.account,
balance: await RPC.getBalance(),
feePercentage: feePercentage,
});
} catch (e) {
console.error(`Error: network related error `, e);
logger.error(`Error: network related error `, e);
res.status(400).json({
status: "error",
message: "Network is likely to be down.",
});
return;
}
};
// Borrow from:
// - coinbase
// - Binance bridge
// - base off issues