-
Notifications
You must be signed in to change notification settings - Fork 0
/
square.js
54 lines (46 loc) · 1.43 KB
/
square.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
const axios = require('axios');
async function convertCurrency(apiKey, amount, fromCurrency, priceType) {
const url = 'https://square.codz.dev/api/convert';
const data = {
'api_key': apiKey,
'amount': amount,
'from': fromCurrency,
'price': priceType
};
try {
const response = await axios.post(url, data, {
headers: {
'Content-Type': 'application/json'
}
});
if (response.status === 200) {
return response.data;
} else {
throw new Error(`Request failed. Error code: ${response.status}`);
}
} catch (error) {
throw new Error(`Error during the request: ${error.message}`);
}
}
async function getCurrencies(apiKey) {
const url = 'https://square.codz.dev/api/currencies';
try {
const response = await axios.get(url, {
params: { api_key: apiKey },
headers: {
'Content-Type': 'application/json'
}
});
if (response.data.success) {
return response.data.currencies;
} else {
throw new Error(`Failed to retrieve currencies. Error: ${response.data.error}`);
}
} catch (error) {
throw new Error(`Error during the request: ${error.message}`);
}
}
module.exports = {
convertCurrency,
getCurrencies,
};