*rewrite for new system

This commit is contained in:
Derrick Hammer 2023-02-19 16:20:38 -05:00
parent 19caf515d5
commit 5a2c703afe
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
2 changed files with 15 additions and 66 deletions

View File

@ -4,7 +4,7 @@
"type": "module",
"main": "dist/index.js",
"dependencies": {
"@lumeweb/resolver-common": "github:LumeWeb/resolver-common",
"@lumeweb/libkernel-universal": "git+https://git.lumeweb.com/LumeWeb/libkernel-universal.git",
"libkernel": "^0.1.43",
"libkmodule": "^0.2.44",
"libskynet": "^0.0.62"

View File

@ -1,71 +1,20 @@
import { DNS_RECORD_TYPE, ResolverOptions } from "@lumeweb/resolver-common";
import { Client, factory } from "@lumeweb/libkernel-universal";
const DNS_MODULE = "AQBLKpieqOfKVRgMa8k45P4S_ILYgJmswVso4vT1qzoG-A";
const MODULE = "PACYNuYbp_5hgCjMK16EGcytB9QCxDLe4_uitahwePdeaA";
let callModule: any, connectModule: any;
async function loadLibs() {
if (callModule && connectModule) {
return;
export class DnsClient extends Client {
public async register(): Promise<void> {
return this.callModuleReturn("register");
}
if (typeof window !== "undefined" && window?.document) {
const pkg = await import("libkernel");
callModule = pkg.callModule;
connectModule = pkg.connectModule;
} else {
const pkg = await import("libkmodule");
callModule = pkg.callModule;
connectModule = pkg.connectModule;
public async clear(): Promise<void> {
return this.callModuleReturn("clear");
}
public async getResolvers(): Promise<void> {
return this.callModuleReturn("clear");
}
public async ready(): Promise<void> {
return this.callModuleReturn("ready");
}
}
export async function resolve(
domain: string,
options: ResolverOptions = { type: DNS_RECORD_TYPE.CONTENT },
bypassCache = false
) {
await loadLibs();
const [resp, err] = await callModule(DNS_MODULE, "resolve", {
domain,
options,
bypassCache,
});
if (err) {
throw new Error(err);
}
return resp;
}
export async function register() {
await loadLibs();
await callModule(DNS_MODULE, "register");
}
export async function clear() {
await loadLibs();
await callModule(DNS_MODULE, "clear");
}
export async function getResolvers() {
await loadLibs();
const [resp, err] = await callModule(DNS_MODULE, "getResolvers");
if (err) {
throw new Error(err);
}
return resp;
}
export async function ready() {
await loadLibs();
const [resp, err] = await callModule(DNS_MODULE, "ready");
if (err) {
throw new Error(err);
}
return resp;
}
export const createClient = factory<DnsClient>(DnsClient, MODULE);