Compare commits
10 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 57371feeb0 | |||
| d398c34aa5 | |||
| 452e6e74cb | |||
| b7df3e731f | |||
| 72d1be0bdc | |||
| 929d2ee5d2 | |||
| d0961c68fa | |||
| b1fd6da218 | |||
| 2a498124fe | |||
| 37c73ddd2b |
25
Dockerfile
25
Dockerfile
@@ -14,31 +14,16 @@ COPY package*.json ./
|
||||
# Install dependencies (production + dev for build)
|
||||
RUN npm ci
|
||||
|
||||
# Copy source code and build scripts
|
||||
# Copy source code and build dependencies
|
||||
COPY src/ ./src/
|
||||
COPY public/ ./public/
|
||||
COPY scripts/ ./scripts/
|
||||
COPY server.js ./server.js
|
||||
COPY vite.config.js ./vite.config.js
|
||||
COPY index.html ./index.html
|
||||
|
||||
# Generate version.js if version info provided, otherwise run normal build
|
||||
RUN if [ -n "$VERSION" ]; then \
|
||||
echo "// Auto-generated version file - do not edit manually" > src/version.js && \
|
||||
echo "// Generated at: $(date -Iseconds)" >> src/version.js && \
|
||||
echo "" >> src/version.js && \
|
||||
echo "export const VERSION = '$VERSION';" >> src/version.js && \
|
||||
echo "export const IS_RELEASE = $IS_RELEASE;" >> src/version.js && \
|
||||
echo "export const BUILD_TIME = '$(date -Iseconds)';" >> src/version.js && \
|
||||
echo "📝 Generated version.js with VERSION=$VERSION, IS_RELEASE=$IS_RELEASE"; \
|
||||
fi
|
||||
|
||||
# Build the application (skip prebuild if we already generated version.js)
|
||||
RUN if [ -n "$VERSION" ]; then \
|
||||
echo "🚀 Building with pre-generated version.js" && \
|
||||
npx react-scripts build; \
|
||||
else \
|
||||
echo "🚀 Building with version-check.js" && \
|
||||
npm run build; \
|
||||
fi
|
||||
# Build the application
|
||||
RUN npm run build
|
||||
|
||||
# Production stage
|
||||
FROM node:24-alpine AS production
|
||||
|
||||
10
README.md
10
README.md
@@ -43,6 +43,16 @@ A React-based web application for testing and validating JMESPath expressions ag
|
||||
|
||||
4. **Open your browser** and navigate to `http://localhost:3000`
|
||||
|
||||
### Development
|
||||
|
||||
For development with hot reload on component changes:
|
||||
|
||||
```bash
|
||||
npm run dev
|
||||
```
|
||||
|
||||
This runs both the React dev server (with hot reload) and the API server concurrently. The React app will proxy API requests to the backend server.
|
||||
|
||||
### Container Deployment
|
||||
|
||||
You can optionally run the application in a container:
|
||||
|
||||
72
bin/Upload-JMESPath.ps1
Executable file
72
bin/Upload-JMESPath.ps1
Executable file
@@ -0,0 +1,72 @@
|
||||
#!/usr/bin/env pwsh
|
||||
[CmdletBinding()]
|
||||
param(
|
||||
[Parameter(HelpMessage='Path to JSON file; default: read from stdin')]
|
||||
[string]$JsonFile = '-',
|
||||
|
||||
[Parameter(HelpMessage='API base URL')]
|
||||
[string]$ApiUrl,
|
||||
|
||||
[Parameter(HelpMessage='API key for authentication')]
|
||||
[string]$ApiKey,
|
||||
|
||||
[Parameter(HelpMessage='Show help')]
|
||||
[switch]$Help
|
||||
)
|
||||
|
||||
function Show-Usage {
|
||||
$usage = @"
|
||||
Usage: Upload-JMESPath.ps1 [-ApiUrl <url>] [-ApiKey <key>] [-JsonFile <file>]
|
||||
|
||||
Parameters:
|
||||
-ApiUrl <url> The base URL of the JMESPath Playground API (default: http://localhost:3000 or $env:JMESPATH_PLAYGROUND_API_URL)
|
||||
-ApiKey <key> The API key for authentication (can also be set via JMESPATH_PLAYGROUND_API_KEY)
|
||||
-JsonFile <file> The JSON file to upload (default: stdin if not specified)
|
||||
-Help Show this help message and exit
|
||||
"@
|
||||
Write-Output $usage
|
||||
}
|
||||
|
||||
if ($Help) { Show-Usage; exit 0 }
|
||||
|
||||
# Apply environment defaults when parameters are not provided
|
||||
if (-not $ApiUrl) {
|
||||
if ($env:JMESPATH_PLAYGROUND_API_URL) { $ApiUrl = $env:JMESPATH_PLAYGROUND_API_URL } else { $ApiUrl = 'http://localhost:3000' }
|
||||
}
|
||||
if (-not $ApiKey) {
|
||||
$ApiKey = $env:JMESPATH_PLAYGROUND_API_KEY
|
||||
}
|
||||
|
||||
# Read JSON body from file or stdin
|
||||
try {
|
||||
if ($JsonFile -eq '-' -or [string]::IsNullOrEmpty($JsonFile)) {
|
||||
$Body = [Console]::In.ReadToEnd()
|
||||
} else {
|
||||
if (-not (Test-Path -Path $JsonFile)) {
|
||||
Write-Error "JSON file not found: $JsonFile"
|
||||
exit 2
|
||||
}
|
||||
$Body = Get-Content -Raw -Path $JsonFile
|
||||
}
|
||||
} catch {
|
||||
Write-Error "Failed to read JSON input: $($_.Exception.Message)"
|
||||
exit 2
|
||||
}
|
||||
|
||||
# Prepare headers
|
||||
$Headers = @{ 'Accept' = 'application/json' }
|
||||
if (-not [string]::IsNullOrEmpty($ApiKey)) { $Headers['X-API-Key'] = $ApiKey }
|
||||
|
||||
# POST to API
|
||||
$Uri = "$ApiUrl/api/v1/upload"
|
||||
try {
|
||||
$response = Invoke-RestMethod -Uri $Uri -Method Post -Headers $Headers -ContentType 'application/json' -Body $Body -ErrorAction Stop
|
||||
if ($null -ne $response) {
|
||||
$response | ConvertTo-Json -Depth 10
|
||||
} else {
|
||||
Write-Output "Upload completed."
|
||||
}
|
||||
} catch {
|
||||
Write-Error "Upload failed: $($_.Exception.Message)"
|
||||
exit 3
|
||||
}
|
||||
@@ -2,23 +2,33 @@
|
||||
|
||||
set -euo pipefail
|
||||
|
||||
API_URL="https://jmespath-playground.koszewscy.waw.pl"
|
||||
JMESPATH_PLAYGROUND_API_URL="${JMESPATH_PLAYGROUND_API_URL:-http://localhost:3000}" # May be set in bash profile
|
||||
JMESPATH_PLAYGROUND_API_KEY="${JMESPATH_PLAYGROUND_API_KEY:-}" # Required if not localhost
|
||||
|
||||
JSON_FILE="-"
|
||||
ADD_HEADERS=()
|
||||
|
||||
function usage() {
|
||||
echo "Usage: $0 [--api-url <url>] [--json-file <file>]"
|
||||
exit 1
|
||||
echo
|
||||
echo "Options:"
|
||||
echo " --api-url <url> The base URL of the JMESPath Playground API (default: http://localhost:3000)"
|
||||
echo " --api-key <key> The API key for authentication (required if not localhost)"
|
||||
echo " --json-file <file> The JSON file to upload (default: stdin if not specified)"
|
||||
echo " -h, --help Show this help message and exit"
|
||||
echo
|
||||
echo "Environment Variables:"
|
||||
echo " JMESPATH_PLAYGROUND_API_URL Can be used to set the API URL"
|
||||
echo " JMESPATH_PLAYGROUND_API_KEY Can be used to set the API key"
|
||||
}
|
||||
|
||||
while [[ $# -gt 0 ]]; do
|
||||
case $1 in
|
||||
--api-url)
|
||||
API_URL="$2"
|
||||
JMESPATH_PLAYGROUND_API_URL="$2"
|
||||
shift 2
|
||||
;;
|
||||
--api-key)
|
||||
ADD_HEADERS+=("-H" "X-API-Key: $2")
|
||||
JMESPATH_PLAYGROUND_API_KEY="$2"
|
||||
shift 2
|
||||
;;
|
||||
--json-file)
|
||||
@@ -37,11 +47,12 @@ while [[ $# -gt 0 ]]; do
|
||||
esac
|
||||
done
|
||||
|
||||
ADD_HEADERS+=("-H" "X-API-Key: $JMESPATH_PLAYGROUND_API_KEY")
|
||||
|
||||
# Send the POST request
|
||||
curl -s -X POST \
|
||||
-H "Content-Type: application/json" \
|
||||
-H "Accept: application/json" \
|
||||
"${ADD_HEADERS[@]}" \
|
||||
--data @${JSON_FILE} \
|
||||
"$API_URL/api/v1/upload"
|
||||
|
||||
"$JMESPATH_PLAYGROUND_API_URL/api/v1/upload"
|
||||
|
||||
94
bin/upload-jmespath.mjs
Executable file
94
bin/upload-jmespath.mjs
Executable file
@@ -0,0 +1,94 @@
|
||||
#!/usr/bin/env node
|
||||
|
||||
import fs from "fs";
|
||||
import path from "path";
|
||||
|
||||
// Parse command-line arguments
|
||||
import { parseArgs } from "util";
|
||||
|
||||
const args = parseArgs({
|
||||
options: {
|
||||
"api-url": {
|
||||
type: "string",
|
||||
short: "a",
|
||||
default: process.env.JMESPATH_PLAYGROUND_API_URL || "http://localhost:3000",
|
||||
},
|
||||
"api-key": {
|
||||
type: "string",
|
||||
short: "k",
|
||||
default: process.env.JMESPATH_PLAYGROUND_API_KEY || "",
|
||||
},
|
||||
"json-file": {
|
||||
type: "string",
|
||||
short: "j",
|
||||
default: "",
|
||||
},
|
||||
help: { type: "boolean", short: "h" },
|
||||
},
|
||||
});
|
||||
|
||||
// Show help message
|
||||
if (args.values.help) {
|
||||
console.log(`
|
||||
Usage: upload-jmespath.mjs [options]
|
||||
|
||||
Options:
|
||||
-a, --api-url API base URL (default: http://localhost:3000)
|
||||
-k, --api-key API key for authentication
|
||||
-j, --json-file Path to the JSON file to upload
|
||||
-h, --help Show this help message
|
||||
`);
|
||||
process.exit(0);
|
||||
}
|
||||
|
||||
// Read the JSON from the specfied file or from stdin if no file is provided
|
||||
async function readJson(filePath) {
|
||||
if (filePath) {
|
||||
const absolutePath = path.resolve(filePath);
|
||||
const fileContent = fs.readFileSync(absolutePath, "utf-8");
|
||||
return JSON.parse(fileContent);
|
||||
} else {
|
||||
return new Promise((resolve, reject) => {
|
||||
let data = "";
|
||||
process.stdin.on("data", (chunk) => {
|
||||
data += chunk;
|
||||
});
|
||||
process.stdin.on("end", () => {
|
||||
try {
|
||||
resolve(JSON.parse(data));
|
||||
} catch (error) {
|
||||
reject(error);
|
||||
}
|
||||
});
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
// Upload the JSON data to the API using built-in fetch
|
||||
async function uploadJson(apiUrl, apiKey, jsonData) {
|
||||
const response = await fetch(`${apiUrl}/api/v1/upload`, {
|
||||
method: "POST",
|
||||
headers: {
|
||||
"Content-Type": "application/json",
|
||||
...(apiKey ? { "X-API-Key": `${apiKey}` } : {}),
|
||||
},
|
||||
body: JSON.stringify(jsonData),
|
||||
});
|
||||
if (!response.ok) {
|
||||
throw new Error(`Failed to upload JSON: ${response.status} ${response.statusText}`);
|
||||
}
|
||||
}
|
||||
|
||||
// Main function
|
||||
async function main() {
|
||||
try {
|
||||
const jsonData = await readJson(args.values["json-file"]);
|
||||
await uploadJson(args.values["api-url"], args.values["api-key"], jsonData);
|
||||
console.log("JSON uploaded successfully.");
|
||||
} catch (error) {
|
||||
console.error("Error:", error.message);
|
||||
process.exit(1);
|
||||
}
|
||||
}
|
||||
|
||||
main();
|
||||
@@ -2,12 +2,11 @@
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<link rel="icon" href="%PUBLIC_URL%/favicon.ico" />
|
||||
<link rel="icon" href="/favicon.ico" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<meta name="theme-color" content="#000000" />
|
||||
<meta name="description" content="JMESPath Testing Tool - Validate and test JMESPath expressions against JSON data" />
|
||||
<link rel="apple-touch-icon" href="%PUBLIC_URL%/logo192.png" />
|
||||
<link rel="manifest" href="%PUBLIC_URL%/manifest.json" />
|
||||
<link rel="manifest" href="/manifest.json" />
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700&family=Noto+Sans+Mono:wght@300;400;500;600&display=swap" rel="stylesheet">
|
||||
@@ -16,5 +15,6 @@
|
||||
<body>
|
||||
<noscript>You need to enable JavaScript to run this app.</noscript>
|
||||
<div id="root"></div>
|
||||
<script type="module" src="/src/index.jsx"></script>
|
||||
</body>
|
||||
</html>
|
||||
16276
package-lock.json
generated
16276
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
34
package.json
34
package.json
@@ -1,15 +1,16 @@
|
||||
{
|
||||
"name": "jmespath-playground",
|
||||
"version": "1.2.4",
|
||||
"version": "1.3.1",
|
||||
"description": "A React-based web application for testing JMESPath expressions against JSON data",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
"start": "react-scripts start",
|
||||
"start": "vite",
|
||||
"prebuild": "node scripts/version-check.js",
|
||||
"build": "react-scripts build",
|
||||
"test": "react-scripts test --watchAll=false",
|
||||
"test:watch": "react-scripts test",
|
||||
"server": "node server.js",
|
||||
"build": "vite build",
|
||||
"preview": "vite preview",
|
||||
"test": "vitest",
|
||||
"server": "node server.js --dev",
|
||||
"dev": "concurrently \"npm start\" \"npm run server\"",
|
||||
"build-image": "node scripts/build-image.js"
|
||||
},
|
||||
"engines": {
|
||||
@@ -24,21 +25,8 @@
|
||||
"jmespath": "^0.16.0",
|
||||
"react": "^18.2.0",
|
||||
"react-dom": "^18.2.0",
|
||||
"react-scripts": "^5.0.1",
|
||||
"uuid": "^9.0.0"
|
||||
},
|
||||
"eslintConfig": {
|
||||
"extends": [
|
||||
"react-app",
|
||||
"react-app/jest"
|
||||
]
|
||||
},
|
||||
"jest": {
|
||||
"collectCoverageFrom": [
|
||||
"src/**/*.{js,jsx,ts,tsx}",
|
||||
"!src/index.js"
|
||||
]
|
||||
},
|
||||
"browserslist": {
|
||||
"production": [
|
||||
">0.2%",
|
||||
@@ -61,6 +49,12 @@
|
||||
"author": "",
|
||||
"license": "MIT",
|
||||
"devDependencies": {
|
||||
"supertest": "^7.2.2"
|
||||
"@vitejs/plugin-react": "^5.1.2",
|
||||
"@vitest/ui": "^4.0.18",
|
||||
"concurrently": "^8.2.2",
|
||||
"jsdom": "^27.4.0",
|
||||
"supertest": "^7.2.2",
|
||||
"vite": "^7.3.1",
|
||||
"vitest": "^4.0.18"
|
||||
}
|
||||
}
|
||||
|
||||
81
scripts/build-image.js
Normal file → Executable file
81
scripts/build-image.js
Normal file → Executable file
@@ -2,6 +2,7 @@
|
||||
|
||||
const { execSync } = require('child_process');
|
||||
const fs = require('fs');
|
||||
const { parseArgs } = require('util');
|
||||
|
||||
function execCommand(command, description) {
|
||||
try {
|
||||
@@ -46,11 +47,77 @@ function getVersion() {
|
||||
return { version: `${packageJson.version}-dev`, isRelease: false };
|
||||
}
|
||||
|
||||
function getHostArchitecture() {
|
||||
// Map Node.js architecture names to container architecture names
|
||||
const archMap = {
|
||||
'arm64': 'arm64',
|
||||
'arm': 'arm64',
|
||||
'x64': 'amd64'
|
||||
};
|
||||
return archMap[process.arch] || 'arm64';
|
||||
}
|
||||
|
||||
function showHelp() {
|
||||
const hostArch = getHostArchitecture();
|
||||
console.log(`Build multi-architecture container images for JMESPath Playground
|
||||
|
||||
Usage:
|
||||
build-image.js [OPTIONS]
|
||||
|
||||
Options:
|
||||
--all-arch Build for both arm64 and amd64 (default: build for host architecture only)
|
||||
--arch <arch> Target architecture (arm64 or amd64). Can be specified multiple times.
|
||||
--help, -h Show this help message and exit
|
||||
|
||||
Examples:
|
||||
build-image.js # Builds for ${hostArch} only (host architecture)
|
||||
build-image.js --all-arch # Builds for both arm64 and amd64
|
||||
build-image.js --arch arm64 # Builds for arm64 only
|
||||
build-image.js --arch arm64 --arch amd64 # Explicitly specify both
|
||||
build-image.js -h # Show help`);
|
||||
}
|
||||
|
||||
function main() {
|
||||
const { values } = parseArgs({
|
||||
options: {
|
||||
help: {
|
||||
type: 'boolean',
|
||||
short: 'h',
|
||||
description: 'Show help'
|
||||
},
|
||||
'all-arch': {
|
||||
type: 'boolean',
|
||||
description: 'Build for both arm64 and amd64'
|
||||
},
|
||||
arch: {
|
||||
type: 'string',
|
||||
multiple: true,
|
||||
description: 'Target architecture (arm64 or amd64)'
|
||||
}
|
||||
},
|
||||
strict: true,
|
||||
allowPositionals: false
|
||||
});
|
||||
|
||||
if (values.help) {
|
||||
showHelp();
|
||||
process.exit(0);
|
||||
}
|
||||
|
||||
const containerTool = getContainerTool();
|
||||
const { version, isRelease } = getVersion();
|
||||
|
||||
let architectures;
|
||||
if (values['all-arch']) {
|
||||
architectures = ['arm64', 'amd64'];
|
||||
} else if (values.arch && values.arch.length > 0) {
|
||||
architectures = values.arch;
|
||||
} else {
|
||||
architectures = [getHostArchitecture()];
|
||||
}
|
||||
|
||||
console.log(`Building ${isRelease ? 'release' : 'development'} version: ${version}`);
|
||||
console.log(`Target architectures: ${architectures.join(', ')}`);
|
||||
|
||||
// Build container image
|
||||
const tags = isRelease
|
||||
@@ -63,16 +130,24 @@ function main() {
|
||||
`-t skoszewski/jmespath-playground:latest`
|
||||
].join(' ');
|
||||
|
||||
const buildCommand = `${containerTool} build --build-arg VERSION="${version}" --build-arg IS_RELEASE="${isRelease}" ${tags} .`;
|
||||
const archFlags = architectures.map(arch => `--arch ${arch}`).join(' ');
|
||||
|
||||
const buildCommand = `${containerTool} build ${archFlags} --build-arg VERSION="${version}" --build-arg IS_RELEASE="${isRelease}" ${tags} .`;
|
||||
|
||||
execCommand(buildCommand, 'Building container image');
|
||||
|
||||
console.log('Container image build completed successfully!');
|
||||
|
||||
// Show usage instructions
|
||||
console.log(`\nUsage examples:`);
|
||||
console.log(` build-image.js # Builds for host architecture only`);
|
||||
console.log(` build-image.js --all-arch # Builds for both arm64 and amd64`);
|
||||
console.log(` build-image.js --arch arm64 # Builds for arm64 only`);
|
||||
console.log(` build-image.js --arch arm64 --arch amd64 # Explicitly specify both`);
|
||||
|
||||
if (isRelease) {
|
||||
console.log(`\nTo run the container:`);
|
||||
console.log(` ${containerTool} run -p 3000:3000 skoszewski/jmespath-playground:${version}`);
|
||||
console.log(` ${containerTool} run --arch arm64 --name jmespathpg -p 3000:3000 skoszewski/jmespath-playground:${version}`);
|
||||
if (containerTool === 'docker') {
|
||||
console.log(`\nTo push to Docker Hub:`);
|
||||
console.log(` docker push skoszewski/jmespath-playground:${version}`);
|
||||
@@ -80,7 +155,7 @@ function main() {
|
||||
}
|
||||
} else {
|
||||
console.log(`\nTo run the container:`);
|
||||
console.log(` ${containerTool} run -p 3000:3000 skoszewski/jmespath-playground:dev`);
|
||||
console.log(` ${containerTool} run --arch arm64 --name jmespathpg -p 3000:3000 skoszewski/jmespath-playground:dev`);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
346
server.js
346
server.js
@@ -1,9 +1,9 @@
|
||||
const express = require('express');
|
||||
const path = require('path');
|
||||
const crypto = require('crypto');
|
||||
const os = require('os');
|
||||
const { v4: uuidv4 } = require('uuid');
|
||||
const { parseArgs } = require('util');
|
||||
const express = require("express");
|
||||
const path = require("path");
|
||||
const crypto = require("crypto");
|
||||
const os = require("os");
|
||||
const { v4: uuidv4 } = require("uuid");
|
||||
const { parseArgs } = require("util");
|
||||
|
||||
// Environment configuration
|
||||
const MAX_SESSIONS = parseInt(process.env.MAX_SESSIONS) || 100;
|
||||
@@ -11,54 +11,29 @@ const MAX_SAMPLE_SIZE = parseInt(process.env.MAX_SAMPLE_SIZE) || 1024 * 1024; //
|
||||
const MAX_SESSION_TTL = parseInt(process.env.MAX_SESSION_TTL) || 60 * 60 * 1000; // 1 hour
|
||||
|
||||
// Utility functions for encryption
|
||||
function generateSalt() {
|
||||
return crypto.randomBytes(16);
|
||||
}
|
||||
|
||||
function isLocalhostRequest(req) {
|
||||
// Get client IP with fallback options
|
||||
const forwarded = req.get('X-Forwarded-For');
|
||||
const ip = forwarded ? forwarded.split(',')[0].trim() :
|
||||
req.ip ||
|
||||
req.connection.remoteAddress ||
|
||||
req.socket.remoteAddress ||
|
||||
'127.0.0.1';
|
||||
|
||||
const host = req.get('host') || '';
|
||||
|
||||
// Check for localhost IP addresses (IPv4 and IPv6)
|
||||
const localhostIPs = ['127.0.0.1', '::1', '::ffff:127.0.0.1', 'localhost'];
|
||||
const isLocalIP = localhostIPs.includes(ip) || ip.startsWith('127.') || ip === '::1';
|
||||
|
||||
// Check for localhost hostnames
|
||||
const isLocalHost = host.startsWith('localhost:') || host.startsWith('127.0.0.1:') || host === 'localhost' || host === '127.0.0.1';
|
||||
|
||||
return isLocalIP || isLocalHost;
|
||||
}
|
||||
|
||||
function encrypt(data, key) {
|
||||
try {
|
||||
const algorithm = 'aes-256-gcm';
|
||||
const algorithm = "aes-256-gcm";
|
||||
const iv = crypto.randomBytes(16);
|
||||
const cipher = crypto.createCipheriv(algorithm, key, iv);
|
||||
cipher.setAAD(Buffer.from('session-data'));
|
||||
cipher.setAAD(Buffer.from("session-data"));
|
||||
|
||||
let encrypted = cipher.update(JSON.stringify(data), 'utf8');
|
||||
let encrypted = cipher.update(JSON.stringify(data), "utf8");
|
||||
encrypted = Buffer.concat([encrypted, cipher.final()]);
|
||||
|
||||
const authTag = cipher.getAuthTag();
|
||||
|
||||
return {
|
||||
iv: iv.toString('hex'),
|
||||
data: encrypted.toString('hex'),
|
||||
tag: authTag.toString('hex')
|
||||
iv: iv.toString("hex"),
|
||||
data: encrypted.toString("hex"),
|
||||
tag: authTag.toString("hex"),
|
||||
};
|
||||
} catch (error) {
|
||||
console.error('⚠️ Encryption exception:', {
|
||||
console.error("⚠️ Encryption exception:", {
|
||||
message: error.message,
|
||||
algorithm: 'aes-256-gcm',
|
||||
keyLength: key ? key.length : 'undefined',
|
||||
timestamp: new Date().toISOString()
|
||||
algorithm: "aes-256-gcm",
|
||||
keyLength: key ? key.length : "undefined",
|
||||
timestamp: new Date().toISOString(),
|
||||
});
|
||||
throw new Error(`Encryption failed: ${error.message}`);
|
||||
}
|
||||
@@ -66,39 +41,40 @@ function encrypt(data, key) {
|
||||
|
||||
function decrypt(encryptedObj, key) {
|
||||
try {
|
||||
const algorithm = 'aes-256-gcm';
|
||||
const iv = Buffer.from(encryptedObj.iv, 'hex');
|
||||
const algorithm = "aes-256-gcm";
|
||||
const iv = Buffer.from(encryptedObj.iv, "hex");
|
||||
const decipher = crypto.createDecipheriv(algorithm, key, iv);
|
||||
decipher.setAAD(Buffer.from('session-data'));
|
||||
decipher.setAuthTag(Buffer.from(encryptedObj.tag, 'hex'));
|
||||
decipher.setAAD(Buffer.from("session-data"));
|
||||
decipher.setAuthTag(Buffer.from(encryptedObj.tag, "hex"));
|
||||
|
||||
let decrypted = decipher.update(Buffer.from(encryptedObj.data, 'hex'), null, 'utf8');
|
||||
decrypted += decipher.final('utf8');
|
||||
let decrypted = decipher.update(
|
||||
Buffer.from(encryptedObj.data, "hex"),
|
||||
null,
|
||||
"utf8",
|
||||
);
|
||||
decrypted += decipher.final("utf8");
|
||||
|
||||
return JSON.parse(decrypted);
|
||||
} catch (error) {
|
||||
console.error('⚠️ Decryption exception:', {
|
||||
console.error("⚠️ Decryption exception:", {
|
||||
message: error.message,
|
||||
algorithm: 'aes-256-gcm',
|
||||
keyLength: key ? key.length : 'undefined',
|
||||
algorithm: "aes-256-gcm",
|
||||
keyLength: key ? key.length : "undefined",
|
||||
hasIV: !!encryptedObj.iv,
|
||||
hasTag: !!encryptedObj.tag,
|
||||
hasData: !!encryptedObj.data,
|
||||
timestamp: new Date().toISOString()
|
||||
timestamp: new Date().toISOString(),
|
||||
});
|
||||
throw new Error(`Decryption failed: ${error.message}`);
|
||||
}
|
||||
}
|
||||
|
||||
// For localhost requests, use a consistent API key so sessions persist
|
||||
const LOCALHOST_API_KEY = 'localhost0123456789abcdef0123456789';
|
||||
|
||||
function isValidApiKey(apiKey) {
|
||||
return typeof apiKey === 'string' && /^[0-9a-f]{32}$/i.test(apiKey);
|
||||
return typeof apiKey === "string" && /^[0-9a-f]{32}$/i.test(apiKey);
|
||||
}
|
||||
|
||||
function getSessionId(apiKey) {
|
||||
return crypto.createHash('sha256').update(apiKey).digest('hex');
|
||||
return crypto.createHash("sha256").update(apiKey).digest("hex");
|
||||
}
|
||||
|
||||
function generateSalt() {
|
||||
@@ -106,19 +82,38 @@ function generateSalt() {
|
||||
}
|
||||
|
||||
function deriveKey(apiKey, salt) {
|
||||
return crypto.pbkdf2Sync(apiKey, salt, 10000, 32, 'sha256');
|
||||
return crypto.pbkdf2Sync(apiKey, salt, 100000, 32, "sha256");
|
||||
}
|
||||
|
||||
// Create Express app
|
||||
function createApp() {
|
||||
function createApp(devMode = false) {
|
||||
const app = express();
|
||||
|
||||
// Trust proxy to get real client IP (needed for localhost detection)
|
||||
app.set('trust proxy', true);
|
||||
app.set("trust proxy", true);
|
||||
|
||||
// Middleware
|
||||
app.use(express.json({ limit: MAX_SAMPLE_SIZE }));
|
||||
app.use(express.static(path.join(__dirname, 'build')));
|
||||
app.use(express.static(path.join(__dirname, "build")));
|
||||
|
||||
// Dev mode request logging middleware
|
||||
if (devMode) {
|
||||
app.use((req, res, next) => {
|
||||
const timestamp = new Date().toISOString();
|
||||
console.log(`📨 [${timestamp}] ${req.method} ${req.path}`);
|
||||
if (req.method !== "GET" && Object.keys(req.body).length > 0) {
|
||||
const bodySize = Buffer.byteLength(JSON.stringify(req.body), "utf8");
|
||||
console.log(` Request body size: ${(bodySize / 1024).toFixed(2)}KB`);
|
||||
}
|
||||
|
||||
const originalJson = res.json;
|
||||
res.json = function (data) {
|
||||
console.log(` ✓ Response: ${res.statusCode}`);
|
||||
return originalJson.call(this, data);
|
||||
};
|
||||
next();
|
||||
});
|
||||
}
|
||||
|
||||
// Session storage
|
||||
const sessions = new Map();
|
||||
@@ -129,7 +124,9 @@ function createApp() {
|
||||
for (const [sessionId, session] of sessions.entries()) {
|
||||
if (now - session.createdAt > MAX_SESSION_TTL) {
|
||||
sessions.delete(sessionId);
|
||||
console.log(`🧹 Cleaned up expired session: ${sessionId.substring(0, 8)}...`);
|
||||
console.log(
|
||||
`🧹 Cleaned up expired session: ${sessionId.substring(0, 8)}...`,
|
||||
);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -138,22 +135,15 @@ function createApp() {
|
||||
setInterval(cleanupExpiredSessions, 5 * 60 * 1000);
|
||||
|
||||
// API endpoints
|
||||
app.post('/api/v1/upload', (req, res) => {
|
||||
app.post("/api/v1/upload", (req, res) => {
|
||||
try {
|
||||
// Check if request is from localhost - if so, skip API key validation
|
||||
const isFromLocalhost = isLocalhostRequest(req);
|
||||
let apiKey = req.headers['x-api-key'];
|
||||
const apiKey = req.headers["x-api-key"];
|
||||
|
||||
if (!isFromLocalhost) {
|
||||
// Validate API key header for remote clients
|
||||
// Validate API key header
|
||||
if (!apiKey || !isValidApiKey(apiKey)) {
|
||||
return res.status(403).json({ error: 'Invalid or missing X-API-Key header' });
|
||||
}
|
||||
} else {
|
||||
// For localhost requests, use consistent API key for session persistence
|
||||
if (!apiKey || !isValidApiKey(apiKey)) {
|
||||
apiKey = LOCALHOST_API_KEY;
|
||||
}
|
||||
return res
|
||||
.status(403)
|
||||
.json({ error: "Invalid or missing X-API-Key header" });
|
||||
}
|
||||
|
||||
// Cleanup expired sessions before checking limits
|
||||
@@ -162,26 +152,26 @@ function createApp() {
|
||||
// Check session limits
|
||||
if (sessions.size >= MAX_SESSIONS) {
|
||||
return res.status(429).json({
|
||||
error: 'Maximum number of sessions reached. Please try again later.',
|
||||
error: "Maximum number of sessions reached. Please try again later.",
|
||||
maxSessions: MAX_SESSIONS,
|
||||
currentSessions: sessions.size
|
||||
currentSessions: sessions.size,
|
||||
});
|
||||
}
|
||||
|
||||
const uploadedData = req.body;
|
||||
|
||||
// Validate that it's valid JSON
|
||||
if (!uploadedData || typeof uploadedData !== 'object') {
|
||||
return res.status(400).json({ error: 'Invalid JSON data' });
|
||||
if (!uploadedData || typeof uploadedData !== "object") {
|
||||
return res.status(400).json({ error: "Invalid JSON data" });
|
||||
}
|
||||
|
||||
// Check data size
|
||||
const dataSize = Buffer.byteLength(JSON.stringify(uploadedData), 'utf8');
|
||||
const dataSize = Buffer.byteLength(JSON.stringify(uploadedData), "utf8");
|
||||
if (dataSize > MAX_SAMPLE_SIZE) {
|
||||
return res.status(413).json({
|
||||
error: 'Sample data too large',
|
||||
error: "Sample data too large",
|
||||
maxSize: MAX_SAMPLE_SIZE,
|
||||
receivedSize: dataSize
|
||||
receivedSize: dataSize,
|
||||
});
|
||||
}
|
||||
|
||||
@@ -194,69 +184,66 @@ function createApp() {
|
||||
const encryptedData = encrypt(uploadedData, key);
|
||||
|
||||
sessions.set(sessionId, {
|
||||
salt: salt.toString('hex'),
|
||||
salt: salt.toString("hex"),
|
||||
encryptedData,
|
||||
state: stateGuid,
|
||||
createdAt: Date.now(),
|
||||
accessed: false
|
||||
accessed: false,
|
||||
});
|
||||
|
||||
console.log(`📁 Session created: ${sessionId.substring(0, 8)}... (${sessions.size}/${MAX_SESSIONS})`);
|
||||
console.log(
|
||||
`📁 Session created: ${sessionId.substring(0, 8)}... (${sessions.size}/${MAX_SESSIONS})`,
|
||||
);
|
||||
|
||||
res.json({
|
||||
message: 'Sample data uploaded successfully',
|
||||
message: "Sample data uploaded successfully",
|
||||
state: stateGuid,
|
||||
sessionId: sessionId.substring(0, 8) + '...'
|
||||
sessionId: sessionId.substring(0, 8) + "...",
|
||||
});
|
||||
} catch (error) {
|
||||
console.error('⚠️ Upload endpoint exception occurred:', {
|
||||
console.error("⚠️ Upload endpoint exception occurred:", {
|
||||
message: error.message,
|
||||
stack: error.stack,
|
||||
sessionCount: sessions.size,
|
||||
timestamp: new Date().toISOString()
|
||||
timestamp: new Date().toISOString(),
|
||||
});
|
||||
|
||||
// Provide more specific error messages based on error type
|
||||
if (error.name === 'SyntaxError') {
|
||||
if (error.name === "SyntaxError") {
|
||||
return res.status(400).json({
|
||||
error: 'Invalid JSON data format',
|
||||
details: 'The uploaded data could not be parsed as valid JSON'
|
||||
error: "Invalid JSON data format",
|
||||
details: "The uploaded data could not be parsed as valid JSON",
|
||||
});
|
||||
} else if (error.message.includes('encrypt')) {
|
||||
} else if (error.message.includes("encrypt")) {
|
||||
return res.status(500).json({
|
||||
error: 'Encryption failed',
|
||||
details: 'Failed to encrypt session data. Please try again with a new API key.'
|
||||
error: "Encryption failed",
|
||||
details:
|
||||
"Failed to encrypt session data. Please try again with a new API key.",
|
||||
});
|
||||
} else if (error.message.includes('PBKDF2')) {
|
||||
} else if (error.message.includes("PBKDF2")) {
|
||||
return res.status(500).json({
|
||||
error: 'Key derivation failed',
|
||||
details: 'Failed to derive encryption key from API key'
|
||||
error: "Key derivation failed",
|
||||
details: "Failed to derive encryption key from API key",
|
||||
});
|
||||
} else {
|
||||
return res.status(500).json({
|
||||
error: 'Upload processing failed',
|
||||
details: 'An unexpected error occurred while processing your upload. Please try again.'
|
||||
error: "Upload processing failed",
|
||||
details:
|
||||
"An unexpected error occurred while processing your upload. Please try again.",
|
||||
});
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
app.get('/api/v1/sample', (req, res) => {
|
||||
app.get("/api/v1/sample", (req, res) => {
|
||||
try {
|
||||
// Check if request is from localhost - if so, skip API key validation
|
||||
const isFromLocalhost = isLocalhostRequest(req);
|
||||
let apiKey = req.headers['x-api-key'];
|
||||
const apiKey = req.headers["x-api-key"];
|
||||
|
||||
if (!isFromLocalhost) {
|
||||
// Validate API key header for remote clients
|
||||
// Validate API key header
|
||||
if (!apiKey || !isValidApiKey(apiKey)) {
|
||||
return res.status(403).json({ error: 'Invalid or missing X-API-Key header' });
|
||||
}
|
||||
} else {
|
||||
// For localhost requests, use consistent API key for session persistence
|
||||
if (!apiKey || !isValidApiKey(apiKey)) {
|
||||
apiKey = LOCALHOST_API_KEY;
|
||||
}
|
||||
return res
|
||||
.status(403)
|
||||
.json({ error: "Invalid or missing X-API-Key header" });
|
||||
}
|
||||
|
||||
const sessionId = getSessionId(apiKey);
|
||||
@@ -267,64 +254,62 @@ function createApp() {
|
||||
}
|
||||
|
||||
// Decrypt data
|
||||
const salt = Buffer.from(session.salt, 'hex');
|
||||
const salt = Buffer.from(session.salt, "hex");
|
||||
const key = deriveKey(apiKey, salt);
|
||||
const decryptedData = decrypt(session.encryptedData, key);
|
||||
|
||||
// Remove session after first access (one-time use)
|
||||
sessions.delete(sessionId);
|
||||
console.log(`📤 Sample data retrieved and session cleared: ${sessionId.substring(0, 8)}...`);
|
||||
console.log(
|
||||
`📤 Sample data retrieved and session cleared: ${sessionId.substring(0, 8)}...`,
|
||||
);
|
||||
|
||||
res.json(decryptedData);
|
||||
} catch (error) {
|
||||
console.error('⚠️ Sample retrieval exception occurred:', {
|
||||
console.error("⚠️ Sample retrieval exception occurred:", {
|
||||
message: error.message,
|
||||
stack: error.stack,
|
||||
sessionCount: sessions.size,
|
||||
timestamp: new Date().toISOString()
|
||||
timestamp: new Date().toISOString(),
|
||||
});
|
||||
|
||||
// Provide more specific error messages based on error type
|
||||
if (error.message.includes('decrypt')) {
|
||||
if (error.message.includes("decrypt")) {
|
||||
return res.status(500).json({
|
||||
error: 'Decryption failed',
|
||||
details: 'Failed to decrypt session data. The session may be corrupted or the API key may be incorrect.'
|
||||
error: "Decryption failed",
|
||||
details:
|
||||
"Failed to decrypt session data. The session may be corrupted or the API key may be incorrect.",
|
||||
});
|
||||
} else if (error.message.includes('JSON')) {
|
||||
} else if (error.message.includes("JSON")) {
|
||||
return res.status(500).json({
|
||||
error: 'Data corruption detected',
|
||||
details: 'The stored session data appears to be corrupted and cannot be parsed.'
|
||||
error: "Data corruption detected",
|
||||
details:
|
||||
"The stored session data appears to be corrupted and cannot be parsed.",
|
||||
});
|
||||
} else if (error.name === 'TypeError') {
|
||||
} else if (error.name === "TypeError") {
|
||||
return res.status(500).json({
|
||||
error: 'Session data format error',
|
||||
details: 'The session data format is invalid or corrupted.'
|
||||
error: "Session data format error",
|
||||
details: "The session data format is invalid or corrupted.",
|
||||
});
|
||||
} else {
|
||||
return res.status(500).json({
|
||||
error: 'Sample retrieval failed',
|
||||
details: 'An unexpected error occurred while retrieving sample data. The session may have been corrupted.'
|
||||
error: "Sample retrieval failed",
|
||||
details:
|
||||
"An unexpected error occurred while retrieving sample data. The session may have been corrupted.",
|
||||
});
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
app.get('/api/v1/state', (req, res) => {
|
||||
app.get("/api/v1/state", (req, res) => {
|
||||
try {
|
||||
// Check if request is from localhost - if so, skip API key validation
|
||||
const isFromLocalhost = isLocalhostRequest(req);
|
||||
let apiKey = req.headers['x-api-key'];
|
||||
const apiKey = req.headers["x-api-key"];
|
||||
|
||||
if (!isFromLocalhost) {
|
||||
// Validate API key header for remote clients
|
||||
// Validate API key header
|
||||
if (!apiKey || !isValidApiKey(apiKey)) {
|
||||
return res.status(403).json({ error: 'Invalid or missing X-API-Key header' });
|
||||
}
|
||||
} else {
|
||||
// For localhost requests, use consistent API key for session persistence
|
||||
if (!apiKey || !isValidApiKey(apiKey)) {
|
||||
apiKey = LOCALHOST_API_KEY;
|
||||
}
|
||||
return res
|
||||
.status(403)
|
||||
.json({ error: "Invalid or missing X-API-Key header" });
|
||||
}
|
||||
|
||||
const sessionId = getSessionId(apiKey);
|
||||
@@ -337,55 +322,56 @@ function createApp() {
|
||||
|
||||
res.json({ state: session.state });
|
||||
} catch (error) {
|
||||
console.error('⚠️ State retrieval exception occurred:', {
|
||||
console.error("⚠️ State retrieval exception occurred:", {
|
||||
message: error.message,
|
||||
stack: error.stack,
|
||||
sessionCount: sessions.size,
|
||||
timestamp: new Date().toISOString()
|
||||
timestamp: new Date().toISOString(),
|
||||
});
|
||||
|
||||
// Provide more specific error messages
|
||||
if (error.message.includes('API key')) {
|
||||
if (error.message.includes("API key")) {
|
||||
return res.status(403).json({
|
||||
error: 'API key processing failed',
|
||||
details: 'Failed to process the provided API key'
|
||||
error: "API key processing failed",
|
||||
details: "Failed to process the provided API key",
|
||||
});
|
||||
} else {
|
||||
return res.status(500).json({
|
||||
error: 'State retrieval failed',
|
||||
details: 'An unexpected error occurred while retrieving session state. Please try again.'
|
||||
error: "State retrieval failed",
|
||||
details:
|
||||
"An unexpected error occurred while retrieving session state. Please try again.",
|
||||
});
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
// Status endpoint (no auth required) - detailed information
|
||||
app.get('/api/v1/status', (req, res) => {
|
||||
app.get("/api/v1/status", (req, res) => {
|
||||
cleanupExpiredSessions(); // Cleanup on status check
|
||||
res.json({
|
||||
status: 'healthy',
|
||||
status: "healthy",
|
||||
sessions: {
|
||||
current: sessions.size,
|
||||
max: MAX_SESSIONS,
|
||||
available: MAX_SESSIONS - sessions.size
|
||||
available: MAX_SESSIONS - sessions.size,
|
||||
},
|
||||
limits: {
|
||||
maxSessions: MAX_SESSIONS,
|
||||
maxSampleSize: MAX_SAMPLE_SIZE,
|
||||
maxSessionTTL: MAX_SESSION_TTL
|
||||
maxSessionTTL: MAX_SESSION_TTL,
|
||||
},
|
||||
uptime: process.uptime()
|
||||
uptime: process.uptime(),
|
||||
});
|
||||
});
|
||||
|
||||
// Health endpoint (no auth required) - simple OK response
|
||||
app.get('/api/v1/health', (req, res) => {
|
||||
res.type('text/plain').send('OK');
|
||||
app.get("/api/v1/health", (req, res) => {
|
||||
res.type("text/plain").send("OK");
|
||||
});
|
||||
|
||||
// Serve React app for all other routes
|
||||
app.get('*', (req, res) => {
|
||||
res.sendFile(path.join(__dirname, 'build', 'index.html'));
|
||||
app.get("*", (req, res) => {
|
||||
res.sendFile(path.join(__dirname, "build", "index.html"));
|
||||
});
|
||||
|
||||
return app;
|
||||
@@ -395,25 +381,41 @@ function createApp() {
|
||||
if (require.main === module) {
|
||||
const { values } = parseArgs({
|
||||
options: {
|
||||
'listen-addr': { type: 'string', short: 'h', default: process.env.LISTEN_ADDR || '127.0.0.1' },
|
||||
'port': { type: 'string', short: 'p', default: process.env.LISTEN_PORT || '3000' }
|
||||
}
|
||||
"listen-addr": {
|
||||
type: "string",
|
||||
short: "h",
|
||||
default: process.env.LISTEN_ADDR || "127.0.0.1",
|
||||
},
|
||||
port: {
|
||||
type: "string",
|
||||
short: "p",
|
||||
default: process.env.LISTEN_PORT || "3000",
|
||||
},
|
||||
dev: {
|
||||
type: "boolean",
|
||||
default: process.env.DEV_MODE === "true" || false,
|
||||
},
|
||||
},
|
||||
});
|
||||
|
||||
const app = createApp();
|
||||
const DEV_MODE = values.dev;
|
||||
const app = createApp(DEV_MODE);
|
||||
const PORT = parseInt(values.port);
|
||||
const HOST = values['listen-addr'];
|
||||
const HOST = values["listen-addr"];
|
||||
|
||||
app.listen(PORT, HOST, () => {
|
||||
console.log(`JMESPath Playground Server running`);
|
||||
if (DEV_MODE) {
|
||||
console.log(` 🔧 Development Mode Enabled`);
|
||||
}
|
||||
|
||||
// Show actual accessible URLs
|
||||
if (HOST === '0.0.0.0') {
|
||||
if (HOST === "0.0.0.0") {
|
||||
console.log(` Listening on all interfaces:`);
|
||||
const interfaces = os.networkInterfaces();
|
||||
for (const [name, addrs] of Object.entries(interfaces)) {
|
||||
for (const addr of addrs) {
|
||||
if (addr.family === 'IPv4' && !addr.internal) {
|
||||
if (addr.family === "IPv4" && !addr.internal) {
|
||||
console.log(` http://${addr.address}:${PORT}`);
|
||||
}
|
||||
}
|
||||
@@ -426,17 +428,24 @@ if (require.main === module) {
|
||||
|
||||
console.log(`Configuration:`);
|
||||
console.log(` Max Sessions: ${MAX_SESSIONS}`);
|
||||
console.log(` Max Sample Size: ${(MAX_SAMPLE_SIZE / 1024 / 1024).toFixed(1)}MB`);
|
||||
console.log(` Session TTL: ${(MAX_SESSION_TTL / 1000 / 60).toFixed(0)} minutes`);
|
||||
console.log(
|
||||
` Max Sample Size: ${(MAX_SAMPLE_SIZE / 1024 / 1024).toFixed(1)}MB`,
|
||||
);
|
||||
console.log(
|
||||
` Session TTL: ${(MAX_SESSION_TTL / 1000 / 60).toFixed(0)} minutes`,
|
||||
);
|
||||
console.log(
|
||||
" Security: AES-256-GCM encryption with PBKDF2 (100k iterations)",
|
||||
);
|
||||
|
||||
// Show base API URL
|
||||
let apiBaseUrl;
|
||||
if (HOST === '0.0.0.0') {
|
||||
if (HOST === "0.0.0.0") {
|
||||
const interfaces = os.networkInterfaces();
|
||||
let firstIP = '127.0.0.1';
|
||||
let firstIP = "127.0.0.1";
|
||||
outer: for (const addrs of Object.values(interfaces)) {
|
||||
for (const addr of addrs) {
|
||||
if (addr.family === 'IPv4' && !addr.internal) {
|
||||
if (addr.family === "IPv4" && !addr.internal) {
|
||||
firstIP = addr.address;
|
||||
break outer;
|
||||
}
|
||||
@@ -448,7 +457,6 @@ if (require.main === module) {
|
||||
}
|
||||
|
||||
console.log(`API Base URL: ${apiBaseUrl}`);
|
||||
console.log(`Security: AES-256-GCM encryption with PBKDF2 key derivation`);
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
70
src/App.css
70
src/App.css
@@ -5,6 +5,22 @@
|
||||
--font-mono: 'Monaco', 'Menlo', 'Ubuntu Mono', 'Consolas', monospace;
|
||||
--accent-color: #007bff;
|
||||
|
||||
/* Brand colors */
|
||||
--brand-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
||||
--brand-white: #ffffff;
|
||||
--brand-dark: #212529;
|
||||
--brand-warning: #ffc107;
|
||||
|
||||
/* Brand opacity levels */
|
||||
--brand-white-60: rgba(255, 255, 255, 0.6);
|
||||
--brand-white-10: rgba(255, 255, 255, 0.1);
|
||||
--brand-warning-50: rgba(255, 193, 7, 0.5);
|
||||
--brand-warning-10: rgba(255, 193, 7, 0.1);
|
||||
|
||||
/* Elevation and overlays */
|
||||
--shadow-light: rgba(0, 0, 0, 0.1);
|
||||
--focus-ring: rgba(0, 123, 255, 0.25);
|
||||
|
||||
/* Button variants */
|
||||
--btn-success: #28a745;
|
||||
--btn-info: #17a2b8;
|
||||
@@ -36,23 +52,57 @@ body {
|
||||
|
||||
/* Header section styling - more compact */
|
||||
.header-section {
|
||||
/* Removed gradient background to fix text visibility */
|
||||
background: var(--brand-gradient);
|
||||
color: var(--brand-white);
|
||||
padding: 1.2rem 0;
|
||||
margin-bottom: 1rem;
|
||||
transition: background-color 0.3s ease;
|
||||
}
|
||||
|
||||
.header-section h2 {
|
||||
color: var(--brand-white);
|
||||
}
|
||||
|
||||
/* Ensure buttons in header are clearly visible against gradient */
|
||||
.header-section .btn-light.active {
|
||||
background-color: var(--brand-white);
|
||||
color: var(--brand-dark) !important; /* Deep dark text for selected states */
|
||||
border-color: var(--brand-white);
|
||||
}
|
||||
|
||||
.header-section .btn-outline-light {
|
||||
color: var(--brand-white);
|
||||
border-color: var(--brand-white-60);
|
||||
}
|
||||
|
||||
.header-section .btn-outline-light:hover {
|
||||
background-color: var(--brand-white-10);
|
||||
color: var(--brand-white);
|
||||
}
|
||||
|
||||
.header-section .btn-outline-warning {
|
||||
color: var(--brand-warning);
|
||||
border-color: var(--brand-warning-50);
|
||||
}
|
||||
|
||||
.header-section .btn-outline-warning:hover {
|
||||
background-color: var(--brand-warning-10);
|
||||
color: var(--brand-warning);
|
||||
}
|
||||
|
||||
/* Custom card styling */
|
||||
.card {
|
||||
border: none;
|
||||
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
|
||||
box-shadow: 0 2px 8px var(--shadow-light);
|
||||
border-radius: 8px;
|
||||
transition: background-color 0.3s ease, box-shadow 0.3s ease;
|
||||
}
|
||||
|
||||
.card-header {
|
||||
background-color: #f8f9fa;
|
||||
border-bottom: 2px solid #dee2e6;
|
||||
background-color: var(--bg-secondary);
|
||||
border-bottom: 2px solid var(--border);
|
||||
font-weight: 600;
|
||||
color: #212529;
|
||||
color: var(--text-primary);
|
||||
transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
|
||||
}
|
||||
|
||||
@@ -224,7 +274,7 @@ footer a:hover {
|
||||
/* Focus states */
|
||||
.jmespath-input:focus {
|
||||
border-color: var(--accent-color, #007bff);
|
||||
box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
|
||||
box-shadow: 0 0 0 0.2rem var(--focus-ring);
|
||||
}
|
||||
|
||||
.json-input:focus,
|
||||
@@ -232,7 +282,7 @@ footer a:hover {
|
||||
background-color: var(--bg-primary);
|
||||
border-color: var(--accent-color, #007bff);
|
||||
color: var(--text-secondary);
|
||||
box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
|
||||
box-shadow: 0 0 0 0.2rem var(--focus-ring);
|
||||
}
|
||||
|
||||
/* Placeholder colors */
|
||||
@@ -249,6 +299,12 @@ footer a:hover {
|
||||
color: var(--error-text);
|
||||
}
|
||||
|
||||
.alert-success {
|
||||
background-color: var(--success-bg);
|
||||
border-color: var(--success-border);
|
||||
color: var(--success-text);
|
||||
}
|
||||
|
||||
/* Code block styles */
|
||||
pre.bg-light {
|
||||
background-color: var(--bg-secondary) !important;
|
||||
|
||||
@@ -1,16 +1,16 @@
|
||||
import React, { useState, useEffect } from 'react';
|
||||
import Header from './components/Header';
|
||||
import Footer from './components/Footer';
|
||||
import MainPage from './components/MainPage';
|
||||
import ApiKeyPage from './components/ApiKeyPage';
|
||||
import './App.css';
|
||||
import React, { useState, useEffect } from "react";
|
||||
import Header from "./components/Header";
|
||||
import Footer from "./components/Footer";
|
||||
import MainPage from "./components/MainPage";
|
||||
import ApiKeyPage from "./components/ApiKeyPage";
|
||||
import "./App.css";
|
||||
|
||||
// Utility function to generate a cryptographically secure API key
|
||||
function generateApiKey() {
|
||||
const array = new Uint8Array(16);
|
||||
|
||||
// Use crypto.getRandomValues if available (browser), fallback for tests
|
||||
if (typeof crypto !== 'undefined' && crypto.getRandomValues) {
|
||||
if (typeof crypto !== "undefined" && crypto.getRandomValues) {
|
||||
crypto.getRandomValues(array);
|
||||
} else {
|
||||
// Fallback for test environments - not cryptographically secure
|
||||
@@ -19,62 +19,83 @@ function generateApiKey() {
|
||||
}
|
||||
}
|
||||
|
||||
return Array.from(array, byte => byte.toString(16).padStart(2, '0')).join('');
|
||||
return Array.from(array, (byte) => byte.toString(16).padStart(2, "0")).join(
|
||||
"",
|
||||
);
|
||||
}
|
||||
|
||||
// JMESPath Testing Tool - Main Application Component
|
||||
function App() {
|
||||
const [currentPage, setCurrentPage] = useState('main'); // 'main' or 'apikey'
|
||||
const [currentPage, setCurrentPage] = useState("main"); // 'main' or 'apikey'
|
||||
const [theme, setTheme] = useState(() => {
|
||||
// Load theme from localStorage or default to 'auto'
|
||||
return localStorage.getItem('theme') || 'auto';
|
||||
return localStorage.getItem("theme") || "auto";
|
||||
});
|
||||
const [shellType, setShellType] = useState(() => {
|
||||
// Load shell type from localStorage or default to 'bash'
|
||||
return localStorage.getItem("jmespath-shell-type") || "bash";
|
||||
});
|
||||
const [showReloadButton, setShowReloadButton] = useState(false);
|
||||
const [currentStateGuid, setCurrentStateGuid] = useState(null);
|
||||
const [sampleData, setSampleData] = useState(null);
|
||||
const [jmespathExpression, setJmespathExpression] =
|
||||
useState("people[0].name");
|
||||
const [jsonData, setJsonData] = useState(`{
|
||||
"people": [
|
||||
{
|
||||
"name": "John Doe",
|
||||
"age": 30,
|
||||
"city": "New York"
|
||||
},
|
||||
{
|
||||
"name": "Jane Smith",
|
||||
"age": 25,
|
||||
"city": "Los Angeles"
|
||||
}
|
||||
],
|
||||
"total": 2
|
||||
}`);
|
||||
const [apiKey, setApiKey] = useState(() => {
|
||||
// Load API key from localStorage or generate new one
|
||||
const stored = localStorage.getItem('jmespath-api-key');
|
||||
const stored = localStorage.getItem("jmespath-api-key");
|
||||
if (stored && /^[0-9a-f]{32}$/i.test(stored)) {
|
||||
return stored;
|
||||
}
|
||||
const newKey = generateApiKey();
|
||||
localStorage.setItem('jmespath-api-key', newKey);
|
||||
localStorage.setItem("jmespath-api-key", newKey);
|
||||
return newKey;
|
||||
});
|
||||
|
||||
// Theme management
|
||||
useEffect(() => {
|
||||
const applyTheme = (selectedTheme) => {
|
||||
const effectiveTheme = selectedTheme === 'auto'
|
||||
? (window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches ? 'dark' : 'light')
|
||||
const effectiveTheme =
|
||||
selectedTheme === "auto"
|
||||
? window.matchMedia &&
|
||||
window.matchMedia("(prefers-color-scheme: dark)").matches
|
||||
? "dark"
|
||||
: "light"
|
||||
: selectedTheme;
|
||||
|
||||
document.documentElement.setAttribute('data-bs-theme', effectiveTheme);
|
||||
document.documentElement.setAttribute("data-bs-theme", effectiveTheme);
|
||||
};
|
||||
|
||||
applyTheme(theme);
|
||||
|
||||
// Save theme preference
|
||||
localStorage.setItem('theme', theme);
|
||||
localStorage.setItem("theme", theme);
|
||||
}, [theme]);
|
||||
|
||||
// Shell type management
|
||||
useEffect(() => {
|
||||
localStorage.setItem("jmespath-shell-type", shellType);
|
||||
}, [shellType]);
|
||||
|
||||
// Get headers for API requests
|
||||
const getApiHeaders = () => {
|
||||
const headers = {
|
||||
'Accept': 'application/json'
|
||||
return {
|
||||
Accept: "application/json",
|
||||
"X-API-Key": apiKey,
|
||||
};
|
||||
|
||||
// Only send API key for non-localhost requests
|
||||
// For localhost, let server use its default LOCALHOST_API_KEY
|
||||
if (window.location.hostname !== 'localhost' &&
|
||||
window.location.hostname !== '127.0.0.1' &&
|
||||
!window.location.hostname.startsWith('127.') &&
|
||||
window.location.hostname !== '::1') {
|
||||
headers['X-API-Key'] = apiKey;
|
||||
}
|
||||
|
||||
return headers;
|
||||
};
|
||||
|
||||
// Load sample data from API on startup and setup periodic state checking
|
||||
@@ -90,8 +111,8 @@ function App() {
|
||||
// Check if state has changed (new data uploaded)
|
||||
const checkStateChange = async () => {
|
||||
try {
|
||||
const response = await fetch('/api/v1/state', {
|
||||
headers: getApiHeaders()
|
||||
const response = await fetch("/api/v1/state", {
|
||||
headers: getApiHeaders(),
|
||||
});
|
||||
|
||||
if (response.ok) {
|
||||
@@ -109,19 +130,19 @@ function App() {
|
||||
const loadSampleData = async () => {
|
||||
try {
|
||||
setShowReloadButton(false);
|
||||
const response = await fetch('/api/v1/sample', {
|
||||
headers: getApiHeaders()
|
||||
const response = await fetch("/api/v1/sample", {
|
||||
headers: getApiHeaders(),
|
||||
});
|
||||
|
||||
if (response.ok) {
|
||||
const data = await response.json();
|
||||
if (data) {
|
||||
setSampleData(data);
|
||||
setJsonData(JSON.stringify(data, null, 2));
|
||||
}
|
||||
|
||||
// Update current state GUID
|
||||
const stateResponse = await fetch('/api/v1/state', {
|
||||
headers: getApiHeaders()
|
||||
const stateResponse = await fetch("/api/v1/state", {
|
||||
headers: getApiHeaders(),
|
||||
});
|
||||
if (stateResponse.ok) {
|
||||
const stateData = await stateResponse.json();
|
||||
@@ -129,7 +150,7 @@ function App() {
|
||||
}
|
||||
}
|
||||
} catch (error) {
|
||||
console.error('Failed to load sample data:', error);
|
||||
console.error("Failed to load sample data:", error);
|
||||
}
|
||||
};
|
||||
|
||||
@@ -137,7 +158,7 @@ function App() {
|
||||
const regenerateApiKey = () => {
|
||||
const newKey = generateApiKey();
|
||||
setApiKey(newKey);
|
||||
localStorage.setItem('jmespath-api-key', newKey);
|
||||
localStorage.setItem("jmespath-api-key", newKey);
|
||||
setShowReloadButton(false);
|
||||
setCurrentStateGuid(null);
|
||||
};
|
||||
@@ -151,7 +172,7 @@ function App() {
|
||||
};
|
||||
|
||||
return (
|
||||
<div className="container-fluid vh-100 d-flex flex-column">
|
||||
<div className="vh-100 d-flex flex-column">
|
||||
<Header
|
||||
theme={theme}
|
||||
onThemeChange={handleThemeChange}
|
||||
@@ -160,18 +181,26 @@ function App() {
|
||||
/>
|
||||
|
||||
{/* Main Content Section - flex-grow to fill space */}
|
||||
<div className="container-fluid flex-grow-1 d-flex flex-column" style={{ minHeight: 0 }}>
|
||||
{currentPage === 'main' ? (
|
||||
<div
|
||||
className="container-fluid flex-grow-1 d-flex flex-column"
|
||||
style={{ minHeight: 0 }}
|
||||
>
|
||||
{currentPage === "main" ? (
|
||||
<MainPage
|
||||
apiKey={apiKey}
|
||||
showReloadButton={showReloadButton}
|
||||
onReloadSampleData={loadSampleData}
|
||||
initialSampleData={sampleData}
|
||||
jmespathExpression={jmespathExpression}
|
||||
setJmespathExpression={setJmespathExpression}
|
||||
jsonData={jsonData}
|
||||
setJsonData={setJsonData}
|
||||
/>
|
||||
) : (
|
||||
<ApiKeyPage
|
||||
apiKey={apiKey}
|
||||
onRegenerateApiKey={regenerateApiKey}
|
||||
shellType={shellType}
|
||||
onShellTypeChange={setShellType}
|
||||
/>
|
||||
)}
|
||||
</div>
|
||||
@@ -1,13 +1,27 @@
|
||||
import { render, screen, fireEvent, waitFor } from '@testing-library/react';
|
||||
import userEvent from '@testing-library/user-event';
|
||||
import App from './App';
|
||||
import { vi } from 'vitest';
|
||||
import '@testing-library/jest-dom';
|
||||
|
||||
// Mock localStorage
|
||||
const localStorageMock = (function() {
|
||||
let store = {};
|
||||
return {
|
||||
getItem: vi.fn((key) => store[key] || null),
|
||||
setItem: vi.fn((key, value) => { store[key] = value.toString(); }),
|
||||
clear: vi.fn(() => { store = {}; }),
|
||||
removeItem: vi.fn((key) => { delete store[key]; })
|
||||
};
|
||||
})();
|
||||
Object.defineProperty(window, 'localStorage', { value: localStorageMock });
|
||||
|
||||
// Mock fetch for API calls
|
||||
global.fetch = jest.fn();
|
||||
global.fetch = vi.fn();
|
||||
|
||||
describe('App Component', () => {
|
||||
beforeEach(() => {
|
||||
fetch.mockClear();
|
||||
vi.clearAllMocks();
|
||||
// Mock successful API responses
|
||||
fetch.mockImplementation((url) => {
|
||||
if (url.includes('/api/v1/sample')) {
|
||||
@@ -1,102 +0,0 @@
|
||||
import React, { useState } from 'react';
|
||||
|
||||
function ApiKeyPage({ apiKey, onRegenerateApiKey }) {
|
||||
const [copySuccess, setCopySuccess] = useState(false);
|
||||
|
||||
const handleCopyToClipboard = async () => {
|
||||
try {
|
||||
await navigator.clipboard.writeText(apiKey);
|
||||
setCopySuccess(true);
|
||||
setTimeout(() => setCopySuccess(false), 2000);
|
||||
} catch (err) {
|
||||
console.error('Failed to copy to clipboard:', err);
|
||||
// Fallback for older browsers
|
||||
const textArea = document.createElement('textarea');
|
||||
textArea.value = apiKey;
|
||||
document.body.appendChild(textArea);
|
||||
textArea.select();
|
||||
document.execCommand('copy');
|
||||
document.body.removeChild(textArea);
|
||||
setCopySuccess(true);
|
||||
setTimeout(() => setCopySuccess(false), 2000);
|
||||
}
|
||||
};
|
||||
|
||||
return (
|
||||
<div className="row justify-content-center">
|
||||
<div className="col-md-8">
|
||||
<div className="card">
|
||||
<div className="card-header">
|
||||
<h5 className="mb-0">🔐 API Key Management</h5>
|
||||
</div>
|
||||
<div className="card-body">
|
||||
<div className="mb-4">
|
||||
<label className="form-label fw-bold">Your API Key:</label>
|
||||
<div className="input-group">
|
||||
<input
|
||||
type="text"
|
||||
className="form-control font-monospace"
|
||||
value={apiKey}
|
||||
readOnly
|
||||
/>
|
||||
<button
|
||||
className={`btn ${copySuccess ? 'btn-success' : 'btn-outline-secondary'}`}
|
||||
onClick={handleCopyToClipboard}
|
||||
title="Copy API key to clipboard"
|
||||
>
|
||||
{copySuccess ? '✓ Copied!' : '📋 Copy'}
|
||||
</button>
|
||||
<button
|
||||
className="btn btn-outline-primary"
|
||||
onClick={onRegenerateApiKey}
|
||||
title="Generate new API key"
|
||||
>
|
||||
🔄 Regenerate
|
||||
</button>
|
||||
</div>
|
||||
<div className="form-text">
|
||||
This API key is used to encrypt and authenticate data uploads from remote clients.
|
||||
<strong>Note:</strong> Requests from localhost (127.0.0.1) do not require an API key.
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div className="mb-4">
|
||||
<h6>📡 Remote Data Upload API</h6>
|
||||
<p className="text-muted">
|
||||
External tools can upload sample data remotely using the REST API.
|
||||
For remote clients, the API key is required for authentication:
|
||||
</p>
|
||||
<pre className="bg-light p-3 rounded border">
|
||||
<code>{`curl -s -X POST \\
|
||||
-H "Content-Type: application/json" \\
|
||||
-H "Accept: application/json" \\
|
||||
-H "X-API-Key: ${apiKey}" \\
|
||||
--data @{{JSON_FILE_NAME}} \\
|
||||
"${window.location.origin}/api/v1/upload"`}</code>
|
||||
</pre>
|
||||
<div className="form-text">
|
||||
Replace <code>{'{{JSON_FILE_NAME}}'}</code> with the path to your JSON file containing the sample data.
|
||||
<br />
|
||||
<strong>For localhost clients:</strong> The X-API-Key header is optional and can be omitted.
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div className="alert alert-info">
|
||||
<h6 className="alert-heading">ℹ️ How it works:</h6>
|
||||
<ul className="mb-0">
|
||||
<li>Remote clients require API key authentication for security</li>
|
||||
<li>Localhost clients (127.0.0.1) can access the API without authentication</li>
|
||||
<li>Your data is encrypted using AES-256-GCM with PBKDF2 key derivation</li>
|
||||
<li>Data is automatically cleared after first retrieval (one-time use)</li>
|
||||
<li>Sessions expire after 1 hour for security</li>
|
||||
<li>Maximum 100 concurrent sessions supported</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
export default ApiKeyPage;
|
||||
146
src/components/ApiKeyPage.jsx
Normal file
146
src/components/ApiKeyPage.jsx
Normal file
@@ -0,0 +1,146 @@
|
||||
import React, { useState } from 'react';
|
||||
|
||||
function CodeBlock({ code }) {
|
||||
const [copySuccess, setCopySuccess] = useState(false);
|
||||
|
||||
const handleCopy = async () => {
|
||||
try {
|
||||
await navigator.clipboard.writeText(code);
|
||||
setCopySuccess(true);
|
||||
setTimeout(() => setCopySuccess(false), 2000);
|
||||
} catch (err) {
|
||||
console.error('Failed to copy to clipboard:', err);
|
||||
}
|
||||
};
|
||||
|
||||
return (
|
||||
<div className="position-relative">
|
||||
<pre className="bg-light p-3 pe-5 rounded border shadow-sm">
|
||||
<code className="d-block" style={{ whiteSpace: 'pre-wrap' }}>{code}</code>
|
||||
</pre>
|
||||
<button
|
||||
className={`btn btn-sm ${copySuccess ? 'btn-success' : 'btn-outline-secondary'} position-absolute top-0 end-0 m-2`}
|
||||
onClick={handleCopy}
|
||||
title="Copy code to clipboard"
|
||||
style={{ opacity: 0.8 }}
|
||||
>
|
||||
{copySuccess ? '✓' : '📋'}
|
||||
</button>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
function ApiKeyPage({ apiKey, onRegenerateApiKey, shellType, onShellTypeChange }) {
|
||||
const [copySuccess, setCopySuccess] = useState(false);
|
||||
|
||||
const handleCopyToClipboard = async () => {
|
||||
try {
|
||||
await navigator.clipboard.writeText(apiKey);
|
||||
setCopySuccess(true);
|
||||
setTimeout(() => setCopySuccess(false), 2000);
|
||||
} catch (err) {
|
||||
console.error('Failed to copy to clipboard:', err);
|
||||
// Fallback for older browsers
|
||||
const textArea = document.createElement('textarea');
|
||||
textArea.value = apiKey;
|
||||
document.body.appendChild(textArea);
|
||||
textArea.select();
|
||||
document.execCommand('copy');
|
||||
document.body.removeChild(textArea);
|
||||
setCopySuccess(true);
|
||||
setTimeout(() => setCopySuccess(false), 2000);
|
||||
}
|
||||
};
|
||||
|
||||
return (
|
||||
<div className="row justify-content-center">
|
||||
<div className="col-md-8">
|
||||
<div className="card">
|
||||
<div className="card-header">
|
||||
<h5 className="mb-0">🔐 API Key Management</h5>
|
||||
</div>
|
||||
<div className="card-body">
|
||||
<div className="mb-4">
|
||||
<label className="form-label fw-bold">Your API Key:</label>
|
||||
<div className="input-group">
|
||||
<input
|
||||
type="text"
|
||||
className="form-control font-monospace"
|
||||
value={apiKey}
|
||||
readOnly
|
||||
/>
|
||||
<button
|
||||
className={`btn ${copySuccess ? 'btn-success' : 'btn-outline-secondary'}`}
|
||||
onClick={handleCopyToClipboard}
|
||||
title="Copy API key to clipboard"
|
||||
>
|
||||
{copySuccess ? '✓ Copied!' : '📋 Copy'}
|
||||
</button>
|
||||
<button
|
||||
className="btn btn-outline-primary"
|
||||
onClick={onRegenerateApiKey}
|
||||
title="Generate new API key"
|
||||
>
|
||||
🔄 Regenerate
|
||||
</button>
|
||||
</div>
|
||||
<div className="form-text">
|
||||
This API key is used to encrypt and authenticate data uploads.
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div className="mb-4">
|
||||
<div className="d-flex justify-content-between align-items-center mb-2">
|
||||
<h6 className="mb-0">📡 Remote Data Upload API</h6>
|
||||
<div className="btn-group btn-group-sm" role="group" aria-label="Shell type selector">
|
||||
<input
|
||||
type="radio"
|
||||
className="btn-check"
|
||||
name="shellType"
|
||||
id="shellBash"
|
||||
autoComplete="off"
|
||||
checked={shellType === 'bash'}
|
||||
onChange={() => onShellTypeChange('bash')}
|
||||
/>
|
||||
<label className="btn btn-outline-secondary" htmlFor="shellBash">UNIX (Bash)</label>
|
||||
<input
|
||||
type="radio"
|
||||
className="btn-check"
|
||||
name="shellType"
|
||||
id="shellPowerShell"
|
||||
autoComplete="off"
|
||||
checked={shellType === 'powershell'}
|
||||
onChange={() => onShellTypeChange('powershell')}
|
||||
/>
|
||||
<label className="btn btn-outline-secondary" htmlFor="shellPowerShell">Windows (PowerShell)</label>
|
||||
</div>
|
||||
</div>
|
||||
<p className="text-muted">
|
||||
External tools can upload sample data remotely using the REST API.
|
||||
The API key is required for authentication. Define two
|
||||
environment variables in your {shellType === 'bash' ? <code>.bashrc</code> : <code>PowerShell profile</code>}.
|
||||
</p>
|
||||
<CodeBlock
|
||||
code={shellType === 'bash'
|
||||
? `export JMESPATH_PLAYGROUND_API_URL=${window.location.origin}\nexport JMESPATH_PLAYGROUND_API_KEY=${apiKey}`
|
||||
: `$env:JMESPATH_PLAYGROUND_API_URL = "${window.location.origin}"\n$env:JMESPATH_PLAYGROUND_API_KEY = "${apiKey}"`}
|
||||
/>
|
||||
<p className="text-muted">Then, use the following {shellType === 'bash' ? <code>curl</code> : <code>PowerShell</code>} command to upload your data:</p>
|
||||
<CodeBlock
|
||||
code={shellType === 'bash'
|
||||
? `curl -s -X POST \\\n -H "Content-Type: application/json" \\\n -H "Accept: application/json" \\\n -H "X-API-Key: $JMESPATH_PLAYGROUND_API_KEY" \\\n --data @__JSON_FILE_NAME__ \\\n "$JMESPATH_PLAYGROUND_API_URL/api/v1/upload"`
|
||||
: `Invoke-RestMethod -Uri "$env:JMESPATH_PLAYGROUND_API_URL/api/v1/upload" \\\n -Method Post \\\n -ContentType "application/json" \\\n -Headers @{\n "X-API-Key" = $env:JMESPATH_PLAYGROUND_API_KEY\n "Accept" = "application/json"\n } \\\n -InFile __JSON_FILE_NAME__`}
|
||||
/>
|
||||
<div className="form-text">
|
||||
Replace <code>{"__JSON_FILE_NAME__"}</code> with the path to your
|
||||
JSON file containing the sample data. {shellType === 'bash' && <span>or use <code>-</code> to read from standard input.</span>}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
export default ApiKeyPage;
|
||||
@@ -2,19 +2,19 @@ import React from 'react';
|
||||
|
||||
function Header({ theme, onThemeChange, currentPage, onPageChange }) {
|
||||
return (
|
||||
<div className="header-section py-2">
|
||||
<div className="container">
|
||||
<div className="row">
|
||||
<div className="header-section">
|
||||
<div className="container-fluid px-4">
|
||||
<div className="row align-items-center">
|
||||
<div className="col-12 text-center position-relative">
|
||||
<h2 className="mb-1">JMESPath Testing Tool</h2>
|
||||
{/* Right side controls - better positioning */}
|
||||
<div className="position-absolute top-0 end-0 d-flex align-items-center gap-2">
|
||||
<div className="position-absolute top-50 end-0 translate-middle-y d-flex align-items-center gap-2 me-4">
|
||||
{/* API Key Management Button - more prominent */}
|
||||
<button
|
||||
type="button"
|
||||
className={`btn btn-sm ${
|
||||
currentPage === 'apikey'
|
||||
? 'btn-warning fw-bold'
|
||||
? 'btn-warning fw-bold text-dark'
|
||||
: 'btn-outline-warning'
|
||||
}`}
|
||||
onClick={() => onPageChange(currentPage === 'main' ? 'apikey' : 'main')}
|
||||
@@ -28,8 +28,8 @@ function Header({ theme, onThemeChange, currentPage, onPageChange }) {
|
||||
type="button"
|
||||
className={`btn ${
|
||||
theme === 'auto'
|
||||
? 'btn-primary'
|
||||
: 'btn-outline-secondary'
|
||||
? 'btn-light active'
|
||||
: 'btn-outline-light'
|
||||
}`}
|
||||
onClick={() => onThemeChange('auto')}
|
||||
title="Auto (follow system)"
|
||||
@@ -40,8 +40,8 @@ function Header({ theme, onThemeChange, currentPage, onPageChange }) {
|
||||
type="button"
|
||||
className={`btn ${
|
||||
theme === 'light'
|
||||
? 'btn-primary'
|
||||
: 'btn-outline-secondary'
|
||||
? 'btn-light active'
|
||||
: 'btn-outline-light'
|
||||
}`}
|
||||
onClick={() => onThemeChange('light')}
|
||||
title="Light theme"
|
||||
@@ -52,8 +52,8 @@ function Header({ theme, onThemeChange, currentPage, onPageChange }) {
|
||||
type="button"
|
||||
className={`btn ${
|
||||
theme === 'dark'
|
||||
? 'btn-primary'
|
||||
: 'btn-outline-secondary'
|
||||
? 'btn-light active'
|
||||
: 'btn-outline-light'
|
||||
}`}
|
||||
onClick={() => onThemeChange('dark')}
|
||||
title="Dark theme"
|
||||
@@ -1,41 +1,24 @@
|
||||
import React, { useState, useEffect } from 'react';
|
||||
import jmespath from 'jmespath';
|
||||
|
||||
function MainPage({ apiKey, showReloadButton, onReloadSampleData, initialSampleData }) {
|
||||
const [jmespathExpression, setJmespathExpression] = useState('people[0].name');
|
||||
const [jsonData, setJsonData] = useState(`{
|
||||
"people": [
|
||||
{
|
||||
"name": "John Doe",
|
||||
"age": 30,
|
||||
"city": "New York"
|
||||
},
|
||||
{
|
||||
"name": "Jane Smith",
|
||||
"age": 25,
|
||||
"city": "Los Angeles"
|
||||
}
|
||||
],
|
||||
"total": 2
|
||||
}`);
|
||||
const [result, setResult] = useState('');
|
||||
const [error, setError] = useState('');
|
||||
const [jsonError, setJsonError] = useState('');
|
||||
|
||||
// Use initial sample data when provided
|
||||
useEffect(() => {
|
||||
if (initialSampleData) {
|
||||
setJsonData(JSON.stringify(initialSampleData, null, 2));
|
||||
}
|
||||
}, [initialSampleData]);
|
||||
|
||||
import React, { useState, useEffect } from "react";
|
||||
import jmespath from "jmespath";
|
||||
|
||||
function MainPage({
|
||||
showReloadButton,
|
||||
onReloadSampleData,
|
||||
jmespathExpression,
|
||||
setJmespathExpression,
|
||||
jsonData,
|
||||
setJsonData,
|
||||
}) {
|
||||
const [result, setResult] = useState("");
|
||||
const [error, setError] = useState("");
|
||||
const [jsonError, setJsonError] = useState("");
|
||||
const [copySuccess, setCopySuccess] = useState(false);
|
||||
|
||||
const evaluateExpression = () => {
|
||||
try {
|
||||
// Clear previous errors
|
||||
setError('');
|
||||
setJsonError('');
|
||||
setError("");
|
||||
setJsonError("");
|
||||
|
||||
// Validate and parse JSON
|
||||
let parsedData;
|
||||
@@ -43,7 +26,7 @@ function MainPage({ apiKey, showReloadButton, onReloadSampleData, initialSampleD
|
||||
parsedData = JSON.parse(jsonData);
|
||||
} catch (jsonErr) {
|
||||
setJsonError(`Invalid JSON: ${jsonErr.message}`);
|
||||
setResult('');
|
||||
setResult("");
|
||||
return;
|
||||
}
|
||||
|
||||
@@ -52,13 +35,13 @@ function MainPage({ apiKey, showReloadButton, onReloadSampleData, initialSampleD
|
||||
|
||||
// Format the result
|
||||
if (queryResult === null || queryResult === undefined) {
|
||||
setResult('null');
|
||||
setResult("null");
|
||||
} else {
|
||||
setResult(JSON.stringify(queryResult, null, 2));
|
||||
}
|
||||
} catch (jmesErr) {
|
||||
setError(`JMESPath Error: ${jmesErr.message}`);
|
||||
setResult('');
|
||||
setResult("");
|
||||
}
|
||||
};
|
||||
|
||||
@@ -88,30 +71,50 @@ function MainPage({ apiKey, showReloadButton, onReloadSampleData, initialSampleD
|
||||
};
|
||||
|
||||
const clearAll = () => {
|
||||
setJmespathExpression('');
|
||||
setJsonData('');
|
||||
setResult('');
|
||||
setError('');
|
||||
setJsonError('');
|
||||
setJmespathExpression("");
|
||||
setJsonData("");
|
||||
setResult("");
|
||||
setError("");
|
||||
setJsonError("");
|
||||
};
|
||||
|
||||
const copyToClipboard = async () => {
|
||||
try {
|
||||
await navigator.clipboard.writeText(result);
|
||||
setCopySuccess(true);
|
||||
setTimeout(() => setCopySuccess(false), 2000);
|
||||
} catch (err) {
|
||||
console.error("Failed to copy!", err);
|
||||
}
|
||||
};
|
||||
|
||||
const downloadResult = () => {
|
||||
const blob = new Blob([result], { type: "application/json" });
|
||||
const url = URL.createObjectURL(blob);
|
||||
const a = document.createElement("a");
|
||||
a.href = url;
|
||||
a.download = "result.json";
|
||||
a.click();
|
||||
URL.revokeObjectURL(url);
|
||||
};
|
||||
|
||||
const loadSample = () => {
|
||||
const sampleData = {
|
||||
"users": [
|
||||
{"name": "Alice", "age": 30, "city": "New York"},
|
||||
{"name": "Bob", "age": 25, "city": "San Francisco"},
|
||||
{"name": "Charlie", "age": 35, "city": "Chicago"}
|
||||
users: [
|
||||
{ name: "Alice", age: 30, city: "New York" },
|
||||
{ name: "Bob", age: 25, city: "San Francisco" },
|
||||
{ name: "Charlie", age: 35, city: "Chicago" },
|
||||
],
|
||||
"total": 3
|
||||
total: 3,
|
||||
};
|
||||
setJsonData(JSON.stringify(sampleData, null, 2));
|
||||
setJmespathExpression('users[?age > `30`].name');
|
||||
setJmespathExpression("users[?age > `30`].name");
|
||||
};
|
||||
|
||||
const loadFromDisk = () => {
|
||||
const input = document.createElement('input');
|
||||
input.type = 'file';
|
||||
input.accept = '.json';
|
||||
const input = document.createElement("input");
|
||||
input.type = "file";
|
||||
input.accept = ".json";
|
||||
input.onchange = (e) => {
|
||||
const file = e.target.files[0];
|
||||
if (file) {
|
||||
@@ -122,7 +125,7 @@ function MainPage({ apiKey, showReloadButton, onReloadSampleData, initialSampleD
|
||||
const parsed = JSON.parse(content);
|
||||
setJsonData(JSON.stringify(parsed, null, 2));
|
||||
} catch (error) {
|
||||
alert('Invalid JSON file');
|
||||
alert("Invalid JSON file");
|
||||
}
|
||||
};
|
||||
reader.readAsText(file);
|
||||
@@ -132,9 +135,9 @@ function MainPage({ apiKey, showReloadButton, onReloadSampleData, initialSampleD
|
||||
};
|
||||
|
||||
const loadLogFile = () => {
|
||||
const input = document.createElement('input');
|
||||
input.type = 'file';
|
||||
input.accept = '.log,.jsonl,.ndjson';
|
||||
const input = document.createElement("input");
|
||||
input.type = "file";
|
||||
input.accept = ".log,.jsonl,.ndjson";
|
||||
input.onchange = (e) => {
|
||||
const file = e.target.files[0];
|
||||
if (file) {
|
||||
@@ -142,12 +145,12 @@ function MainPage({ apiKey, showReloadButton, onReloadSampleData, initialSampleD
|
||||
reader.onload = (e) => {
|
||||
try {
|
||||
const content = e.target.result;
|
||||
const lines = content.trim().split('\n');
|
||||
const logs = lines.map(line => JSON.parse(line));
|
||||
const lines = content.trim().split("\n");
|
||||
const logs = lines.map((line) => JSON.parse(line));
|
||||
setJsonData(JSON.stringify(logs, null, 2));
|
||||
setJmespathExpression('[*].message');
|
||||
setJmespathExpression("[*].message");
|
||||
} catch (error) {
|
||||
alert('Invalid JSON Lines file');
|
||||
alert("Invalid JSON Lines file");
|
||||
}
|
||||
};
|
||||
reader.readAsText(file);
|
||||
@@ -162,8 +165,9 @@ function MainPage({ apiKey, showReloadButton, onReloadSampleData, initialSampleD
|
||||
<div className="row mb-2">
|
||||
<div className="col-12">
|
||||
<p className="text-muted text-center mb-2 small">
|
||||
Validate and test JMESPath expressions against JSON data in real-time.
|
||||
Enter your JMESPath query and JSON data below to see the results instantly.
|
||||
Validate and test JMESPath expressions against JSON data in
|
||||
real-time. Enter your JMESPath query and JSON data below to see the
|
||||
results instantly.
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
@@ -172,11 +176,54 @@ function MainPage({ apiKey, showReloadButton, onReloadSampleData, initialSampleD
|
||||
<div className="row mb-2">
|
||||
<div className="col-12">
|
||||
<div className="card">
|
||||
<div className="card-header d-flex justify-content-between align-items-center py-2">
|
||||
<div className="card-header py-2">
|
||||
<h6 className="mb-0">
|
||||
<i className="bi bi-search me-2"></i>
|
||||
JMESPath Expression
|
||||
</h6>
|
||||
</div>
|
||||
<div className="card-body">
|
||||
<input
|
||||
type="text"
|
||||
className={`form-control jmespath-input ${error ? "error" : "success"}`}
|
||||
value={jmespathExpression}
|
||||
onChange={handleJmespathChange}
|
||||
placeholder="Enter JMESPath expression (e.g., people[*].name)"
|
||||
/>
|
||||
<div
|
||||
className={`alert mt-2 mb-0 d-flex justify-content-between align-items-center ${error ? "alert-danger" : "alert-success"}`}
|
||||
>
|
||||
<small className="mb-0">
|
||||
{error || "Expression is correct"}
|
||||
</small>
|
||||
{showReloadButton && (
|
||||
<button
|
||||
className="btn btn-light btn-sm ms-2 border"
|
||||
onClick={() => {
|
||||
onReloadSampleData();
|
||||
}}
|
||||
title="New sample data is available"
|
||||
>
|
||||
<i className="bi bi-arrow-clockwise me-1"></i>
|
||||
Reload Sample Data
|
||||
</button>
|
||||
)}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{/* Lower Middle Section: Input and Output Areas */}
|
||||
<div className="row flex-grow-1" style={{ minHeight: 0 }}>
|
||||
{/* Left Panel: JSON Data Input */}
|
||||
<div className="col-md-6">
|
||||
<div className="card h-100 d-flex flex-column">
|
||||
<div className="card-header d-flex justify-content-between align-items-center py-2">
|
||||
<h6 className="mb-0">
|
||||
<i className="bi bi-file-earmark-code me-2"></i>
|
||||
JSON Data
|
||||
</h6>
|
||||
<div>
|
||||
<button
|
||||
className="btn btn-outline-success btn-sm me-2"
|
||||
@@ -215,52 +262,16 @@ function MainPage({ apiKey, showReloadButton, onReloadSampleData, initialSampleD
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
<div className="card-body">
|
||||
<input
|
||||
type="text"
|
||||
className={`form-control jmespath-input ${error ? 'error' : 'success'}`}
|
||||
value={jmespathExpression}
|
||||
onChange={handleJmespathChange}
|
||||
placeholder="Enter JMESPath expression (e.g., people[*].name)"
|
||||
/>
|
||||
<div className={`alert mt-2 mb-0 d-flex justify-content-between align-items-center ${error ? 'alert-danger' : 'alert-success'}`}>
|
||||
<small className="mb-0">{error || 'Expression is correct'}</small>
|
||||
{showReloadButton && (
|
||||
<button
|
||||
className="btn btn-light btn-sm ms-2 border"
|
||||
onClick={() => {
|
||||
onReloadSampleData();
|
||||
}}
|
||||
title="New sample data is available"
|
||||
<div
|
||||
className="card-body flex-grow-1 d-flex flex-column"
|
||||
style={{ minHeight: 0 }}
|
||||
>
|
||||
<i className="bi bi-arrow-clockwise me-1"></i>
|
||||
Reload Sample Data
|
||||
</button>
|
||||
)}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{/* Lower Middle Section: Input and Output Areas */}
|
||||
<div className="row flex-grow-1" style={{ minHeight: 0 }}>
|
||||
{/* Left Panel: JSON Data Input */}
|
||||
<div className="col-md-6">
|
||||
<div className="card h-100 d-flex flex-column">
|
||||
<div className="card-header py-2">
|
||||
<h6 className="mb-0">
|
||||
<i className="bi bi-file-earmark-code me-2"></i>
|
||||
JSON Data
|
||||
</h6>
|
||||
</div>
|
||||
<div className="card-body flex-grow-1 d-flex flex-column" style={{ minHeight: 0 }}>
|
||||
<textarea
|
||||
className={`form-control json-input flex-grow-1 ${jsonError ? 'error' : 'success'}`}
|
||||
className={`form-control json-input flex-grow-1 ${jsonError ? "error" : "success"}`}
|
||||
value={jsonData}
|
||||
onChange={handleJsonChange}
|
||||
placeholder="Enter JSON data here..."
|
||||
style={{ minHeight: 0, resize: 'none' }}
|
||||
style={{ minHeight: 0, resize: "none" }}
|
||||
/>
|
||||
{jsonError && (
|
||||
<div className="alert alert-danger mt-2 mb-0">
|
||||
@@ -274,19 +285,42 @@ function MainPage({ apiKey, showReloadButton, onReloadSampleData, initialSampleD
|
||||
{/* Right Panel: Results */}
|
||||
<div className="col-md-6">
|
||||
<div className="card h-100 d-flex flex-column">
|
||||
<div className="card-header py-2">
|
||||
<div className="card-header py-2 d-flex justify-content-between align-items-center">
|
||||
<h6 className="mb-0">
|
||||
<i className="bi bi-output me-2"></i>
|
||||
Results
|
||||
</h6>
|
||||
<div>
|
||||
<button
|
||||
className={`btn btn-sm me-2 ${copySuccess ? "btn-success" : "btn-outline-secondary"}`}
|
||||
onClick={copyToClipboard}
|
||||
disabled={!result || result === "null"}
|
||||
title="Copy result to clipboard"
|
||||
>
|
||||
<i className={`bi ${copySuccess ? "bi-check-lg" : "bi-clipboard"} me-1`}></i>
|
||||
{copySuccess ? "Copied!" : "Copy"}
|
||||
</button>
|
||||
<button
|
||||
className="btn btn-outline-secondary btn-sm"
|
||||
onClick={downloadResult}
|
||||
disabled={!result || result === "null"}
|
||||
title="Download result as JSON file"
|
||||
>
|
||||
<i className="bi bi-download me-1"></i>
|
||||
Download
|
||||
</button>
|
||||
</div>
|
||||
<div className="card-body flex-grow-1 d-flex flex-column" style={{ minHeight: 0 }}>
|
||||
</div>
|
||||
<div
|
||||
className="card-body flex-grow-1 d-flex flex-column"
|
||||
style={{ minHeight: 0 }}
|
||||
>
|
||||
<textarea
|
||||
className="form-control result-output flex-grow-1"
|
||||
value={result}
|
||||
readOnly
|
||||
placeholder="Results will appear here..."
|
||||
style={{ minHeight: 0, resize: 'none' }}
|
||||
style={{ minHeight: 0, resize: "none" }}
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
@@ -8,12 +8,6 @@ code {
|
||||
monospace;
|
||||
}
|
||||
|
||||
.container-fluid {
|
||||
height: 100vh;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.content-section {
|
||||
flex: 1;
|
||||
min-height: 0;
|
||||
@@ -52,13 +46,6 @@ code {
|
||||
color: var(--success-text-light);
|
||||
}
|
||||
|
||||
.header-section {
|
||||
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
||||
color: white;
|
||||
padding: 2rem 0;
|
||||
margin-bottom: 2rem;
|
||||
}
|
||||
|
||||
/* Dark mode support for error states */
|
||||
@media (prefers-color-scheme: dark) {
|
||||
.error {
|
||||
|
||||
@@ -1,46 +0,0 @@
|
||||
// jest-dom adds custom jest matchers for asserting on DOM nodes.
|
||||
// allows you to do things like:
|
||||
// expect(element).toHaveTextContent(/react/i)
|
||||
// learn more: https://github.com/testing-library/jest-dom
|
||||
import '@testing-library/jest-dom';
|
||||
|
||||
// Add TextEncoder/TextDecoder for Node.js compatibility
|
||||
if (typeof TextEncoder === 'undefined') {
|
||||
global.TextEncoder = require('util').TextEncoder;
|
||||
}
|
||||
|
||||
if (typeof TextDecoder === 'undefined') {
|
||||
global.TextDecoder = require('util').TextDecoder;
|
||||
}
|
||||
|
||||
// Mock crypto.getRandomValues for test environment
|
||||
if (typeof global.crypto === 'undefined') {
|
||||
global.crypto = {
|
||||
getRandomValues: (array) => {
|
||||
// Simple predictable mock for testing
|
||||
for (let i = 0; i < array.length; i++) {
|
||||
array[i] = Math.floor(Math.random() * 256);
|
||||
}
|
||||
return array;
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
// Suppress console errors during tests
|
||||
const originalError = console.error;
|
||||
beforeAll(() => {
|
||||
console.error = (...args) => {
|
||||
if (
|
||||
typeof args[0] === 'string' &&
|
||||
(args[0].includes('Warning: ReactDOMTestUtils.act is deprecated') ||
|
||||
args[0].includes('Warning: An update to App inside a test was not wrapped in act'))
|
||||
) {
|
||||
return;
|
||||
}
|
||||
originalError.call(console, ...args);
|
||||
};
|
||||
});
|
||||
|
||||
afterAll(() => {
|
||||
console.error = originalError;
|
||||
});
|
||||
25
vite.config.js
Normal file
25
vite.config.js
Normal file
@@ -0,0 +1,25 @@
|
||||
import { defineConfig } from 'vite';
|
||||
import react from '@vitejs/plugin-react';
|
||||
|
||||
export default defineConfig({
|
||||
plugins: [react()],
|
||||
server: {
|
||||
host: '0.0.0.0',
|
||||
port: 5173,
|
||||
strictPort: true,
|
||||
proxy: {
|
||||
'/api': {
|
||||
target: 'http://127.0.0.1:3000',
|
||||
changeOrigin: true,
|
||||
},
|
||||
},
|
||||
},
|
||||
build: {
|
||||
outDir: 'build',
|
||||
},
|
||||
test: {
|
||||
globals: true,
|
||||
environment: 'jsdom',
|
||||
css: true,
|
||||
},
|
||||
});
|
||||
Reference in New Issue
Block a user