-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDNSRecordsRemote.ts
77 lines (77 loc) · 2.39 KB
/
DNSRecordsRemote.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
import { DDNScontentContent } from "./DDNScontentContent.ts";
import { DDNScontentID } from "./DDNScontentID.ts";
import { DDNScontentType } from "./DDNScontentType.ts";
import { DNSRecordsInterface } from "./DNSRecordsInterface.ts";
import { JSONRPCCLIENT } from "./JSONRPCCLIENT.ts";
export class DNSRecordsRemoteJSONRPC implements DNSRecordsInterface {
#service_url: string;
#token: string;
constructor(service_url: string, token: string) {
this.#service_url = service_url;
this.#token = token;
}
async ListDNSRecords(
options?:
| Partial<
{
name?: string | undefined;
content?: string | undefined;
type: string;
}
>
| undefined,
): Promise<DDNScontentType[]> {
return await JSONRPCCLIENT<DNSRecordsInterface, "ListDNSRecords">(
this.#service_url,
this.#token,
"ListDNSRecords",
[options],
);
}
async CreateDNSRecord(
record: DDNScontentContent[],
): Promise<DDNScontentType[]> {
return await JSONRPCCLIENT<DNSRecordsInterface>(
this.#service_url,
this.#token,
"CreateDNSRecord",
[record],
);
}
async OverwriteDNSRecord(
array: DDNScontentType[],
): Promise<DDNScontentType[]> {
return await JSONRPCCLIENT<DNSRecordsInterface>(
this.#service_url,
this.#token,
"OverwriteDNSRecord",
[array],
);
}
async UpdateDNSRecord(
array: (DDNScontentID & Partial<DDNScontentContent>)[],
): Promise<DDNScontentType[]> {
return await JSONRPCCLIENT<DNSRecordsInterface>(
this.#service_url,
this.#token,
"UpdateDNSRecord",
[array],
);
}
async DeleteDNSRecord(array: DDNScontentID[]): Promise<DDNScontentID[]> {
return await JSONRPCCLIENT<DNSRecordsInterface>(
this.#service_url,
this.#token,
"DeleteDNSRecord",
[array],
);
}
async DNSRecordDetails(array: DDNScontentID[]): Promise<DDNScontentType[]> {
return await JSONRPCCLIENT<DNSRecordsInterface>(
this.#service_url,
this.#token,
"DNSRecordDetails",
[array],
);
}
}