Skip to content

Commit 98e982a

Browse files
authored
Merge pull request #18 from solana-developers/adding-transactions
updating LastTransaction endpoint
2 parents 35498ce + 337dd24 commit 98e982a

File tree

2 files changed

+32
-16
lines changed

2 files changed

+32
-16
lines changed

src/db/transactions.js

+27-12
Original file line numberDiff line numberDiff line change
@@ -11,20 +11,35 @@ const createTransaction = async (signature, ip_address, wallet_address, github_u
1111
return result.rows[0];
1212
};
1313

14-
const getLastTransaction = async ({ wallet_address, github_username, ip_address }) => {
15-
const query = `
16-
SELECT * FROM faucet.transactions
17-
WHERE
18-
(wallet_address = $1) OR
19-
(github_username = $2) OR
20-
(ip_address = $3)
21-
ORDER BY timestamp DESC
22-
LIMIT 1;
23-
`;
14+
const getLastTransaction = async ({ wallet_address, github_id, ip_address, queryLimit }) => {
15+
let query;
16+
let values;
17+
18+
if (github_id) {
19+
query = `
20+
SELECT * FROM faucet.transactions
21+
WHERE
22+
(wallet_address = $1) OR
23+
(ip_address = $2) OR
24+
(github_username = $3)
25+
ORDER BY timestamp DESC
26+
LIMIT $4;
27+
`;
28+
values = [wallet_address, ip_address, github_id, queryLimit];
29+
} else {
30+
query = `
31+
SELECT * FROM faucet.transactions
32+
WHERE
33+
(wallet_address = $1) OR
34+
(ip_address = $2)
35+
ORDER BY timestamp DESC
36+
LIMIT $3;
37+
`;
38+
values = [wallet_address, ip_address, queryLimit];
39+
}
2440

25-
const values = [wallet_address || null, github_username || null, ip_address || null];
2641
const result = await db.query(query, values);
27-
return result.rows[0]; // Returns the most recent transaction found
42+
return result.rows;
2843
};
2944

3045
// Not currently needed, but may be used for implementing TTL

src/routes/transactionsRoute.js

+5-4
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,15 @@ router.post('/transactions', async (req, res, next) => {
2222

2323
// GET the most recent transaction based on wallet, GitHub or IP
2424
router.get('/transactions/last', async (req, res, next) => {
25-
const { wallet_address, github_username, ip_address } = req.query;
25+
const { wallet_address, github_id, ip_address, count } = req.query;
2626

27-
if (!wallet_address && !github_username && !ip_address) {
28-
return res.status(400).json({ message: 'At least one parameter (wallet_address, github_username, or ip_address) is required.' });
27+
if (!wallet_address || !ip_address) {
28+
return res.status(400).json({ message: 'At least one parameter (wallet_address, or ip_address) is required.' });
2929
}
30+
const queryLimit = !count ? 1 : Number(count);
3031

3132
try {
32-
const lastTransaction = await transactions.getLastTransaction({ wallet_address, github_username, ip_address });
33+
const lastTransaction = await transactions.getLastTransaction({ wallet_address, github_id, ip_address, queryLimit });
3334

3435
if (lastTransaction) {
3536
res.status(200).json(lastTransaction);

0 commit comments

Comments
 (0)