neonctl 0.1.0 → 0.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +5 -1
- package/src/api/gateway.js +45 -5
- package/src/api/projects.js +6 -17
- package/src/api/users.js +6 -0
- package/src/auth.js +1 -1
- package/src/commands/auth.js +9 -20
- package/src/commands/projects.js +8 -7
- package/src/commands/users.js +17 -0
- package/src/index.js +39 -17
- package/src/log.js +6 -2
- package/src/types.js +2 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "neonctl",
|
|
3
|
-
"version": "0.1
|
|
3
|
+
"version": "0.2.1",
|
|
4
4
|
"description": "CLI tool for NeonDB Cloud management",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"author": "NeonDB",
|
|
@@ -24,6 +24,10 @@
|
|
|
24
24
|
"openid-client": "^5.1.9",
|
|
25
25
|
"yargs": "^17.5.1"
|
|
26
26
|
},
|
|
27
|
+
"publishConfig": {
|
|
28
|
+
"access": "public",
|
|
29
|
+
"registry": "https://registry.npmjs.org/"
|
|
30
|
+
},
|
|
27
31
|
"scripts": {
|
|
28
32
|
"dev": "node dev.js",
|
|
29
33
|
"debug": "node --inspect-brk dev.js",
|
package/src/api/gateway.js
CHANGED
|
@@ -1,9 +1,49 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
+
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
3
|
+
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
4
|
+
return new (P || (P = Promise))(function (resolve, reject) {
|
|
5
|
+
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
6
|
+
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
7
|
+
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
8
|
+
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
9
|
+
});
|
|
10
|
+
};
|
|
2
11
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.apiCall = void 0;
|
|
4
|
-
const
|
|
12
|
+
exports.apiCall = exports.ApiError = void 0;
|
|
13
|
+
const node_https_1 = require("node:https");
|
|
14
|
+
class ApiError extends Error {
|
|
15
|
+
constructor(response) {
|
|
16
|
+
super(response.statusMessage);
|
|
17
|
+
this.response = response;
|
|
18
|
+
}
|
|
19
|
+
getApiError() {
|
|
20
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
21
|
+
return new Promise((resolve, reject) => {
|
|
22
|
+
const data = [];
|
|
23
|
+
this.response
|
|
24
|
+
.on('data', (chunk) => {
|
|
25
|
+
data.push(chunk);
|
|
26
|
+
})
|
|
27
|
+
.on('end', () => {
|
|
28
|
+
try {
|
|
29
|
+
const json = JSON.parse(data.join(''));
|
|
30
|
+
resolve((json === null || json === void 0 ? void 0 : json.message) ||
|
|
31
|
+
`${this.response.statusCode}:${this.message}:${data.join('')}`);
|
|
32
|
+
}
|
|
33
|
+
catch (e) {
|
|
34
|
+
reject(e);
|
|
35
|
+
}
|
|
36
|
+
})
|
|
37
|
+
.on('error', (e) => {
|
|
38
|
+
reject(e);
|
|
39
|
+
});
|
|
40
|
+
});
|
|
41
|
+
});
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
exports.ApiError = ApiError;
|
|
5
45
|
const apiCall = ({ apiHost, token, path, body, method = 'GET', }) => new Promise((resolve, reject) => {
|
|
6
|
-
const req = (0,
|
|
46
|
+
const req = (0, node_https_1.request)(`${apiHost}/api/v1/${path}`, {
|
|
7
47
|
headers: {
|
|
8
48
|
Authorization: `Bearer ${token}`,
|
|
9
49
|
Accept: 'application/json',
|
|
@@ -11,8 +51,8 @@ const apiCall = ({ apiHost, token, path, body, method = 'GET', }) => new Promise
|
|
|
11
51
|
},
|
|
12
52
|
method,
|
|
13
53
|
}, (res) => {
|
|
14
|
-
if (res.statusCode
|
|
15
|
-
reject(new
|
|
54
|
+
if (!res.statusCode || res.statusCode >= 400) {
|
|
55
|
+
reject(new ApiError(res));
|
|
16
56
|
return;
|
|
17
57
|
}
|
|
18
58
|
let result = '';
|
package/src/api/projects.js
CHANGED
|
@@ -1,23 +1,12 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
3
|
-
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
4
|
-
return new (P || (P = Promise))(function (resolve, reject) {
|
|
5
|
-
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
6
|
-
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
7
|
-
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
8
|
-
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
9
|
-
});
|
|
10
|
-
};
|
|
11
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
3
|
exports.createProject = exports.listProjects = void 0;
|
|
13
4
|
const gateway_1 = require("./gateway");
|
|
14
|
-
const listProjects = (props) =>
|
|
5
|
+
const listProjects = (props) => (0, gateway_1.apiCall)(Object.assign(Object.assign({}, props), { path: 'projects', method: 'GET' }));
|
|
15
6
|
exports.listProjects = listProjects;
|
|
16
|
-
const createProject = (props) =>
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
}, path: 'projects', method: 'POST' }));
|
|
22
|
-
});
|
|
7
|
+
const createProject = (props) => (0, gateway_1.apiCall)(Object.assign(Object.assign({}, props), { body: {
|
|
8
|
+
project: {
|
|
9
|
+
settings: props.settings,
|
|
10
|
+
},
|
|
11
|
+
}, path: 'projects', method: 'POST' }));
|
|
23
12
|
exports.createProject = createProject;
|
package/src/api/users.js
ADDED
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.apiMe = void 0;
|
|
4
|
+
const gateway_1 = require("./gateway");
|
|
5
|
+
const apiMe = (props) => (0, gateway_1.apiCall)(Object.assign(Object.assign({}, props), { path: 'users/me', method: 'GET' }));
|
|
6
|
+
exports.apiMe = apiMe;
|
package/src/auth.js
CHANGED
|
@@ -24,7 +24,7 @@ const SERVER_TIMEOUT = 10000;
|
|
|
24
24
|
// where to wait for incoming redirect request from oauth server to arrive
|
|
25
25
|
const REDIRECT_URI = (port) => `http://127.0.0.1:${port}/callback`;
|
|
26
26
|
// These scopes cannot be cancelled, they are always needed.
|
|
27
|
-
const DEFAULT_SCOPES = ['openid', 'offline'];
|
|
27
|
+
const DEFAULT_SCOPES = ['openid', 'offline', 'urn:neoncloud:projects:create'];
|
|
28
28
|
const auth = ({ oauthHost, clientId }) => __awaiter(void 0, void 0, void 0, function* () {
|
|
29
29
|
openid_client_1.custom.setHttpOptionsDefaults({
|
|
30
30
|
timeout: SERVER_TIMEOUT,
|
package/src/commands/auth.js
CHANGED
|
@@ -32,11 +32,10 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
32
32
|
});
|
|
33
33
|
};
|
|
34
34
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
35
|
-
exports.ensureAuth = exports.
|
|
35
|
+
exports.ensureAuth = exports.authFlow = void 0;
|
|
36
36
|
const node_path_1 = require("node:path");
|
|
37
37
|
const node_fs_1 = require("node:fs");
|
|
38
38
|
const auth_1 = require("../auth");
|
|
39
|
-
const projects_1 = require("../api/projects");
|
|
40
39
|
const log_1 = require("../log");
|
|
41
40
|
const CREDENTIALS_FILE = 'credentials.json';
|
|
42
41
|
const authFlow = ({ configDir, oauthHost, clientId, }) => __awaiter(void 0, void 0, void 0, function* () {
|
|
@@ -54,32 +53,22 @@ const authFlow = ({ configDir, oauthHost, clientId, }) => __awaiter(void 0, void
|
|
|
54
53
|
return tokenSet.access_token || '';
|
|
55
54
|
});
|
|
56
55
|
exports.authFlow = authFlow;
|
|
57
|
-
const validateAuth = (props) => __awaiter(void 0, void 0, void 0, function* () {
|
|
58
|
-
try {
|
|
59
|
-
yield (0, projects_1.listProjects)(props);
|
|
60
|
-
}
|
|
61
|
-
catch (e) {
|
|
62
|
-
if (e.message.startsWith('401:')) {
|
|
63
|
-
return false;
|
|
64
|
-
}
|
|
65
|
-
throw e;
|
|
66
|
-
}
|
|
67
|
-
return true;
|
|
68
|
-
});
|
|
69
|
-
exports.validateAuth = validateAuth;
|
|
70
56
|
const ensureAuth = (props) => __awaiter(void 0, void 0, void 0, function* () {
|
|
57
|
+
if (props._[0] === 'auth') {
|
|
58
|
+
return;
|
|
59
|
+
}
|
|
71
60
|
const credentialsPath = (0, node_path_1.join)(props.configDir, CREDENTIALS_FILE);
|
|
72
61
|
if ((0, node_fs_1.existsSync)(credentialsPath)) {
|
|
73
|
-
|
|
74
|
-
|
|
62
|
+
try {
|
|
63
|
+
const token = (yield Promise.resolve().then(() => __importStar(require(credentialsPath)))).access_token;
|
|
75
64
|
props.token = token;
|
|
76
65
|
}
|
|
77
|
-
|
|
78
|
-
|
|
66
|
+
catch (e) {
|
|
67
|
+
throw new Error('Invalid credentials, please re-authenticate');
|
|
79
68
|
}
|
|
80
69
|
}
|
|
81
70
|
else {
|
|
82
|
-
|
|
71
|
+
throw new Error('No credentials found, please authenticate');
|
|
83
72
|
}
|
|
84
73
|
});
|
|
85
74
|
exports.ensureAuth = ensureAuth;
|
package/src/commands/projects.js
CHANGED
|
@@ -9,12 +9,13 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
9
9
|
});
|
|
10
10
|
};
|
|
11
11
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
|
+
exports.create = exports.list = void 0;
|
|
12
13
|
const projects_1 = require("../api/projects");
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
process.stdout.write(yield (0, projects_1.listProjects)(props));
|
|
16
|
-
}
|
|
17
|
-
else if (props.sub === 'create') {
|
|
18
|
-
process.stdout.write(yield (0, projects_1.createProject)(Object.assign(Object.assign({}, props), { instanceHandle: 'scalable', platformId: 'serverless', regionId: 'us-west-2' })));
|
|
19
|
-
}
|
|
14
|
+
const list = (props) => __awaiter(void 0, void 0, void 0, function* () {
|
|
15
|
+
process.stdout.write(yield (0, projects_1.listProjects)(props));
|
|
20
16
|
});
|
|
17
|
+
exports.list = list;
|
|
18
|
+
const create = (props) => __awaiter(void 0, void 0, void 0, function* () {
|
|
19
|
+
process.stdout.write(yield (0, projects_1.createProject)(Object.assign(Object.assign({}, props), { settings: {} })));
|
|
20
|
+
});
|
|
21
|
+
exports.create = create;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
3
|
+
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
4
|
+
return new (P || (P = Promise))(function (resolve, reject) {
|
|
5
|
+
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
6
|
+
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
7
|
+
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
8
|
+
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
9
|
+
});
|
|
10
|
+
};
|
|
11
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
|
+
exports.me = void 0;
|
|
13
|
+
const users_1 = require("../api/users");
|
|
14
|
+
const me = (props) => __awaiter(void 0, void 0, void 0, function* () {
|
|
15
|
+
process.stdout.write(yield (0, users_1.apiMe)(props));
|
|
16
|
+
});
|
|
17
|
+
exports.me = me;
|
package/src/index.js
CHANGED
|
@@ -37,23 +37,24 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
37
37
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
38
38
|
const yargs = __importStar(require("yargs"));
|
|
39
39
|
const package_json_1 = __importDefault(require("../package.json"));
|
|
40
|
+
const gateway_1 = require("./api/gateway");
|
|
40
41
|
const auth_1 = require("./commands/auth");
|
|
41
42
|
const config_1 = require("./config");
|
|
43
|
+
const log_1 = require("./log");
|
|
44
|
+
const wrapWithHelp = (yargs) => __awaiter(void 0, void 0, void 0, function* () {
|
|
45
|
+
const { _ } = yield yargs.argv;
|
|
46
|
+
if (_.length === 1) {
|
|
47
|
+
yargs.showHelp();
|
|
48
|
+
}
|
|
49
|
+
return yargs;
|
|
50
|
+
});
|
|
42
51
|
const builder = yargs
|
|
43
52
|
.scriptName(package_json_1.default.name)
|
|
44
|
-
.usage('$0 <cmd> [args]')
|
|
53
|
+
.usage('usage: $0 <cmd> [args]')
|
|
45
54
|
.help()
|
|
46
55
|
.option('apiHost', {
|
|
47
56
|
describe: 'The API host',
|
|
48
57
|
default: 'https://console.neon.tech',
|
|
49
|
-
})
|
|
50
|
-
.option('oauthHost', {
|
|
51
|
-
description: 'URL to Neon OAUTH host',
|
|
52
|
-
default: 'https://oauth2.neon.tech',
|
|
53
|
-
})
|
|
54
|
-
.option('clientId', {
|
|
55
|
-
description: 'OAuth client id',
|
|
56
|
-
type: 'string',
|
|
57
58
|
})
|
|
58
59
|
// Setup config directory
|
|
59
60
|
.option('configDir', {
|
|
@@ -63,7 +64,16 @@ const builder = yargs
|
|
|
63
64
|
})
|
|
64
65
|
.middleware(config_1.ensureConfigDir)
|
|
65
66
|
// Auth flow
|
|
66
|
-
.command('auth', 'Authenticate user', (yargs) => yargs
|
|
67
|
+
.command('auth', 'Authenticate user', (yargs) => yargs
|
|
68
|
+
.option('oauthHost', {
|
|
69
|
+
description: 'URL to Neon OAUTH host',
|
|
70
|
+
default: 'https://oauth2.neon.tech',
|
|
71
|
+
})
|
|
72
|
+
.option('clientId', {
|
|
73
|
+
description: 'OAuth client id',
|
|
74
|
+
type: 'string',
|
|
75
|
+
demandOption: true,
|
|
76
|
+
}), (args) => __awaiter(void 0, void 0, void 0, function* () {
|
|
67
77
|
(yield Promise.resolve().then(() => __importStar(require('./commands/auth')))).authFlow(args);
|
|
68
78
|
}))
|
|
69
79
|
// Ensure auth token
|
|
@@ -73,13 +83,25 @@ const builder = yargs
|
|
|
73
83
|
default: '',
|
|
74
84
|
})
|
|
75
85
|
.middleware(auth_1.ensureAuth)
|
|
76
|
-
.command('
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
(yield Promise.resolve().then(() => __importStar(require('./commands/projects')))).
|
|
86
|
+
.command('me', 'Get user info', (yargs) => yargs, (args) => __awaiter(void 0, void 0, void 0, function* () {
|
|
87
|
+
yield (yield Promise.resolve().then(() => __importStar(require('./commands/users')))).me(args);
|
|
88
|
+
}))
|
|
89
|
+
.command('projects', 'Manage projects', (yargs) => wrapWithHelp(yargs
|
|
90
|
+
.usage('usage: $0 projects <cmd> [args]')
|
|
91
|
+
.command('list', 'List projects', (yargs) => yargs, (args) => __awaiter(void 0, void 0, void 0, function* () {
|
|
92
|
+
yield (yield Promise.resolve().then(() => __importStar(require('./commands/projects')))).list(args);
|
|
93
|
+
}))
|
|
94
|
+
.command('create', 'Create a project', (yargs) => yargs, (args) => __awaiter(void 0, void 0, void 0, function* () {
|
|
95
|
+
yield (yield Promise.resolve().then(() => __importStar(require('./commands/projects')))).create(args);
|
|
96
|
+
}))))
|
|
97
|
+
.fail((msg, err) => __awaiter(void 0, void 0, void 0, function* () {
|
|
98
|
+
if (err instanceof gateway_1.ApiError) {
|
|
99
|
+
log_1.log.error(yield err.getApiError());
|
|
100
|
+
}
|
|
101
|
+
else {
|
|
102
|
+
log_1.log.error(msg || err.message);
|
|
103
|
+
}
|
|
104
|
+
process.exit(1);
|
|
83
105
|
}));
|
|
84
106
|
(() => __awaiter(void 0, void 0, void 0, function* () {
|
|
85
107
|
if ((yield builder.argv)._.length === 0) {
|
package/src/log.js
CHANGED
|
@@ -1,8 +1,12 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.log = void 0;
|
|
4
|
+
const node_util_1 = require("node:util");
|
|
4
5
|
exports.log = {
|
|
5
|
-
info: (
|
|
6
|
-
process.stderr.write(
|
|
6
|
+
info: (...args) => {
|
|
7
|
+
process.stderr.write(`INFO: ${(0, node_util_1.format)(...args)}\n`);
|
|
8
|
+
},
|
|
9
|
+
error: (...args) => {
|
|
10
|
+
process.stderr.write(`ERROR: ${(0, node_util_1.format)(...args)}\n`);
|
|
7
11
|
},
|
|
8
12
|
};
|
package/src/types.js
ADDED