This provides a very simple http server, receiving a git sha1 and querying the buildkite api for the status - the same that's previously done by the frontend, but now without exposing the (read-only) token to users. We can add caching / rate-limiting if the need arises, for now we just propagate the `cache-control` headers (which seem to be set at "cache-control: max-age=0, private, must-revalidate" currently anyways) Part of #118. Change-Id: I8989a74cb2b278139d988089ff8d6e59e00969e4 Reviewed-on: https://cl.snix.dev/c/snix/+/30403 Reviewed-by: edef <edef@edef.eu> Tested-by: besadii Autosubmit: Florian Klink <flokli@flokli.de>
		
			
				
	
	
		
			12 lines
		
	
	
	
		
			346 B
		
	
	
	
		
			Modula-2
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
	
		
			346 B
		
	
	
	
		
			Modula-2
		
	
	
	
	
	
| module snix.dev/ops/buildkite-api-proxy
 | |
| 
 | |
| go 1.24.2
 | |
| 
 | |
| require (
 | |
| 	github.com/coreos/go-systemd/v22 v22.5.0 // indirect
 | |
| 	github.com/google/uuid v1.6.0 // indirect
 | |
| 	github.com/samber/slog-http v1.6.0 // indirect
 | |
| 	go.opentelemetry.io/otel v1.29.0 // indirect
 | |
| 	go.opentelemetry.io/otel/trace v1.29.0 // indirect
 | |
| 	golang.org/x/sync v0.13.0 // indirect
 | |
| )
 |