 131868bdca
			
		
	
	131868bdca
	
	
	
		
			
			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>
		
	
		
			
				
	
	
		
			90 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			90 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| // +build !windows
 | |
| // +build !binary_log
 | |
| 
 | |
| package zerolog
 | |
| 
 | |
| import (
 | |
| 	"io"
 | |
| )
 | |
| 
 | |
| // See http://cee.mitre.org/language/1.0-beta1/clt.html#syslog
 | |
| // or https://www.rsyslog.com/json-elasticsearch/
 | |
| const ceePrefix = "@cee:"
 | |
| 
 | |
| // SyslogWriter is an interface matching a syslog.Writer struct.
 | |
| type SyslogWriter interface {
 | |
| 	io.Writer
 | |
| 	Debug(m string) error
 | |
| 	Info(m string) error
 | |
| 	Warning(m string) error
 | |
| 	Err(m string) error
 | |
| 	Emerg(m string) error
 | |
| 	Crit(m string) error
 | |
| }
 | |
| 
 | |
| type syslogWriter struct {
 | |
| 	w      SyslogWriter
 | |
| 	prefix string
 | |
| }
 | |
| 
 | |
| // SyslogLevelWriter wraps a SyslogWriter and call the right syslog level
 | |
| // method matching the zerolog level.
 | |
| func SyslogLevelWriter(w SyslogWriter) LevelWriter {
 | |
| 	return syslogWriter{w, ""}
 | |
| }
 | |
| 
 | |
| // SyslogCEEWriter wraps a SyslogWriter with a SyslogLevelWriter that adds a
 | |
| // MITRE CEE prefix for JSON syslog entries, compatible with rsyslog 
 | |
| // and syslog-ng JSON logging support. 
 | |
| // See https://www.rsyslog.com/json-elasticsearch/
 | |
| func SyslogCEEWriter(w SyslogWriter) LevelWriter {
 | |
| 	return syslogWriter{w, ceePrefix}
 | |
| }
 | |
| 
 | |
| func (sw syslogWriter) Write(p []byte) (n int, err error) {
 | |
| 	var pn int
 | |
| 	if sw.prefix != "" {
 | |
| 		pn, err = sw.w.Write([]byte(sw.prefix))
 | |
| 		if err != nil {
 | |
| 			return pn, err
 | |
| 		}
 | |
| 	}
 | |
| 	n, err = sw.w.Write(p)
 | |
| 	return pn + n, err
 | |
| }
 | |
| 
 | |
| // WriteLevel implements LevelWriter interface.
 | |
| func (sw syslogWriter) WriteLevel(level Level, p []byte) (n int, err error) {
 | |
| 	switch level {
 | |
| 	case TraceLevel:
 | |
| 	case DebugLevel:
 | |
| 		err = sw.w.Debug(sw.prefix + string(p))
 | |
| 	case InfoLevel:
 | |
| 		err = sw.w.Info(sw.prefix + string(p))
 | |
| 	case WarnLevel:
 | |
| 		err = sw.w.Warning(sw.prefix + string(p))
 | |
| 	case ErrorLevel:
 | |
| 		err = sw.w.Err(sw.prefix + string(p))
 | |
| 	case FatalLevel:
 | |
| 		err = sw.w.Emerg(sw.prefix + string(p))
 | |
| 	case PanicLevel:
 | |
| 		err = sw.w.Crit(sw.prefix + string(p))
 | |
| 	case NoLevel:
 | |
| 		err = sw.w.Info(sw.prefix + string(p))
 | |
| 	default:
 | |
| 		panic("invalid level")
 | |
| 	}
 | |
| 	// Any CEE prefix is not part of the message, so we don't include its length
 | |
| 	n = len(p)
 | |
| 	return
 | |
| }
 | |
| 
 | |
| // Call the underlying writer's Close method if it is an io.Closer. Otherwise
 | |
| // does nothing.
 | |
| func (sw syslogWriter) Close() error {
 | |
| 	if c, ok := sw.w.(io.Closer); ok {
 | |
| 		return c.Close()
 | |
| 	}
 | |
| 	return nil
 | |
| }
 |