|
| 1 | +import createPrisma from '@/lib/create-prisma' |
| 2 | +import { promises as dnsPromises } from 'node:dns' |
| 3 | + |
| 4 | +// TODO: Add comments |
| 5 | +export async function domainVerification () { |
| 6 | + const models = createPrisma({ connectionParams: { connection_limit: 1 } }) |
| 7 | + |
| 8 | + try { |
| 9 | + const domains = await models.customDomain.findMany() |
| 10 | + |
| 11 | + for (const domain of domains) { |
| 12 | + const { domain: domainName, verificationTxt, cname, id } = domain |
| 13 | + try { |
| 14 | + const { txtValid, cnameValid, error } = await verifyDomain(domainName, verificationTxt, cname) |
| 15 | + console.log(`${domainName}: TXT ${txtValid ? 'valid' : 'invalid'}, CNAME ${cnameValid ? 'valid' : 'invalid'}`) |
| 16 | + |
| 17 | + // verificationState is based on the results of the TXT and CNAME checks |
| 18 | + const verificationState = (txtValid && cnameValid) ? 'VERIFIED' : 'FAILED' |
| 19 | + await models.customDomain.update({ |
| 20 | + where: { id }, |
| 21 | + data: { verificationState, lastVerifiedAt: new Date() } |
| 22 | + }) |
| 23 | + |
| 24 | + if (error) { |
| 25 | + console.log(`${domainName} verification error:`, error) |
| 26 | + } |
| 27 | + } catch (error) { |
| 28 | + console.error(`Failed to verify domain ${domainName}:`, error) |
| 29 | + |
| 30 | + // Update to FAILED on any error |
| 31 | + await models.customDomain.update({ |
| 32 | + where: { id }, |
| 33 | + data: { verificationState: 'NOT_VERIFIED', lastVerifiedAt: new Date() } |
| 34 | + }) |
| 35 | + } |
| 36 | + } |
| 37 | + } catch (error) { |
| 38 | + console.error(error) |
| 39 | + } |
| 40 | +} |
| 41 | + |
| 42 | +async function verifyDomain (domainName, verificationTxt, cname) { |
| 43 | + const result = { |
| 44 | + txtValid: false, |
| 45 | + cnameValid: false, |
| 46 | + error: null |
| 47 | + } |
| 48 | + |
| 49 | + // TXT Records checking |
| 50 | + // TODO: we should give a randomly generated string to the user and check if it's included in the TXT record |
| 51 | + try { |
| 52 | + const txtRecords = await dnsPromises.resolve(domainName, 'TXT') |
| 53 | + const txtText = txtRecords.flat().join(' ') |
| 54 | + |
| 55 | + // the TXT record should include the verificationTxt that we have in the database |
| 56 | + result.txtValid = txtText.includes(verificationTxt) |
| 57 | + } catch (error) { |
| 58 | + if (error.code === 'ENODATA' || error.code === 'ENOTFOUND') { |
| 59 | + result.error = `TXT record not found: ${error.code}` |
| 60 | + } else { |
| 61 | + result.error = `TXT error: ${error.message}` |
| 62 | + } |
| 63 | + } |
| 64 | + |
| 65 | + // CNAME Records checking |
| 66 | + try { |
| 67 | + const cnameRecords = await dnsPromises.resolve(domainName, 'CNAME') |
| 68 | + |
| 69 | + // the CNAME record should include the cname that we have in the database |
| 70 | + result.cnameValid = cnameRecords.some(record => |
| 71 | + record.includes(cname) |
| 72 | + ) |
| 73 | + } catch (error) { |
| 74 | + if (!result.error) { // this is to avoid overriding the error from the TXT check |
| 75 | + if (error.code === 'ENODATA' || error.code === 'ENOTFOUND') { |
| 76 | + result.error = `CNAME record not found: ${error.code}` |
| 77 | + } else { |
| 78 | + result.error = `CNAME error: ${error.message}` |
| 79 | + } |
| 80 | + } |
| 81 | + } |
| 82 | + return result |
| 83 | +} |
0 commit comments