105 lines
3.8 KiB
JavaScript
Raw Normal View History

2024-09-16 17:13:23 -05:00
import axios from "axios";
2024-09-18 14:59:04 -05:00
import appConfig from "@/config/appConfig";
import { getLightningAddressByName } from "@/db/models/lightningAddressModels";
import { kv } from '@vercel/kv';
2024-09-16 17:13:23 -05:00
2024-10-02 17:27:38 -05:00
const PLEBDEVS_API_KEY = process.env.PLEBDEVS_API_KEY;
const BACKEND_URL = process.env.BACKEND_URL;
2024-09-16 17:13:23 -05:00
export default async function handler(req, res) {
2024-10-02 17:27:38 -05:00
// make sure api key is in authorization header
const apiKey = req.headers['authorization'];
2024-10-02 17:31:57 -05:00
if (!apiKey || apiKey !== PLEBDEVS_API_KEY) {
2024-10-02 17:27:38 -05:00
res.status(401).json({ error: 'Unauthorized' });
return;
}
2024-09-16 17:13:23 -05:00
try {
2024-09-18 14:59:04 -05:00
const { amount, description_hash, zap_request=null, name } = req.body;
// Find the custom lightning address
let foundAddress = null;
2024-09-18 14:59:04 -05:00
const customAddress = appConfig.customLightningAddresses.find(addr => addr.name === name);
if (customAddress) {
foundAddress = customAddress;
} else {
foundAddress = await getLightningAddressByName(name);
}
if (!foundAddress) {
2024-09-18 14:59:04 -05:00
res.status(404).json({ error: 'Lightning address not found' });
return;
}
// Check if amount is within allowed range
const minSendable = foundAddress.minSendable || appConfig.defaultMinSendable || 1;
const maxSendable = foundAddress.maxSendable || appConfig.defaultMaxSendable || Number.MAX_SAFE_INTEGER;
2024-09-18 14:59:04 -05:00
if (amount < minSendable || amount > maxSendable) {
res.status(400).json({ error: 'Amount out of allowed range' });
return;
}
// Check if the custom address allows zaps
if (zap_request && !foundAddress.allowsNostr) {
2024-09-18 14:59:04 -05:00
res.status(400).json({ error: 'Nostr zaps not allowed for this address' });
return;
}
2024-11-06 17:10:19 -06:00
const response = await axios.post(`https://${foundAddress.lndHost}:${foundAddress.lndPort}/v1/invoices`, {
2024-09-18 14:59:04 -05:00
value_msat: amount,
description_hash: description_hash
2024-09-16 17:13:23 -05:00
}, {
headers: {
'Grpc-Metadata-macaroon': foundAddress.invoiceMacaroon,
2024-09-16 17:13:23 -05:00
}
});
const invoice = response.data.payment_request;
const expiry = response.data.expiry;
2024-11-06 17:24:36 -06:00
const paymentHash = Buffer.from(response.data.r_hash, 'base64');
2024-11-06 17:17:25 -06:00
const paymentHashHex = paymentHash.toString('hex');
2024-09-16 17:13:23 -05:00
// If this is a zap, store verification URL and zap request in Redis
if (zap_request && foundAddress.allowsNostr) {
2024-11-08 13:54:33 -06:00
console.log('Storing zap request in Redis');
2024-09-18 14:59:04 -05:00
const zapRequest = JSON.parse(zap_request);
const verifyUrl = `${BACKEND_URL}/api/lightning-address/verify/${name}/${paymentHashHex}`;
2024-11-08 13:54:33 -06:00
console.log('Verify URL', verifyUrl);
2024-11-08 13:54:33 -06:00
// Store in Redis
await kv.set(`invoice:${paymentHashHex}`, {
verifyUrl,
zapRequest,
name,
invoice,
foundAddress,
settled: false
2024-11-08 13:54:33 -06:00
}, { ex: expiry || 86400 });
2024-11-08 14:08:06 -06:00
// Trigger the polling endpoint without waiting for it
fetch(`${BACKEND_URL}/api/invoices/short-poll`, {
headers: {
'Authorization': PLEBDEVS_API_KEY
}
}).catch(error => {
console.error('Error triggering polling:', error);
2024-11-08 14:08:06 -06:00
});
2024-11-08 14:08:06 -06:00
// Return response immediately
res.status(200).json({
invoice,
payment_hash: paymentHashHex,
verify_url: verifyUrl
});
return;
2024-09-16 17:13:23 -05:00
}
// For non-zap requests, send response immediately
2024-11-06 17:17:25 -06:00
res.status(200).json({ invoice, payment_hash: paymentHashHex });
2024-09-16 17:13:23 -05:00
} catch (error) {
console.error('Error (server) fetching data from LND:', error.message);
res.status(500).json({ message: 'Error fetching data' });
}
}