2018-06-11 13:13:19 +00:00
|
|
|
package dockerhub
|
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
|
|
|
|
2018-09-10 10:01:38 +00:00
|
|
|
httperror "github.com/portainer/libhttp/error"
|
|
|
|
"github.com/portainer/libhttp/response"
|
2018-06-11 13:13:19 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// GET request on /api/dockerhub
|
|
|
|
func (handler *Handler) dockerhubInspect(w http.ResponseWriter, r *http.Request) *httperror.HandlerError {
|
|
|
|
dockerhub, err := handler.DockerHubService.DockerHub()
|
|
|
|
if err != nil {
|
|
|
|
return &httperror.HandlerError{http.StatusInternalServerError, "Unable to retrieve DockerHub details from the database", err}
|
|
|
|
}
|
|
|
|
|
|
|
|
hideFields(dockerhub)
|
|
|
|
return response.JSON(w, dockerhub)
|
|
|
|
}
|