mirror of
https://github.com/PR0M3TH3AN/SeedPass.git
synced 2025-09-08 07:18:47 +00:00
update
This commit is contained in:
454
docs/json_entries.md
Normal file
454
docs/json_entries.md
Normal file
@@ -0,0 +1,454 @@
|
||||
# SeedPass JSON Entry Management and Extensibility
|
||||
|
||||
## Table of Contents
|
||||
|
||||
- [Introduction](#introduction)
|
||||
- [JSON Schema for Individual Entries](#json-schema-for-individual-entries)
|
||||
- [General Structure](#general-structure)
|
||||
- [Field Descriptions](#field-descriptions)
|
||||
- [Example Entries](#example-entries)
|
||||
- [Handling `kind` Types and Extensibility](#handling-kind-types-and-extensibility)
|
||||
- [Extensible JSON Schema Design](#extensible-json-schema-design)
|
||||
- [Ensuring Backward Compatibility](#ensuring-backward-compatibility)
|
||||
- [Best Practices for Adding New Kinds](#best-practices-for-adding-new-kinds)
|
||||
- [Adding New `kind` Types](#adding-new-kind-types)
|
||||
- [Example: Adding `cryptocurrency_wallet`](#example-adding-cryptocurrency_wallet)
|
||||
- [Backup and Rollback Mechanism](#backup-and-rollback-mechanism)
|
||||
- [Security Considerations](#security-considerations)
|
||||
- [Updated Roadmap](#updated-roadmap)
|
||||
- [Phase 1: Core Functionality and Security Enhancements](#phase-1-core-functionality-and-security-enhancements)
|
||||
- [Phase 2: Enhanced Security and Data Management](#phase-2-enhanced-security-and-data-management)
|
||||
- [Phase 3: Advanced CLI Functionalities](#phase-3-advanced-cli-functionalities)
|
||||
- [Phase 4: Data Management Enhancements and Integrations](#phase-4-data-management-enhancements-and-integrations)
|
||||
- [Phase 5: Documentation, Testing, and Finalization](#phase-5-documentation-testing-and-finalization)
|
||||
- [Future Phases (Beyond Initial Roadmap)](#future-phases-beyond-initial-roadmap)
|
||||
- [Summary](#summary)
|
||||
- [Contact](#contact)
|
||||
|
||||
---
|
||||
|
||||
## Introduction
|
||||
|
||||
**SeedPass** is a secure password generator and manager leveraging **Bitcoin's BIP-85 standard** and integrating with the **Nostr network** for decentralized synchronization. To enhance modularity, scalability, and security, SeedPass now manages each password or data entry as a separate JSON file. This document outlines the new entry management system, ensuring that new `kind` types can be added seamlessly without disrupting existing functionalities.
|
||||
|
||||
---
|
||||
|
||||
## JSON Schema for Individual Entries
|
||||
|
||||
Each SeedPass entry is stored as an individual JSON file, promoting isolated management and easy synchronization with Nostr. This structure supports diverse entry types (`kind`) and allows for future expansions.
|
||||
|
||||
### General Structure
|
||||
|
||||
```json
|
||||
{
|
||||
"entry_num": 0,
|
||||
"index_num": 0,
|
||||
"kind": "generated_password",
|
||||
"data": {
|
||||
// Fields specific to the kind
|
||||
},
|
||||
"timestamp": "2024-04-27T12:34:56Z",
|
||||
"metadata": {
|
||||
"created_at": "2024-04-27T12:34:56Z",
|
||||
"updated_at": "2024-04-27T12:34:56Z",
|
||||
"checksum": "<checksum_value>"
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
### Field Descriptions
|
||||
|
||||
- **entry_num** (`integer`): Sequential number of the entry starting from 0. Maintains the order of entries.
|
||||
|
||||
- **index_num** (`integer` or `string`):
|
||||
- For `generated_password` kind: Starts from 0 and increments sequentially.
|
||||
- For other kinds: A secure random hexadecimal string (e.g., a hash of the content) used as the BIP-85 index.
|
||||
|
||||
- **kind** (`string`): Specifies the type of entry. Initial kinds include:
|
||||
- `generated_password`
|
||||
- `stored_password`
|
||||
- `managed_user`
|
||||
- `12_word_seed`
|
||||
- `nostr_keys`
|
||||
- `note`
|
||||
|
||||
- **data** (`object`): Contains fields specific to the `kind`. This allows for extensibility as new kinds are introduced.
|
||||
|
||||
- **timestamp** (`string`): ISO 8601 format timestamp indicating when the entry was created.
|
||||
|
||||
- **metadata** (`object`):
|
||||
- **created_at** (`string`): ISO 8601 format timestamp of creation.
|
||||
- **updated_at** (`string`): ISO 8601 format timestamp of the last update.
|
||||
- **checksum** (`string`): A checksum value to ensure data integrity.
|
||||
|
||||
### Example Entries
|
||||
|
||||
#### 1. Generated Password
|
||||
|
||||
```json
|
||||
{
|
||||
"entry_num": 0,
|
||||
"index_num": 0,
|
||||
"kind": "generated_password",
|
||||
"data": {
|
||||
"title": "Example Website",
|
||||
"username": "user@example.com",
|
||||
"email": "user@example.com",
|
||||
"url": "https://example.com",
|
||||
"password": "<encrypted_password>"
|
||||
},
|
||||
"timestamp": "2024-04-27T12:34:56Z",
|
||||
"metadata": {
|
||||
"created_at": "2024-04-27T12:34:56Z",
|
||||
"updated_at": "2024-04-27T12:34:56Z",
|
||||
"checksum": "abc123def456"
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
#### 2. Stored Password
|
||||
|
||||
```json
|
||||
{
|
||||
"entry_num": 1,
|
||||
"index_num": 1,
|
||||
"kind": "stored_password",
|
||||
"data": {
|
||||
"title": "Another Service",
|
||||
"username": "another_user",
|
||||
"password": "<encrypted_password>"
|
||||
},
|
||||
"timestamp": "2024-04-27T12:35:56Z",
|
||||
"metadata": {
|
||||
"created_at": "2024-04-27T12:35:56Z",
|
||||
"updated_at": "2024-04-27T12:35:56Z",
|
||||
"checksum": "def789ghi012"
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
#### 3. Managed User
|
||||
|
||||
```json
|
||||
{
|
||||
"entry_num": 2,
|
||||
"index_num": "a1b2c3d4e5f6",
|
||||
"kind": "managed_user",
|
||||
"data": {
|
||||
"users_password": "<encrypted_users_password>"
|
||||
},
|
||||
"timestamp": "2024-04-27T12:36:56Z",
|
||||
"metadata": {
|
||||
"created_at": "2024-04-27T12:36:56Z",
|
||||
"updated_at": "2024-04-27T12:36:56Z",
|
||||
"checksum": "ghi345jkl678"
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
#### 4. 12 Word Seed
|
||||
|
||||
```json
|
||||
{
|
||||
"entry_num": 3,
|
||||
"index_num": "f7g8h9i0j1k2",
|
||||
"kind": "12_word_seed",
|
||||
"data": {
|
||||
"seed_phrase": "<encrypted_seed_phrase>"
|
||||
},
|
||||
"timestamp": "2024-04-27T12:37:56Z",
|
||||
"metadata": {
|
||||
"created_at": "2024-04-27T12:37:56Z",
|
||||
"updated_at": "2024-04-27T12:37:56Z",
|
||||
"checksum": "jkl901mno234"
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
#### 5. Nostr Keys
|
||||
|
||||
```json
|
||||
{
|
||||
"entry_num": 4,
|
||||
"index_num": "l3m4n5o6p7q8",
|
||||
"kind": "nostr_keys",
|
||||
"data": {
|
||||
"public_key": "<public_key>",
|
||||
"private_key": "<encrypted_private_key>"
|
||||
},
|
||||
"timestamp": "2024-04-27T12:38:56Z",
|
||||
"metadata": {
|
||||
"created_at": "2024-04-27T12:38:56Z",
|
||||
"updated_at": "2024-04-27T12:38:56Z",
|
||||
"checksum": "mno567pqr890"
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
#### 6. Note
|
||||
|
||||
```json
|
||||
{
|
||||
"entry_num": 5,
|
||||
"index_num": "r9s0t1u2v3w4",
|
||||
"kind": "note",
|
||||
"data": {
|
||||
"content": "This is a secure note.",
|
||||
"tags": ["personal", "secure"]
|
||||
},
|
||||
"timestamp": "2024-04-27T12:39:56Z",
|
||||
"metadata": {
|
||||
"created_at": "2024-04-27T12:39:56Z",
|
||||
"updated_at": "2024-04-27T12:39:56Z",
|
||||
"checksum": "pqr345stu678"
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
## Handling `kind` Types and Extensibility
|
||||
|
||||
### Extensible JSON Schema Design
|
||||
|
||||
The JSON schema is designed to be **extensible** and **forward-compatible**, allowing new `kind` types to be added without impacting existing functionalities.
|
||||
|
||||
#### a. Core Structure
|
||||
|
||||
Each entry is encapsulated in its own JSON file with a standardized structure:
|
||||
|
||||
```json
|
||||
{
|
||||
"entry_num": 0,
|
||||
"index_num": 0,
|
||||
"kind": "generated_password",
|
||||
"data": {
|
||||
// Fields specific to the kind
|
||||
},
|
||||
"timestamp": "2024-04-27T12:34:56Z",
|
||||
"metadata": {
|
||||
"created_at": "2024-04-27T12:34:56Z",
|
||||
"updated_at": "2024-04-27T12:34:56Z",
|
||||
"checksum": "<checksum_value>"
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
#### b. The `kind` Field
|
||||
|
||||
- **Purpose:** Specifies the type of entry.
|
||||
- **Flexibility:** As a simple string identifier, new `kind` values can be introduced without altering the existing schema.
|
||||
|
||||
**Example:**
|
||||
```json
|
||||
"kind": "cryptocurrency_wallet"
|
||||
```
|
||||
|
||||
#### c. The `data` Object
|
||||
|
||||
- **Purpose:** Contains fields specific to the `kind`.
|
||||
- **Extensibility:** Each `kind` can define its unique set of fields without affecting others.
|
||||
|
||||
**Example for a New Kind (`cryptocurrency_wallet`):**
|
||||
```json
|
||||
"data": {
|
||||
"wallet_name": "My Bitcoin Wallet",
|
||||
"address": "1A1zP1eP5QGefi2DMPTfTL5SLmv7DivfNa",
|
||||
"private_key": "<encrypted_private_key>"
|
||||
}
|
||||
```
|
||||
|
||||
### Ensuring Backward Compatibility
|
||||
|
||||
To maintain compatibility as new `kind` types are introduced, implement the following practices:
|
||||
|
||||
#### a. Graceful Handling of Unknown Kinds
|
||||
|
||||
- **Implementation:** When encountering an unrecognized `kind`, handle it gracefully by ignoring the entry, logging a warning, or providing a default handling mechanism.
|
||||
- **Benefit:** Prevents the application from crashing or misbehaving due to unrecognized `kind` types.
|
||||
|
||||
**Pseudo-Code Example:**
|
||||
```python
|
||||
def process_entry(entry):
|
||||
kind = entry.get("kind")
|
||||
data = entry.get("data")
|
||||
|
||||
if kind == "generated_password":
|
||||
handle_generated_password(data)
|
||||
elif kind == "stored_password":
|
||||
handle_stored_password(data)
|
||||
# ... other known kinds ...
|
||||
else:
|
||||
log_warning(f"Unknown kind: {kind}. Skipping entry.")
|
||||
```
|
||||
|
||||
#### b. Versioning the Schema
|
||||
|
||||
- **Implementation:** Introduce a `schema_version` or `seedpass_version` field to indicate the version of the JSON schema being used.
|
||||
- **Benefit:** Facilitates future updates and migrations by clearly identifying the schema version.
|
||||
|
||||
**Example:**
|
||||
```json
|
||||
"seedpass_version": "1.0.0"
|
||||
```
|
||||
|
||||
#### c. Documentation and Standards
|
||||
|
||||
- **Maintain Clear Documentation:** Keep comprehensive documentation for each `kind`, detailing required and optional fields.
|
||||
- **Adhere to Standards:** Follow consistent naming conventions and data types to ensure uniformity across different `kind` types.
|
||||
|
||||
### Best Practices for Adding New Kinds
|
||||
|
||||
To ensure seamless integration of new `kind` types in the future, consider the following best practices:
|
||||
|
||||
#### a. Consistent Naming Conventions
|
||||
|
||||
- **Use Clear and Descriptive Names:** Aids in readability and maintenance.
|
||||
- **Avoid Reserved Keywords:** Ensure `kind` names do not clash with existing or future reserved keywords within the application or JSON standards.
|
||||
|
||||
#### b. Modular Code Architecture
|
||||
|
||||
- **Separate Handlers:** Implement separate functions or modules for handling each `kind`. Promotes code modularity and easier maintenance.
|
||||
|
||||
**Example:**
|
||||
```python
|
||||
# handlers.py
|
||||
|
||||
def handle_generated_password(data):
|
||||
# Implementation
|
||||
|
||||
def handle_stored_password(data):
|
||||
# Implementation
|
||||
|
||||
def handle_cryptocurrency_wallet(data):
|
||||
# Implementation
|
||||
```
|
||||
|
||||
#### c. Validation and Error Handling
|
||||
|
||||
- **Validate Data Fields:** Ensure each `kind` has the necessary fields before processing.
|
||||
- **Handle Missing or Extra Fields:** Implement logic to manage incomplete or unexpected data gracefully.
|
||||
|
||||
**Example:**
|
||||
```python
|
||||
def handle_cryptocurrency_wallet(data):
|
||||
required_fields = ["wallet_name", "address", "private_key"]
|
||||
for field in required_fields:
|
||||
if field not in data:
|
||||
raise ValueError(f"Missing required field '{field}' in cryptocurrency_wallet entry.")
|
||||
# Proceed with processing
|
||||
```
|
||||
|
||||
#### d. Backward Compatibility Testing
|
||||
|
||||
- **Automated Tests:** Develop tests that verify the application's ability to handle both existing and new `kind` types.
|
||||
- **Regression Testing:** Ensure adding new kinds does not inadvertently affect existing functionalities.
|
||||
|
||||
---
|
||||
|
||||
## Adding New `kind` Types
|
||||
|
||||
Adding new `kind` types is straightforward due to the extensible JSON schema design. Below is a step-by-step guide to adding a new `kind` without affecting existing functionalities.
|
||||
|
||||
### Example: Adding `cryptocurrency_wallet`
|
||||
|
||||
#### a. Define the New Kind Structure
|
||||
|
||||
Create a JSON file following the standardized structure with the new `kind` value.
|
||||
|
||||
```json
|
||||
{
|
||||
"entry_num": 6,
|
||||
"index_num": "x1y2z3a4b5c6",
|
||||
"kind": "cryptocurrency_wallet",
|
||||
"data": {
|
||||
"wallet_name": "My Bitcoin Wallet",
|
||||
"address": "1A1zP1eP5QGefi2DMPTfTL5SLmv7DivfNa",
|
||||
"private_key": "<encrypted_private_key>"
|
||||
},
|
||||
"timestamp": "2024-04-27T12:40:56Z",
|
||||
"metadata": {
|
||||
"created_at": "2024-04-27T12:40:56Z",
|
||||
"updated_at": "2024-04-27T12:40:56Z",
|
||||
"checksum": "stu901vwx234"
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
#### b. Update the Application to Handle the New Kind
|
||||
|
||||
**Implement Handler Function:**
|
||||
```python
|
||||
def handle_cryptocurrency_wallet(data):
|
||||
wallet_name = data.get("wallet_name")
|
||||
address = data.get("address")
|
||||
private_key = decrypt(data.get("private_key"))
|
||||
# Process the cryptocurrency wallet entry
|
||||
# e.g., store in memory, display to user, etc.
|
||||
```
|
||||
|
||||
**Integrate the Handler:**
|
||||
```python
|
||||
def process_entry(entry):
|
||||
kind = entry.get("kind")
|
||||
data = entry.get("data")
|
||||
|
||||
if kind == "generated_password":
|
||||
handle_generated_password(data)
|
||||
elif kind == "stored_password":
|
||||
handle_stored_password(data)
|
||||
elif kind == "cryptocurrency_wallet":
|
||||
handle_cryptocurrency_wallet(data)
|
||||
# ... other known kinds ...
|
||||
else:
|
||||
log_warning(f"Unknown kind: {kind}. Skipping entry.")
|
||||
```
|
||||
|
||||
#### c. No Impact on Existing Kinds
|
||||
|
||||
Existing kinds such as `generated_password`, `stored_password`, etc., continue to operate without any changes. The introduction of `cryptocurrency_wallet` is additive and does not interfere with the processing of other kinds.
|
||||
|
||||
---
|
||||
|
||||
## Backup and Rollback Mechanism
|
||||
|
||||
To ensure data integrity and provide recovery options, SeedPass implements a robust backup and rollback system.
|
||||
|
||||
### Backup Directory Structure
|
||||
|
||||
- **Primary Entries Directory:** Stores individual JSON files for each entry.
|
||||
- **Backups Directory:** Stores previous versions of each entry.
|
||||
|
||||
**Example Structure:**
|
||||
```
|
||||
SeedPass/
|
||||
├── entries/
|
||||
│ ├── entry_0.json
|
||||
│ ├── entry_1.json
|
||||
│ └── ...
|
||||
├── backups/
|
||||
│ ├── entry_0_v1.json
|
||||
│ ├── entry_0_v2.json
|
||||
│ ├── entry_1_v1.json
|
||||
│ └── ...
|
||||
```
|
||||
|
||||
### Backup Process
|
||||
|
||||
1. **Upon Modifying an Entry:**
|
||||
- The current version of the entry is copied to the `backups/` directory with a version suffix (e.g., `entry_0_v1.json`).
|
||||
- The modified entry is saved in the `entries/` directory.
|
||||
|
||||
2. **Versioning:**
|
||||
- Each backup file includes a version number to track changes over time.
|
||||
|
||||
### Rollback Functionality
|
||||
|
||||
- **Restoring an Entry:**
|
||||
- Users can select a backup version from the `backups/` directory.
|
||||
- The selected backup file is copied back to the `entries/` directory, replacing the current version.
|
||||
|
||||
**Example Command:**
|
||||
```bash
|
||||
python main.py rollback entry_0_v1.json
|
||||
```
|
Reference in New Issue
Block a user