Implemented roadmap #4: Export/import functionality. Features: - export <file> <key1> [key2...] - Export specified keys to JSON - export-list <keyfile> <output> - Bulk export from key list file - import <file> - Import keys from JSON file --skip-existing (default) - Skip keys that already exist --overwrite - Overwrite existing keys Export file format (v1.0): { "version": "1.0", "entries": [ { "key": "users/alice", "uuid": "...", "timestamp": 1234567890, "data": {...} } ] } The format preserves UUIDs and timestamps for audit trails. Export shows progress with ✓/✗/⊘ symbols for success/fail/not-found. Import checks for existing keys and respects skip/overwrite flags. Use cases: - Backup: export-list keys.txt backup.json - Migration: import backup.json --overwrite - Selective sync: export dest.json key1 key2 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
82 lines
2.6 KiB
Go
82 lines
2.6 KiB
Go
package main
|
|
|
|
import "fmt"
|
|
|
|
func (c *KVSClient) handleConnect(args []string) {
|
|
if len(args) < 1 {
|
|
fmt.Println(red("Usage: connect <base-url>"))
|
|
return
|
|
}
|
|
c.baseURL = args[0]
|
|
fmt.Println(green("Connected to:"), c.baseURL)
|
|
}
|
|
|
|
func (c *KVSClient) handleAuth(args []string) {
|
|
if len(args) < 1 {
|
|
fmt.Println(red("Usage: auth <token>"))
|
|
return
|
|
}
|
|
c.currentToken = args[0]
|
|
fmt.Println(green("Authentication token set"))
|
|
}
|
|
|
|
func (c *KVSClient) handleHelp(args []string) {
|
|
help := `
|
|
KVS Interactive Shell - Available Commands:
|
|
|
|
Connection & Authentication:
|
|
connect <url> - Connect to KVS server
|
|
auth <token> - Set authentication token
|
|
profile - List all profiles
|
|
profile add <name> <token> <user-uuid> [url] - Add user profile
|
|
profile use <name> - Switch to user profile
|
|
profile remove <name> - Remove user profile
|
|
profile save - Save profiles to ~/.kvs/config.json
|
|
profile load - Load profiles from ~/.kvs/config.json
|
|
|
|
Key-Value Operations:
|
|
get <key> - Retrieve value for key
|
|
put <key> <json> - Store JSON value at key
|
|
delete <key> - Delete key
|
|
|
|
Resource Metadata:
|
|
meta get <key> - Get metadata (owner, group) for a key
|
|
meta set <key> [flags] - Set metadata for a key
|
|
Flags: --owner <uuid>, --group <uuid>, --permissions <number>
|
|
|
|
Cluster Management:
|
|
members - List cluster members
|
|
health - Check service health
|
|
|
|
User Management:
|
|
user get <uuid> - Get user details
|
|
user create <nickname> - Create new user (admin only)
|
|
|
|
Group Management:
|
|
group create <name> [members] - Create new group
|
|
group get <uuid> - Get group details
|
|
group update <uuid> <members> - Replace all group members
|
|
group delete <uuid> - Delete group
|
|
group add-member <uuid> <user-uuid> - Add member to group
|
|
group remove-member <uuid> <user-uuid> - Remove member from group
|
|
|
|
Export/Import:
|
|
export <file> <key1> ... - Export keys to JSON file
|
|
export-list <keyfile> <output> - Export keys listed in file
|
|
import <file> - Import keys from JSON file
|
|
--skip-existing - Skip existing keys (default)
|
|
--overwrite - Overwrite existing keys
|
|
|
|
Batch Operations:
|
|
batch <file> - Execute commands from file
|
|
source <file> - Alias for batch
|
|
--continue-on-error - Continue execution even if commands fail
|
|
|
|
System:
|
|
help - Show this help
|
|
exit, quit - Exit shell
|
|
clear - Clear screen
|
|
`
|
|
fmt.Println(help)
|
|
}
|