*Initial version
This commit is contained in:
parent
427158782d
commit
8b57218172
|
@ -0,0 +1,9 @@
|
|||
{
|
||||
"name": "@lumeweb/resolver-module-handshake",
|
||||
"version": "0.1.0",
|
||||
"dependencies": {
|
||||
"@lumeweb/resolver": "github:LumeWeb/resolver#modular",
|
||||
"@lumeweb/resolver-common": "github:LumeWeb/resolver-common",
|
||||
"@lumeweb/tld-enum": "github:LumeWeb/list-of-top-level-domains"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,241 @@
|
|||
import tldEnum from "@lumeweb/tld-enum";
|
||||
import {
|
||||
AbstractResolverModule,
|
||||
DNS_RECORD_TYPE,
|
||||
DNSResult,
|
||||
isDomain,
|
||||
isIp,
|
||||
normalizeDomain,
|
||||
resolverEmptyResponse,
|
||||
ResolverOptions,
|
||||
} from "@lumeweb/resolver-common";
|
||||
import type { ResolverRegistry } from "@lumeweb/resolver";
|
||||
import { getTld } from "@lumeweb/resolver-common";
|
||||
import { DNSRecord } from "@lumeweb/resolver-common";
|
||||
|
||||
const HIP5_EXTENSIONS = ["eth", "_eth"];
|
||||
|
||||
export default class Handshake extends AbstractResolverModule {
|
||||
/* private tldBlacklist: string[] = [];
|
||||
|
||||
constructor(resolver: ResolverRegistry) {
|
||||
super(resolver);
|
||||
|
||||
for (const subresolver of resolver.resolvers) {
|
||||
this.tldBlacklist = [
|
||||
...this.tldBlacklist,
|
||||
...subresolver.getSupportedTlds(),
|
||||
];
|
||||
}
|
||||
}*/
|
||||
|
||||
async resolve(
|
||||
domain: string,
|
||||
options: ResolverOptions,
|
||||
bypassCache: boolean
|
||||
): Promise<DNSResult> {
|
||||
const tld = getTld(domain);
|
||||
|
||||
/*
|
||||
if (this.tldBlacklist.includes(tld)) {
|
||||
return false;
|
||||
}
|
||||
*/
|
||||
|
||||
if (isIp(domain)) {
|
||||
return resolverEmptyResponse();
|
||||
}
|
||||
|
||||
if ("subquery" in options.options) {
|
||||
return resolverEmptyResponse();
|
||||
}
|
||||
|
||||
const chainRecords = await this.query(tld, bypassCache);
|
||||
if (!chainRecords) {
|
||||
return resolverEmptyResponse();
|
||||
}
|
||||
|
||||
let records: DNSRecord[] = [];
|
||||
|
||||
for (const record of chainRecords) {
|
||||
switch (record.type) {
|
||||
case "NS": {
|
||||
await this.processNs(domain, record, records, options, bypassCache);
|
||||
break;
|
||||
}
|
||||
case "GLUE4": {
|
||||
await this.processGlue(domain, record, records, options, bypassCache);
|
||||
break;
|
||||
}
|
||||
case "TXT": {
|
||||
await this.processTxt(record, records, options);
|
||||
break;
|
||||
}
|
||||
case "SYNTH6": {
|
||||
if (
|
||||
options.type === DNS_RECORD_TYPE.A &&
|
||||
"ipv6" in options.options &&
|
||||
options.options.ipv6
|
||||
) {
|
||||
records.push({
|
||||
type: options.type,
|
||||
value: record.address,
|
||||
});
|
||||
}
|
||||
break;
|
||||
}
|
||||
case "SYNTH4": {
|
||||
if (options.type === DNS_RECORD_TYPE.A) {
|
||||
records.push({
|
||||
type: options.type,
|
||||
value: record.address,
|
||||
});
|
||||
}
|
||||
break;
|
||||
}
|
||||
default: {
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return resolverEmptyResponse();
|
||||
}
|
||||
|
||||
// @ts-ignore
|
||||
private async processNs(
|
||||
domain: string,
|
||||
record,
|
||||
records,
|
||||
options: ResolverOptions,
|
||||
bypassCache: boolean
|
||||
) {
|
||||
if (
|
||||
![DNS_RECORD_TYPE.A, DNS_RECORD_TYPE.CNAME, DNS_RECORD_TYPE.NS].includes(
|
||||
options.type
|
||||
)
|
||||
) {
|
||||
return;
|
||||
}
|
||||
// @ts-ignore
|
||||
const glue = records.slice().find(
|
||||
(item: object) =>
|
||||
// @ts-ignore
|
||||
["GLUE4", "GLUE6"].includes(item.type) && item.ns === record.ns
|
||||
);
|
||||
|
||||
if (glue) {
|
||||
return this.processGlue(domain, record, records, options, bypassCache);
|
||||
}
|
||||
|
||||
const foundDomain = normalizeDomain(record.ns);
|
||||
let isIcann = false;
|
||||
|
||||
let isHip5 = false;
|
||||
|
||||
let hip5Parts = foundDomain.split(".");
|
||||
|
||||
if (
|
||||
hip5Parts.length >= 2 &&
|
||||
[...options.options?.hip5, ...HIP5_EXTENSIONS].includes(
|
||||
hip5Parts[hip5Parts.length - 1]
|
||||
)
|
||||
) {
|
||||
isHip5 = true;
|
||||
}
|
||||
|
||||
if (
|
||||
(isDomain(foundDomain) || /[a-zA-Z0-9\-]+/.test(foundDomain)) &&
|
||||
!isHip5
|
||||
) {
|
||||
if (foundDomain.includes(".")) {
|
||||
const tld = foundDomain.split(".")[foundDomain.split(".").length - 1];
|
||||
|
||||
isIcann = tldEnum.list.includes(tld);
|
||||
}
|
||||
|
||||
if (!isIcann) {
|
||||
const hnsNs = await this.resolver.resolve(foundDomain, options);
|
||||
|
||||
if (hnsNs.records.length) {
|
||||
return this.resolver.resolve(domain, {
|
||||
...options,
|
||||
options: {
|
||||
subquery: true,
|
||||
nameserver: hnsNs.records.pop(),
|
||||
},
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
return this.resolver.resolve(domain, {
|
||||
...options,
|
||||
options: { subquery: true, nameserver: foundDomain },
|
||||
});
|
||||
}
|
||||
|
||||
let result = await this.resolver.resolve(record.ns, options, bypassCache);
|
||||
|
||||
if (!result.records.length) {
|
||||
result.records.push({ type: DNS_RECORD_TYPE.NS, value: record.ns });
|
||||
return;
|
||||
}
|
||||
|
||||
records.push.apply(records, result.records);
|
||||
}
|
||||
|
||||
private async processGlue(
|
||||
domain: string,
|
||||
record: any,
|
||||
records: DNSRecord[],
|
||||
options: ResolverOptions,
|
||||
bypassCache: boolean
|
||||
) {
|
||||
if (isDomain(record.ns) && isIp(record.address)) {
|
||||
let results = await this.resolver.resolve(
|
||||
domain,
|
||||
{
|
||||
...options,
|
||||
options: {
|
||||
subquery: true,
|
||||
nameserver: record.address,
|
||||
},
|
||||
},
|
||||
bypassCache
|
||||
);
|
||||
if (results.records.length) {
|
||||
records.push.apply(records, results.records);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
private async query(tld: string, force: boolean): Promise<object | boolean> {
|
||||
const query = this.resolver.rpcNetwork.query(
|
||||
"getnameresource",
|
||||
"hns",
|
||||
[tld],
|
||||
force
|
||||
);
|
||||
const resp = await query.result;
|
||||
|
||||
// @ts-ignore
|
||||
return resp?.records || [];
|
||||
}
|
||||
|
||||
private async processTxt(
|
||||
record: any,
|
||||
records: DNSRecord[],
|
||||
options: ResolverOptions
|
||||
): Promise<string | boolean> {
|
||||
const content = record.txt.slice().pop();
|
||||
|
||||
if (
|
||||
[DNS_RECORD_TYPE.TEXT, DNS_RECORD_TYPE.CONTENT].includes(options.type)
|
||||
) {
|
||||
records.push({
|
||||
type: DNS_RECORD_TYPE.TEXT,
|
||||
value: content,
|
||||
});
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,12 @@
|
|||
{
|
||||
"compilerOptions": {
|
||||
"target": "esnext",
|
||||
"declaration": true,
|
||||
"moduleResolution": "node",
|
||||
"outDir": "./dist",
|
||||
"strict": true,
|
||||
"allowSyntheticDefaultImports": true
|
||||
},
|
||||
"include": ["src"],
|
||||
"exclude": ["node_modules", "**/__tests__/*"]
|
||||
}
|
Loading…
Reference in New Issue