Compare commits
No commits in common. "v0.0.2-develop.1" and "v0.0.1" have entirely different histories.
v0.0.2-dev
...
v0.0.1
|
@ -1,13 +0,0 @@
|
|||
name: Build/Publish
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
- develop
|
||||
- develop-*
|
||||
|
||||
jobs:
|
||||
main:
|
||||
uses: lumeweb/github-node-deploy-workflow/.github/workflows/main.yml@master
|
||||
secrets: inherit
|
|
@ -1,8 +0,0 @@
|
|||
{
|
||||
"preset": [
|
||||
"@lumeweb/presetter-kernel-module-preset"
|
||||
],
|
||||
"config": {
|
||||
"official": true
|
||||
}
|
||||
}
|
|
@ -1 +0,0 @@
|
|||
## [0.0.2-develop.1](https://git.lumeweb.com/LumeWeb/resolver-module-handshake/compare/v0.0.1...v0.0.2-develop.1) (2023-07-15)
|
File diff suppressed because it is too large
Load Diff
24
package.json
24
package.json
|
@ -1,24 +0,0 @@
|
|||
{
|
||||
"name": "@lumeweb/resolver-module-handshake",
|
||||
"version": "0.0.2-develop.1",
|
||||
"main": "lib/index.js",
|
||||
"type": "module",
|
||||
"readme": "ERROR: No README data found!",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "gitea@git.lumeweb.com:LumeWeb/resolver-module-handshake.git"
|
||||
},
|
||||
"scripts": {
|
||||
"prepare": "presetter bootstrap",
|
||||
"build": "run build",
|
||||
"semantic-release": "semantic-release"
|
||||
},
|
||||
"dependencies": {
|
||||
"@lumeweb/kernel-handshake-client": "^0.0.2-develop.4",
|
||||
"@lumeweb/kernel-libresolver": "^0.1.0-develop.3",
|
||||
"@lumeweb/tld-enum": "^0.1.0-develop.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@lumeweb/presetter-kernel-module-preset": "^0.1.0-develop.43"
|
||||
}
|
||||
}
|
|
@ -1,5 +0,0 @@
|
|||
import { setup } from "@lumeweb/kernel-libresolver";
|
||||
import Handshake from "./resolver.js";
|
||||
|
||||
// @ts-ignore
|
||||
setup(new Handshake());
|
296
src/resolver.ts
296
src/resolver.ts
|
@ -1,296 +0,0 @@
|
|||
import tldEnum from "@lumeweb/tld-enum";
|
||||
import {
|
||||
AbstractResolverModule,
|
||||
DNS_RECORD_TYPE,
|
||||
DNSResult,
|
||||
isDomain,
|
||||
isIp,
|
||||
isPromise,
|
||||
normalizeDomain,
|
||||
resolverEmptyResponse,
|
||||
ResolverOptions,
|
||||
resolveSuccess,
|
||||
ensureUniqueRecords,
|
||||
DNSRecord,
|
||||
getTld,
|
||||
resolverError,
|
||||
} from "@lumeweb/libresolver";
|
||||
import {
|
||||
createClient,
|
||||
Response as HandshakeResponse,
|
||||
} from "@lumeweb/kernel-handshake-client";
|
||||
import { ResolverModule } from "@lumeweb/kernel-dns-client";
|
||||
|
||||
const client = createClient();
|
||||
|
||||
const HIP5_EXTENSIONS = ["eth", "_eth"];
|
||||
|
||||
interface HnsRecord {
|
||||
type: string;
|
||||
address: string;
|
||||
txt: string[];
|
||||
ns: string;
|
||||
}
|
||||
|
||||
export default class Handshake extends AbstractResolverModule {
|
||||
private async buildBlacklist(): Promise<Set<string>> {
|
||||
const blacklist = new Set<string>();
|
||||
let resolvers = this.resolver.resolvers as unknown as Set<ResolverModule>;
|
||||
if (isPromise(resolvers as any)) {
|
||||
resolvers = await resolvers;
|
||||
}
|
||||
|
||||
for (const resolver of resolvers) {
|
||||
let tlds: string[] | Promise<string[]> = resolver.getSupportedTlds();
|
||||
if (isPromise(tlds as any)) {
|
||||
tlds = await tlds;
|
||||
}
|
||||
(tlds as string[]).map((item: string) => blacklist.add(item));
|
||||
}
|
||||
|
||||
return blacklist;
|
||||
}
|
||||
|
||||
async resolve(
|
||||
domain: string,
|
||||
options: ResolverOptions,
|
||||
bypassCache: boolean,
|
||||
): Promise<DNSResult> {
|
||||
options.options = options.options || {};
|
||||
const tld = getTld(domain);
|
||||
|
||||
const blacklist = await this.buildBlacklist();
|
||||
|
||||
if (blacklist.has(tld)) {
|
||||
return resolverEmptyResponse();
|
||||
}
|
||||
|
||||
if (isIp(domain)) {
|
||||
return resolverEmptyResponse();
|
||||
}
|
||||
|
||||
if (options?.options && "subquery" in options.options) {
|
||||
return resolverEmptyResponse();
|
||||
}
|
||||
|
||||
const chainRecords = await this.query(tld);
|
||||
if (chainRecords.error) {
|
||||
return resolverError(chainRecords.error);
|
||||
}
|
||||
|
||||
if (!chainRecords.result?.records.length) {
|
||||
return resolverEmptyResponse();
|
||||
}
|
||||
|
||||
let records: DNSRecord[] = [];
|
||||
|
||||
for (const record of chainRecords.result?.records) {
|
||||
switch (record.type) {
|
||||
case "NS": {
|
||||
await this.processNs(
|
||||
domain,
|
||||
record,
|
||||
records,
|
||||
chainRecords.result?.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;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
records = ensureUniqueRecords(records);
|
||||
|
||||
if (0 < records.length) {
|
||||
return resolveSuccess(records);
|
||||
}
|
||||
|
||||
return resolverEmptyResponse();
|
||||
}
|
||||
|
||||
// @ts-ignore
|
||||
private async processNs(
|
||||
domain: string,
|
||||
record: HnsRecord,
|
||||
records: DNSRecord[],
|
||||
hnsRecords: HnsRecord[],
|
||||
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 = hnsRecords.slice().find(
|
||||
(item: object) =>
|
||||
// @ts-ignore
|
||||
["GLUE4", "GLUE6"].includes(item.type) && item.ns === record.ns,
|
||||
);
|
||||
|
||||
if (glue && options.type !== DNS_RECORD_TYPE.NS) {
|
||||
return this.processGlue(domain, glue, records, options, bypassCache);
|
||||
}
|
||||
|
||||
if (options.type === DNS_RECORD_TYPE.NS) {
|
||||
records.push({ type: options.type, value: record.ns });
|
||||
return;
|
||||
}
|
||||
|
||||
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) {
|
||||
let icannRecords = await this.resolver.resolve(domain, {
|
||||
...options,
|
||||
options: {
|
||||
subquery: true,
|
||||
nameserver: hnsNs.records.pop()?.value,
|
||||
},
|
||||
});
|
||||
if (icannRecords.records.length) {
|
||||
records.push.apply(records, icannRecords.records);
|
||||
}
|
||||
}
|
||||
|
||||
return resolverEmptyResponse();
|
||||
}
|
||||
|
||||
let icannRecords = await this.resolver.resolve(domain, {
|
||||
...options,
|
||||
options: { subquery: true, nameserver: foundDomain },
|
||||
});
|
||||
if (icannRecords.records.length) {
|
||||
records.push.apply(records, icannRecords.records);
|
||||
return;
|
||||
}
|
||||
|
||||
return resolverEmptyResponse();
|
||||
}
|
||||
|
||||
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: HnsRecord,
|
||||
records: DNSRecord[],
|
||||
options: ResolverOptions,
|
||||
bypassCache: boolean,
|
||||
) {
|
||||
if (![DNS_RECORD_TYPE.A, DNS_RECORD_TYPE.CNAME].includes(options.type)) {
|
||||
return;
|
||||
}
|
||||
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): Promise<HandshakeResponse> {
|
||||
return client.query("getnameresource", [tld, true]);
|
||||
}
|
||||
|
||||
private async processTxt(
|
||||
record: HnsRecord,
|
||||
records: DNSRecord[],
|
||||
options: ResolverOptions,
|
||||
) {
|
||||
const content = record.txt.slice().pop() as string;
|
||||
|
||||
if (
|
||||
[DNS_RECORD_TYPE.TEXT, DNS_RECORD_TYPE.CONTENT].includes(options.type)
|
||||
) {
|
||||
records.push({
|
||||
type: DNS_RECORD_TYPE.TEXT,
|
||||
value: content,
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
async ready() {
|
||||
await client.ready();
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue