-
Notifications
You must be signed in to change notification settings - Fork 3
/
kbn-action.js
executable file
·155 lines (122 loc) · 3.85 KB
/
kbn-action.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
#!/usr/bin/env node
'use strict'
const path = require('path')
const debugLog = getDebugLog()
module.exports = {
main,
debugLog
}
const meow = require('meow')
const baseUrl = require('./lib/base-url')
const commands = require('./lib/action-commands')
const PROGRAM = path.basename(__filename)
process.env.NODE_TLS_REJECT_UNAUTHORIZED = '0'
// @ts-ignore
if (require.main === module) main()
// main cli function
async function main () {
const args = parseArgs()
const { input, flags } = args
if (input.length === 0) args.showHelp()
if (flags.help) args.showHelp()
if (flags.version) args.showVersion()
const urlBase = baseUrl.fromFlags(flags)
const [command, id, ...rest] = input
debugLog(`command: ${command} id: ${id}`)
debugLog(`rest: ${rest.join(' ')}`)
debugLog(`flags: ${JSON.stringify(flags)}`)
if (commands[command] == null) {
logError(`unknown command: ${command}`)
}
const opts = { debugLog }
let result
try {
result = await commands[command](urlBase, id, rest, opts)
} catch (err) {
if (err.response == null) {
debugLogRequest(err)
debugLog(err.stack)
logError(err.message)
}
result = err.response
}
debugLogRequest(result)
debugLog(`http statusCode: ${result.statusCode}`)
if (result.statusCode === 302) {
const headers = result.headers || {}
const redirect = headers.location
if (redirect.startsWith('/login')) {
logError('userid/password required; eg http://elastic:changeme@localhost:5620')
}
logError(`redirected to ${redirect}`)
}
if (result.statusCode === 204) {
return
}
if (result.statusCode !== 200) {
logError(`status code ${result.statusCode}\nbody: ${JSON.stringify(result.body, null, 4)}`)
}
console.log(JSON.stringify(result.body, null, 4))
}
function debugLogRequest (result) {
if (result) {
if (result.request) {
if (result.request.gotOptions) {
const headers = result.request.gotOptions.headers || {}
const printedRequestHeaders = new Set(['kbn-xsrf', 'content-type'])
for (const name in headers) {
if (!printedRequestHeaders.has(name)) continue
debugLog(`http request header ${name}: ${headers[name]}`)
}
}
}
}
}
function logError (message) {
console.log(`${PROGRAM}: ${message}`)
process.exit(1)
}
/** @type { () => ((message: string) => void) } */
function getDebugLog () {
if (process.env.DEBUG == null) return () => {}
return function debugLog (message) {
if (typeof message === 'object') message = JSON.stringify(message)
console.log(`${PROGRAM}: DEBUG: ${message}`)
}
}
// returns parsed args from meow
function parseArgs () {
const defaultUrlBase = process.env.KBN_URLBASE || baseUrl.DefaultURL
const meowOptions = {
help: getHelpText(),
flags: {
help: { type: 'boolean', alias: 'v' },
version: { type: 'boolean', alias: 'v' },
space: { type: 'string', alias: 's', default: baseUrl.DefaultSpace },
urlBase: { type: 'string', alias: 'u', default: defaultUrlBase }
}
}
// @ts-ignore
return meow(meowOptions)
}
function getHelpText () {
return `
usage:
${PROGRAM} ls-types
${PROGRAM} ls
${PROGRAM} create <action-type-id> <name> <json: config> <json: secrets>
${PROGRAM} get <action-id>
${PROGRAM} update <action-id> <name> <json: config> <json: secrets>
${PROGRAM} delete <action-id>
${PROGRAM} execute <action-id> <json: params>
options:
-h --help print this help
-v --version print the version of the program
-u --urlBase Kibana base URL
-s --space Kibana space to use; default: default
You can also set the env var KBN_URLBASE as the Kibana base URL.
Set the DEBUG environment variable to any string for additional diagnostics.
For authenticated Kibana access, the url should include the userid/password,
for example "http://elastic:changeme@localhost:5620"
`
}