Major security, observability, and configuration improvements:
## Security Hardening
- Implemented configurable CORS (no more wildcards)
- Added comprehensive auth middleware for admin endpoints
- Enhanced webhook HMAC validation
- Added input validation and rate limiting
- Security headers and CSP policies
## Configuration Management
- Made N8N webhook URL configurable (WHOOSH_N8N_BASE_URL)
- Replaced all hardcoded endpoints with environment variables
- Added feature flags for LLM vs heuristic composition
- Gitea fetch hardening with EAGER_FILTER and FULL_RESCAN options
## API Completeness
- Implemented GetCouncilComposition function
- Added GET /api/v1/councils/{id} endpoint
- Council artifacts API (POST/GET /api/v1/councils/{id}/artifacts)
- /admin/health/details endpoint with component status
- Database lookup for repository URLs (no hardcoded fallbacks)
## Observability & Performance
- Added OpenTelemetry distributed tracing with goal/pulse correlation
- Performance optimization database indexes
- Comprehensive health monitoring
- Enhanced logging and error handling
## Infrastructure
- Production-ready P2P discovery (replaces mock implementation)
- Removed unused Redis configuration
- Enhanced Docker Swarm integration
- Added migration files for performance indexes
## Code Quality
- Comprehensive input validation
- Graceful error handling and failsafe fallbacks
- Backwards compatibility maintained
- Following security best practices
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <noreply@anthropic.com>
57 lines
2.2 KiB
Go
57 lines
2.2 KiB
Go
package zerolog
|
|
|
|
import (
|
|
"net"
|
|
"time"
|
|
)
|
|
|
|
type encoder interface {
|
|
AppendArrayDelim(dst []byte) []byte
|
|
AppendArrayEnd(dst []byte) []byte
|
|
AppendArrayStart(dst []byte) []byte
|
|
AppendBeginMarker(dst []byte) []byte
|
|
AppendBool(dst []byte, val bool) []byte
|
|
AppendBools(dst []byte, vals []bool) []byte
|
|
AppendBytes(dst, s []byte) []byte
|
|
AppendDuration(dst []byte, d time.Duration, unit time.Duration, useInt bool) []byte
|
|
AppendDurations(dst []byte, vals []time.Duration, unit time.Duration, useInt bool) []byte
|
|
AppendEndMarker(dst []byte) []byte
|
|
AppendFloat32(dst []byte, val float32) []byte
|
|
AppendFloat64(dst []byte, val float64) []byte
|
|
AppendFloats32(dst []byte, vals []float32) []byte
|
|
AppendFloats64(dst []byte, vals []float64) []byte
|
|
AppendHex(dst, s []byte) []byte
|
|
AppendIPAddr(dst []byte, ip net.IP) []byte
|
|
AppendIPPrefix(dst []byte, pfx net.IPNet) []byte
|
|
AppendInt(dst []byte, val int) []byte
|
|
AppendInt16(dst []byte, val int16) []byte
|
|
AppendInt32(dst []byte, val int32) []byte
|
|
AppendInt64(dst []byte, val int64) []byte
|
|
AppendInt8(dst []byte, val int8) []byte
|
|
AppendInterface(dst []byte, i interface{}) []byte
|
|
AppendInts(dst []byte, vals []int) []byte
|
|
AppendInts16(dst []byte, vals []int16) []byte
|
|
AppendInts32(dst []byte, vals []int32) []byte
|
|
AppendInts64(dst []byte, vals []int64) []byte
|
|
AppendInts8(dst []byte, vals []int8) []byte
|
|
AppendKey(dst []byte, key string) []byte
|
|
AppendLineBreak(dst []byte) []byte
|
|
AppendMACAddr(dst []byte, ha net.HardwareAddr) []byte
|
|
AppendNil(dst []byte) []byte
|
|
AppendObjectData(dst []byte, o []byte) []byte
|
|
AppendString(dst []byte, s string) []byte
|
|
AppendStrings(dst []byte, vals []string) []byte
|
|
AppendTime(dst []byte, t time.Time, format string) []byte
|
|
AppendTimes(dst []byte, vals []time.Time, format string) []byte
|
|
AppendUint(dst []byte, val uint) []byte
|
|
AppendUint16(dst []byte, val uint16) []byte
|
|
AppendUint32(dst []byte, val uint32) []byte
|
|
AppendUint64(dst []byte, val uint64) []byte
|
|
AppendUint8(dst []byte, val uint8) []byte
|
|
AppendUints(dst []byte, vals []uint) []byte
|
|
AppendUints16(dst []byte, vals []uint16) []byte
|
|
AppendUints32(dst []byte, vals []uint32) []byte
|
|
AppendUints64(dst []byte, vals []uint64) []byte
|
|
AppendUints8(dst []byte, vals []uint8) []byte
|
|
}
|