mirror of
https://github.com/johndoe6345789/postgres.git
synced 2026-04-24 13:55:00 +00:00
Complete security redesign: secure SQL templates, safe component expressions, type safety
Co-authored-by: johndoe6345789 <224850594+johndoe6345789@users.noreply.github.com>
This commit is contained in:
@@ -105,61 +105,212 @@ function MyComponent() {
|
||||
}
|
||||
```
|
||||
|
||||
## 2. Database Queries - Use Drizzle ORM
|
||||
## 2. Secure SQL Templates with Drizzle ORM
|
||||
|
||||
**IMPORTANT SECURITY NOTE:** This project previously included SQL template strings in `features.json`, but they have been removed due to SQL injection risks.
|
||||
SQL templates now use a **type-safe, injection-proof design** with parameter validation and Drizzle ORM patterns.
|
||||
|
||||
### Why SQL Templates Were Removed
|
||||
### Security Features
|
||||
|
||||
SQL templates with string interpolation (e.g., `{{tableName}}`) are inherently unsafe because they:
|
||||
1. Allow SQL injection if user input is not properly sanitized
|
||||
2. Encourage dangerous string concatenation patterns
|
||||
3. Bypass type-safe query builders
|
||||
1. **Parameter Type Validation** - All parameters have defined types and validation rules
|
||||
2. **SQL Identifier Escaping** - Uses `sql.identifier()` for table/column names
|
||||
3. **Parameterized Queries** - Uses `$1, $2` placeholders instead of string interpolation
|
||||
4. **Enum Validation** - Data types and index types validated against allowed values
|
||||
5. **No String Interpolation** - Templates provide Drizzle patterns, not raw SQL strings
|
||||
|
||||
### Use Drizzle ORM Instead
|
||||
### Parameter Types
|
||||
|
||||
All database queries should use Drizzle ORM, which provides:
|
||||
- **Type safety** - Compile-time validation of queries
|
||||
- **SQL injection prevention** - Automatic parameterization
|
||||
- **Better performance** - Query optimization
|
||||
- **Cleaner code** - Fluent API
|
||||
```json
|
||||
{
|
||||
"sqlTemplates": {
|
||||
"parameterTypes": {
|
||||
"tableName": {
|
||||
"type": "identifier",
|
||||
"validation": "^[a-zA-Z_][a-zA-Z0-9_]{0,62}$",
|
||||
"sanitize": "identifier"
|
||||
},
|
||||
"dataType": {
|
||||
"type": "enum",
|
||||
"allowedValues": ["INTEGER", "VARCHAR", "TEXT", "BOOLEAN"],
|
||||
"sanitize": "enum"
|
||||
},
|
||||
"limit": {
|
||||
"type": "integer",
|
||||
"min": 1,
|
||||
"max": 10000,
|
||||
"default": 100
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
### Example: Correct Way to Query Database
|
||||
### Query Templates
|
||||
|
||||
```json
|
||||
{
|
||||
"sqlTemplates": {
|
||||
"queries": {
|
||||
"tables": {
|
||||
"dropTable": {
|
||||
"description": "Drop a table using sql.identifier",
|
||||
"method": "drizzle.execute",
|
||||
"parameters": {
|
||||
"tableName": "tableName"
|
||||
},
|
||||
"drizzlePattern": {
|
||||
"type": "identifier",
|
||||
"example": "sql`DROP TABLE IF EXISTS ${sql.identifier([tableName])} CASCADE`"
|
||||
},
|
||||
"securityNotes": "Uses sql.identifier() for safe identifier escaping"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
### Using SQL Templates Securely
|
||||
|
||||
```typescript
|
||||
import { db } from '@/utils/db';
|
||||
import { sql } from 'drizzle-orm';
|
||||
import {
|
||||
getSqlQueryTemplate,
|
||||
validateSqlTemplateParams
|
||||
} from '@/utils/featureConfig';
|
||||
|
||||
// ✅ GOOD: Using Drizzle ORM with parameterized queries
|
||||
async function getTableData(tableName: string) {
|
||||
// Use sql.identifier for table/column names
|
||||
const result = await db.execute(sql`
|
||||
SELECT * FROM ${sql.identifier([tableName])}
|
||||
LIMIT 100
|
||||
`);
|
||||
return result.rows;
|
||||
}
|
||||
|
||||
// ✅ GOOD: Using Drizzle ORM query builder
|
||||
async function insertRecord(table: any, data: Record<string, any>) {
|
||||
const result = await db.insert(table).values(data).returning();
|
||||
return result[0];
|
||||
}
|
||||
|
||||
// ❌ BAD: String concatenation (DO NOT USE)
|
||||
async function unsafeQuery(tableName: string) {
|
||||
// This is vulnerable to SQL injection!
|
||||
const query = `SELECT * FROM "${tableName}"`;
|
||||
return await db.execute(sql.raw(query));
|
||||
async function dropTable(tableName: string) {
|
||||
// Get the template
|
||||
const template = getSqlQueryTemplate('tables', 'dropTable');
|
||||
|
||||
// Validate parameters - this prevents SQL injection
|
||||
const validation = validateSqlTemplateParams('tables', 'dropTable', {
|
||||
tableName: tableName
|
||||
});
|
||||
|
||||
if (!validation.valid) {
|
||||
throw new Error(`Invalid parameters: ${validation.errors?.join(', ')}`);
|
||||
}
|
||||
|
||||
// Use the sanitized values with Drizzle's safe methods
|
||||
const { tableName: safeTableName } = validation.sanitized!;
|
||||
|
||||
// Execute using Drizzle's sql.identifier() - safe from SQL injection
|
||||
const result = await db.execute(
|
||||
sql`DROP TABLE IF EXISTS ${sql.identifier([safeTableName])} CASCADE`
|
||||
);
|
||||
|
||||
return result;
|
||||
}
|
||||
```
|
||||
|
||||
### See Also
|
||||
- [Drizzle ORM Documentation](https://orm.drizzle.team/docs/overview)
|
||||
- [SQL Injection Prevention Guide](https://cheatsheetseries.owasp.org/cheatsheets/SQL_Injection_Prevention_Cheat_Sheet.html)
|
||||
- API route examples in `src/app/api/admin/` directory
|
||||
### Security Comparison
|
||||
|
||||
## 3. Playwright Playbooks
|
||||
```typescript
|
||||
// ❌ OLD INSECURE WAY (REMOVED):
|
||||
// const query = `DROP TABLE "${tableName}"`; // SQL injection risk!
|
||||
// await db.execute(sql.raw(query));
|
||||
|
||||
// ✅ NEW SECURE WAY:
|
||||
// 1. Validate parameter against regex pattern
|
||||
const validation = validateSqlTemplateParams('tables', 'dropTable', { tableName });
|
||||
if (!validation.valid) throw new Error('Invalid table name');
|
||||
|
||||
// 2. Use Drizzle's sql.identifier() for automatic escaping
|
||||
await db.execute(sql`DROP TABLE ${sql.identifier([validation.sanitized.tableName])}`);
|
||||
```
|
||||
|
||||
### Why This is Secure
|
||||
|
||||
1. **Regex Validation**: Table names must match `^[a-zA-Z_][a-zA-Z0-9_]{0,62}$`
|
||||
- Prevents: `users; DROP TABLE users--`
|
||||
- Allows: `users`, `user_accounts`, `_temp_table`
|
||||
|
||||
2. **sql.identifier()**: Drizzle properly escapes identifiers
|
||||
- Handles special characters safely
|
||||
- Prevents SQL injection in table/column names
|
||||
|
||||
3. **Parameterized Queries**: Uses `$1, $2` placeholders
|
||||
- Database driver handles escaping
|
||||
- No string concatenation
|
||||
|
||||
4. **Type Validation**: Enums and integers validated before use
|
||||
- Data types checked against whitelist
|
||||
- Numeric values validated for range
|
||||
|
||||
## 3. Secure Component Templates
|
||||
|
||||
Component tree templates now use **safe property access** instead of `new Function()`.
|
||||
|
||||
### Security Features
|
||||
|
||||
1. **No Code Execution** - Replaced `new Function()` with safe property accessor
|
||||
2. **Whitelist Operations** - Only allowed operators: `===`, `!==`, `>`, `<`, `>=`, `<=`, `&&`, `||`
|
||||
3. **Property Path Validation** - Validates `^[a-zA-Z_$][a-zA-Z0-9_$.]*$`
|
||||
4. **Safe Math Operations** - Limited to: `abs`, `ceil`, `floor`, `round`, `max`, `min`
|
||||
|
||||
### Template Expressions
|
||||
|
||||
```json
|
||||
{
|
||||
"component": "Typography",
|
||||
"props": {
|
||||
"text": "{{user.name}}"
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
### Supported Patterns
|
||||
|
||||
```typescript
|
||||
// ✅ SAFE - Simple property access
|
||||
"{{user.name}}"
|
||||
"{{user.profile.email}}"
|
||||
|
||||
// ✅ SAFE - Comparisons with whitelisted operators
|
||||
"condition": "isAdmin === true"
|
||||
"condition": "count > 10"
|
||||
"condition": "status === 'active' && role === 'editor'"
|
||||
|
||||
// ✅ SAFE - Ternary expressions
|
||||
"{{isActive ? 'Active' : 'Inactive'}}"
|
||||
|
||||
// ✅ SAFE - Math operations (whitelisted)
|
||||
"{{Math.round(price)}}"
|
||||
"{{Math.max(a, b)}}"
|
||||
|
||||
// ❌ BLOCKED - Arbitrary code execution
|
||||
"{{require('fs').readFileSync('/etc/passwd')}}" // Validation fails
|
||||
"{{eval('malicious code')}}" // Validation fails
|
||||
"{{process.exit(1)}}" // Validation fails
|
||||
```
|
||||
|
||||
### Security Comparison
|
||||
|
||||
```typescript
|
||||
// ❌ OLD INSECURE WAY (REMOVED):
|
||||
// const func = new Function('user', `return ${expression}`);
|
||||
// return func(user); // Can execute ANY JavaScript code!
|
||||
|
||||
// ✅ NEW SECURE WAY:
|
||||
function safeGetProperty(obj: any, path: string): any {
|
||||
// Only allows: letters, numbers, dots, underscores
|
||||
if (!/^[a-zA-Z_$][a-zA-Z0-9_$.]*$/.test(path)) {
|
||||
return undefined; // Reject invalid paths
|
||||
}
|
||||
|
||||
// Safe property traversal
|
||||
const parts = path.split('.');
|
||||
let current = obj;
|
||||
for (const part of parts) {
|
||||
if (current == null) return undefined;
|
||||
current = current[part];
|
||||
}
|
||||
return current;
|
||||
}
|
||||
```
|
||||
|
||||
## 4. Playwright Playbooks
|
||||
|
||||
Define E2E test scenarios in JSON.
|
||||
|
||||
@@ -282,6 +433,38 @@ const tree = getComponentTree('TableManagerTab');
|
||||
const allTrees = getAllComponentTrees();
|
||||
```
|
||||
|
||||
### SQL Templates (Secure)
|
||||
```typescript
|
||||
import {
|
||||
getSqlQueryTemplate,
|
||||
getSqlParameterType,
|
||||
validateSqlTemplateParams,
|
||||
validateSqlParameter,
|
||||
getAllSqlTemplates,
|
||||
getSqlTemplatesByCategory,
|
||||
} from '@/utils/featureConfig';
|
||||
|
||||
// Get a query template
|
||||
const template = getSqlQueryTemplate('tables', 'dropTable');
|
||||
|
||||
// Get parameter type definition
|
||||
const paramType = getSqlParameterType('tableName');
|
||||
|
||||
// Validate a single parameter
|
||||
const validation = validateSqlParameter('tableName', 'users');
|
||||
if (!validation.valid) {
|
||||
console.error(validation.error);
|
||||
}
|
||||
|
||||
// Validate all parameters for a template
|
||||
const result = validateSqlTemplateParams('tables', 'dropTable', {
|
||||
tableName: 'users'
|
||||
});
|
||||
if (result.valid) {
|
||||
const safeParams = result.sanitized; // Use these sanitized values
|
||||
}
|
||||
```
|
||||
|
||||
### Playwright Playbooks
|
||||
```typescript
|
||||
import {
|
||||
|
||||
@@ -2895,6 +2895,292 @@
|
||||
{ "value": "IS NULL", "label": "Is Null" },
|
||||
{ "value": "IS NOT NULL", "label": "Is Not Null" }
|
||||
],
|
||||
"sqlTemplates": {
|
||||
"parameterTypes": {
|
||||
"tableName": {
|
||||
"type": "identifier",
|
||||
"description": "PostgreSQL table name",
|
||||
"validation": "^[a-zA-Z_][a-zA-Z0-9_]{0,62}$",
|
||||
"sanitize": "identifier"
|
||||
},
|
||||
"columnName": {
|
||||
"type": "identifier",
|
||||
"description": "PostgreSQL column name",
|
||||
"validation": "^[a-zA-Z_][a-zA-Z0-9_]{0,62}$",
|
||||
"sanitize": "identifier"
|
||||
},
|
||||
"indexName": {
|
||||
"type": "identifier",
|
||||
"description": "PostgreSQL index name",
|
||||
"validation": "^[a-zA-Z_][a-zA-Z0-9_]{0,62}$",
|
||||
"sanitize": "identifier"
|
||||
},
|
||||
"constraintName": {
|
||||
"type": "identifier",
|
||||
"description": "PostgreSQL constraint name",
|
||||
"validation": "^[a-zA-Z_][a-zA-Z0-9_]{0,62}$",
|
||||
"sanitize": "identifier"
|
||||
},
|
||||
"dataType": {
|
||||
"type": "enum",
|
||||
"description": "PostgreSQL data type",
|
||||
"allowedValues": ["INTEGER", "BIGINT", "SERIAL", "VARCHAR", "TEXT", "BOOLEAN", "TIMESTAMP", "DATE", "JSON", "JSONB"],
|
||||
"sanitize": "enum"
|
||||
},
|
||||
"indexType": {
|
||||
"type": "enum",
|
||||
"description": "PostgreSQL index type",
|
||||
"allowedValues": ["BTREE", "HASH", "GIN", "GIST", "BRIN"],
|
||||
"sanitize": "enum"
|
||||
},
|
||||
"schemaName": {
|
||||
"type": "identifier",
|
||||
"description": "PostgreSQL schema name",
|
||||
"validation": "^[a-zA-Z_][a-zA-Z0-9_]{0,62}$",
|
||||
"sanitize": "identifier",
|
||||
"default": "public"
|
||||
},
|
||||
"limit": {
|
||||
"type": "integer",
|
||||
"description": "Query result limit",
|
||||
"validation": "^[0-9]+$",
|
||||
"min": 1,
|
||||
"max": 10000,
|
||||
"default": 100
|
||||
}
|
||||
},
|
||||
"queries": {
|
||||
"validation": {
|
||||
"validateTable": {
|
||||
"description": "Check if a table exists in the schema",
|
||||
"method": "drizzle.execute",
|
||||
"operation": "select",
|
||||
"parameters": {
|
||||
"tableName": "tableName",
|
||||
"schemaName": "schemaName"
|
||||
},
|
||||
"drizzlePattern": {
|
||||
"type": "raw",
|
||||
"template": "SELECT table_name FROM information_schema.tables WHERE table_schema = $1 AND table_name = $2",
|
||||
"paramOrder": ["schemaName", "tableName"]
|
||||
},
|
||||
"returns": "rows",
|
||||
"securityNotes": "Uses parameterized query - safe from SQL injection"
|
||||
},
|
||||
"validateColumn": {
|
||||
"description": "Check if a column exists in a table",
|
||||
"method": "drizzle.execute",
|
||||
"operation": "select",
|
||||
"parameters": {
|
||||
"tableName": "tableName",
|
||||
"columnName": "columnName",
|
||||
"schemaName": "schemaName"
|
||||
},
|
||||
"drizzlePattern": {
|
||||
"type": "raw",
|
||||
"template": "SELECT column_name FROM information_schema.columns WHERE table_schema = $1 AND table_name = $2 AND column_name = $3",
|
||||
"paramOrder": ["schemaName", "tableName", "columnName"]
|
||||
},
|
||||
"returns": "rows",
|
||||
"securityNotes": "Uses parameterized query - safe from SQL injection"
|
||||
}
|
||||
},
|
||||
"tables": {
|
||||
"listTables": {
|
||||
"description": "Get all tables in the schema",
|
||||
"method": "drizzle.execute",
|
||||
"operation": "select",
|
||||
"parameters": {
|
||||
"schemaName": "schemaName"
|
||||
},
|
||||
"drizzlePattern": {
|
||||
"type": "raw",
|
||||
"template": "SELECT table_name FROM information_schema.tables WHERE table_schema = $1 ORDER BY table_name",
|
||||
"paramOrder": ["schemaName"]
|
||||
},
|
||||
"returns": "rows",
|
||||
"securityNotes": "Uses parameterized query - safe from SQL injection"
|
||||
},
|
||||
"getTableSchema": {
|
||||
"description": "Get detailed schema information for a table",
|
||||
"method": "drizzle.execute",
|
||||
"operation": "select",
|
||||
"parameters": {
|
||||
"tableName": "tableName",
|
||||
"schemaName": "schemaName"
|
||||
},
|
||||
"drizzlePattern": {
|
||||
"type": "raw",
|
||||
"template": "SELECT column_name, data_type, is_nullable, column_default, character_maximum_length FROM information_schema.columns WHERE table_schema = $1 AND table_name = $2 ORDER BY ordinal_position",
|
||||
"paramOrder": ["schemaName", "tableName"]
|
||||
},
|
||||
"returns": "rows",
|
||||
"securityNotes": "Uses parameterized query - safe from SQL injection"
|
||||
},
|
||||
"createTable": {
|
||||
"description": "Create a new table - use Drizzle schema builder",
|
||||
"method": "drizzle.schema",
|
||||
"operation": "create",
|
||||
"parameters": {
|
||||
"tableName": "tableName",
|
||||
"columns": "array"
|
||||
},
|
||||
"drizzlePattern": {
|
||||
"type": "builder",
|
||||
"example": "pgTable(tableName, { id: serial('id').primaryKey() })"
|
||||
},
|
||||
"returns": "command",
|
||||
"securityNotes": "Use Drizzle schema builder - identifiers are automatically escaped"
|
||||
},
|
||||
"dropTable": {
|
||||
"description": "Drop a table using sql.identifier",
|
||||
"method": "drizzle.execute",
|
||||
"operation": "drop",
|
||||
"parameters": {
|
||||
"tableName": "tableName"
|
||||
},
|
||||
"drizzlePattern": {
|
||||
"type": "identifier",
|
||||
"example": "sql`DROP TABLE IF EXISTS ${sql.identifier([tableName])} CASCADE`"
|
||||
},
|
||||
"returns": "command",
|
||||
"securityNotes": "Uses sql.identifier() for safe identifier escaping"
|
||||
}
|
||||
},
|
||||
"columns": {
|
||||
"addColumn": {
|
||||
"description": "Add a new column to a table",
|
||||
"method": "drizzle.execute",
|
||||
"operation": "alter",
|
||||
"parameters": {
|
||||
"tableName": "tableName",
|
||||
"columnName": "columnName",
|
||||
"dataType": "dataType"
|
||||
},
|
||||
"drizzlePattern": {
|
||||
"type": "identifier",
|
||||
"example": "sql`ALTER TABLE ${sql.identifier([tableName])} ADD COLUMN ${sql.identifier([columnName])} ${sql.raw(dataType)}`"
|
||||
},
|
||||
"returns": "command",
|
||||
"securityNotes": "Uses sql.identifier() for table/column names, dataType validated against enum"
|
||||
},
|
||||
"dropColumn": {
|
||||
"description": "Drop a column from a table",
|
||||
"method": "drizzle.execute",
|
||||
"operation": "alter",
|
||||
"parameters": {
|
||||
"tableName": "tableName",
|
||||
"columnName": "columnName"
|
||||
},
|
||||
"drizzlePattern": {
|
||||
"type": "identifier",
|
||||
"example": "sql`ALTER TABLE ${sql.identifier([tableName])} DROP COLUMN ${sql.identifier([columnName])}`"
|
||||
},
|
||||
"returns": "command",
|
||||
"securityNotes": "Uses sql.identifier() for safe identifier escaping"
|
||||
}
|
||||
},
|
||||
"indexes": {
|
||||
"listIndexes": {
|
||||
"description": "List all indexes for a table",
|
||||
"method": "drizzle.execute",
|
||||
"operation": "select",
|
||||
"parameters": {
|
||||
"tableName": "tableName",
|
||||
"schemaName": "schemaName"
|
||||
},
|
||||
"drizzlePattern": {
|
||||
"type": "raw",
|
||||
"template": "SELECT i.relname as indexname, ix.indisprimary, ix.indisunique, am.amname, pg_get_indexdef(ix.indexrelid) as indexdef FROM pg_class t JOIN pg_index ix ON t.oid = ix.indrelid JOIN pg_class i ON i.oid = ix.indexrelid JOIN pg_am am ON i.relam = am.oid WHERE t.relkind = 'r' AND t.relname = $1 AND t.relnamespace = (SELECT oid FROM pg_namespace WHERE nspname = $2) ORDER BY i.relname",
|
||||
"paramOrder": ["tableName", "schemaName"]
|
||||
},
|
||||
"returns": "rows",
|
||||
"securityNotes": "Uses parameterized query - safe from SQL injection"
|
||||
},
|
||||
"createIndex": {
|
||||
"description": "Create an index on a table",
|
||||
"method": "drizzle.execute",
|
||||
"operation": "create",
|
||||
"parameters": {
|
||||
"indexName": "indexName",
|
||||
"tableName": "tableName",
|
||||
"columnName": "columnName",
|
||||
"indexType": "indexType"
|
||||
},
|
||||
"drizzlePattern": {
|
||||
"type": "identifier",
|
||||
"example": "sql`CREATE INDEX ${sql.identifier([indexName])} ON ${sql.identifier([tableName])} USING ${sql.raw(indexType)} (${sql.identifier([columnName])})`"
|
||||
},
|
||||
"returns": "command",
|
||||
"securityNotes": "Uses sql.identifier() for names, indexType validated against enum"
|
||||
},
|
||||
"dropIndex": {
|
||||
"description": "Drop an index",
|
||||
"method": "drizzle.execute",
|
||||
"operation": "drop",
|
||||
"parameters": {
|
||||
"indexName": "indexName"
|
||||
},
|
||||
"drizzlePattern": {
|
||||
"type": "identifier",
|
||||
"example": "sql`DROP INDEX IF EXISTS ${sql.identifier([indexName])}`"
|
||||
},
|
||||
"returns": "command",
|
||||
"securityNotes": "Uses sql.identifier() for safe identifier escaping"
|
||||
}
|
||||
},
|
||||
"constraints": {
|
||||
"listConstraints": {
|
||||
"description": "List all constraints for a table",
|
||||
"method": "drizzle.execute",
|
||||
"operation": "select",
|
||||
"parameters": {
|
||||
"tableName": "tableName",
|
||||
"schemaName": "schemaName"
|
||||
},
|
||||
"drizzlePattern": {
|
||||
"type": "raw",
|
||||
"template": "SELECT tc.constraint_name, tc.constraint_type, STRING_AGG(kcu.column_name, ', ') as columns, cc.check_clause FROM information_schema.table_constraints tc LEFT JOIN information_schema.key_column_usage kcu ON tc.constraint_name = kcu.constraint_name AND tc.table_schema = kcu.table_schema LEFT JOIN information_schema.check_constraints cc ON tc.constraint_name = cc.constraint_name WHERE tc.table_schema = $1 AND tc.table_name = $2 GROUP BY tc.constraint_name, tc.constraint_type, cc.check_clause",
|
||||
"paramOrder": ["schemaName", "tableName"]
|
||||
},
|
||||
"returns": "rows",
|
||||
"securityNotes": "Uses parameterized query - safe from SQL injection"
|
||||
},
|
||||
"addConstraint": {
|
||||
"description": "Add a constraint to a table",
|
||||
"method": "drizzle.execute",
|
||||
"operation": "alter",
|
||||
"parameters": {
|
||||
"tableName": "tableName",
|
||||
"constraintName": "constraintName",
|
||||
"constraintType": "string",
|
||||
"definition": "string"
|
||||
},
|
||||
"drizzlePattern": {
|
||||
"type": "identifier",
|
||||
"example": "sql`ALTER TABLE ${sql.identifier([tableName])} ADD CONSTRAINT ${sql.identifier([constraintName])} ${sql.raw(definition)}`"
|
||||
},
|
||||
"returns": "command",
|
||||
"securityNotes": "Uses sql.identifier() for names. Definition must be validated by caller."
|
||||
},
|
||||
"dropConstraint": {
|
||||
"description": "Drop a constraint from a table",
|
||||
"method": "drizzle.execute",
|
||||
"operation": "alter",
|
||||
"parameters": {
|
||||
"tableName": "tableName",
|
||||
"constraintName": "constraintName"
|
||||
},
|
||||
"drizzlePattern": {
|
||||
"type": "identifier",
|
||||
"example": "sql`ALTER TABLE ${sql.identifier([tableName])} DROP CONSTRAINT ${sql.identifier([constraintName])}`"
|
||||
},
|
||||
"returns": "command",
|
||||
"securityNotes": "Uses sql.identifier() for safe identifier escaping"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"playwrightPlaybooks": {
|
||||
"adminLogin": {
|
||||
"name": "Admin Login Flow",
|
||||
|
||||
@@ -85,14 +85,129 @@ type ComponentTreeRendererProps = {
|
||||
handlers?: Record<string, (...args: any[]) => void>;
|
||||
};
|
||||
|
||||
/**
|
||||
* Safe operator functions for condition evaluation
|
||||
*/
|
||||
const SAFE_OPERATORS: Record<string, (a: any, b: any) => boolean> = {
|
||||
'===': (a, b) => a === b,
|
||||
'!==': (a, b) => a !== b,
|
||||
'==': (a, b) => a == b,
|
||||
'!=': (a, b) => a != b,
|
||||
'>': (a, b) => a > b,
|
||||
'<': (a, b) => a < b,
|
||||
'>=': (a, b) => a >= b,
|
||||
'<=': (a, b) => a <= b,
|
||||
'&&': (a, b) => a && b,
|
||||
'||': (a, b) => a || b,
|
||||
};
|
||||
|
||||
/**
|
||||
* Safely get nested property value from object using dot notation
|
||||
* Only allows alphanumeric and dots - no function calls or arbitrary code
|
||||
*/
|
||||
function safeGetProperty(obj: Record<string, any>, path: string): any {
|
||||
// Validate path contains only safe characters
|
||||
if (!/^[a-zA-Z_$][a-zA-Z0-9_$.]*$/.test(path)) {
|
||||
console.warn('Invalid property path:', path);
|
||||
return undefined;
|
||||
}
|
||||
|
||||
const parts = path.split('.');
|
||||
let current = obj;
|
||||
|
||||
for (const part of parts) {
|
||||
if (current == null || typeof current !== 'object') {
|
||||
return undefined;
|
||||
}
|
||||
current = current[part];
|
||||
}
|
||||
|
||||
return current;
|
||||
}
|
||||
|
||||
/**
|
||||
* Evaluate a condition string with the provided data context
|
||||
* Uses safe property access and whitelisted operators - NO new Function()
|
||||
*/
|
||||
function evaluateCondition(condition: string, data: Record<string, any>): boolean {
|
||||
try {
|
||||
// Create a function that evaluates the condition in the data context
|
||||
const func = new Function(...Object.keys(data), `return ${condition}`);
|
||||
return func(...Object.values(data));
|
||||
// Simple boolean property check: "isAdmin"
|
||||
if (/^[a-zA-Z_$][a-zA-Z0-9_$.]*$/.test(condition.trim())) {
|
||||
const value = safeGetProperty(data, condition.trim());
|
||||
return Boolean(value);
|
||||
}
|
||||
|
||||
// Find operator in condition
|
||||
let operator: string | null = null;
|
||||
let operatorIndex = -1;
|
||||
|
||||
// Check for operators in order of precedence
|
||||
for (const op of ['===', '!==', '==', '!=', '>=', '<=', '>', '<', '&&', '||']) {
|
||||
const idx = condition.indexOf(op);
|
||||
if (idx !== -1) {
|
||||
operator = op;
|
||||
operatorIndex = idx;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
if (!operator || operatorIndex === -1) {
|
||||
console.warn('No valid operator found in condition:', condition);
|
||||
return false;
|
||||
}
|
||||
|
||||
// Extract left and right operands
|
||||
const left = condition.slice(0, operatorIndex).trim();
|
||||
const right = condition.slice(operatorIndex + operator.length).trim();
|
||||
|
||||
// Evaluate operands
|
||||
let leftValue: any;
|
||||
let rightValue: any;
|
||||
|
||||
// Left operand - check if it's a property or literal
|
||||
if (/^[a-zA-Z_$][a-zA-Z0-9_$.]*$/.test(left)) {
|
||||
leftValue = safeGetProperty(data, left);
|
||||
} else if (left === 'true') {
|
||||
leftValue = true;
|
||||
} else if (left === 'false') {
|
||||
leftValue = false;
|
||||
} else if (left === 'null') {
|
||||
leftValue = null;
|
||||
} else if (!isNaN(Number(left))) {
|
||||
leftValue = Number(left);
|
||||
} else if ((left.startsWith('"') && left.endsWith('"')) || (left.startsWith("'") && left.endsWith("'"))) {
|
||||
leftValue = left.slice(1, -1);
|
||||
} else {
|
||||
console.warn('Invalid left operand:', left);
|
||||
return false;
|
||||
}
|
||||
|
||||
// Right operand - same logic
|
||||
if (/^[a-zA-Z_$][a-zA-Z0-9_$.]*$/.test(right)) {
|
||||
rightValue = safeGetProperty(data, right);
|
||||
} else if (right === 'true') {
|
||||
rightValue = true;
|
||||
} else if (right === 'false') {
|
||||
rightValue = false;
|
||||
} else if (right === 'null') {
|
||||
rightValue = null;
|
||||
} else if (!isNaN(Number(right))) {
|
||||
rightValue = Number(right);
|
||||
} else if ((right.startsWith('"') && right.endsWith('"')) || (right.startsWith("'") && right.endsWith("'"))) {
|
||||
rightValue = right.slice(1, -1);
|
||||
} else {
|
||||
console.warn('Invalid right operand:', right);
|
||||
return false;
|
||||
}
|
||||
|
||||
// Apply operator
|
||||
const operatorFunc = SAFE_OPERATORS[operator];
|
||||
if (!operatorFunc) {
|
||||
console.warn('Unknown operator:', operator);
|
||||
return false;
|
||||
}
|
||||
|
||||
return operatorFunc(leftValue, rightValue);
|
||||
} catch (error) {
|
||||
console.error('Error evaluating condition:', condition, error);
|
||||
return false;
|
||||
@@ -101,6 +216,7 @@ function evaluateCondition(condition: string, data: Record<string, any>): boolea
|
||||
|
||||
/**
|
||||
* Interpolate template strings like {{variable}} with actual values from data
|
||||
* Uses safe property access - NO new Function() or eval()
|
||||
*/
|
||||
function interpolateValue(value: any, data: Record<string, any>): any {
|
||||
if (typeof value !== 'string') {
|
||||
@@ -111,24 +227,53 @@ function interpolateValue(value: any, data: Record<string, any>): any {
|
||||
const templateMatch = value.match(/^\{\{(.+)\}\}$/);
|
||||
if (templateMatch && templateMatch[1]) {
|
||||
const expression = templateMatch[1].trim();
|
||||
try {
|
||||
const func = new Function(...Object.keys(data), `return ${expression}`);
|
||||
return func(...Object.values(data));
|
||||
} catch (error) {
|
||||
console.error('Error evaluating expression:', expression, error);
|
||||
return value;
|
||||
|
||||
// Support Math operations for numeric expressions
|
||||
if (/^Math\.[a-zA-Z]+\(/.test(expression)) {
|
||||
// Allow safe Math operations
|
||||
const mathOp = expression.match(/^Math\.([a-zA-Z]+)\((.+)\)$/);
|
||||
if (mathOp) {
|
||||
const [, operation, argsStr] = mathOp;
|
||||
const safeOps = ['abs', 'ceil', 'floor', 'round', 'max', 'min'];
|
||||
|
||||
if (safeOps.includes(operation)) {
|
||||
try {
|
||||
// Parse arguments safely
|
||||
const args = argsStr.split(',').map(arg => {
|
||||
const trimmed = arg.trim();
|
||||
const propValue = safeGetProperty(data, trimmed);
|
||||
return propValue !== undefined ? propValue : Number(trimmed);
|
||||
});
|
||||
|
||||
return (Math as any)[operation](...args);
|
||||
} catch (error) {
|
||||
console.error('Error evaluating Math operation:', expression, error);
|
||||
return value;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Ternary operator: condition ? valueIfTrue : valueIfFalse
|
||||
const ternaryMatch = expression.match(/^(.+?)\s*\?\s*(.+?)\s*:\s*(.+)$/);
|
||||
if (ternaryMatch) {
|
||||
const [, condition, trueValue, falseValue] = ternaryMatch;
|
||||
const conditionResult = evaluateCondition(condition.trim(), data);
|
||||
const targetValue = conditionResult ? trueValue.trim() : falseValue.trim();
|
||||
|
||||
// Recursively interpolate the result
|
||||
return interpolateValue(`{{${targetValue}}}`, data);
|
||||
}
|
||||
|
||||
// Simple property access
|
||||
return safeGetProperty(data, expression);
|
||||
}
|
||||
|
||||
// Replace inline templates
|
||||
return value.replace(/\{\{(.+?)\}\}/g, (_, expression) => {
|
||||
try {
|
||||
const func = new Function(...Object.keys(data), `return ${expression.trim()}`);
|
||||
return func(...Object.values(data));
|
||||
} catch (error) {
|
||||
console.error('Error evaluating inline expression:', expression, error);
|
||||
return '';
|
||||
}
|
||||
const trimmed = expression.trim();
|
||||
const result = safeGetProperty(data, trimmed);
|
||||
return result !== undefined ? String(result) : '';
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
@@ -196,6 +196,38 @@ export type ComponentPropSchema = {
|
||||
props: Record<string, PropDefinition>;
|
||||
};
|
||||
|
||||
export type SqlParameterType = {
|
||||
type: 'identifier' | 'enum' | 'integer' | 'string';
|
||||
description: string;
|
||||
validation?: string;
|
||||
allowedValues?: string[];
|
||||
sanitize: 'identifier' | 'enum' | 'integer' | 'string';
|
||||
min?: number;
|
||||
max?: number;
|
||||
default?: string | number;
|
||||
};
|
||||
|
||||
export type DrizzlePattern = {
|
||||
type: 'raw' | 'identifier' | 'builder';
|
||||
template?: string;
|
||||
paramOrder?: string[];
|
||||
example?: string;
|
||||
};
|
||||
|
||||
export type SqlQueryTemplate = {
|
||||
description: string;
|
||||
method: string;
|
||||
operation: 'select' | 'insert' | 'update' | 'delete' | 'create' | 'alter' | 'drop';
|
||||
parameters: Record<string, string>;
|
||||
drizzlePattern: DrizzlePattern;
|
||||
returns: 'rows' | 'command';
|
||||
securityNotes: string;
|
||||
};
|
||||
|
||||
export type SqlTemplates = {
|
||||
parameterTypes: Record<string, SqlParameterType>;
|
||||
queries: Record<string, Record<string, SqlQueryTemplate>>;
|
||||
};
|
||||
|
||||
|
||||
export type PlaywrightStep = {
|
||||
@@ -242,6 +274,7 @@ type FeaturesConfig = {
|
||||
uiViews?: Record<string, Record<string, UiView>>;
|
||||
componentTrees?: Record<string, ComponentTree>;
|
||||
componentProps?: Record<string, ComponentPropSchema>;
|
||||
sqlTemplates?: SqlTemplates;
|
||||
playwrightPlaybooks?: Record<string, PlaywrightPlaybook>;
|
||||
storybookStories?: Record<string, Record<string, StorybookStory>>;
|
||||
features: Feature[];
|
||||
@@ -441,6 +474,150 @@ export function getComponentsByCategory(category: string): string[] {
|
||||
.map(([name, _]) => name);
|
||||
}
|
||||
|
||||
// SQL Templates - Secure Implementation
|
||||
export function getSqlParameterTypes(): Record<string, SqlParameterType> {
|
||||
return config.sqlTemplates?.parameterTypes || {};
|
||||
}
|
||||
|
||||
export function getSqlParameterType(paramName: string): SqlParameterType | undefined {
|
||||
return config.sqlTemplates?.parameterTypes[paramName];
|
||||
}
|
||||
|
||||
export function getSqlQueryTemplate(category: string, templateName: string): SqlQueryTemplate | undefined {
|
||||
return config.sqlTemplates?.queries[category]?.[templateName];
|
||||
}
|
||||
|
||||
export function getAllSqlTemplates(): SqlTemplates | undefined {
|
||||
return config.sqlTemplates;
|
||||
}
|
||||
|
||||
export function getSqlTemplatesByCategory(category: string): Record<string, SqlQueryTemplate> {
|
||||
return config.sqlTemplates?.queries[category] || {};
|
||||
}
|
||||
|
||||
/**
|
||||
* Validate a parameter value against its type definition
|
||||
* Returns { valid: boolean, sanitized?: any, error?: string }
|
||||
*/
|
||||
export function validateSqlParameter(
|
||||
paramName: string,
|
||||
value: any
|
||||
): { valid: boolean; sanitized?: any; error?: string } {
|
||||
const paramType = getSqlParameterType(paramName);
|
||||
|
||||
if (!paramType) {
|
||||
return { valid: false, error: `Unknown parameter type: ${paramName}` };
|
||||
}
|
||||
|
||||
const strValue = String(value);
|
||||
|
||||
// Validate based on type
|
||||
switch (paramType.type) {
|
||||
case 'identifier':
|
||||
// PostgreSQL identifier validation
|
||||
if (!paramType.validation) {
|
||||
return { valid: false, error: 'No validation pattern defined for identifier' };
|
||||
}
|
||||
const identifierRegex = new RegExp(paramType.validation);
|
||||
if (!identifierRegex.test(strValue)) {
|
||||
return {
|
||||
valid: false,
|
||||
error: `Invalid identifier format: ${strValue}. Must match ${paramType.validation}`,
|
||||
};
|
||||
}
|
||||
return { valid: true, sanitized: strValue };
|
||||
|
||||
case 'enum':
|
||||
if (!paramType.allowedValues) {
|
||||
return { valid: false, error: 'No allowed values defined for enum' };
|
||||
}
|
||||
if (!paramType.allowedValues.includes(strValue)) {
|
||||
return {
|
||||
valid: false,
|
||||
error: `Invalid enum value: ${strValue}. Allowed: ${paramType.allowedValues.join(', ')}`,
|
||||
};
|
||||
}
|
||||
return { valid: true, sanitized: strValue };
|
||||
|
||||
case 'integer':
|
||||
const num = Number(value);
|
||||
if (!Number.isInteger(num)) {
|
||||
return { valid: false, error: `Not an integer: ${value}` };
|
||||
}
|
||||
if (paramType.min !== undefined && num < paramType.min) {
|
||||
return { valid: false, error: `Value ${num} is less than minimum ${paramType.min}` };
|
||||
}
|
||||
if (paramType.max !== undefined && num > paramType.max) {
|
||||
return { valid: false, error: `Value ${num} exceeds maximum ${paramType.max}` };
|
||||
}
|
||||
return { valid: true, sanitized: num };
|
||||
|
||||
case 'string':
|
||||
// For string parameters, apply validation pattern if provided
|
||||
if (paramType.validation) {
|
||||
const stringRegex = new RegExp(paramType.validation);
|
||||
if (!stringRegex.test(strValue)) {
|
||||
return {
|
||||
valid: false,
|
||||
error: `Invalid string format: ${strValue}. Must match ${paramType.validation}`,
|
||||
};
|
||||
}
|
||||
}
|
||||
return { valid: true, sanitized: strValue };
|
||||
|
||||
default:
|
||||
return { valid: false, error: `Unknown parameter type: ${paramType.type}` };
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Validate all parameters for a SQL query template
|
||||
* Returns { valid: boolean, sanitized?: Record<string, any>, errors?: string[] }
|
||||
*/
|
||||
export function validateSqlTemplateParams(
|
||||
category: string,
|
||||
templateName: string,
|
||||
params: Record<string, any>
|
||||
): { valid: boolean; sanitized?: Record<string, any>; errors?: string[] } {
|
||||
const template = getSqlQueryTemplate(category, templateName);
|
||||
|
||||
if (!template) {
|
||||
return { valid: false, errors: [`Template not found: ${category}.${templateName}`] };
|
||||
}
|
||||
|
||||
const errors: string[] = [];
|
||||
const sanitized: Record<string, any> = {};
|
||||
|
||||
// Validate each required parameter
|
||||
for (const [paramKey, paramTypeName] of Object.entries(template.parameters)) {
|
||||
const value = params[paramKey];
|
||||
|
||||
if (value === undefined || value === null) {
|
||||
// Check if parameter has a default value
|
||||
const paramType = getSqlParameterType(paramTypeName);
|
||||
if (paramType?.default !== undefined) {
|
||||
sanitized[paramKey] = paramType.default;
|
||||
continue;
|
||||
}
|
||||
errors.push(`Missing required parameter: ${paramKey}`);
|
||||
continue;
|
||||
}
|
||||
|
||||
const validation = validateSqlParameter(paramTypeName, value);
|
||||
if (!validation.valid) {
|
||||
errors.push(`Parameter ${paramKey}: ${validation.error}`);
|
||||
} else {
|
||||
sanitized[paramKey] = validation.sanitized;
|
||||
}
|
||||
}
|
||||
|
||||
if (errors.length > 0) {
|
||||
return { valid: false, errors };
|
||||
}
|
||||
|
||||
return { valid: true, sanitized };
|
||||
}
|
||||
|
||||
// Playwright Playbooks
|
||||
export function getPlaywrightPlaybook(playbookName: string): PlaywrightPlaybook | undefined {
|
||||
return config.playwrightPlaybooks?.[playbookName];
|
||||
@@ -458,14 +635,14 @@ export function getPlaywrightPlaybooksByTag(tag: string): PlaywrightPlaybook[] {
|
||||
}
|
||||
|
||||
// Storybook Stories
|
||||
export function getStorybookStory(componentName: string, storyName: string): any {
|
||||
export function getStorybookStory(componentName: string, storyName: string): StorybookStory | undefined {
|
||||
return config.storybookStories?.[componentName]?.[storyName];
|
||||
}
|
||||
|
||||
export function getAllStorybookStories(): Record<string, any> {
|
||||
export function getAllStorybookStories(): Record<string, Record<string, StorybookStory>> {
|
||||
return config.storybookStories || {};
|
||||
}
|
||||
|
||||
export function getStorybookStoriesForComponent(componentName: string): Record<string, any> {
|
||||
export function getStorybookStoriesForComponent(componentName: string): Record<string, StorybookStory> {
|
||||
return config.storybookStories?.[componentName] || {};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user