Compare commits
77 Commits
Author | SHA1 | Date | |
---|---|---|---|
4600749442 | |||
b0f8d1e4d0 | |||
902ca30529 | |||
5731150157 | |||
f39f8cd33c | |||
1d2e0974b2 | |||
801f86fede | |||
42feb09b4f | |||
d72bb28cf9 | |||
b9f0b798c9 | |||
9b5f42ef9b | |||
4e3355dc43 | |||
fc0a27f5b6 | |||
0248d52548 | |||
c3984819cc | |||
045b87a4a2 | |||
48ca9fdbb9 | |||
e466944c55 | |||
6d8deca9d4 | |||
a4518f3068 | |||
9e338354c6 | |||
9d8c14d187 | |||
5a0b12f6aa | |||
387f00078f | |||
fe2f45e3a9 | |||
90c9bfc906 | |||
4f9e81f612 | |||
a4e280f9f0 | |||
52bd80aebd | |||
15e3cdae83 | |||
c72147b469 | |||
d98c2f89c5 | |||
2b722816f6 | |||
91d58277dd | |||
2458da6754 | |||
d4379d19d3 | |||
b0fdd520f3 | |||
a746577945 | |||
bc4cae3333 | |||
e0614b5956 | |||
f568949085 | |||
bee256416f | |||
afa2679501 | |||
7838642fd5 | |||
7a992badf4 | |||
c65790e2f9 | |||
7ec0fe78fc | |||
12f4456ebd | |||
3e8cf73877 | |||
0032292714 | |||
ead87ceb63 | |||
04d70a4d12 | |||
8da43a79d3 | |||
3153021190 | |||
82701c19e7 | |||
d3a68b4fef | |||
c4c1367306 | |||
1f5352d9f5 | |||
f652cc72fe | |||
f510408fce | |||
e250e9b1a2 | |||
5a9b7bbeee | |||
1158b4ff99 | |||
8eb777dd45 | |||
acf5c242d3 | |||
9e9dd8d935 | |||
b7cc500f4d | |||
8a4126a49c | |||
b86391ca00 | |||
92682c1276 | |||
05677231f7 | |||
9c036925fd | |||
d3d5f72193 | |||
3d7c0e6b64 | |||
4faefb0bd7 | |||
162fff134e | |||
426237b2a7 |
20
.gitignore
vendored
20
.gitignore
vendored
@ -1,6 +1,20 @@
|
|||||||
|
.nogit/
|
||||||
|
|
||||||
|
# artifacts
|
||||||
coverage/
|
coverage/
|
||||||
docs/
|
public/
|
||||||
|
pages/
|
||||||
|
|
||||||
|
# installs
|
||||||
node_modules/
|
node_modules/
|
||||||
|
|
||||||
.nogit/
|
# caches
|
||||||
nogit/
|
.yarn/
|
||||||
|
.cache/
|
||||||
|
.rpt2_cache
|
||||||
|
|
||||||
|
# builds
|
||||||
|
dist/
|
||||||
|
dist_*/
|
||||||
|
|
||||||
|
# custom
|
@ -1,71 +0,0 @@
|
|||||||
# gitzone standard
|
|
||||||
image: hosttoday/ht-docker-node:npmci
|
|
||||||
|
|
||||||
cache:
|
|
||||||
paths:
|
|
||||||
- .yarn/
|
|
||||||
key: "$CI_BUILD_STAGE"
|
|
||||||
|
|
||||||
stages:
|
|
||||||
- test
|
|
||||||
- release
|
|
||||||
- trigger
|
|
||||||
- pages
|
|
||||||
|
|
||||||
testLEGACY:
|
|
||||||
stage: test
|
|
||||||
script:
|
|
||||||
- npmci test legacy
|
|
||||||
coverage: /\d+.?\d+?\%\s*coverage/
|
|
||||||
tags:
|
|
||||||
- docker
|
|
||||||
allow_failure: true
|
|
||||||
|
|
||||||
testLTS:
|
|
||||||
stage: test
|
|
||||||
script:
|
|
||||||
- npmci test lts
|
|
||||||
coverage: /\d+.?\d+?\%\s*coverage/
|
|
||||||
tags:
|
|
||||||
- docker
|
|
||||||
|
|
||||||
testSTABLE:
|
|
||||||
stage: test
|
|
||||||
script:
|
|
||||||
- npmci test stable
|
|
||||||
coverage: /\d+.?\d+?\%\s*coverage/
|
|
||||||
tags:
|
|
||||||
- docker
|
|
||||||
|
|
||||||
release:
|
|
||||||
stage: release
|
|
||||||
script:
|
|
||||||
- npmci publish
|
|
||||||
only:
|
|
||||||
- tags
|
|
||||||
tags:
|
|
||||||
- docker
|
|
||||||
|
|
||||||
trigger:
|
|
||||||
stage: trigger
|
|
||||||
script:
|
|
||||||
- npmci trigger
|
|
||||||
only:
|
|
||||||
- tags
|
|
||||||
tags:
|
|
||||||
- docker
|
|
||||||
|
|
||||||
pages:
|
|
||||||
image: hosttoday/ht-docker-node:npmci
|
|
||||||
stage: pages
|
|
||||||
script:
|
|
||||||
- npmci command yarn global add npmpage
|
|
||||||
- npmci command npmpage
|
|
||||||
tags:
|
|
||||||
- docker
|
|
||||||
only:
|
|
||||||
- tags
|
|
||||||
artifacts:
|
|
||||||
expire_in: 1 week
|
|
||||||
paths:
|
|
||||||
- public
|
|
12
.travis.yml
12
.travis.yml
@ -1,12 +0,0 @@
|
|||||||
language: node_js
|
|
||||||
node_js:
|
|
||||||
- '4'
|
|
||||||
- stable
|
|
||||||
deploy:
|
|
||||||
provider: npm
|
|
||||||
email: npm@lossless.digital
|
|
||||||
api_key:
|
|
||||||
secure: uWqO634z8xMWI8tcIpSvUeVeG4ypX5fppXWxrSKbO5zOHCHGqJK90XiGFfKUekMf0cYQPb5dLT5+J/3nd4mf4KtU3+v1OK6ZikEqn/PcSeqOmK7EnI9wDFZwDTgJWIn0lRwX2mfB9meblSZ7XthTXumX78fmRTyeyImLm9P0ak+CrNzs8rzKauBoqeVryOez4/LaH3f0kxSz7o7zYLxFqx5xjQ7TFqd1kkVTf4pSQanLHY3z+7+mKrkbcNVxx2gF76hyx6E4pntSJHrOEE/VU/KMk2B6yzrVWYUHUiSRGYOV9U17YaaWlC9DZmnS1cvYcqq3YNujTwPWtci3It9S98hLrSTnCCqin6xhj8IuV6U4WADiXOUvNKuTRcd0/leQ4w3xpPJ1FR2gRtEhwQ0NsnY0vL9tuRAW71lf31122TTJI8lJQNrnaeIGbX7eE0Pq0jeTpmM2W/Tl8pl6s6zBjlEC/mCynQq1pBiz7UmxMYCPE162I8V5USeZOBLzDPZV2y7hmPWjMrWTT+i/IpFmXHjQtVrwlyU6fCOeYHgK/5GdyhnrRYYlx+ce6pCn4tmkVxduimC3m1G8cTkPl00fIpy7KSVcaeQrc1N+KQUqK4FpIjeqB904SVPsI5v3P7sdobaT1aqFqszhR+JK5tXaoesew8R2RncjFK69J7DHJWk=
|
|
||||||
on:
|
|
||||||
tags: true
|
|
||||||
repo: pushrocks/cflare
|
|
11
.vscode/launch.json
vendored
Normal file
11
.vscode/launch.json
vendored
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
{
|
||||||
|
"version": "0.2.0",
|
||||||
|
"configurations": [
|
||||||
|
{
|
||||||
|
"command": "npm test",
|
||||||
|
"name": "Run npm test",
|
||||||
|
"request": "launch",
|
||||||
|
"type": "node-terminal"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
26
.vscode/settings.json
vendored
Normal file
26
.vscode/settings.json
vendored
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
{
|
||||||
|
"json.schemas": [
|
||||||
|
{
|
||||||
|
"fileMatch": ["/npmextra.json"],
|
||||||
|
"schema": {
|
||||||
|
"type": "object",
|
||||||
|
"properties": {
|
||||||
|
"npmci": {
|
||||||
|
"type": "object",
|
||||||
|
"description": "settings for npmci"
|
||||||
|
},
|
||||||
|
"gitzone": {
|
||||||
|
"type": "object",
|
||||||
|
"description": "settings for gitzone",
|
||||||
|
"properties": {
|
||||||
|
"projectType": {
|
||||||
|
"type": "string",
|
||||||
|
"enum": ["website", "element", "service", "npm", "wcc"]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
51
README.md
51
README.md
@ -1,51 +0,0 @@
|
|||||||
# cflare
|
|
||||||
easy cloudflare management
|
|
||||||
|
|
||||||
## Availabililty
|
|
||||||
[](https://www.npmjs.com/package/cflare)
|
|
||||||
[](https://GitLab.com/mojoio/cflare)
|
|
||||||
[](https://github.com/mojoio/cflare)
|
|
||||||
[](https://mojoio.gitlab.io/cflare/)
|
|
||||||
|
|
||||||
## Status for master
|
|
||||||
[](https://GitLab.com/mojoio/cflare/commits/master)
|
|
||||||
[](https://GitLab.com/mojoio/cflare/commits/master)
|
|
||||||
[](https://www.npmjs.com/package/cflare)
|
|
||||||
[](https://david-dm.org/mojoio/cflare)
|
|
||||||
[](https://www.bithound.io/github/mojoio/cflare/master/dependencies/npm)
|
|
||||||
[](https://www.bithound.io/github/mojoio/cflare)
|
|
||||||
[](https://nodejs.org/dist/latest-v6.x/docs/api/)
|
|
||||||
[](https://nodejs.org/dist/latest-v6.x/docs/api/)
|
|
||||||
[](http://standardjs.com/)
|
|
||||||
|
|
||||||
## Usage
|
|
||||||
Use TypeScript for best in class instellisense.
|
|
||||||
|
|
||||||
```javascript
|
|
||||||
import * as cflare from 'cflare'
|
|
||||||
|
|
||||||
let myCflareAccount = new cflare.CflareAccount()
|
|
||||||
testCflareAccount.auth({
|
|
||||||
email: 'someuser@example.com',
|
|
||||||
key: 'someLongApiKey'
|
|
||||||
})
|
|
||||||
|
|
||||||
let myAsyncCflareManagement = async () => {
|
|
||||||
// get things
|
|
||||||
let myZones = await myCflareAccount.listZones() // zones are fully typed
|
|
||||||
let myIdForADomain = await myCflareAccount.getZoneId('example.com') // type number
|
|
||||||
let myRecordsForADomain = await myCflareAccount.listRecords('example.com') // records are fully typed
|
|
||||||
|
|
||||||
// set things
|
|
||||||
myCflareAccount.updateRecord(...)
|
|
||||||
myCflareAccount.createRecord(...)
|
|
||||||
myCflareAccount.deleteRecord(...)
|
|
||||||
}
|
|
||||||
|
|
||||||
```
|
|
||||||
|
|
||||||
For further information read the linked docs at the top of this README.
|
|
||||||
|
|
||||||
> MIT licensed | **©** [Lossless GmbH](https://lossless.gmbh)
|
|
||||||
|
|
||||||
[](https://mojo.io)
|
|
28
dist/cflare.classes.cflareaccount.d.ts
vendored
28
dist/cflare.classes.cflareaccount.d.ts
vendored
@ -1,28 +0,0 @@
|
|||||||
import 'typings-global';
|
|
||||||
import * as interfaces from './cflare.interfaces';
|
|
||||||
export declare class CflareAccount {
|
|
||||||
private authEmail;
|
|
||||||
private authKey;
|
|
||||||
constructor();
|
|
||||||
auth(optionsArg: {
|
|
||||||
email: string;
|
|
||||||
key: string;
|
|
||||||
}): void;
|
|
||||||
getZoneId(domainName: string): Promise<string>;
|
|
||||||
getRecord(domainNameArg: string, typeArg: interfaces.TRecord): Promise<interfaces.ICflareRecord>;
|
|
||||||
createRecord(domainNameArg: string, typeArg: interfaces.TRecord, contentArg: string): Promise<{}>;
|
|
||||||
removeRecord(domainNameArg: string, typeArg: interfaces.TRecord): Promise<{}>;
|
|
||||||
updateRecord(domainNameArg: string, typeArg: string, valueArg: any): Promise<{}>;
|
|
||||||
/**
|
|
||||||
* list all records of a specified domain name
|
|
||||||
* @param domainNameArg - the domain name that you want to get the records from
|
|
||||||
*/
|
|
||||||
listRecords(domainNameArg: string): Promise<interfaces.ICflareRecord[]>;
|
|
||||||
/**
|
|
||||||
* list all zones in the associated authenticated account
|
|
||||||
* @param domainName
|
|
||||||
*/
|
|
||||||
listZones(domainName?: string): Promise<interfaces.ICflareZone[]>;
|
|
||||||
request(methodArg: string, routeArg: string, dataArg?: {}): Promise<{}>;
|
|
||||||
private authCheck();
|
|
||||||
}
|
|
164
dist/cflare.classes.cflareaccount.js
vendored
164
dist/cflare.classes.cflareaccount.js
vendored
File diff suppressed because one or more lines are too long
57
dist/cflare.interfaces.d.ts
vendored
57
dist/cflare.interfaces.d.ts
vendored
@ -1,57 +0,0 @@
|
|||||||
export declare type TRecord = 'A' | 'AAAA' | 'CNAME' | 'TXT' | 'SRV' | 'LOC' | 'MX' | 'NS' | 'SPF';
|
|
||||||
export interface ICflareZone {
|
|
||||||
'id': string;
|
|
||||||
'name': string;
|
|
||||||
'development_mode': number;
|
|
||||||
'original_name_servers': string[];
|
|
||||||
'original_registrar': string;
|
|
||||||
'original_dnshost': string;
|
|
||||||
'created_on': string;
|
|
||||||
'modified_on': string;
|
|
||||||
'name_servers': string[];
|
|
||||||
'owner': {
|
|
||||||
'id': string;
|
|
||||||
'email': string;
|
|
||||||
'owner_type': string;
|
|
||||||
};
|
|
||||||
'permissions': string[];
|
|
||||||
'plan': {
|
|
||||||
'id': string;
|
|
||||||
'name': string;
|
|
||||||
'price': number;
|
|
||||||
'currency': string;
|
|
||||||
'frequency': string;
|
|
||||||
'legacy_id': string;
|
|
||||||
'is_subscribed': boolean;
|
|
||||||
'can_subscribe': boolean;
|
|
||||||
};
|
|
||||||
'plan_pending': {
|
|
||||||
'id': string;
|
|
||||||
'name': string;
|
|
||||||
'price': number;
|
|
||||||
'currency': string;
|
|
||||||
'frequency': string;
|
|
||||||
'legacy_id': string;
|
|
||||||
'is_subscribed': string;
|
|
||||||
'can_subscribe': string;
|
|
||||||
};
|
|
||||||
'status': string;
|
|
||||||
'paused': boolean;
|
|
||||||
'type': string;
|
|
||||||
'checked_on': string;
|
|
||||||
}
|
|
||||||
export interface ICflareRecord {
|
|
||||||
'id': string;
|
|
||||||
'type': string;
|
|
||||||
'name': string;
|
|
||||||
'content': string;
|
|
||||||
'proxiable': boolean;
|
|
||||||
'proxied': boolean;
|
|
||||||
'ttl': number;
|
|
||||||
'locked': boolean;
|
|
||||||
'zone_id': string;
|
|
||||||
'zone_name': string;
|
|
||||||
'created_on': string;
|
|
||||||
'modified_on': string;
|
|
||||||
'data': any;
|
|
||||||
}
|
|
3
dist/cflare.interfaces.js
vendored
3
dist/cflare.interfaces.js
vendored
@ -1,3 +0,0 @@
|
|||||||
"use strict";
|
|
||||||
Object.defineProperty(exports, "__esModule", { value: true });
|
|
||||||
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2ZsYXJlLmludGVyZmFjZXMuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi90cy9jZmxhcmUuaW50ZXJmYWNlcy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiIn0=
|
|
6
dist/cflare.plugins.d.ts
vendored
6
dist/cflare.plugins.d.ts
vendored
@ -1,6 +0,0 @@
|
|||||||
import 'typings-global';
|
|
||||||
export declare let beautylog: any;
|
|
||||||
export import q = require('smartq');
|
|
||||||
export import smartrequest = require('smartrequest');
|
|
||||||
export import smartstring = require('smartstring');
|
|
||||||
export import smartdelay = require('smartdelay');
|
|
9
dist/cflare.plugins.js
vendored
9
dist/cflare.plugins.js
vendored
@ -1,9 +0,0 @@
|
|||||||
"use strict";
|
|
||||||
Object.defineProperty(exports, "__esModule", { value: true });
|
|
||||||
require("typings-global");
|
|
||||||
exports.beautylog = require('beautylog');
|
|
||||||
exports.q = require("smartq");
|
|
||||||
exports.smartrequest = require("smartrequest");
|
|
||||||
exports.smartstring = require("smartstring");
|
|
||||||
exports.smartdelay = require("smartdelay");
|
|
||||||
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2ZsYXJlLnBsdWdpbnMuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi90cy9jZmxhcmUucGx1Z2lucy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOztBQUFBLDBCQUF1QjtBQUNaLFFBQUEsU0FBUyxHQUFHLE9BQU8sQ0FBQyxXQUFXLENBQUMsQ0FBQTtBQUMzQyw4QkFBbUM7QUFDbkMsK0NBQW9EO0FBQ3BELDZDQUFrRDtBQUNsRCwyQ0FBZ0QifQ==
|
|
2
dist/index.d.ts
vendored
2
dist/index.d.ts
vendored
@ -1,2 +0,0 @@
|
|||||||
import "typings-global";
|
|
||||||
export { CflareAccount } from "./cflare.classes.cflareaccount";
|
|
6
dist/index.js
vendored
6
dist/index.js
vendored
@ -1,6 +0,0 @@
|
|||||||
"use strict";
|
|
||||||
Object.defineProperty(exports, "__esModule", { value: true });
|
|
||||||
require("typings-global");
|
|
||||||
var cflare_classes_cflareaccount_1 = require("./cflare.classes.cflareaccount");
|
|
||||||
exports.CflareAccount = cflare_classes_cflareaccount_1.CflareAccount;
|
|
||||||
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi90cy9pbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOztBQUFBLDBCQUF3QjtBQUN4QiwrRUFBNkQ7QUFBckQsdURBQUEsYUFBYSxDQUFBIn0=
|
|
@ -1,6 +1,4 @@
|
|||||||
The MIT License (MIT)
|
Copyright (c) 2014 Task Venture Capital GmbH (hello@task.vc)
|
||||||
|
|
||||||
Copyright (c) 2016 Lossless GmbH
|
|
||||||
|
|
||||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
of this software and associated documentation files (the "Software"), to deal
|
of this software and associated documentation files (the "Software"), to deal
|
@ -1,7 +1,29 @@
|
|||||||
{
|
{
|
||||||
"npmci": {
|
"npmci": {
|
||||||
"globalNpmTools": [
|
"npmGlobalTools": [],
|
||||||
"npmts"
|
"npmAccessLevel": "public"
|
||||||
]
|
},
|
||||||
|
"gitzone": {
|
||||||
|
"projectType": "npm",
|
||||||
|
"module": {
|
||||||
|
"githost": "gitlab.com",
|
||||||
|
"gitscope": "mojoio",
|
||||||
|
"gitrepo": "cloudflare",
|
||||||
|
"description": "A TypeScript client for managing Cloudflare accounts, zones, DNS records, and workers with ease.",
|
||||||
|
"npmPackagename": "@apiclient.xyz/cloudflare",
|
||||||
|
"license": "MIT",
|
||||||
|
"keywords": [
|
||||||
|
"Cloudflare",
|
||||||
|
"DNS management",
|
||||||
|
"zone management",
|
||||||
|
"worker management",
|
||||||
|
"TypeScript",
|
||||||
|
"API client",
|
||||||
|
"cloud infrastructure",
|
||||||
|
"automated DNS",
|
||||||
|
"CDN management",
|
||||||
|
"open source"
|
||||||
|
]
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
68
package.json
68
package.json
@ -1,19 +1,32 @@
|
|||||||
{
|
{
|
||||||
"name": "cflare",
|
"name": "@apiclient.xyz/cloudflare",
|
||||||
"version": "1.0.2",
|
"version": "6.0.5",
|
||||||
"description": "easy cloudflare management",
|
"private": false,
|
||||||
"main": "dist/index.js",
|
"description": "A TypeScript client for managing Cloudflare accounts, zones, DNS records, and workers with ease.",
|
||||||
"typings": "dist/index.d.ts",
|
"main": "dist_ts/index.js",
|
||||||
|
"typings": "dist_ts/index.d.ts",
|
||||||
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "(npmts)"
|
"test": "(tstest test/)",
|
||||||
|
"build": "(tsbuild --web --allowimplicitany)",
|
||||||
|
"buildDocs": "tsdoc",
|
||||||
|
"updateOpenapi": "openapi-typescript https://raw.githubusercontent.com/cloudflare/api-schemas/main/openapi.yaml --output ts/openapi.spec.ts"
|
||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "git+https://gitlab.com/pushrocks/cflare.git"
|
"url": "git+https://gitlab.com/pushrocks/cflare.git"
|
||||||
},
|
},
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"Push.Rocks",
|
"Cloudflare",
|
||||||
"cloudflare"
|
"DNS management",
|
||||||
|
"zone management",
|
||||||
|
"worker management",
|
||||||
|
"TypeScript",
|
||||||
|
"API client",
|
||||||
|
"cloud infrastructure",
|
||||||
|
"automated DNS",
|
||||||
|
"CDN management",
|
||||||
|
"open source"
|
||||||
],
|
],
|
||||||
"author": "Lossless GmbH",
|
"author": "Lossless GmbH",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
@ -22,15 +35,36 @@
|
|||||||
},
|
},
|
||||||
"homepage": "https://gitlab.com/pushrocks/cflare#readme",
|
"homepage": "https://gitlab.com/pushrocks/cflare#readme",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"beautylog": "^6.1.1",
|
"@push.rocks/smartdelay": "^3.0.1",
|
||||||
"smartdelay": "^1.0.1",
|
"@push.rocks/smartlog": "^3.0.2",
|
||||||
"smartq": "^1.1.0",
|
"@push.rocks/smartpromise": "^4.0.2",
|
||||||
"smartrequest": "^1.0.4",
|
"@push.rocks/smartrequest": "^2.0.15",
|
||||||
"smartstring": "^2.0.22",
|
"@push.rocks/smartstring": "^4.0.5",
|
||||||
"typings-global": "^1.0.14"
|
"@tsclass/tsclass": "^4.0.58",
|
||||||
|
"cloudflare": "^3.2.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"qenv": "^1.1.3",
|
"@git.zone/tsbuild": "^2.1.66",
|
||||||
"tapbundle": "^1.0.13"
|
"@git.zone/tsrun": "^1.2.42",
|
||||||
}
|
"@git.zone/tstest": "^1.0.74",
|
||||||
|
"@push.rocks/qenv": "^6.0.5",
|
||||||
|
"@push.rocks/tapbundle": "^5.0.4",
|
||||||
|
"@types/node": "^20.3.1",
|
||||||
|
"openapi-typescript": "^6.7.6"
|
||||||
|
},
|
||||||
|
"files": [
|
||||||
|
"ts/**/*",
|
||||||
|
"ts_web/**/*",
|
||||||
|
"dist/**/*",
|
||||||
|
"dist_*/**/*",
|
||||||
|
"dist_ts/**/*",
|
||||||
|
"dist_ts_web/**/*",
|
||||||
|
"assets/**/*",
|
||||||
|
"cli.js",
|
||||||
|
"npmextra.json",
|
||||||
|
"readme.md"
|
||||||
|
],
|
||||||
|
"browserslist": [
|
||||||
|
"last 1 chrome versions"
|
||||||
|
]
|
||||||
}
|
}
|
||||||
|
6877
pnpm-lock.yaml
generated
Normal file
6877
pnpm-lock.yaml
generated
Normal file
File diff suppressed because it is too large
Load Diff
1
readme.hints.md
Normal file
1
readme.hints.md
Normal file
@ -0,0 +1 @@
|
|||||||
|
- unofficial TypeScript cloudflare api client coming with a lot of convenience.
|
250
readme.md
Normal file
250
readme.md
Normal file
@ -0,0 +1,250 @@
|
|||||||
|
# @apiclient.xyz/cloudflare
|
||||||
|
easy cloudflare management
|
||||||
|
|
||||||
|
## Install
|
||||||
|
To install the `@apiclient.xyz/cloudflare` package, you can use npm. Simply run the following command:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
npm install @apiclient.xyz/cloudflare
|
||||||
|
```
|
||||||
|
|
||||||
|
Make sure to include it in your `dependencies` in `package.json`.
|
||||||
|
|
||||||
|
## Usage
|
||||||
|
|
||||||
|
### Initial Setup
|
||||||
|
|
||||||
|
First, let's start by importing the required modules and setting up an instance of `CloudflareAccount` with your API token. This instance will be used to interact with the Cloudflare API.
|
||||||
|
|
||||||
|
```typescript
|
||||||
|
import * as cflare from '@apiclient.xyz/cloudflare';
|
||||||
|
|
||||||
|
// Initialize Cloudflare Account
|
||||||
|
const myCflareAccount = new cflare.CloudflareAccount('mySuperAwesomeAccountToken');
|
||||||
|
```
|
||||||
|
|
||||||
|
### Managing Zones
|
||||||
|
|
||||||
|
#### List All Zones
|
||||||
|
|
||||||
|
To list all zones in your Cloudflare account, you can use the `listZones` method:
|
||||||
|
|
||||||
|
```typescript
|
||||||
|
const listAllZones = async () => {
|
||||||
|
const myZones = await myCflareAccount.convenience.listZones();
|
||||||
|
console.log(myZones);
|
||||||
|
};
|
||||||
|
```
|
||||||
|
|
||||||
|
#### Get Zone ID
|
||||||
|
|
||||||
|
To get the ID of a specific zone (domain), use the `getZoneId` method:
|
||||||
|
|
||||||
|
```typescript
|
||||||
|
const getZoneId = async (domainName: string) => {
|
||||||
|
try {
|
||||||
|
const zoneId = await myCflareAccount.convenience.getZoneId(domainName);
|
||||||
|
console.log(`Zone ID for ${domainName}:`, zoneId);
|
||||||
|
} catch (error) {
|
||||||
|
console.error('Error getting zone ID:', error);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
```
|
||||||
|
|
||||||
|
#### Purge Cache for a Zone
|
||||||
|
|
||||||
|
To purge all cache for a specific zone:
|
||||||
|
|
||||||
|
```typescript
|
||||||
|
const purgeZoneCache = async (domainName: string) => {
|
||||||
|
await myCflareAccount.convenience.purgeZone(domainName);
|
||||||
|
console.log(`Purged cache for ${domainName}`);
|
||||||
|
};
|
||||||
|
```
|
||||||
|
|
||||||
|
### Managing DNS Records
|
||||||
|
|
||||||
|
#### List DNS Records
|
||||||
|
|
||||||
|
To list all DNS records for a specific zone:
|
||||||
|
|
||||||
|
```typescript
|
||||||
|
const listDnsRecords = async (domainName: string) => {
|
||||||
|
try {
|
||||||
|
const records = await myCflareAccount.convenience.listRecords(domainName);
|
||||||
|
console.log(`DNS Records for ${domainName}:`, records);
|
||||||
|
} catch (error) {
|
||||||
|
console.error('Error listing DNS records:', error);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
```
|
||||||
|
|
||||||
|
#### Get a Specific Record
|
||||||
|
|
||||||
|
To get a specific DNS record by type (e.g., A, AAAA, CNAME, etc.):
|
||||||
|
|
||||||
|
```typescript
|
||||||
|
const getDnsRecord = async (domainName: string, recordType: string) => {
|
||||||
|
try {
|
||||||
|
const record = await myCflareAccount.convenience.getRecord(domainName, recordType);
|
||||||
|
console.log(`DNS Record (${recordType}) for ${domainName}:`, record);
|
||||||
|
} catch (error) {
|
||||||
|
console.error('Error getting DNS record:', error);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
```
|
||||||
|
|
||||||
|
#### Create a DNS Record
|
||||||
|
|
||||||
|
To create a new DNS record:
|
||||||
|
|
||||||
|
```typescript
|
||||||
|
const createDnsRecord = async (domainName: string, recordType: string, content: string) => {
|
||||||
|
try {
|
||||||
|
const response = await myCflareAccount.convenience.createRecord(domainName, recordType, content, 120);
|
||||||
|
console.log(`Created DNS record (${recordType}) for ${domainName}:`, response);
|
||||||
|
} catch (error) {
|
||||||
|
console.error('Error creating DNS record:', error);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
```
|
||||||
|
|
||||||
|
#### Remove a DNS Record
|
||||||
|
|
||||||
|
To remove a DNS record:
|
||||||
|
|
||||||
|
```typescript
|
||||||
|
const removeDnsRecord = async (domainName: string, recordType: string) => {
|
||||||
|
try {
|
||||||
|
await myCflareAccount.convenience.removeRecord(domainName, recordType);
|
||||||
|
console.log(`Removed DNS record (${recordType}) for ${domainName}`);
|
||||||
|
} catch (error) {
|
||||||
|
console.error('Error removing DNS record:', error);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
```
|
||||||
|
|
||||||
|
#### Clean a DNS Record
|
||||||
|
|
||||||
|
To clean (remove) all records of a specific type for a domain:
|
||||||
|
|
||||||
|
```typescript
|
||||||
|
const cleanDnsRecord = async (domainName: string, recordType: string) => {
|
||||||
|
try {
|
||||||
|
await myCflareAccount.convenience.cleanRecord(domainName, recordType);
|
||||||
|
console.log(`Cleaned DNS records (${recordType}) for ${domainName}`);
|
||||||
|
} catch (error) {
|
||||||
|
console.error('Error cleaning DNS record:', error);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
```
|
||||||
|
|
||||||
|
### Managing Workers
|
||||||
|
|
||||||
|
#### Create a Worker
|
||||||
|
|
||||||
|
To create a new Cloudflare Worker:
|
||||||
|
|
||||||
|
```typescript
|
||||||
|
const createWorker = async (workerName: string, workerScript: string) => {
|
||||||
|
try {
|
||||||
|
const worker = await myCflareAccount.workerManager.createWorker(workerName, workerScript);
|
||||||
|
console.log(`Created Worker (${workerName}):`, worker);
|
||||||
|
} catch (error) {
|
||||||
|
console.error('Error creating Worker:', error);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
```
|
||||||
|
|
||||||
|
#### List Workers
|
||||||
|
|
||||||
|
To list all workers in your Cloudflare account:
|
||||||
|
|
||||||
|
```typescript
|
||||||
|
const listWorkers = async () => {
|
||||||
|
try {
|
||||||
|
const workers = await myCflareAccount.workerManager.listWorkers();
|
||||||
|
console.log('Workers:', workers);
|
||||||
|
} catch (error) {
|
||||||
|
console.error('Error listing workers:', error);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
```
|
||||||
|
|
||||||
|
#### Set Worker Routes
|
||||||
|
|
||||||
|
To set routes for a Cloudflare Worker:
|
||||||
|
|
||||||
|
```typescript
|
||||||
|
import { CloudflareWorker } from '@apiclient.xyz/cloudflare';
|
||||||
|
|
||||||
|
const setWorkerRoutes = async (worker: CloudflareWorker, routes: Array<{ zoneName: string, pattern: string }>) => {
|
||||||
|
try {
|
||||||
|
await worker.setRoutes(routes);
|
||||||
|
console.log('Routes set successfully for Worker:', worker.id);
|
||||||
|
} catch (error) {
|
||||||
|
console.error('Error setting routes for Worker:', error);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
```
|
||||||
|
|
||||||
|
#### Sample Complete Workflow
|
||||||
|
|
||||||
|
Below is a sample workflow that includes all the above features:
|
||||||
|
|
||||||
|
```typescript
|
||||||
|
import * as cflare from '@apiclient.xyz/cloudflare';
|
||||||
|
|
||||||
|
const myCflareAccount = new cflare.CloudflareAccount('mySuperAwesomeAccountToken');
|
||||||
|
|
||||||
|
const manageCloudflare = async () => {
|
||||||
|
try {
|
||||||
|
// List all zones
|
||||||
|
const myZones = await myCflareAccount.convenience.listZones();
|
||||||
|
console.log('Zones:', myZones);
|
||||||
|
|
||||||
|
// Get Zone ID for a specific domain
|
||||||
|
const myZoneId = await myCflareAccount.convenience.getZoneId('example.com');
|
||||||
|
console.log('Zone ID:', myZoneId);
|
||||||
|
|
||||||
|
// Purge cache for a zone
|
||||||
|
await myCflareAccount.convenience.purgeZone('example.com');
|
||||||
|
console.log('Cache purged for example.com');
|
||||||
|
|
||||||
|
// List DNS records for a domain
|
||||||
|
const myRecords = await myCflareAccount.convenience.listRecords('example.com');
|
||||||
|
console.log('DNS Records:', myRecords);
|
||||||
|
|
||||||
|
// Get a specific DNS record
|
||||||
|
const myRecord = await myCflareAccount.convenience.getRecord('sub.example.com', 'A');
|
||||||
|
console.log('Specific DNS Record:', myRecord);
|
||||||
|
|
||||||
|
// Create a DNS record
|
||||||
|
const createResponse = await myCflareAccount.convenience.createRecord('sub.example.com', 'A', '127.0.0.1');
|
||||||
|
console.log('Created DNS Record:', createResponse);
|
||||||
|
|
||||||
|
// Clean DNS records
|
||||||
|
await myCflareAccount.convenience.cleanRecord('sub.example.com', 'A');
|
||||||
|
console.log('Cleaned DNS Records for sub.example.com');
|
||||||
|
|
||||||
|
// Create a Cloudflare Worker
|
||||||
|
const myWorker = await myCflareAccount.workerManager.createWorker('myWorker', `addEventListener('fetch', event => { event.respondWith(fetch(event.request)) })`);
|
||||||
|
console.log('Created Worker:', myWorker);
|
||||||
|
|
||||||
|
// Set routes for the Worker
|
||||||
|
await myWorker.setRoutes([{ zoneName: 'example.com', pattern: 'https://*example.com/*' }]);
|
||||||
|
console.log('Routes set for Worker');
|
||||||
|
|
||||||
|
// List all Workers
|
||||||
|
const workers = await myCflareAccount.workerManager.listWorkers();
|
||||||
|
console.log('Workers:', workers);
|
||||||
|
} catch (error) {
|
||||||
|
console.error('Error managing Cloudflare:', error);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
manageCloudflare();
|
||||||
|
```
|
||||||
|
|
||||||
|
This complete guide covers initialization, managing Cloudflare zones, DNS records, and Cloudflare Workers comprehensively using TypeScript for enhanced type safety and intellisense. Always ensure to keep your API keys secure and avoid hardcoding them directly in your scripts.
|
||||||
|
undefined
|
132
test/test.ts
132
test/test.ts
@ -1,54 +1,104 @@
|
|||||||
import { expect, tap } from 'tapbundle'
|
// tslint:disable-next-line: no-implicit-dependencies
|
||||||
import cflare = require('../dist/index')
|
import { expect, tap } from '@push.rocks/tapbundle';
|
||||||
import { Qenv } from 'qenv'
|
// tslint:disable-next-line: no-implicit-dependencies
|
||||||
let testQenv = new Qenv(process.cwd(), process.cwd() + '/.nogit')
|
import { Qenv } from '@push.rocks/qenv';
|
||||||
console.log(testQenv.missingEnvVars)
|
|
||||||
let testCflareAccount = new cflare.CflareAccount()
|
|
||||||
testCflareAccount.auth({
|
|
||||||
email: process.env.CF_EMAIL,
|
|
||||||
key: process.env.CF_KEY
|
|
||||||
})
|
|
||||||
|
|
||||||
let randomPrefix = Math.floor(Math.random() * 2000)
|
import * as cloudflare from '../ts/index.js';
|
||||||
|
|
||||||
|
const testQenv = new Qenv(process.cwd(), process.cwd() + '/.nogit');
|
||||||
|
|
||||||
|
const randomPrefix = Math.floor(Math.random() * 2000);
|
||||||
|
let testCloudflareAccount: cloudflare.CloudflareAccount;
|
||||||
|
|
||||||
|
tap.test('should create a valid instance of CloudflareAccount', async () => {
|
||||||
|
testCloudflareAccount = new cloudflare.CloudflareAccount(await testQenv.getEnvVarOnDemand('CF_KEY'));
|
||||||
|
});
|
||||||
|
|
||||||
|
tap.test('should preselect an account', async () => {
|
||||||
|
await testCloudflareAccount.preselectAccountByName('Sandbox Account');
|
||||||
|
})
|
||||||
|
|
||||||
tap.test('.listZones() -> should display an entire account', async (tools) => {
|
tap.test('.listZones() -> should display an entire account', async (tools) => {
|
||||||
// tools.timeout(600000)
|
tools.timeout(600000);
|
||||||
let result = await testCflareAccount.listZones()
|
const result = await testCloudflareAccount.convenience.listZones();
|
||||||
console.log(result)
|
console.log(result);
|
||||||
})
|
// await tools.delayFor(10000);
|
||||||
|
});
|
||||||
|
|
||||||
tap.test('.getZoneId(domainName) -> should get an Cloudflare Id for a domain string', async (tools) => {
|
tap.test(
|
||||||
// tools.timeout(600000)
|
'.getZoneId(domainName) -> should get an Cloudflare Id for a domain string',
|
||||||
await testCflareAccount.getZoneId('bleu.de')
|
async (tools) => {
|
||||||
})
|
tools.timeout(600000);
|
||||||
|
const id = await testCloudflareAccount.convenience.getZoneId('bleu.de');
|
||||||
|
console.log(`The account id for bleu.de is: ${id}`);
|
||||||
|
}
|
||||||
|
);
|
||||||
|
|
||||||
tap.test('.listRecords(domainName) -> should list all records for a specific Domain Name', async (tools) => {
|
tap.test(
|
||||||
// tools.timeout(600000)
|
'.listRecords(domainName) -> should list all records for a specific Domain Name',
|
||||||
await testCflareAccount.listRecords('bleu.de')
|
async (tools) => {
|
||||||
.then(async (responseArg) => {
|
tools.timeout(600000);
|
||||||
console.log(responseArg)
|
await testCloudflareAccount.convenience.listRecords('bleu.de').then(async (responseArg) => {
|
||||||
})
|
console.log(responseArg);
|
||||||
})
|
});
|
||||||
|
}
|
||||||
|
);
|
||||||
|
|
||||||
tap.test('should create a valid record for a subdomain', async (tools) => {
|
tap.test('should create a valid record for a subdomain', async (tools) => {
|
||||||
// tools.timeout(600000)
|
tools.timeout(600000);
|
||||||
await testCflareAccount.createRecord(`${randomPrefix}subdomain.bleu.de`, 'A', '127.0.0.1')
|
await testCloudflareAccount.convenience.createRecord(
|
||||||
})
|
`${randomPrefix}subdomain.bleu.de`,
|
||||||
|
'A',
|
||||||
|
'127.0.0.1',
|
||||||
|
120
|
||||||
|
);
|
||||||
|
});
|
||||||
|
|
||||||
tap.test('should get a record from Cloudflare', async (tools) => {
|
tap.test('should get a record from Cloudflare', async (tools) => {
|
||||||
// tools.timeout(600000)
|
tools.timeout(600000);
|
||||||
await testCflareAccount.getRecord('bleu.de', 'A')
|
await testCloudflareAccount.convenience
|
||||||
.then(function (responseArg) {
|
.getRecord(`${randomPrefix}subdomain.bleu.de`, 'A')
|
||||||
console.log(responseArg)
|
.then((responseArg) => {
|
||||||
})
|
console.log(responseArg);
|
||||||
})
|
});
|
||||||
|
});
|
||||||
|
|
||||||
tap.test('should remove a subdomain record from Cloudflare', async (tools) => {
|
tap.test('should remove a subdomain record from Cloudflare', async (tools) => {
|
||||||
// tools.timeout(600000)
|
tools.timeout(600000);
|
||||||
await testCflareAccount.removeRecord(`${randomPrefix}subdomain.bleu.de`, 'A')
|
await testCloudflareAccount.convenience
|
||||||
|
.removeRecord(`${randomPrefix}subdomain.bleu.de`, 'A')
|
||||||
.then(async (responseArg) => {
|
.then(async (responseArg) => {
|
||||||
console.log(responseArg)
|
console.log(responseArg);
|
||||||
})
|
});
|
||||||
})
|
});
|
||||||
|
|
||||||
tap.start()
|
tap.test('.purge(some.domain) -> should purge everything', async () => {
|
||||||
|
await testCloudflareAccount.convenience.purgeZone('bleu.de');
|
||||||
|
});
|
||||||
|
|
||||||
|
tap.test('should list workers', async () => {
|
||||||
|
const workerArray = await testCloudflareAccount.workerManager.listWorkerScripts();
|
||||||
|
console.log(workerArray);
|
||||||
|
});
|
||||||
|
|
||||||
|
// WORKERS
|
||||||
|
tap.test('should create a worker', async () => {
|
||||||
|
const worker = await testCloudflareAccount.workerManager.createWorker(
|
||||||
|
'myawesomescript',
|
||||||
|
`addEventListener('fetch', event => { event.respondWith(fetch(event.request)) })`
|
||||||
|
);
|
||||||
|
await worker.setRoutes([
|
||||||
|
{
|
||||||
|
zoneName: 'bleu.de',
|
||||||
|
pattern: 'https://*bleu.de/hello',
|
||||||
|
},
|
||||||
|
]);
|
||||||
|
console.log(worker);
|
||||||
|
});
|
||||||
|
|
||||||
|
tap.test('should get workers again', async () => {
|
||||||
|
const workerArray = await testCloudflareAccount.workerManager.listWorkerScripts();
|
||||||
|
console.log(workerArray);
|
||||||
|
});
|
||||||
|
|
||||||
|
tap.start();
|
||||||
|
8
ts/00_commitinfo_data.ts
Normal file
8
ts/00_commitinfo_data.ts
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
/**
|
||||||
|
* autocreated commitinfo by @pushrocks/commitinfo
|
||||||
|
*/
|
||||||
|
export const commitinfo = {
|
||||||
|
name: '@apiclient.xyz/cloudflare',
|
||||||
|
version: '6.0.5',
|
||||||
|
description: 'A TypeScript client for managing Cloudflare accounts, zones, DNS records, and workers with ease.'
|
||||||
|
}
|
@ -1,161 +0,0 @@
|
|||||||
import 'typings-global'
|
|
||||||
import plugins = require('./cflare.plugins')
|
|
||||||
import * as interfaces from './cflare.interfaces'
|
|
||||||
|
|
||||||
export class CflareAccount {
|
|
||||||
private authEmail: string
|
|
||||||
private authKey: string
|
|
||||||
constructor() {
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
auth (optionsArg: { email: string, key: string }) {
|
|
||||||
this.authEmail = optionsArg.email
|
|
||||||
this.authKey = optionsArg.key
|
|
||||||
}
|
|
||||||
|
|
||||||
async getZoneId (domainName: string) {
|
|
||||||
let zoneArray = await this.listZones(domainName)
|
|
||||||
let filteredResponse = zoneArray.filter((zoneArg) => {
|
|
||||||
return zoneArg.name === domainName
|
|
||||||
})
|
|
||||||
if (filteredResponse.length >= 1) {
|
|
||||||
return filteredResponse[ 0 ].id
|
|
||||||
} else {
|
|
||||||
plugins.beautylog.error(`the domain ${domainName} does not appear to be in this account!`)
|
|
||||||
throw new Error(`the domain ${domainName} does not appear to be in this account!`)
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
getRecord (domainNameArg: string, typeArg: interfaces.TRecord): Promise<interfaces.ICflareRecord> {
|
|
||||||
let done = plugins.q.defer()
|
|
||||||
let result: interfaces.ICflareRecord
|
|
||||||
|
|
||||||
let domain = new plugins.smartstring.Domain(domainNameArg)
|
|
||||||
this.listRecords(domain.zoneName)
|
|
||||||
.then((recordArrayArg) => {
|
|
||||||
let filteredResponse = recordArrayArg.filter((recordArg) => {
|
|
||||||
return (recordArg.type === typeArg && recordArg.name === domainNameArg)
|
|
||||||
})
|
|
||||||
done.resolve(filteredResponse[ 0 ])
|
|
||||||
})
|
|
||||||
return done.promise
|
|
||||||
}
|
|
||||||
|
|
||||||
async createRecord (domainNameArg: string, typeArg: interfaces.TRecord, contentArg: string) {
|
|
||||||
let done = plugins.q.defer()
|
|
||||||
let domain = new plugins.smartstring.Domain(domainNameArg)
|
|
||||||
let domainIdArg = await this.getZoneId(domain.zoneName)
|
|
||||||
let dataObject = {
|
|
||||||
name: domain.fullName,
|
|
||||||
type: typeArg,
|
|
||||||
content: contentArg
|
|
||||||
}
|
|
||||||
this.request('POST', '/zones/' + domainIdArg + '/dns_records', dataObject)
|
|
||||||
.then(function (responseArg) {
|
|
||||||
done.resolve(responseArg)
|
|
||||||
})
|
|
||||||
return done.promise
|
|
||||||
}
|
|
||||||
|
|
||||||
removeRecord (domainNameArg: string, typeArg: interfaces.TRecord) {
|
|
||||||
let done = plugins.q.defer()
|
|
||||||
let domain = new plugins.smartstring.Domain(domainNameArg)
|
|
||||||
this.getRecord(domain.fullName, typeArg)
|
|
||||||
.then((responseArg) => {
|
|
||||||
if (responseArg) {
|
|
||||||
let requestRoute: string = '/zones/' + responseArg.zone_id + '/dns_records/' + responseArg.id
|
|
||||||
this.request('DELETE', requestRoute)
|
|
||||||
.then((responseArg) => {
|
|
||||||
done.resolve(responseArg)
|
|
||||||
})
|
|
||||||
} else {
|
|
||||||
done.reject()
|
|
||||||
}
|
|
||||||
})
|
|
||||||
return done.promise
|
|
||||||
}
|
|
||||||
|
|
||||||
updateRecord (domainNameArg: string, typeArg: string, valueArg) {
|
|
||||||
let done = plugins.q.defer()
|
|
||||||
let domain = new plugins.smartstring.Domain(domainNameArg)
|
|
||||||
return done.promise
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* list all records of a specified domain name
|
|
||||||
* @param domainNameArg - the domain name that you want to get the records from
|
|
||||||
*/
|
|
||||||
async listRecords (domainNameArg: string): Promise<interfaces.ICflareRecord[]> {
|
|
||||||
let domain = new plugins.smartstring.Domain(domainNameArg)
|
|
||||||
let domainId = await this.getZoneId(domain.zoneName)
|
|
||||||
let responseArg: any = await this.request('GET', '/zones/' + domainId + '/dns_records?per_page=100')
|
|
||||||
let result: interfaces.ICflareRecord[] = responseArg.result
|
|
||||||
return result
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* list all zones in the associated authenticated account
|
|
||||||
* @param domainName
|
|
||||||
*/
|
|
||||||
async listZones (domainName?: string): Promise<interfaces.ICflareZone[]> { // TODO: handle pagination
|
|
||||||
let requestRoute = '/zones?per_page=50'
|
|
||||||
|
|
||||||
// may be optionally filtered by domain name
|
|
||||||
if (domainName) {
|
|
||||||
requestRoute = requestRoute + '&name=' + domainName
|
|
||||||
}
|
|
||||||
|
|
||||||
let response: any = await this.request('GET', requestRoute)
|
|
||||||
let result = response.result
|
|
||||||
return result
|
|
||||||
}
|
|
||||||
|
|
||||||
request (methodArg: string, routeArg: string, dataArg = {}) {
|
|
||||||
let done = plugins.q.defer()
|
|
||||||
let jsonArg: string = JSON.stringify(dataArg)
|
|
||||||
let options: plugins.smartrequest.ISmartRequestOptions = {
|
|
||||||
method: methodArg,
|
|
||||||
headers: {
|
|
||||||
'Content-Type': 'application/json',
|
|
||||||
'X-Auth-Email': this.authEmail,
|
|
||||||
'X-Auth-Key': this.authKey
|
|
||||||
},
|
|
||||||
requestBody: jsonArg
|
|
||||||
}
|
|
||||||
// console.log(options);
|
|
||||||
let retryCount = 0
|
|
||||||
|
|
||||||
let makeRequest = async () => {
|
|
||||||
let response: any = await plugins.smartrequest.request(
|
|
||||||
`https://api.cloudflare.com/client/v4${routeArg}`,
|
|
||||||
options
|
|
||||||
)
|
|
||||||
if (response.statusCode === 200) {
|
|
||||||
done.resolve(response.body)
|
|
||||||
} else if (response.statusCode === 429) {
|
|
||||||
console.log('rate limited! Waiting for retry!')
|
|
||||||
retryRequest()
|
|
||||||
} else if (response.statusCode === 400) {
|
|
||||||
console.log('bad request! Going to retry!')
|
|
||||||
} else {
|
|
||||||
console.log(response.statusCode)
|
|
||||||
done.reject(new Error('request failed'))
|
|
||||||
}
|
|
||||||
}
|
|
||||||
let retryRequest = async (delayTimeArg = Math.floor(Math.random() * (60000 - 8000) + 8000)) => {
|
|
||||||
console.log(`retry started and waiting for ${delayTimeArg} ms`)
|
|
||||||
await plugins.smartdelay.delayFor(delayTimeArg)
|
|
||||||
if (retryCount < 10) {
|
|
||||||
retryCount++
|
|
||||||
return await makeRequest()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
makeRequest()
|
|
||||||
return done.promise
|
|
||||||
}
|
|
||||||
|
|
||||||
private authCheck () {
|
|
||||||
return (this.authEmail && this.authKey) // check if auth is available
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,61 +0,0 @@
|
|||||||
import * as plugins from './cflare.plugins'
|
|
||||||
|
|
||||||
export type TRecord = 'A' | 'AAAA' | 'CNAME' | 'TXT' | 'SRV' | 'LOC' | 'MX' | 'NS' | 'SPF'
|
|
||||||
|
|
||||||
export interface ICflareZone {
|
|
||||||
'id': string
|
|
||||||
'name': string
|
|
||||||
'development_mode': number
|
|
||||||
'original_name_servers': string[]
|
|
||||||
'original_registrar': string
|
|
||||||
'original_dnshost': string
|
|
||||||
'created_on': string
|
|
||||||
'modified_on': string
|
|
||||||
'name_servers': string[]
|
|
||||||
'owner': {
|
|
||||||
'id': string
|
|
||||||
'email': string
|
|
||||||
'owner_type': string
|
|
||||||
},
|
|
||||||
'permissions': string[]
|
|
||||||
'plan': {
|
|
||||||
'id': string
|
|
||||||
'name': string
|
|
||||||
'price': number
|
|
||||||
'currency': string
|
|
||||||
'frequency': string
|
|
||||||
'legacy_id': string
|
|
||||||
'is_subscribed': boolean
|
|
||||||
'can_subscribe': boolean
|
|
||||||
},
|
|
||||||
'plan_pending': {
|
|
||||||
'id': string
|
|
||||||
'name': string
|
|
||||||
'price': number
|
|
||||||
'currency': string
|
|
||||||
'frequency': string
|
|
||||||
'legacy_id': string
|
|
||||||
'is_subscribed': string
|
|
||||||
'can_subscribe': string
|
|
||||||
},
|
|
||||||
'status': string
|
|
||||||
'paused': boolean
|
|
||||||
'type': string
|
|
||||||
'checked_on': string
|
|
||||||
}
|
|
||||||
|
|
||||||
export interface ICflareRecord {
|
|
||||||
'id': string
|
|
||||||
'type': string
|
|
||||||
'name': string
|
|
||||||
'content': string
|
|
||||||
'proxiable': boolean
|
|
||||||
'proxied': boolean
|
|
||||||
'ttl': number
|
|
||||||
'locked': boolean
|
|
||||||
'zone_id': string
|
|
||||||
'zone_name': string
|
|
||||||
'created_on': string
|
|
||||||
'modified_on': string
|
|
||||||
'data': any
|
|
||||||
}
|
|
@ -1,6 +0,0 @@
|
|||||||
import 'typings-global'
|
|
||||||
export let beautylog = require('beautylog')
|
|
||||||
export import q = require('smartq')
|
|
||||||
export import smartrequest = require('smartrequest')
|
|
||||||
export import smartstring = require('smartstring')
|
|
||||||
export import smartdelay = require('smartdelay')
|
|
211
ts/cloudflare.classes.account.ts
Normal file
211
ts/cloudflare.classes.account.ts
Normal file
@ -0,0 +1,211 @@
|
|||||||
|
import * as plugins from './cloudflare.plugins.js';
|
||||||
|
import { logger } from './cloudflare.logger.js';
|
||||||
|
import * as interfaces from './interfaces/index.js';
|
||||||
|
|
||||||
|
// interfaces
|
||||||
|
import { WorkerManager } from './cloudflare.classes.workermanager.js';
|
||||||
|
import { ZoneManager } from './cloudflare.classes.zonemanager.js';
|
||||||
|
|
||||||
|
export class CloudflareAccount {
|
||||||
|
private authToken: string;
|
||||||
|
public preselectedAccountId: string;
|
||||||
|
|
||||||
|
public workerManager = new WorkerManager(this);
|
||||||
|
public zoneManager = new ZoneManager(this);
|
||||||
|
|
||||||
|
public apiAccount: plugins.cloudflare.Cloudflare;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* constructor sets auth information on the CloudflareAccountInstance
|
||||||
|
* @param optionsArg
|
||||||
|
*/
|
||||||
|
constructor(authTokenArg: string) {
|
||||||
|
this.authToken = authTokenArg;
|
||||||
|
this.apiAccount = new plugins.cloudflare.Cloudflare({
|
||||||
|
apiToken: this.authToken,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
public async preselectAccountByName(nameArg: string) {
|
||||||
|
const accounts = await this.convenience.listAccounts();
|
||||||
|
const account = accounts.find((accountArg) => {
|
||||||
|
return accountArg.name === nameArg;
|
||||||
|
});
|
||||||
|
if (account) {
|
||||||
|
this.preselectedAccountId = account.id;
|
||||||
|
} else {
|
||||||
|
throw new Error(`account with name ${nameArg} not found`);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public convenience = {
|
||||||
|
/**
|
||||||
|
* listAccounts
|
||||||
|
*/
|
||||||
|
listAccounts: async () => {
|
||||||
|
const accounts: plugins.ICloudflareTypes['Account'][] = [];
|
||||||
|
for await (const account of this.apiAccount.accounts.list()) {
|
||||||
|
accounts.push(account as interfaces.ICloudflareApiAccountObject);
|
||||||
|
}
|
||||||
|
return accounts;
|
||||||
|
},
|
||||||
|
/**
|
||||||
|
* gets a zone id of a domain from cloudflare
|
||||||
|
* @param domainName
|
||||||
|
*/
|
||||||
|
getZoneId: async (domainName: string) => {
|
||||||
|
const domain = new plugins.smartstring.Domain(domainName);
|
||||||
|
const zoneArray = await this.convenience.listZones(domain.zoneName);
|
||||||
|
const filteredResponse = zoneArray.filter((zoneArg) => {
|
||||||
|
return zoneArg.name === domainName;
|
||||||
|
});
|
||||||
|
if (filteredResponse.length >= 1) {
|
||||||
|
return filteredResponse[0].id;
|
||||||
|
} else {
|
||||||
|
logger.log('error', `the domain ${domainName} does not appear to be in this account!`);
|
||||||
|
throw new Error(`the domain ${domainName} does not appear to be in this account!`);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
/**
|
||||||
|
* gets a record
|
||||||
|
* @param domainNameArg
|
||||||
|
* @param typeArg
|
||||||
|
*/
|
||||||
|
getRecord: async (
|
||||||
|
domainNameArg: string,
|
||||||
|
typeArg: plugins.tsclass.network.TDnsRecordType
|
||||||
|
): Promise<plugins.ICloudflareTypes['Record']> => {
|
||||||
|
const domain = new plugins.smartstring.Domain(domainNameArg);
|
||||||
|
const recordArrayArg = await this.convenience.listRecords(domain.zoneName);
|
||||||
|
const filteredResponse = recordArrayArg.filter((recordArg) => {
|
||||||
|
return recordArg.type === typeArg && recordArg.name === domainNameArg;
|
||||||
|
});
|
||||||
|
return filteredResponse[0];
|
||||||
|
},
|
||||||
|
/**
|
||||||
|
* creates a record
|
||||||
|
*/
|
||||||
|
createRecord: async (
|
||||||
|
domainNameArg: string,
|
||||||
|
typeArg: plugins.tsclass.network.TDnsRecordType,
|
||||||
|
contentArg: string,
|
||||||
|
ttlArg = 1
|
||||||
|
): Promise<any> => {
|
||||||
|
const domain = new plugins.smartstring.Domain(domainNameArg);
|
||||||
|
const zoneId = await this.convenience.getZoneId(domain.zoneName);
|
||||||
|
const response = await this.apiAccount.dns.records.create({
|
||||||
|
zone_id: zoneId,
|
||||||
|
type: typeArg as any,
|
||||||
|
name: domain.fullName,
|
||||||
|
content: contentArg,
|
||||||
|
ttl: ttlArg,
|
||||||
|
})
|
||||||
|
return response;
|
||||||
|
},
|
||||||
|
/**
|
||||||
|
* removes a record from Cloudflare
|
||||||
|
* @param domainNameArg
|
||||||
|
* @param typeArg
|
||||||
|
*/
|
||||||
|
removeRecord: async (
|
||||||
|
domainNameArg: string,
|
||||||
|
typeArg: plugins.tsclass.network.TDnsRecordType
|
||||||
|
): Promise<any> => {
|
||||||
|
const domain = new plugins.smartstring.Domain(domainNameArg);
|
||||||
|
const zoneId = await this.convenience.getZoneId(domain.zoneName);
|
||||||
|
const records = await this.convenience.listRecords(domain.zoneName);
|
||||||
|
const recordToDelete = records.find((recordArg) => {
|
||||||
|
return recordArg.name === domainNameArg && recordArg.type === typeArg;
|
||||||
|
});
|
||||||
|
if (recordToDelete) {
|
||||||
|
await this.apiAccount.dns.records.delete(recordToDelete.id, {
|
||||||
|
zone_id: zoneId,
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
logger.log('warn', `record ${domainNameArg} of type ${typeArg} not found`);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* cleanrecord allows the cleaning of any previous records to avoid unwanted sideeffects
|
||||||
|
*/
|
||||||
|
cleanRecord: async (domainNameArg: string, typeArg: plugins.tsclass.network.TDnsRecordType) => {
|
||||||
|
console.log(`cleaning record for ${domainNameArg}`);
|
||||||
|
const records = await this.convenience.listRecords(domainNameArg);
|
||||||
|
const recordsToDelete = records.filter((recordArg) => {
|
||||||
|
return recordArg.type === typeArg;
|
||||||
|
});
|
||||||
|
for (const recordToDelete of recordsToDelete) {
|
||||||
|
await this.apiAccount.dns.records.delete(recordToDelete.id, {
|
||||||
|
zone_id: recordToDelete.zone_id,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* updates a record
|
||||||
|
* @param domainNameArg
|
||||||
|
* @param typeArg
|
||||||
|
* @param valueArg
|
||||||
|
*/
|
||||||
|
updateRecord: async (
|
||||||
|
domainNameArg: string,
|
||||||
|
typeArg: plugins.tsclass.network.TDnsRecordType,
|
||||||
|
valueArg
|
||||||
|
) => {
|
||||||
|
// TODO: implement
|
||||||
|
const domain = new plugins.smartstring.Domain(domainNameArg);
|
||||||
|
},
|
||||||
|
/**
|
||||||
|
* list all records of a specified domain name
|
||||||
|
* @param domainNameArg - the domain name that you want to get the records from
|
||||||
|
*/
|
||||||
|
listRecords: async (domainNameArg: string) => {
|
||||||
|
const domain = new plugins.smartstring.Domain(domainNameArg);
|
||||||
|
const zoneId = await this.convenience.getZoneId(domain.zoneName);
|
||||||
|
const records: plugins.ICloudflareTypes['Record'][] = [];
|
||||||
|
for await (const record of this.apiAccount.dns.records.list({
|
||||||
|
zone_id: zoneId,
|
||||||
|
})) {
|
||||||
|
records.push(record);
|
||||||
|
}
|
||||||
|
return records;
|
||||||
|
},
|
||||||
|
/**
|
||||||
|
* list all zones in the associated authenticated account
|
||||||
|
* @param domainName
|
||||||
|
*/
|
||||||
|
listZones: async (domainName?: string) => {
|
||||||
|
const zones: plugins.ICloudflareTypes['Zone'][] = [];
|
||||||
|
for await (const zone of this.apiAccount.zones.list()) {
|
||||||
|
zones.push(zone);
|
||||||
|
}
|
||||||
|
return zones;
|
||||||
|
},
|
||||||
|
/**
|
||||||
|
* purges a zone
|
||||||
|
*/
|
||||||
|
purgeZone: async (domainName: string): Promise<void> => {
|
||||||
|
const domain = new plugins.smartstring.Domain(domainName);
|
||||||
|
const zoneId = await this.convenience.getZoneId(domain.zoneName);
|
||||||
|
await this.apiAccount.cache.purge({
|
||||||
|
zone_id: zoneId,
|
||||||
|
purge_everything: true,
|
||||||
|
});
|
||||||
|
},
|
||||||
|
|
||||||
|
// acme convenience functions
|
||||||
|
acmeSetDnsChallenge: async (dnsChallenge: plugins.tsclass.network.IDnsChallenge) => {
|
||||||
|
await this.convenience.cleanRecord(dnsChallenge.hostName, 'TXT');
|
||||||
|
await this.convenience.createRecord(
|
||||||
|
dnsChallenge.hostName,
|
||||||
|
'TXT',
|
||||||
|
dnsChallenge.challenge,
|
||||||
|
120
|
||||||
|
);
|
||||||
|
},
|
||||||
|
acmeRemoveDnsChallenge: async (dnsChallenge: plugins.tsclass.network.IDnsChallenge) => {
|
||||||
|
await this.convenience.removeRecord(dnsChallenge.hostName, 'TXT');
|
||||||
|
},
|
||||||
|
};
|
||||||
|
}
|
3
ts/cloudflare.classes.record.ts
Normal file
3
ts/cloudflare.classes.record.ts
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
import * as plugins from './cloudflare.plugins.js';
|
||||||
|
|
||||||
|
export class CloudflareRecord {}
|
93
ts/cloudflare.classes.worker.ts
Normal file
93
ts/cloudflare.classes.worker.ts
Normal file
@ -0,0 +1,93 @@
|
|||||||
|
import * as plugins from './cloudflare.plugins.js';
|
||||||
|
import * as interfaces from './interfaces/index.js';
|
||||||
|
import { WorkerManager } from './cloudflare.classes.workermanager.js';
|
||||||
|
import { logger } from './cloudflare.logger.js';
|
||||||
|
|
||||||
|
export interface IWorkerRoute extends interfaces.ICflareWorkerRoute {
|
||||||
|
zoneName: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
export class CloudflareWorker {
|
||||||
|
// STATIC
|
||||||
|
public static async fromApiObject(
|
||||||
|
workerManager: WorkerManager,
|
||||||
|
apiObject
|
||||||
|
): Promise<CloudflareWorker> {
|
||||||
|
const newWorker = new CloudflareWorker(workerManager);
|
||||||
|
Object.assign(newWorker, apiObject);
|
||||||
|
await newWorker.getRoutes();
|
||||||
|
return newWorker;
|
||||||
|
}
|
||||||
|
|
||||||
|
// INSTANCE
|
||||||
|
private workerManager: WorkerManager;
|
||||||
|
|
||||||
|
public script: string;
|
||||||
|
public id: string;
|
||||||
|
public etag: string;
|
||||||
|
// tslint:disable-next-line: variable-name
|
||||||
|
public created_on: string;
|
||||||
|
// tslint:disable-next-line: variable-name
|
||||||
|
public modified_on: string;
|
||||||
|
|
||||||
|
public routes: IWorkerRoute[] = [];
|
||||||
|
constructor(workerManagerArg: WorkerManager) {
|
||||||
|
this.workerManager = workerManagerArg;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* gets all routes for a worker
|
||||||
|
*/
|
||||||
|
public async getRoutes() {
|
||||||
|
const zones = await this.workerManager.cfAccount.convenience.listZones();
|
||||||
|
for (const zone of zones) {
|
||||||
|
const requestRoute = `/zones/${zone.id}/workers/routes`;
|
||||||
|
const response: {
|
||||||
|
result: interfaces.ICflareWorkerRoute[];
|
||||||
|
} = await this.workerManager.cfAccount.request('GET', requestRoute);
|
||||||
|
for (const route of response.result) {
|
||||||
|
console.log('hey');
|
||||||
|
console.log(route);
|
||||||
|
console.log(this.id);
|
||||||
|
if (route.script === this.id) {
|
||||||
|
this.routes.push({ ...route, zoneName: zone.name });
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public async setRoutes(routeArray: Array<{ zoneName: string; pattern: string }>) {
|
||||||
|
for (const newRoute of routeArray) {
|
||||||
|
// lets determine wether a route is new, needs an update or already up to date.
|
||||||
|
let routeStatus: 'new' | 'needsUpdate' | 'alreadyUpToDate' = 'new';
|
||||||
|
let routeIdForUpdate: string;
|
||||||
|
for (const existingRoute of this.routes) {
|
||||||
|
if (existingRoute.pattern === newRoute.pattern) {
|
||||||
|
routeStatus = 'needsUpdate';
|
||||||
|
routeIdForUpdate = existingRoute.id;
|
||||||
|
if (existingRoute.script === this.id) {
|
||||||
|
routeStatus = 'alreadyUpToDate';
|
||||||
|
logger.log('info', `route already exists, no update needed`);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// lets care about actually setting routes
|
||||||
|
if (routeStatus === 'new') {
|
||||||
|
const zoneId = await this.workerManager.cfAccount.convenience.getZoneId(newRoute.zoneName);
|
||||||
|
const requestRoute = `/zones/${zoneId}/workers/routes`;
|
||||||
|
await this.workerManager.cfAccount.request('POST', requestRoute, {
|
||||||
|
pattern: newRoute.pattern,
|
||||||
|
script: this.id,
|
||||||
|
});
|
||||||
|
} else if (routeStatus === 'needsUpdate') {
|
||||||
|
const zoneId = await this.workerManager.cfAccount.convenience.getZoneId(newRoute.zoneName);
|
||||||
|
const requestRoute = `/zones/${zoneId}/workers/routes/${routeIdForUpdate}`;
|
||||||
|
await this.workerManager.cfAccount.request('PUT', requestRoute, {
|
||||||
|
pattern: newRoute.pattern,
|
||||||
|
script: this.id,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
38
ts/cloudflare.classes.workermanager.ts
Normal file
38
ts/cloudflare.classes.workermanager.ts
Normal file
@ -0,0 +1,38 @@
|
|||||||
|
import * as plugins from './cloudflare.plugins.js';
|
||||||
|
import { CloudflareAccount } from './cloudflare.classes.account.js';
|
||||||
|
import { CloudflareWorker } from './cloudflare.classes.worker.js';
|
||||||
|
|
||||||
|
export class WorkerManager {
|
||||||
|
public cfAccount: CloudflareAccount;
|
||||||
|
|
||||||
|
constructor(cfAccountArg: CloudflareAccount) {
|
||||||
|
this.cfAccount = cfAccountArg;
|
||||||
|
}
|
||||||
|
|
||||||
|
public async createWorker(workerName: string, workerScript: string): Promise<plugins.ICloudflareTypes['Script']> {
|
||||||
|
if (!this.cfAccount.preselectedAccountId) {
|
||||||
|
throw new Error('No account selected. Please select it first on the account.');
|
||||||
|
}
|
||||||
|
const worker = await this.cfAccount.apiAccount.workers.scripts.content.update(workerName, {
|
||||||
|
account_id: this.cfAccount.preselectedAccountId,
|
||||||
|
"CF-WORKER-BODY-PART": workerScript,
|
||||||
|
});
|
||||||
|
return worker;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* lists workers
|
||||||
|
*/
|
||||||
|
public async listWorkerScripts() {
|
||||||
|
if (!this.cfAccount.preselectedAccountId) {
|
||||||
|
throw new Error('No account selected. Please select it first on the account.');
|
||||||
|
}
|
||||||
|
const workerScripts: plugins.ICloudflareTypes['Script'][] = [];
|
||||||
|
for await (const scriptArg of this.cfAccount.apiAccount.workers.scripts.list({
|
||||||
|
account_id: this.cfAccount.preselectedAccountId,
|
||||||
|
})) {
|
||||||
|
workerScripts.push(scriptArg);
|
||||||
|
}
|
||||||
|
return workerScripts;
|
||||||
|
}
|
||||||
|
}
|
9
ts/cloudflare.classes.zone.ts
Normal file
9
ts/cloudflare.classes.zone.ts
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
import * as plugins from './cloudflare.plugins.js';
|
||||||
|
|
||||||
|
export class CloudflareZone {
|
||||||
|
public static createFromApiObject(apiObject: plugins.ICloudflareTypes['Zone']) {
|
||||||
|
const cloudflareZone = new CloudflareZone();
|
||||||
|
Object.assign(cloudflareZone, apiObject);
|
||||||
|
return cloudflareZone;
|
||||||
|
}
|
||||||
|
}
|
32
ts/cloudflare.classes.zonemanager.ts
Normal file
32
ts/cloudflare.classes.zonemanager.ts
Normal file
@ -0,0 +1,32 @@
|
|||||||
|
import * as plugins from './cloudflare.plugins.js';
|
||||||
|
import * as interfaces from './interfaces/index.js';
|
||||||
|
import { CloudflareAccount } from './cloudflare.classes.account.js';
|
||||||
|
import { CloudflareZone } from './cloudflare.classes.zone.js';
|
||||||
|
|
||||||
|
export class ZoneManager {
|
||||||
|
public cfAccount: CloudflareAccount;
|
||||||
|
public zoneName: string;
|
||||||
|
|
||||||
|
constructor(cfAccountArg: CloudflareAccount) {
|
||||||
|
this.cfAccount = cfAccountArg;
|
||||||
|
}
|
||||||
|
|
||||||
|
public async getZones(zoneName: string) {
|
||||||
|
let requestRoute = `/zones?per_page=50`;
|
||||||
|
// may be optionally filtered by domain name
|
||||||
|
|
||||||
|
if (zoneName) {
|
||||||
|
requestRoute = `${requestRoute}&name=${zoneName}`;
|
||||||
|
}
|
||||||
|
|
||||||
|
const response: any = await this.cfAccount.request('GET', requestRoute);
|
||||||
|
const apiObjects: interfaces.ICflareZone[] = response.result;
|
||||||
|
|
||||||
|
const cloudflareZoneArray = [];
|
||||||
|
for (const apiObject of apiObjects) {
|
||||||
|
cloudflareZoneArray.push(CloudflareZone.createFromApiObject(apiObject));
|
||||||
|
}
|
||||||
|
|
||||||
|
return cloudflareZoneArray;
|
||||||
|
}
|
||||||
|
}
|
3
ts/cloudflare.logger.ts
Normal file
3
ts/cloudflare.logger.ts
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
import * as plugins from './cloudflare.plugins.js';
|
||||||
|
|
||||||
|
export const logger = new plugins.smartlog.ConsoleLog();
|
24
ts/cloudflare.plugins.ts
Normal file
24
ts/cloudflare.plugins.ts
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
import * as smartlog from '@push.rocks/smartlog';
|
||||||
|
import * as smartpromise from '@push.rocks/smartpromise';
|
||||||
|
import * as smartdelay from '@push.rocks/smartdelay';
|
||||||
|
import * as smartrequest from '@push.rocks/smartrequest';
|
||||||
|
import * as smartstring from '@push.rocks/smartstring';
|
||||||
|
import * as tsclass from '@tsclass/tsclass';
|
||||||
|
|
||||||
|
export { smartlog, smartpromise, smartdelay, smartrequest, smartstring, tsclass };
|
||||||
|
|
||||||
|
// third party
|
||||||
|
import * as cloudflare from 'cloudflare';
|
||||||
|
import * as interfaces from './interfaces/index.js';
|
||||||
|
import type { Zone } from 'cloudflare/resources/zones/zones.js';
|
||||||
|
import type { Record } from 'cloudflare/resources/dns/records.js';
|
||||||
|
import type { Script } from 'cloudflare/resources/workers/scripts/index.js';
|
||||||
|
|
||||||
|
export interface ICloudflareTypes {
|
||||||
|
Account: interfaces.ICloudflareApiAccountObject;
|
||||||
|
Record: Record;
|
||||||
|
Zone: Zone;
|
||||||
|
Script: Script;
|
||||||
|
}
|
||||||
|
|
||||||
|
export { cloudflare };
|
@ -1,2 +1,2 @@
|
|||||||
import 'typings-global'
|
export { CloudflareAccount } from './cloudflare.classes.account.js';
|
||||||
export {CflareAccount} from "./cflare.classes.cflareaccount";
|
export { CloudflareWorker } from './cloudflare.classes.worker.js';
|
||||||
|
20
ts/interfaces/cloudflare.api.account.ts
Normal file
20
ts/interfaces/cloudflare.api.account.ts
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
export interface ICloudflareApiAccountObject {
|
||||||
|
id: string;
|
||||||
|
name: string;
|
||||||
|
type: 'standard' | 'enterprise' | 'pro' | 'free'; // Assuming other possible types
|
||||||
|
settings: {
|
||||||
|
enforce_twofactor: boolean;
|
||||||
|
api_access_enabled: boolean | null;
|
||||||
|
access_approval_expiry: string | null; // Assuming ISO date string or null
|
||||||
|
use_account_custom_ns_by_default: boolean;
|
||||||
|
default_nameservers: string;
|
||||||
|
};
|
||||||
|
legacy_flags: {
|
||||||
|
enterprise_zone_quota: {
|
||||||
|
maximum: number;
|
||||||
|
current: number;
|
||||||
|
available: number;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
created_on: string; // Assuming ISO date string
|
||||||
|
}
|
5
ts/interfaces/cloudflare.api.workerroute.ts
Normal file
5
ts/interfaces/cloudflare.api.workerroute.ts
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
export interface ICflareWorkerRoute {
|
||||||
|
id: string;
|
||||||
|
pattern: string;
|
||||||
|
script: string;
|
||||||
|
}
|
2
ts/interfaces/index.ts
Normal file
2
ts/interfaces/index.ts
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
export * from './cloudflare.api.account.js';
|
||||||
|
export * from './cloudflare.api.workerroute.js';
|
14
tsconfig.json
Normal file
14
tsconfig.json
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
{
|
||||||
|
"compilerOptions": {
|
||||||
|
"experimentalDecorators": true,
|
||||||
|
"useDefineForClassFields": false,
|
||||||
|
"target": "ES2022",
|
||||||
|
"module": "NodeNext",
|
||||||
|
"moduleResolution": "NodeNext",
|
||||||
|
"esModuleInterop": true,
|
||||||
|
"verbatimModuleSyntax": true
|
||||||
|
},
|
||||||
|
"exclude": [
|
||||||
|
"dist_*/**/*.d.ts"
|
||||||
|
]
|
||||||
|
}
|
@ -1,3 +0,0 @@
|
|||||||
{
|
|
||||||
"extends": "tslint-config-standard"
|
|
||||||
}
|
|
634
yarn.lock
634
yarn.lock
@ -1,634 +0,0 @@
|
|||||||
# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
# yarn lockfile v1
|
|
||||||
|
|
||||||
|
|
||||||
"@types/chai-as-promised@0.0.29":
|
|
||||||
version "0.0.29"
|
|
||||||
resolved "https://registry.yarnpkg.com/@types/chai-as-promised/-/chai-as-promised-0.0.29.tgz#43d52892aa998e185a3de3e2477edb8573be1d77"
|
|
||||||
dependencies:
|
|
||||||
"@types/chai" "*"
|
|
||||||
"@types/promises-a-plus" "*"
|
|
||||||
|
|
||||||
"@types/chai-string@^1.1.30":
|
|
||||||
version "1.1.30"
|
|
||||||
resolved "https://registry.yarnpkg.com/@types/chai-string/-/chai-string-1.1.30.tgz#4d8744b31a5a2295fc01c981ed1e2d4c8a070f0a"
|
|
||||||
dependencies:
|
|
||||||
"@types/chai" "*"
|
|
||||||
|
|
||||||
"@types/chai@*", "@types/chai@^3.4.35":
|
|
||||||
version "3.5.2"
|
|
||||||
resolved "https://registry.yarnpkg.com/@types/chai/-/chai-3.5.2.tgz#c11cd2817d3a401b7ba0f5a420f35c56139b1c1e"
|
|
||||||
|
|
||||||
"@types/fs-extra@3.x.x":
|
|
||||||
version "3.0.3"
|
|
||||||
resolved "https://registry.yarnpkg.com/@types/fs-extra/-/fs-extra-3.0.3.tgz#1d66eb670ebf657e57c0fda014df340c19d8aa0c"
|
|
||||||
dependencies:
|
|
||||||
"@types/node" "*"
|
|
||||||
|
|
||||||
"@types/lodash@^4.14.55":
|
|
||||||
version "4.14.65"
|
|
||||||
resolved "https://registry.yarnpkg.com/@types/lodash/-/lodash-4.14.65.tgz#a0f78d71ffcd3c02628d5f616410c98c424326d5"
|
|
||||||
|
|
||||||
"@types/node@*":
|
|
||||||
version "7.0.27"
|
|
||||||
resolved "https://registry.yarnpkg.com/@types/node/-/node-7.0.27.tgz#ba5e1a87aca2b4f5817289615ffe56472927687e"
|
|
||||||
|
|
||||||
"@types/promises-a-plus@*":
|
|
||||||
version "0.0.27"
|
|
||||||
resolved "https://registry.yarnpkg.com/@types/promises-a-plus/-/promises-a-plus-0.0.27.tgz#c64651134614c84b8f5d7114ce8901d36a609780"
|
|
||||||
|
|
||||||
"@types/vinyl@^2.0.0":
|
|
||||||
version "2.0.0"
|
|
||||||
resolved "https://registry.yarnpkg.com/@types/vinyl/-/vinyl-2.0.0.tgz#fd213bf7f4136dde21fe1895500b12c186f8c268"
|
|
||||||
dependencies:
|
|
||||||
"@types/node" "*"
|
|
||||||
|
|
||||||
ansi-256-colors@^1.1.0:
|
|
||||||
version "1.1.0"
|
|
||||||
resolved "https://registry.yarnpkg.com/ansi-256-colors/-/ansi-256-colors-1.1.0.tgz#910de50efcc7c09e3d82f2f87abd6b700c18818a"
|
|
||||||
|
|
||||||
ansi-regex@^2.0.0:
|
|
||||||
version "2.1.1"
|
|
||||||
resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df"
|
|
||||||
|
|
||||||
ansi-styles@^2.2.1:
|
|
||||||
version "2.2.1"
|
|
||||||
resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe"
|
|
||||||
|
|
||||||
argparse@^1.0.7:
|
|
||||||
version "1.0.9"
|
|
||||||
resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.9.tgz#73d83bc263f86e97f8cc4f6bae1b0e90a7d22c86"
|
|
||||||
dependencies:
|
|
||||||
sprintf-js "~1.0.2"
|
|
||||||
|
|
||||||
assertion-error@^1.0.1:
|
|
||||||
version "1.0.2"
|
|
||||||
resolved "https://registry.yarnpkg.com/assertion-error/-/assertion-error-1.0.2.tgz#13ca515d86206da0bac66e834dd397d87581094c"
|
|
||||||
|
|
||||||
balanced-match@^0.4.1:
|
|
||||||
version "0.4.2"
|
|
||||||
resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-0.4.2.tgz#cb3f3e3c732dc0f01ee70b403f302e61d7709838"
|
|
||||||
|
|
||||||
beautycolor@^1.0.7:
|
|
||||||
version "1.0.7"
|
|
||||||
resolved "https://registry.yarnpkg.com/beautycolor/-/beautycolor-1.0.7.tgz#a4715738ac4c8221371e9cbeb5a6cc6d11ecbf7c"
|
|
||||||
dependencies:
|
|
||||||
ansi-256-colors "^1.1.0"
|
|
||||||
typings-global "^1.0.14"
|
|
||||||
|
|
||||||
beautylog@^6.1.1:
|
|
||||||
version "6.1.10"
|
|
||||||
resolved "https://registry.yarnpkg.com/beautylog/-/beautylog-6.1.10.tgz#9c27e566937684cb689f9372d98cfa5415d50b72"
|
|
||||||
dependencies:
|
|
||||||
"@types/lodash" "^4.14.55"
|
|
||||||
beautycolor "^1.0.7"
|
|
||||||
figlet "^1.2.0"
|
|
||||||
lodash "^4.17.4"
|
|
||||||
ora "^1.1.0"
|
|
||||||
smartenv "^2.0.0"
|
|
||||||
smartq "^1.1.1"
|
|
||||||
typings-global "^1.0.14"
|
|
||||||
|
|
||||||
bindings@^1.2.1:
|
|
||||||
version "1.2.1"
|
|
||||||
resolved "https://registry.yarnpkg.com/bindings/-/bindings-1.2.1.tgz#14ad6113812d2d37d72e67b4cacb4bb726505f11"
|
|
||||||
|
|
||||||
brace-expansion@^1.1.7:
|
|
||||||
version "1.1.7"
|
|
||||||
resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.7.tgz#3effc3c50e000531fb720eaff80f0ae8ef23cf59"
|
|
||||||
dependencies:
|
|
||||||
balanced-match "^0.4.1"
|
|
||||||
concat-map "0.0.1"
|
|
||||||
|
|
||||||
chai-as-promised@^6.0.0:
|
|
||||||
version "6.0.0"
|
|
||||||
resolved "https://registry.yarnpkg.com/chai-as-promised/-/chai-as-promised-6.0.0.tgz#1a02a433a6f24dafac63b9c96fa1684db1aa8da6"
|
|
||||||
dependencies:
|
|
||||||
check-error "^1.0.2"
|
|
||||||
|
|
||||||
chai-string@^1.3.0:
|
|
||||||
version "1.3.0"
|
|
||||||
resolved "https://registry.yarnpkg.com/chai-string/-/chai-string-1.3.0.tgz#df6139f294391b1035be5606f60a843b3a5041e7"
|
|
||||||
|
|
||||||
chai@^3.5.0:
|
|
||||||
version "3.5.0"
|
|
||||||
resolved "https://registry.yarnpkg.com/chai/-/chai-3.5.0.tgz#4d02637b067fe958bdbfdd3a40ec56fef7373247"
|
|
||||||
dependencies:
|
|
||||||
assertion-error "^1.0.1"
|
|
||||||
deep-eql "^0.1.3"
|
|
||||||
type-detect "^1.0.0"
|
|
||||||
|
|
||||||
chalk@^1.0.0, chalk@^1.1.1:
|
|
||||||
version "1.1.3"
|
|
||||||
resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98"
|
|
||||||
dependencies:
|
|
||||||
ansi-styles "^2.2.1"
|
|
||||||
escape-string-regexp "^1.0.2"
|
|
||||||
has-ansi "^2.0.0"
|
|
||||||
strip-ansi "^3.0.0"
|
|
||||||
supports-color "^2.0.0"
|
|
||||||
|
|
||||||
check-error@^1.0.2:
|
|
||||||
version "1.0.2"
|
|
||||||
resolved "https://registry.yarnpkg.com/check-error/-/check-error-1.0.2.tgz#574d312edd88bb5dd8912e9286dd6c0aed4aac82"
|
|
||||||
|
|
||||||
cli-cursor@^2.1.0:
|
|
||||||
version "2.1.0"
|
|
||||||
resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5"
|
|
||||||
dependencies:
|
|
||||||
restore-cursor "^2.0.0"
|
|
||||||
|
|
||||||
cli-spinners@^1.0.0:
|
|
||||||
version "1.0.0"
|
|
||||||
resolved "https://registry.yarnpkg.com/cli-spinners/-/cli-spinners-1.0.0.tgz#ef987ed3d48391ac3dab9180b406a742180d6e6a"
|
|
||||||
|
|
||||||
clone-buffer@^1.0.0:
|
|
||||||
version "1.0.0"
|
|
||||||
resolved "https://registry.yarnpkg.com/clone-buffer/-/clone-buffer-1.0.0.tgz#e3e25b207ac4e701af721e2cb5a16792cac3dc58"
|
|
||||||
|
|
||||||
clone-stats@^1.0.0:
|
|
||||||
version "1.0.0"
|
|
||||||
resolved "https://registry.yarnpkg.com/clone-stats/-/clone-stats-1.0.0.tgz#b3782dff8bb5474e18b9b6bf0fdfe782f8777680"
|
|
||||||
|
|
||||||
clone@^1.0.0:
|
|
||||||
version "1.0.2"
|
|
||||||
resolved "https://registry.yarnpkg.com/clone/-/clone-1.0.2.tgz#260b7a99ebb1edfe247538175f783243cb19d149"
|
|
||||||
|
|
||||||
cloneable-readable@^1.0.0:
|
|
||||||
version "1.0.0"
|
|
||||||
resolved "https://registry.yarnpkg.com/cloneable-readable/-/cloneable-readable-1.0.0.tgz#a6290d413f217a61232f95e458ff38418cfb0117"
|
|
||||||
dependencies:
|
|
||||||
inherits "^2.0.1"
|
|
||||||
process-nextick-args "^1.0.6"
|
|
||||||
through2 "^2.0.1"
|
|
||||||
|
|
||||||
concat-map@0.0.1:
|
|
||||||
version "0.0.1"
|
|
||||||
resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b"
|
|
||||||
|
|
||||||
core-util-is@~1.0.0:
|
|
||||||
version "1.0.2"
|
|
||||||
resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7"
|
|
||||||
|
|
||||||
deep-eql@^0.1.3:
|
|
||||||
version "0.1.3"
|
|
||||||
resolved "https://registry.yarnpkg.com/deep-eql/-/deep-eql-0.1.3.tgz#ef558acab8de25206cd713906d74e56930eb69f2"
|
|
||||||
dependencies:
|
|
||||||
type-detect "0.1.1"
|
|
||||||
|
|
||||||
early@^2.1.1:
|
|
||||||
version "2.1.1"
|
|
||||||
resolved "https://registry.yarnpkg.com/early/-/early-2.1.1.tgz#841e23254ea5dc54d8afaeee82f5ab65c00ee23c"
|
|
||||||
dependencies:
|
|
||||||
beautycolor "^1.0.7"
|
|
||||||
smartq "^1.1.1"
|
|
||||||
typings-global "^1.0.16"
|
|
||||||
|
|
||||||
escape-string-regexp@^1.0.2:
|
|
||||||
version "1.0.5"
|
|
||||||
resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"
|
|
||||||
|
|
||||||
esprima@^3.1.1:
|
|
||||||
version "3.1.3"
|
|
||||||
resolved "https://registry.yarnpkg.com/esprima/-/esprima-3.1.3.tgz#fdca51cee6133895e3c88d535ce49dbff62a4633"
|
|
||||||
|
|
||||||
figlet@^1.2.0:
|
|
||||||
version "1.2.0"
|
|
||||||
resolved "https://registry.yarnpkg.com/figlet/-/figlet-1.2.0.tgz#6c46537378fab649146b5a6143dda019b430b410"
|
|
||||||
|
|
||||||
first-chunk-stream@^2.0.0:
|
|
||||||
version "2.0.0"
|
|
||||||
resolved "https://registry.yarnpkg.com/first-chunk-stream/-/first-chunk-stream-2.0.0.tgz#1bdecdb8e083c0664b91945581577a43a9f31d70"
|
|
||||||
dependencies:
|
|
||||||
readable-stream "^2.0.2"
|
|
||||||
|
|
||||||
fs-extra@^3.0.1:
|
|
||||||
version "3.0.1"
|
|
||||||
resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-3.0.1.tgz#3794f378c58b342ea7dbbb23095109c4b3b62291"
|
|
||||||
dependencies:
|
|
||||||
graceful-fs "^4.1.2"
|
|
||||||
jsonfile "^3.0.0"
|
|
||||||
universalify "^0.1.0"
|
|
||||||
|
|
||||||
fs.realpath@^1.0.0:
|
|
||||||
version "1.0.0"
|
|
||||||
resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f"
|
|
||||||
|
|
||||||
glob@^7.0.0, glob@^7.1.1:
|
|
||||||
version "7.1.2"
|
|
||||||
resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15"
|
|
||||||
dependencies:
|
|
||||||
fs.realpath "^1.0.0"
|
|
||||||
inflight "^1.0.4"
|
|
||||||
inherits "2"
|
|
||||||
minimatch "^3.0.4"
|
|
||||||
once "^1.3.0"
|
|
||||||
path-is-absolute "^1.0.0"
|
|
||||||
|
|
||||||
graceful-fs@^4.1.2, graceful-fs@^4.1.6:
|
|
||||||
version "4.1.11"
|
|
||||||
resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658"
|
|
||||||
|
|
||||||
has-ansi@^2.0.0:
|
|
||||||
version "2.0.0"
|
|
||||||
resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91"
|
|
||||||
dependencies:
|
|
||||||
ansi-regex "^2.0.0"
|
|
||||||
|
|
||||||
home@^1.0.1:
|
|
||||||
version "1.0.1"
|
|
||||||
resolved "https://registry.yarnpkg.com/home/-/home-1.0.1.tgz#96a423ceb49b98378ff5ef3ceae059a557f9dd35"
|
|
||||||
dependencies:
|
|
||||||
os-homedir "^1.0.1"
|
|
||||||
|
|
||||||
inflight@^1.0.4:
|
|
||||||
version "1.0.6"
|
|
||||||
resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9"
|
|
||||||
dependencies:
|
|
||||||
once "^1.3.0"
|
|
||||||
wrappy "1"
|
|
||||||
|
|
||||||
inherits@2, inherits@^2.0.1, inherits@~2.0.1:
|
|
||||||
version "2.0.3"
|
|
||||||
resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de"
|
|
||||||
|
|
||||||
interpret@^1.0.0:
|
|
||||||
version "1.0.3"
|
|
||||||
resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.0.3.tgz#cbc35c62eeee73f19ab7b10a801511401afc0f90"
|
|
||||||
|
|
||||||
is-stream@^1.1.0:
|
|
||||||
version "1.1.0"
|
|
||||||
resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44"
|
|
||||||
|
|
||||||
is-utf8@^0.2.0, is-utf8@^0.2.1:
|
|
||||||
version "0.2.1"
|
|
||||||
resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72"
|
|
||||||
|
|
||||||
isarray@~1.0.0:
|
|
||||||
version "1.0.0"
|
|
||||||
resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11"
|
|
||||||
|
|
||||||
js-base64@^2.1.9:
|
|
||||||
version "2.1.9"
|
|
||||||
resolved "https://registry.yarnpkg.com/js-base64/-/js-base64-2.1.9.tgz#f0e80ae039a4bd654b5f281fc93f04a914a7fcce"
|
|
||||||
|
|
||||||
js-yaml@^3.8.3:
|
|
||||||
version "3.8.4"
|
|
||||||
resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.8.4.tgz#520b4564f86573ba96662af85a8cafa7b4b5a6f6"
|
|
||||||
dependencies:
|
|
||||||
argparse "^1.0.7"
|
|
||||||
esprima "^3.1.1"
|
|
||||||
|
|
||||||
jsonfile@^3.0.0:
|
|
||||||
version "3.0.0"
|
|
||||||
resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-3.0.0.tgz#92e7c7444e5ffd5fa32e6a9ae8b85034df8347d0"
|
|
||||||
optionalDependencies:
|
|
||||||
graceful-fs "^4.1.6"
|
|
||||||
|
|
||||||
leakage@^0.2.0:
|
|
||||||
version "0.2.0"
|
|
||||||
resolved "https://registry.yarnpkg.com/leakage/-/leakage-0.2.0.tgz#9e7a8cc1d241d8c8427e348769e192e172fd8733"
|
|
||||||
dependencies:
|
|
||||||
left-pad "^1.1.3"
|
|
||||||
memwatch-next "^0.3.0"
|
|
||||||
minimist "^1.2.0"
|
|
||||||
pretty-bytes "^4.0.2"
|
|
||||||
|
|
||||||
left-pad@^1.1.3:
|
|
||||||
version "1.1.3"
|
|
||||||
resolved "https://registry.yarnpkg.com/left-pad/-/left-pad-1.1.3.tgz#612f61c033f3a9e08e939f1caebeea41b6f3199a"
|
|
||||||
|
|
||||||
lodash@^4.17.4:
|
|
||||||
version "4.17.4"
|
|
||||||
resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae"
|
|
||||||
|
|
||||||
log-symbols@^1.0.2:
|
|
||||||
version "1.0.2"
|
|
||||||
resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-1.0.2.tgz#376ff7b58ea3086a0f09facc74617eca501e1a18"
|
|
||||||
dependencies:
|
|
||||||
chalk "^1.0.0"
|
|
||||||
|
|
||||||
memwatch-next@^0.3.0:
|
|
||||||
version "0.3.0"
|
|
||||||
resolved "https://registry.yarnpkg.com/memwatch-next/-/memwatch-next-0.3.0.tgz#2111050f9a906e0aa2d72a4ec0f0089c78726f8f"
|
|
||||||
dependencies:
|
|
||||||
bindings "^1.2.1"
|
|
||||||
nan "^2.3.2"
|
|
||||||
|
|
||||||
mimic-fn@^1.0.0:
|
|
||||||
version "1.1.0"
|
|
||||||
resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.1.0.tgz#e667783d92e89dbd342818b5230b9d62a672ad18"
|
|
||||||
|
|
||||||
minimatch@^3.0.4:
|
|
||||||
version "3.0.4"
|
|
||||||
resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083"
|
|
||||||
dependencies:
|
|
||||||
brace-expansion "^1.1.7"
|
|
||||||
|
|
||||||
minimist@^1.2.0:
|
|
||||||
version "1.2.0"
|
|
||||||
resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284"
|
|
||||||
|
|
||||||
nan@^2.3.2:
|
|
||||||
version "2.6.2"
|
|
||||||
resolved "https://registry.yarnpkg.com/nan/-/nan-2.6.2.tgz#e4ff34e6c95fdfb5aecc08de6596f43605a7db45"
|
|
||||||
|
|
||||||
once@^1.3.0:
|
|
||||||
version "1.4.0"
|
|
||||||
resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1"
|
|
||||||
dependencies:
|
|
||||||
wrappy "1"
|
|
||||||
|
|
||||||
onetime@^2.0.0:
|
|
||||||
version "2.0.1"
|
|
||||||
resolved "https://registry.yarnpkg.com/onetime/-/onetime-2.0.1.tgz#067428230fd67443b2794b22bba528b6867962d4"
|
|
||||||
dependencies:
|
|
||||||
mimic-fn "^1.0.0"
|
|
||||||
|
|
||||||
ora@^1.1.0:
|
|
||||||
version "1.2.0"
|
|
||||||
resolved "https://registry.yarnpkg.com/ora/-/ora-1.2.0.tgz#32fb3183500efe83f5ea89101785f0ee6060fec9"
|
|
||||||
dependencies:
|
|
||||||
chalk "^1.1.1"
|
|
||||||
cli-cursor "^2.1.0"
|
|
||||||
cli-spinners "^1.0.0"
|
|
||||||
log-symbols "^1.0.2"
|
|
||||||
|
|
||||||
os-homedir@^1.0.1:
|
|
||||||
version "1.0.2"
|
|
||||||
resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3"
|
|
||||||
|
|
||||||
path-is-absolute@^1.0.0:
|
|
||||||
version "1.0.1"
|
|
||||||
resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f"
|
|
||||||
|
|
||||||
path-parse@^1.0.5:
|
|
||||||
version "1.0.5"
|
|
||||||
resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1"
|
|
||||||
|
|
||||||
pify@^2.3.0:
|
|
||||||
version "2.3.0"
|
|
||||||
resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c"
|
|
||||||
|
|
||||||
pretty-bytes@^4.0.2:
|
|
||||||
version "4.0.2"
|
|
||||||
resolved "https://registry.yarnpkg.com/pretty-bytes/-/pretty-bytes-4.0.2.tgz#b2bf82e7350d65c6c33aa95aaa5a4f6327f61cd9"
|
|
||||||
|
|
||||||
process-nextick-args@^1.0.6, process-nextick-args@~1.0.6:
|
|
||||||
version "1.0.7"
|
|
||||||
resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3"
|
|
||||||
|
|
||||||
qenv@^1.1.3:
|
|
||||||
version "1.1.7"
|
|
||||||
resolved "https://registry.yarnpkg.com/qenv/-/qenv-1.1.7.tgz#d03f8bf8fe37494cf08d0919fe765dca84d9afae"
|
|
||||||
dependencies:
|
|
||||||
lodash "^4.17.4"
|
|
||||||
smartfile "^4.2.11"
|
|
||||||
typings-global "^1.0.16"
|
|
||||||
|
|
||||||
readable-stream@^2.0.2, readable-stream@^2.1.5:
|
|
||||||
version "2.2.10"
|
|
||||||
resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.2.10.tgz#effe72bb7c884c0dd335e2379d526196d9d011ee"
|
|
||||||
dependencies:
|
|
||||||
core-util-is "~1.0.0"
|
|
||||||
inherits "~2.0.1"
|
|
||||||
isarray "~1.0.0"
|
|
||||||
process-nextick-args "~1.0.6"
|
|
||||||
safe-buffer "^5.0.1"
|
|
||||||
string_decoder "~1.0.0"
|
|
||||||
util-deprecate "~1.0.1"
|
|
||||||
|
|
||||||
rechoir@^0.6.2:
|
|
||||||
version "0.6.2"
|
|
||||||
resolved "https://registry.yarnpkg.com/rechoir/-/rechoir-0.6.2.tgz#85204b54dba82d5742e28c96756ef43af50e3384"
|
|
||||||
dependencies:
|
|
||||||
resolve "^1.1.6"
|
|
||||||
|
|
||||||
remove-trailing-separator@^1.0.1:
|
|
||||||
version "1.0.1"
|
|
||||||
resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.0.1.tgz#615ebb96af559552d4bf4057c8436d486ab63cc4"
|
|
||||||
|
|
||||||
replace-ext@^1.0.0:
|
|
||||||
version "1.0.0"
|
|
||||||
resolved "https://registry.yarnpkg.com/replace-ext/-/replace-ext-1.0.0.tgz#de63128373fcbf7c3ccfa4de5a480c45a67958eb"
|
|
||||||
|
|
||||||
require-reload@0.2.2:
|
|
||||||
version "0.2.2"
|
|
||||||
resolved "https://registry.yarnpkg.com/require-reload/-/require-reload-0.2.2.tgz#29a7591846caf91b6e8a3cda991683f95f8d7d42"
|
|
||||||
|
|
||||||
resolve@^1.1.6:
|
|
||||||
version "1.3.3"
|
|
||||||
resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.3.3.tgz#655907c3469a8680dc2de3a275a8fdd69691f0e5"
|
|
||||||
dependencies:
|
|
||||||
path-parse "^1.0.5"
|
|
||||||
|
|
||||||
restore-cursor@^2.0.0:
|
|
||||||
version "2.0.0"
|
|
||||||
resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf"
|
|
||||||
dependencies:
|
|
||||||
onetime "^2.0.0"
|
|
||||||
signal-exit "^3.0.2"
|
|
||||||
|
|
||||||
safe-buffer@^5.0.1:
|
|
||||||
version "5.1.0"
|
|
||||||
resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.0.tgz#fe4c8460397f9eaaaa58e73be46273408a45e223"
|
|
||||||
|
|
||||||
semver@^5.3.0:
|
|
||||||
version "5.3.0"
|
|
||||||
resolved "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f"
|
|
||||||
|
|
||||||
shelljs@^0.7.7:
|
|
||||||
version "0.7.7"
|
|
||||||
resolved "https://registry.yarnpkg.com/shelljs/-/shelljs-0.7.7.tgz#b2f5c77ef97148f4b4f6e22682e10bba8667cff1"
|
|
||||||
dependencies:
|
|
||||||
glob "^7.0.0"
|
|
||||||
interpret "^1.0.0"
|
|
||||||
rechoir "^0.6.2"
|
|
||||||
|
|
||||||
signal-exit@^3.0.2:
|
|
||||||
version "3.0.2"
|
|
||||||
resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d"
|
|
||||||
|
|
||||||
smartchai@^1.0.3:
|
|
||||||
version "1.0.3"
|
|
||||||
resolved "https://registry.yarnpkg.com/smartchai/-/smartchai-1.0.3.tgz#de6d010bb8b5aef24cb70b31a5f5334e8c41b72f"
|
|
||||||
dependencies:
|
|
||||||
"@types/chai" "^3.4.35"
|
|
||||||
"@types/chai-as-promised" "0.0.29"
|
|
||||||
"@types/chai-string" "^1.1.30"
|
|
||||||
chai "^3.5.0"
|
|
||||||
chai-as-promised "^6.0.0"
|
|
||||||
chai-string "^1.3.0"
|
|
||||||
|
|
||||||
smartdelay@^1.0.1:
|
|
||||||
version "1.0.1"
|
|
||||||
resolved "https://registry.yarnpkg.com/smartdelay/-/smartdelay-1.0.1.tgz#687f8bcc09d7c62c9c5a8a1771c1aba3aff54156"
|
|
||||||
dependencies:
|
|
||||||
typings-global "^1.0.14"
|
|
||||||
|
|
||||||
smartenv@^2.0.0:
|
|
||||||
version "2.0.6"
|
|
||||||
resolved "https://registry.yarnpkg.com/smartenv/-/smartenv-2.0.6.tgz#b38c679b0c151b9af548f68c3a072c29d1417e8d"
|
|
||||||
dependencies:
|
|
||||||
lodash "^4.17.4"
|
|
||||||
smartq "^1.1.1"
|
|
||||||
typings-global "^1.0.14"
|
|
||||||
|
|
||||||
smartfile@^4.2.11:
|
|
||||||
version "4.2.17"
|
|
||||||
resolved "https://registry.yarnpkg.com/smartfile/-/smartfile-4.2.17.tgz#9eba8f65eea7e4db51aa30562f6039815a88b125"
|
|
||||||
dependencies:
|
|
||||||
"@types/fs-extra" "3.x.x"
|
|
||||||
"@types/vinyl" "^2.0.0"
|
|
||||||
fs-extra "^3.0.1"
|
|
||||||
glob "^7.1.1"
|
|
||||||
js-yaml "^3.8.3"
|
|
||||||
require-reload "0.2.2"
|
|
||||||
smartpath "^3.2.8"
|
|
||||||
smartq "^1.1.1"
|
|
||||||
smartrequest "^1.0.4"
|
|
||||||
typings-global "^1.0.16"
|
|
||||||
vinyl "^2.0.2"
|
|
||||||
vinyl-file "^3.0.0"
|
|
||||||
|
|
||||||
smartpath@^3.2.8:
|
|
||||||
version "3.2.8"
|
|
||||||
resolved "https://registry.yarnpkg.com/smartpath/-/smartpath-3.2.8.tgz#4834bd3a8bae2295baacadba23c87a501952f940"
|
|
||||||
dependencies:
|
|
||||||
home "^1.0.1"
|
|
||||||
typings-global "^1.0.14"
|
|
||||||
|
|
||||||
smartq@^1.1.0, smartq@^1.1.1:
|
|
||||||
version "1.1.1"
|
|
||||||
resolved "https://registry.yarnpkg.com/smartq/-/smartq-1.1.1.tgz#efb358705260d41ae18aef7ffd815f7b6fe17dd3"
|
|
||||||
dependencies:
|
|
||||||
typed-promisify "^0.3.0"
|
|
||||||
typings-global "^1.0.14"
|
|
||||||
|
|
||||||
smartrequest@^1.0.4:
|
|
||||||
version "1.0.4"
|
|
||||||
resolved "https://registry.yarnpkg.com/smartrequest/-/smartrequest-1.0.4.tgz#86af2163ae28f1031b01c2d8ad8c429733920611"
|
|
||||||
dependencies:
|
|
||||||
smartq "^1.1.0"
|
|
||||||
typings-global "^1.0.14"
|
|
||||||
|
|
||||||
smartstring@^2.0.22:
|
|
||||||
version "2.0.24"
|
|
||||||
resolved "https://registry.yarnpkg.com/smartstring/-/smartstring-2.0.24.tgz#dc1c5efb738c10a2d7daeea3d800ad2ecc65a26c"
|
|
||||||
dependencies:
|
|
||||||
js-base64 "^2.1.9"
|
|
||||||
typings-global "^1.0.14"
|
|
||||||
|
|
||||||
sprintf-js@~1.0.2:
|
|
||||||
version "1.0.3"
|
|
||||||
resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c"
|
|
||||||
|
|
||||||
string_decoder@~1.0.0:
|
|
||||||
version "1.0.1"
|
|
||||||
resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.1.tgz#62e200f039955a6810d8df0a33ffc0f013662d98"
|
|
||||||
dependencies:
|
|
||||||
safe-buffer "^5.0.1"
|
|
||||||
|
|
||||||
strip-ansi@^3.0.0:
|
|
||||||
version "3.0.1"
|
|
||||||
resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf"
|
|
||||||
dependencies:
|
|
||||||
ansi-regex "^2.0.0"
|
|
||||||
|
|
||||||
strip-bom-buf@^1.0.0:
|
|
||||||
version "1.0.0"
|
|
||||||
resolved "https://registry.yarnpkg.com/strip-bom-buf/-/strip-bom-buf-1.0.0.tgz#1cb45aaf57530f4caf86c7f75179d2c9a51dd572"
|
|
||||||
dependencies:
|
|
||||||
is-utf8 "^0.2.1"
|
|
||||||
|
|
||||||
strip-bom-stream@^2.0.0:
|
|
||||||
version "2.0.0"
|
|
||||||
resolved "https://registry.yarnpkg.com/strip-bom-stream/-/strip-bom-stream-2.0.0.tgz#f87db5ef2613f6968aa545abfe1ec728b6a829ca"
|
|
||||||
dependencies:
|
|
||||||
first-chunk-stream "^2.0.0"
|
|
||||||
strip-bom "^2.0.0"
|
|
||||||
|
|
||||||
strip-bom@^2.0.0:
|
|
||||||
version "2.0.0"
|
|
||||||
resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e"
|
|
||||||
dependencies:
|
|
||||||
is-utf8 "^0.2.0"
|
|
||||||
|
|
||||||
supports-color@^2.0.0:
|
|
||||||
version "2.0.0"
|
|
||||||
resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7"
|
|
||||||
|
|
||||||
tapbundle@^1.0.13:
|
|
||||||
version "1.0.13"
|
|
||||||
resolved "https://registry.yarnpkg.com/tapbundle/-/tapbundle-1.0.13.tgz#0b274aed6a386c0c01d8d517709381ce96e3971e"
|
|
||||||
dependencies:
|
|
||||||
early "^2.1.1"
|
|
||||||
leakage "^0.2.0"
|
|
||||||
smartchai "^1.0.3"
|
|
||||||
smartdelay "^1.0.1"
|
|
||||||
smartq "^1.1.1"
|
|
||||||
typings-global "^1.0.16"
|
|
||||||
|
|
||||||
through2@^2.0.1:
|
|
||||||
version "2.0.3"
|
|
||||||
resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.3.tgz#0004569b37c7c74ba39c43f3ced78d1ad94140be"
|
|
||||||
dependencies:
|
|
||||||
readable-stream "^2.1.5"
|
|
||||||
xtend "~4.0.1"
|
|
||||||
|
|
||||||
type-detect@0.1.1:
|
|
||||||
version "0.1.1"
|
|
||||||
resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-0.1.1.tgz#0ba5ec2a885640e470ea4e8505971900dac58822"
|
|
||||||
|
|
||||||
type-detect@^1.0.0:
|
|
||||||
version "1.0.0"
|
|
||||||
resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-1.0.0.tgz#762217cc06db258ec48908a1298e8b95121e8ea2"
|
|
||||||
|
|
||||||
typed-promisify@^0.3.0:
|
|
||||||
version "0.3.0"
|
|
||||||
resolved "https://registry.yarnpkg.com/typed-promisify/-/typed-promisify-0.3.0.tgz#1ba0af5e444c87d8047406f18ce49092a1191853"
|
|
||||||
|
|
||||||
typings-global@^1.0.14, typings-global@^1.0.16:
|
|
||||||
version "1.0.16"
|
|
||||||
resolved "https://registry.yarnpkg.com/typings-global/-/typings-global-1.0.16.tgz#489b71781af24268750c2899316400a5e482961f"
|
|
||||||
dependencies:
|
|
||||||
semver "^5.3.0"
|
|
||||||
shelljs "^0.7.7"
|
|
||||||
|
|
||||||
universalify@^0.1.0:
|
|
||||||
version "0.1.0"
|
|
||||||
resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.1.0.tgz#9eb1c4651debcc670cc94f1a75762332bb967778"
|
|
||||||
|
|
||||||
util-deprecate@~1.0.1:
|
|
||||||
version "1.0.2"
|
|
||||||
resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf"
|
|
||||||
|
|
||||||
vinyl-file@^3.0.0:
|
|
||||||
version "3.0.0"
|
|
||||||
resolved "https://registry.yarnpkg.com/vinyl-file/-/vinyl-file-3.0.0.tgz#b104d9e4409ffa325faadd520642d0a3b488b365"
|
|
||||||
dependencies:
|
|
||||||
graceful-fs "^4.1.2"
|
|
||||||
pify "^2.3.0"
|
|
||||||
strip-bom-buf "^1.0.0"
|
|
||||||
strip-bom-stream "^2.0.0"
|
|
||||||
vinyl "^2.0.1"
|
|
||||||
|
|
||||||
vinyl@^2.0.1, vinyl@^2.0.2:
|
|
||||||
version "2.0.2"
|
|
||||||
resolved "https://registry.yarnpkg.com/vinyl/-/vinyl-2.0.2.tgz#0a3713d8d4e9221c58f10ca16c0116c9e25eda7c"
|
|
||||||
dependencies:
|
|
||||||
clone "^1.0.0"
|
|
||||||
clone-buffer "^1.0.0"
|
|
||||||
clone-stats "^1.0.0"
|
|
||||||
cloneable-readable "^1.0.0"
|
|
||||||
is-stream "^1.1.0"
|
|
||||||
remove-trailing-separator "^1.0.1"
|
|
||||||
replace-ext "^1.0.0"
|
|
||||||
|
|
||||||
wrappy@1:
|
|
||||||
version "1.0.2"
|
|
||||||
resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"
|
|
||||||
|
|
||||||
xtend@~4.0.1:
|
|
||||||
version "4.0.1"
|
|
||||||
resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af"
|
|
Reference in New Issue
Block a user