mirror of https://github.com/portainer/portainer
95 lines
3.1 KiB
Go
95 lines
3.1 KiB
Go
package edgejobs
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
httperror "github.com/portainer/libhttp/error"
|
|
"github.com/portainer/libhttp/request"
|
|
"github.com/portainer/libhttp/response"
|
|
portainer "github.com/portainer/portainer/api"
|
|
"github.com/portainer/portainer/api/dataservices"
|
|
"github.com/portainer/portainer/api/internal/edge"
|
|
"github.com/portainer/portainer/api/internal/slices"
|
|
)
|
|
|
|
// @id EdgeJobTasksCollect
|
|
// @summary Collect the log for a specifc task on an EdgeJob
|
|
// @description **Access policy**: administrator
|
|
// @tags edge_jobs
|
|
// @security ApiKeyAuth
|
|
// @security jwt
|
|
// @produce json
|
|
// @param id path string true "EdgeJob Id"
|
|
// @param taskID path string true "Task Id"
|
|
// @success 204
|
|
// @failure 500
|
|
// @failure 400
|
|
// @failure 503 "Edge compute features are disabled"
|
|
// @router /edge_jobs/{id}/tasks/{taskID}/logs [post]
|
|
func (handler *Handler) edgeJobTasksCollect(w http.ResponseWriter, r *http.Request) *httperror.HandlerError {
|
|
edgeJobID, err := request.RetrieveNumericRouteVariableValue(r, "id")
|
|
if err != nil {
|
|
return httperror.BadRequest("Invalid Edge job identifier route variable", err)
|
|
}
|
|
|
|
taskID, err := request.RetrieveNumericRouteVariableValue(r, "taskID")
|
|
if err != nil {
|
|
return httperror.BadRequest("Invalid Task identifier route variable", err)
|
|
}
|
|
|
|
err = handler.DataStore.UpdateTx(func(tx dataservices.DataStoreTx) error {
|
|
edgeJob, err := tx.EdgeJob().EdgeJob(portainer.EdgeJobID(edgeJobID))
|
|
if handler.DataStore.IsErrObjectNotFound(err) {
|
|
return httperror.NotFound("Unable to find an Edge job with the specified identifier inside the database", err)
|
|
} else if err != nil {
|
|
return httperror.InternalServerError("Unable to find an Edge job with the specified identifier inside the database", err)
|
|
}
|
|
|
|
endpointID := portainer.EndpointID(taskID)
|
|
endpointsFromGroups, err := edge.GetEndpointsFromEdgeGroups(edgeJob.EdgeGroups, tx)
|
|
if err != nil {
|
|
return httperror.InternalServerError("Unable to get Endpoints from EdgeGroups", err)
|
|
}
|
|
|
|
if slices.Contains(endpointsFromGroups, endpointID) {
|
|
edgeJob.GroupLogsCollection[endpointID] = portainer.EdgeJobEndpointMeta{
|
|
CollectLogs: true,
|
|
LogsStatus: portainer.EdgeJobLogsStatusPending,
|
|
}
|
|
} else {
|
|
meta := edgeJob.Endpoints[endpointID]
|
|
meta.CollectLogs = true
|
|
meta.LogsStatus = portainer.EdgeJobLogsStatusPending
|
|
edgeJob.Endpoints[endpointID] = meta
|
|
}
|
|
|
|
err = tx.EdgeJob().UpdateEdgeJob(edgeJob.ID, edgeJob)
|
|
if err != nil {
|
|
return httperror.InternalServerError("Unable to persist Edge job changes in the database", err)
|
|
}
|
|
|
|
endpoint, err := tx.Endpoint().Endpoint(endpointID)
|
|
if err != nil {
|
|
return httperror.InternalServerError("Unable to retrieve environment from the database", err)
|
|
}
|
|
|
|
if endpoint.Edge.AsyncMode {
|
|
return httperror.BadRequest("Async Edge Endpoints are not supported in Portainer CE", nil)
|
|
}
|
|
|
|
handler.ReverseTunnelService.AddEdgeJob(endpoint, edgeJob)
|
|
|
|
return nil
|
|
})
|
|
|
|
if err != nil {
|
|
if httpErr, ok := err.(*httperror.HandlerError); ok {
|
|
return httpErr
|
|
}
|
|
|
|
return httperror.InternalServerError("Unexpected error", err)
|
|
}
|
|
|
|
return response.Empty(w)
|
|
}
|