mirror of
				https://github.com/juanfont/headscale.git
				synced 2025-10-30 23:51:03 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			39 lines
		
	
	
		
			1002 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			39 lines
		
	
	
		
			1002 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| package headscale
 | |
| 
 | |
| import (
 | |
| 	"encoding/json"
 | |
| 	"io"
 | |
| 	"net/http"
 | |
| 
 | |
| 	"github.com/rs/zerolog/log"
 | |
| 	"tailscale.com/tailcfg"
 | |
| 	"tailscale.com/types/key"
 | |
| )
 | |
| 
 | |
| // // NoiseRegistrationHandler handles the actual registration process of a machine.
 | |
| func (h *Headscale) NoiseRegistrationHandler(
 | |
| 	writer http.ResponseWriter,
 | |
| 	req *http.Request,
 | |
| ) {
 | |
| 	log.Trace().Caller().Msgf("Noise registration handler for client %s", req.RemoteAddr)
 | |
| 	if req.Method != http.MethodPost {
 | |
| 		http.Error(writer, "Wrong method", http.StatusMethodNotAllowed)
 | |
| 
 | |
| 		return
 | |
| 	}
 | |
| 	body, _ := io.ReadAll(req.Body)
 | |
| 	registerRequest := tailcfg.RegisterRequest{}
 | |
| 	if err := json.Unmarshal(body, ®isterRequest); err != nil {
 | |
| 		log.Error().
 | |
| 			Caller().
 | |
| 			Err(err).
 | |
| 			Msg("Cannot parse RegisterRequest")
 | |
| 		machineRegistrations.WithLabelValues("unknown", "web", "error", "unknown").Inc()
 | |
| 		http.Error(writer, "Internal error", http.StatusInternalServerError)
 | |
| 
 | |
| 		return
 | |
| 	}
 | |
| 
 | |
| 	h.handleRegisterCommon(writer, req, registerRequest, key.MachinePublic{})
 | |
| }
 |