mirror of
https://github.com/hashicorp/vault-action.git
synced 2026-07-26 00:13:16 +03:00
Compare commits
15 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 0b1f582bde | |||
| 32afcc7f20 | |||
| d12e95ba40 | |||
| 4ef647191c | |||
| 1a47f33407 | |||
| b239ef37f5 | |||
| ccc7cef6eb | |||
| 8e836c6e8e | |||
| a2cae737a3 | |||
| b536ec9ec6 | |||
| e5605de996 | |||
| 788264dddd | |||
| a24b038252 | |||
| e926631bb2 | |||
| 5213b69445 |
@@ -19,3 +19,4 @@ jobs:
|
|||||||
args: >
|
args: >
|
||||||
-ignore "property \"othersecret\" is not defined in object type"
|
-ignore "property \"othersecret\" is not defined in object type"
|
||||||
-ignore "property \"jsonstring\" is not defined in object type"
|
-ignore "property \"jsonstring\" is not defined in object type"
|
||||||
|
-ignore "property \"jsonstringmultiline\" is not defined in object type"
|
||||||
|
|||||||
+11
-21
@@ -153,27 +153,6 @@ jobs:
|
|||||||
my-secret/test altSecret | NAMED_ALTSECRET ;
|
my-secret/test altSecret | NAMED_ALTSECRET ;
|
||||||
my-secret/nested/test otherAltSecret ;
|
my-secret/nested/test otherAltSecret ;
|
||||||
|
|
||||||
# The ordering of these two Test Vault Action JSON String Format steps matters
|
|
||||||
- name: Test Vault Action JSON String Format (part 1/2)
|
|
||||||
id: import-secrets
|
|
||||||
uses: ./
|
|
||||||
with:
|
|
||||||
url: http://localhost:8200
|
|
||||||
token: testtoken
|
|
||||||
secrets: |
|
|
||||||
secret/data/test-json-string jsonString | JSON_STRING ;
|
|
||||||
secret/data/test-json-data jsonData | JSON_DATA ;
|
|
||||||
|
|
||||||
- name: Test Vault Action JSON String Format (part 2/2)
|
|
||||||
run: |
|
|
||||||
echo "${{ steps.import-secrets.outputs.jsonString }}" > string.json
|
|
||||||
echo "${{ steps.import-secrets.outputs.jsonData }}" > data.json
|
|
||||||
cat string.json
|
|
||||||
cat data.json
|
|
||||||
# we should be able to parse the output as JSON
|
|
||||||
jq -c . < string.json
|
|
||||||
jq -c . < data.json
|
|
||||||
|
|
||||||
- name: Test Vault Action (cubbyhole)
|
- name: Test Vault Action (cubbyhole)
|
||||||
uses: ./
|
uses: ./
|
||||||
with:
|
with:
|
||||||
@@ -201,11 +180,22 @@ jobs:
|
|||||||
secrets: |
|
secrets: |
|
||||||
secret/data/subsequent-test secret | SUBSEQUENT_TEST_SECRET;
|
secret/data/subsequent-test secret | SUBSEQUENT_TEST_SECRET;
|
||||||
|
|
||||||
|
- name: Test JSON Secrets
|
||||||
|
uses: ./
|
||||||
|
with:
|
||||||
|
url: http://localhost:8200
|
||||||
|
token: testtoken
|
||||||
|
secrets: |
|
||||||
|
secret/data/test-json-data jsonData;
|
||||||
|
secret/data/test-json-string jsonString;
|
||||||
|
secret/data/test-json-string-multiline jsonStringMultiline;
|
||||||
|
|
||||||
- name: Verify Vault Action Outputs
|
- name: Verify Vault Action Outputs
|
||||||
run: npm run test:integration:e2e
|
run: npm run test:integration:e2e
|
||||||
env:
|
env:
|
||||||
OTHER_SECRET_OUTPUT: ${{ steps.kv-secrets.outputs.otherSecret }}
|
OTHER_SECRET_OUTPUT: ${{ steps.kv-secrets.outputs.otherSecret }}
|
||||||
|
|
||||||
|
|
||||||
e2e-tls:
|
e2e-tls:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
|||||||
@@ -2,6 +2,12 @@
|
|||||||
|
|
||||||
* Add changes here
|
* Add changes here
|
||||||
|
|
||||||
|
## 2.7.1 (July 3, 2023)
|
||||||
|
|
||||||
|
Bugs:
|
||||||
|
|
||||||
|
* Revert [GH-466](https://github.com/hashicorp/vault-action/pull/466) which caused a regression in secrets stored as JSON strings [GH-471](https://github.com/hashicorp/vault-action/pull/471)
|
||||||
|
|
||||||
## 2.7.0 (June 21, 2023)
|
## 2.7.0 (June 21, 2023)
|
||||||
|
|
||||||
Bugs:
|
Bugs:
|
||||||
|
|||||||
Vendored
+5
-45
@@ -18937,6 +18937,7 @@ module.exports = {
|
|||||||
|
|
||||||
const jsonata = __nccwpck_require__(4245);
|
const jsonata = __nccwpck_require__(4245);
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @typedef {Object} SecretRequest
|
* @typedef {Object} SecretRequest
|
||||||
* @property {string} path
|
* @property {string} path
|
||||||
@@ -19003,20 +19004,12 @@ async function getSecrets(secretRequests, client) {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Uses a Jsonata selector retrieve a bit of data from the result
|
* Uses a Jsonata selector retrieve a bit of data from the result
|
||||||
* @param {object} data
|
* @param {object} data
|
||||||
* @param {string} selector
|
* @param {string} selector
|
||||||
*/
|
*/
|
||||||
async function selectData(data, selector) {
|
async function selectData(data, selector) {
|
||||||
const ata = jsonata(selector);
|
const ata = jsonata(selector);
|
||||||
let d = await ata.evaluate(data);
|
let result = JSON.stringify(await ata.evaluate(data));
|
||||||
if (isJSON(d)) {
|
|
||||||
// If we already have JSON we will not "stringify" it yet so that we
|
|
||||||
// don't end up calling JSON.parse. This would break the secrets that
|
|
||||||
// are stored as JSON. See: https://github.com/hashicorp/vault-action/issues/194
|
|
||||||
result = d;
|
|
||||||
} else {
|
|
||||||
result = JSON.stringify(d);
|
|
||||||
}
|
|
||||||
// Compat for custom engines
|
// Compat for custom engines
|
||||||
if (!result && ((ata.ast().type === "path" && ata.ast()['steps'].length === 1) || ata.ast().type === "string") && selector !== 'data' && 'data' in data) {
|
if (!result && ((ata.ast().type === "path" && ata.ast()['steps'].length === 1) || ata.ast().type === "string") && selector !== 'data' && 'data' in data) {
|
||||||
result = JSON.stringify(await jsonata(`data.${selector}`).evaluate(data));
|
result = JSON.stringify(await jsonata(`data.${selector}`).evaluate(data));
|
||||||
@@ -19025,49 +19018,16 @@ async function selectData(data, selector) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (result.startsWith(`"`)) {
|
if (result.startsWith(`"`)) {
|
||||||
// we need to strip the beginning and ending quotes otherwise it will
|
result = JSON.parse(result);
|
||||||
// always successfully parse as JSON
|
|
||||||
result = result.substring(1, result.length - 1);
|
|
||||||
if (!isJSON(result)) {
|
|
||||||
// add the quotes back so we can parse it into a Javascript object
|
|
||||||
// to allow support for multi-line secrets. See https://github.com/hashicorp/vault-action/issues/160
|
|
||||||
result = `"${result}"`
|
|
||||||
result = JSON.parse(result);
|
|
||||||
}
|
|
||||||
} else if (isJSON(result)) {
|
|
||||||
// This is required to support secrets in JSON format.
|
|
||||||
// See https://github.com/hashicorp/vault-action/issues/194 and https://github.com/hashicorp/vault-action/pull/173
|
|
||||||
result = JSON.stringify(result);
|
|
||||||
result = result.substring(1, result.length - 1);
|
|
||||||
}
|
}
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* isJSON returns true if str parses as a valid JSON string
|
|
||||||
* @param {string} str
|
|
||||||
*/
|
|
||||||
function isJSON(str) {
|
|
||||||
if (typeof str !== "string"){
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
try {
|
|
||||||
JSON.parse(str);
|
|
||||||
} catch (e) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
getSecrets,
|
getSecrets,
|
||||||
selectData
|
selectData
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/***/ }),
|
/***/ }),
|
||||||
|
|
||||||
/***/ 9491:
|
/***/ 9491:
|
||||||
|
|||||||
+2
-2
@@ -2,7 +2,7 @@
|
|||||||
version: "3.0"
|
version: "3.0"
|
||||||
services:
|
services:
|
||||||
vault:
|
vault:
|
||||||
image: vault:latest
|
image: hashicorp/vault:latest
|
||||||
environment:
|
environment:
|
||||||
VAULT_DEV_ROOT_TOKEN_ID: testtoken
|
VAULT_DEV_ROOT_TOKEN_ID: testtoken
|
||||||
ports:
|
ports:
|
||||||
@@ -17,7 +17,7 @@ services:
|
|||||||
- 8200:8200
|
- 8200:8200
|
||||||
privileged: true
|
privileged: true
|
||||||
vault-tls:
|
vault-tls:
|
||||||
image: vault:latest
|
image: hashicorp/vault:latest
|
||||||
hostname: vault-tls
|
hostname: vault-tls
|
||||||
environment:
|
environment:
|
||||||
VAULT_CAPATH: /etc/vault/ca.crt
|
VAULT_CAPATH: /etc/vault/ca.crt
|
||||||
|
|||||||
@@ -10,10 +10,11 @@ describe('e2e', () => {
|
|||||||
expect(process.env.FOO).toBe("bar");
|
expect(process.env.FOO).toBe("bar");
|
||||||
expect(process.env.NAMED_CUBBYSECRET).toBe("zap");
|
expect(process.env.NAMED_CUBBYSECRET).toBe("zap");
|
||||||
expect(process.env.SUBSEQUENT_TEST_SECRET).toBe("SUBSEQUENT_TEST_SECRET");
|
expect(process.env.SUBSEQUENT_TEST_SECRET).toBe("SUBSEQUENT_TEST_SECRET");
|
||||||
|
expect(process.env.JSONSTRING).toBe('{"x":1,"y":"qux"}');
|
||||||
|
expect(process.env.JSONSTRINGMULTILINE).toBe('{"x": 1, "y": "q\\nux"}');
|
||||||
|
|
||||||
const jsonString = '{"x":1,"y":"qux"}';
|
let result = JSON.stringify('{"x":1,"y":"qux"}');
|
||||||
let jsonResult = JSON.stringify(jsonString);
|
result = result.substring(1, result.length - 1);
|
||||||
jsonResult = jsonResult.substring(1, jsonResult.length - 1);
|
expect(process.env.JSONDATA).toBe(result);
|
||||||
expect(process.env.JSON_STRING).toBe(jsonResult);
|
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|||||||
@@ -3,6 +3,7 @@ const got = require('got');
|
|||||||
const vaultUrl = `${process.env.VAULT_HOST}:${process.env.VAULT_PORT}`;
|
const vaultUrl = `${process.env.VAULT_HOST}:${process.env.VAULT_PORT}`;
|
||||||
const vaultToken = `${process.env.VAULT_TOKEN}` === undefined ? `${process.env.VAULT_TOKEN}` : "testtoken";
|
const vaultToken = `${process.env.VAULT_TOKEN}` === undefined ? `${process.env.VAULT_TOKEN}` : "testtoken";
|
||||||
|
|
||||||
|
const jsonStringMultiline = '{"x": 1, "y": "q\\nux"}';
|
||||||
|
|
||||||
(async () => {
|
(async () => {
|
||||||
try {
|
try {
|
||||||
@@ -44,6 +45,7 @@ const vaultToken = `${process.env.VAULT_TOKEN}` === undefined ? `${process.env.V
|
|||||||
},
|
},
|
||||||
json: {
|
json: {
|
||||||
data: {
|
data: {
|
||||||
|
// this is stored in Vault as a string
|
||||||
jsonString: '{"x":1,"y":"qux"}',
|
jsonString: '{"x":1,"y":"qux"}',
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
@@ -56,11 +58,24 @@ const vaultToken = `${process.env.VAULT_TOKEN}` === undefined ? `${process.env.V
|
|||||||
},
|
},
|
||||||
json: {
|
json: {
|
||||||
data: {
|
data: {
|
||||||
|
// this is stored in Vault as a map
|
||||||
jsonData: {"x":1,"y":"qux"},
|
jsonData: {"x":1,"y":"qux"},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
|
await got(`http://${vaultUrl}/v1/secret/data/test-json-string-multiline`, {
|
||||||
|
method: 'POST',
|
||||||
|
headers: {
|
||||||
|
'X-Vault-Token': vaultToken,
|
||||||
|
},
|
||||||
|
json: {
|
||||||
|
data: {
|
||||||
|
jsonStringMultiline,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
await got(`http://${vaultUrl}/v1/sys/mounts/my-secret`, {
|
await got(`http://${vaultUrl}/v1/sys/mounts/my-secret`, {
|
||||||
method: 'POST',
|
method: 'POST',
|
||||||
headers: {
|
headers: {
|
||||||
|
|||||||
+42
-7
@@ -220,11 +220,28 @@ describe('exportSecrets', () => {
|
|||||||
expect(core.setOutput).toBeCalledWith('key', '1');
|
expect(core.setOutput).toBeCalledWith('key', '1');
|
||||||
});
|
});
|
||||||
|
|
||||||
it('json secret retrieval', async () => {
|
it('JSON data secret retrieval', async () => {
|
||||||
const jsonString = '{"x":1,"y":2}';
|
const jsonData = {"x":1,"y":2};
|
||||||
let result = JSON.stringify(jsonString);
|
|
||||||
|
// for secrets stored in Vault as pure JSON, we call stringify twice
|
||||||
|
// and remove the added surrounding quotes
|
||||||
|
let result = JSON.stringify(JSON.stringify(jsonData));
|
||||||
result = result.substring(1, result.length - 1);
|
result = result.substring(1, result.length - 1);
|
||||||
|
|
||||||
|
mockInput('test key');
|
||||||
|
mockVaultData({
|
||||||
|
key: jsonData,
|
||||||
|
});
|
||||||
|
|
||||||
|
await exportSecrets();
|
||||||
|
|
||||||
|
expect(core.exportVariable).toBeCalledWith('KEY', result);
|
||||||
|
expect(core.setOutput).toBeCalledWith('key', result);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('JSON string secret retrieval', async () => {
|
||||||
|
const jsonString = '{"x":1,"y":2}';
|
||||||
|
|
||||||
mockInput('test key');
|
mockInput('test key');
|
||||||
mockVaultData({
|
mockVaultData({
|
||||||
key: jsonString,
|
key: jsonString,
|
||||||
@@ -232,8 +249,27 @@ describe('exportSecrets', () => {
|
|||||||
|
|
||||||
await exportSecrets();
|
await exportSecrets();
|
||||||
|
|
||||||
expect(core.exportVariable).toBeCalledWith('KEY', result);
|
expect(core.exportVariable).toBeCalledWith('KEY', jsonString);
|
||||||
expect(core.setOutput).toBeCalledWith('key', result);
|
expect(core.setOutput).toBeCalledWith('key', jsonString);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('multi-line JSON string secret retrieval', async () => {
|
||||||
|
const jsonString = `
|
||||||
|
{
|
||||||
|
"x":1,
|
||||||
|
"y":"bar"
|
||||||
|
}
|
||||||
|
`;
|
||||||
|
|
||||||
|
mockInput('test key');
|
||||||
|
mockVaultData({
|
||||||
|
key: jsonString,
|
||||||
|
});
|
||||||
|
|
||||||
|
await exportSecrets();
|
||||||
|
|
||||||
|
expect(core.exportVariable).toBeCalledWith('KEY', jsonString);
|
||||||
|
expect(core.setOutput).toBeCalledWith('key', jsonString);
|
||||||
});
|
});
|
||||||
|
|
||||||
it('intl secret retrieval', async () => {
|
it('intl secret retrieval', async () => {
|
||||||
@@ -366,7 +402,6 @@ NrRFi9wrf+M7Q==`;
|
|||||||
|
|
||||||
expect(core.setSecret).toBeCalledTimes(5); // 1 for each non-empty line + VAULT_TOKEN
|
expect(core.setSecret).toBeCalledTimes(5); // 1 for each non-empty line + VAULT_TOKEN
|
||||||
|
|
||||||
expect(core.setSecret).toBeCalledWith("EXAMPLE"); // called for VAULT_TOKEN
|
|
||||||
expect(core.setSecret).toBeCalledWith("ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAklOUpkDHrfHY17SbrmTIpNLTGK9Tjom/BWDSU");
|
expect(core.setSecret).toBeCalledWith("ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAklOUpkDHrfHY17SbrmTIpNLTGK9Tjom/BWDSU");
|
||||||
expect(core.setSecret).toBeCalledWith("GPl+nafzlHDTYW7hdI4yZ5ew18JH4JW9jbhUFrviQzM7xlELEVf4h9lFX5QVkbPppSwg0cda3");
|
expect(core.setSecret).toBeCalledWith("GPl+nafzlHDTYW7hdI4yZ5ew18JH4JW9jbhUFrviQzM7xlELEVf4h9lFX5QVkbPppSwg0cda3");
|
||||||
expect(core.setSecret).toBeCalledWith("Pbv7kOdJ/MTyBlWXFCR+HAo3FXRitBqxiX1nKhXpHAZsMciLq8V6RjsNAQwdsdMFvSlVK/7XA");
|
expect(core.setSecret).toBeCalledWith("Pbv7kOdJ/MTyBlWXFCR+HAo3FXRitBqxiX1nKhXpHAZsMciLq8V6RjsNAQwdsdMFvSlVK/7XA");
|
||||||
@@ -388,7 +423,7 @@ with blank lines
|
|||||||
|
|
||||||
await exportSecrets();
|
await exportSecrets();
|
||||||
|
|
||||||
expect(core.setSecret).toBeCalledTimes(3); // 1 for each non-empty line + VAULT_TOKEN
|
expect(core.setSecret).toBeCalledTimes(3); // 1 for each non-empty line.
|
||||||
|
|
||||||
expect(core.setSecret).toBeCalledWith('a multi-line string');
|
expect(core.setSecret).toBeCalledWith('a multi-line string');
|
||||||
expect(core.setSecret).toBeCalledWith('with blank lines');
|
expect(core.setSecret).toBeCalledWith('with blank lines');
|
||||||
|
|||||||
+33
-24
@@ -1,5 +1,6 @@
|
|||||||
const jsonata = require("jsonata");
|
const jsonata = require("jsonata");
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @typedef {Object} SecretRequest
|
* @typedef {Object} SecretRequest
|
||||||
* @property {string} path
|
* @property {string} path
|
||||||
@@ -72,14 +73,13 @@ async function getSecrets(secretRequests, client) {
|
|||||||
async function selectData(data, selector) {
|
async function selectData(data, selector) {
|
||||||
const ata = jsonata(selector);
|
const ata = jsonata(selector);
|
||||||
let d = await ata.evaluate(data);
|
let d = await ata.evaluate(data);
|
||||||
if (isJSON(d)) {
|
console.log(selector);
|
||||||
// If we already have JSON we will not "stringify" it yet so that we
|
|
||||||
// don't end up calling JSON.parse. This would break the secrets that
|
// If we have a Javascript Object, then this data was stored in Vault as
|
||||||
// are stored as JSON. See: https://github.com/hashicorp/vault-action/issues/194
|
// pure JSON (not a JSON string). We will capture that before we stringify it.
|
||||||
result = d;
|
const storedAsJSONData = isObject(d);
|
||||||
} else {
|
result = JSON.stringify(d);
|
||||||
result = JSON.stringify(d);
|
|
||||||
}
|
|
||||||
// Compat for custom engines
|
// Compat for custom engines
|
||||||
if (!result && ((ata.ast().type === "path" && ata.ast()['steps'].length === 1) || ata.ast().type === "string") && selector !== 'data' && 'data' in data) {
|
if (!result && ((ata.ast().type === "path" && ata.ast()['steps'].length === 1) || ata.ast().type === "string") && selector !== 'data' && 'data' in data) {
|
||||||
result = JSON.stringify(await jsonata(`data.${selector}`).evaluate(data));
|
result = JSON.stringify(await jsonata(`data.${selector}`).evaluate(data));
|
||||||
@@ -89,16 +89,18 @@ async function selectData(data, selector) {
|
|||||||
|
|
||||||
if (result.startsWith(`"`)) {
|
if (result.startsWith(`"`)) {
|
||||||
// we need to strip the beginning and ending quotes otherwise it will
|
// we need to strip the beginning and ending quotes otherwise it will
|
||||||
// always successfully parse as JSON
|
// always successfully parse as a JSON string
|
||||||
result = result.substring(1, result.length - 1);
|
// result = result.substring(1, result.length - 1);
|
||||||
if (!isJSON(result)) {
|
// if (!isJSONString(result)) {
|
||||||
// add the quotes back so we can parse it into a Javascript object
|
// // add the quotes back so we can parse it into a Javascript object
|
||||||
// to allow support for multi-line secrets. See https://github.com/hashicorp/vault-action/issues/160
|
// // to allow support for multi-line secrets. See https://github.com/hashicorp/vault-action/issues/160
|
||||||
result = `"${result}"`
|
// result = `"${result}"`
|
||||||
result = JSON.parse(result);
|
console.log(" =>>> PARSING")
|
||||||
}
|
result = JSON.parse(result);
|
||||||
} else if (isJSON(result)) {
|
// }
|
||||||
// This is required to support secrets in JSON format.
|
} else {
|
||||||
|
console.log('does not start with quote')
|
||||||
|
// Support secrets stored in Vault as pure JSON.
|
||||||
// See https://github.com/hashicorp/vault-action/issues/194 and https://github.com/hashicorp/vault-action/pull/173
|
// See https://github.com/hashicorp/vault-action/issues/194 and https://github.com/hashicorp/vault-action/pull/173
|
||||||
result = JSON.stringify(result);
|
result = JSON.stringify(result);
|
||||||
result = result.substring(1, result.length - 1);
|
result = result.substring(1, result.length - 1);
|
||||||
@@ -107,16 +109,24 @@ async function selectData(data, selector) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* isJSON returns true if str parses as a valid JSON string
|
* isOjbect returns true if target is a Javascript object
|
||||||
* @param {string} str
|
* @param {Type} target
|
||||||
*/
|
*/
|
||||||
function isJSON(str) {
|
function isObject(target) {
|
||||||
if (typeof str !== "string"){
|
return typeof target === 'object' && target !== null;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* isJSONString returns true if target parses as a valid JSON string
|
||||||
|
* @param {Type} target
|
||||||
|
*/
|
||||||
|
function isJSONString(target) {
|
||||||
|
if (typeof target !== "string"){
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
try {
|
try {
|
||||||
JSON.parse(str);
|
JSON.parse(target);
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
@@ -128,4 +138,3 @@ module.exports = {
|
|||||||
getSecrets,
|
getSecrets,
|
||||||
selectData
|
selectData
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user