mirror of
https://github.com/maelgangloff/domain-watchdog.git
synced 2025-12-29 16:15:04 +00:00
50 lines
2.1 KiB
TypeScript
50 lines
2.1 KiB
TypeScript
import {Domain, Watchlist} from "../../../../utils/api";
|
|
import {rdapRoleTranslation} from "../../../search/rdapTranslation";
|
|
import {t} from "ttag";
|
|
|
|
export const rolesToColor = (roles: string[]) => roles.includes('registrant') ? 'green' :
|
|
roles.includes('administrative') ? 'blue' :
|
|
roles.includes('technical') ? 'orange' :
|
|
roles.includes('registrar') ? 'violet' : 'white'
|
|
|
|
export function domainEntitiesToEdges(d: Domain, withRegistrar = false) {
|
|
const rdapRoleTranslated = rdapRoleTranslation()
|
|
return d.entities
|
|
.filter(e => !withRegistrar ? !e.roles.includes('registrar') : true)
|
|
.map(e => ({
|
|
id: `e-${d.ldhName}-${e.entity.handle}`,
|
|
source: e.roles.includes('registrant') || e.roles.includes('registrar') ? e.entity.handle : d.ldhName,
|
|
target: e.roles.includes('registrant') || e.roles.includes('registrar') ? d.ldhName : e.entity.handle,
|
|
style: {stroke: rolesToColor(e.roles), strokeWidth: 3},
|
|
label: e.roles
|
|
.map(r => r in rdapRoleTranslated ? rdapRoleTranslated[r as keyof typeof rdapRoleTranslated] : r)
|
|
.join(', '),
|
|
animated: e.roles.includes('registrant'),
|
|
}))
|
|
}
|
|
|
|
export const domainNSToEdges = (d: Domain) => d.nameservers
|
|
.map(ns => ({
|
|
id: `ns-${d.ldhName}-${ns.ldhName}`,
|
|
source: d.ldhName,
|
|
target: ns.ldhName,
|
|
style: {stroke: 'grey', strokeWidth: 3},
|
|
label: 'DNS'
|
|
}))
|
|
|
|
export const tldToEdge = (d: Domain) => ({
|
|
id: `tld-${d.ldhName}-${d.tld.tld}`,
|
|
source: d.tld.tld,
|
|
target: d.ldhName,
|
|
style: {stroke: 'yellow', strokeWidth: 3},
|
|
label: t`Registry`
|
|
})
|
|
|
|
export function watchlistToEdges(watchlist: Watchlist, withRegistrar = false, withTld = false) {
|
|
const entitiesEdges = watchlist.domains.map(d => domainEntitiesToEdges(d, withRegistrar)).flat()
|
|
const nameserversEdges = watchlist.domains.map(domainNSToEdges).flat()
|
|
const tldEdge = watchlist.domains.map(tldToEdge)
|
|
|
|
return [...entitiesEdges, ...nameserversEdges, ...(withTld ? tldEdge : [])]
|
|
}
|