mirror of https://github.com/portainer/portainer
				
				
				
			
		
			
				
	
	
		
			34 lines
		
	
	
		
			933 B
		
	
	
	
		
			Go
		
	
	
			
		
		
	
	
			34 lines
		
	
	
		
			933 B
		
	
	
	
		
			Go
		
	
	
package status
 | 
						|
 | 
						|
import (
 | 
						|
	"net/http"
 | 
						|
 | 
						|
	"github.com/gorilla/mux"
 | 
						|
	httperror "github.com/portainer/libhttp/error"
 | 
						|
	portainer "github.com/portainer/portainer/api"
 | 
						|
	"github.com/portainer/portainer/api/demo"
 | 
						|
	"github.com/portainer/portainer/api/http/security"
 | 
						|
)
 | 
						|
 | 
						|
// Handler is the HTTP handler used to handle status operations.
 | 
						|
type Handler struct {
 | 
						|
	*mux.Router
 | 
						|
	Status      *portainer.Status
 | 
						|
	demoService *demo.Service
 | 
						|
}
 | 
						|
 | 
						|
// NewHandler creates a handler to manage status operations.
 | 
						|
func NewHandler(bouncer *security.RequestBouncer, status *portainer.Status, demoService *demo.Service) *Handler {
 | 
						|
	h := &Handler{
 | 
						|
		Router:      mux.NewRouter(),
 | 
						|
		Status:      status,
 | 
						|
		demoService: demoService,
 | 
						|
	}
 | 
						|
	h.Handle("/status",
 | 
						|
		bouncer.PublicAccess(httperror.LoggerHandler(h.statusInspect))).Methods(http.MethodGet)
 | 
						|
	h.Handle("/status/version",
 | 
						|
		bouncer.AuthenticatedAccess(http.HandlerFunc(h.version))).Methods(http.MethodGet)
 | 
						|
 | 
						|
	return h
 | 
						|
}
 |