mirror of
https://github.com/portainer/portainer.git
synced 2025-07-22 23:09:41 +02:00
53 lines
1.9 KiB
Go
53 lines
1.9 KiB
Go
|
package edgejobs
|
||
|
|
||
|
import (
|
||
|
"net/http"
|
||
|
"strconv"
|
||
|
|
||
|
httperror "github.com/portainer/libhttp/error"
|
||
|
"github.com/portainer/libhttp/request"
|
||
|
"github.com/portainer/libhttp/response"
|
||
|
"github.com/portainer/portainer/api"
|
||
|
)
|
||
|
|
||
|
// DELETE request on /api/edge_jobs/:id/tasks/:taskID/logs
|
||
|
func (handler *Handler) edgeJobTasksClear(w http.ResponseWriter, r *http.Request) *httperror.HandlerError {
|
||
|
edgeJobID, err := request.RetrieveNumericRouteVariableValue(r, "id")
|
||
|
if err != nil {
|
||
|
return &httperror.HandlerError{http.StatusBadRequest, "Invalid Edge job identifier route variable", err}
|
||
|
}
|
||
|
|
||
|
taskID, err := request.RetrieveNumericRouteVariableValue(r, "taskID")
|
||
|
if err != nil {
|
||
|
return &httperror.HandlerError{http.StatusBadRequest, "Invalid Task identifier route variable", err}
|
||
|
}
|
||
|
|
||
|
edgeJob, err := handler.DataStore.EdgeJob().EdgeJob(portainer.EdgeJobID(edgeJobID))
|
||
|
if err == portainer.ErrObjectNotFound {
|
||
|
return &httperror.HandlerError{http.StatusNotFound, "Unable to find an Edge job with the specified identifier inside the database", err}
|
||
|
} else if err != nil {
|
||
|
return &httperror.HandlerError{http.StatusInternalServerError, "Unable to find an Edge job with the specified identifier inside the database", err}
|
||
|
}
|
||
|
|
||
|
endpointID := portainer.EndpointID(taskID)
|
||
|
|
||
|
meta := edgeJob.Endpoints[endpointID]
|
||
|
meta.CollectLogs = false
|
||
|
meta.LogsStatus = portainer.EdgeJobLogsStatusIdle
|
||
|
edgeJob.Endpoints[endpointID] = meta
|
||
|
|
||
|
err = handler.FileService.ClearEdgeJobTaskLogs(strconv.Itoa(edgeJobID), strconv.Itoa(taskID))
|
||
|
if err != nil {
|
||
|
return &httperror.HandlerError{http.StatusInternalServerError, "Unable to clear log file from disk", err}
|
||
|
}
|
||
|
|
||
|
handler.ReverseTunnelService.AddEdgeJob(endpointID, edgeJob)
|
||
|
|
||
|
err = handler.DataStore.EdgeJob().UpdateEdgeJob(edgeJob.ID, edgeJob)
|
||
|
if err != nil {
|
||
|
return &httperror.HandlerError{http.StatusInternalServerError, "Unable to persist Edge job changes in the database", err}
|
||
|
}
|
||
|
|
||
|
return response.Empty(w)
|
||
|
}
|