a47834da8a
Since we're wrapping also internal errors, if a function returns a wrapped os pkg error (like os.ErrNotExists) and the caller function uses the os error check functions (like os.IsNotExist) it won't work since (like explained in the os pkg comment) it won't unwrap the error. Fix this by using errors.Is checks.
252 lines
5.5 KiB
Go
252 lines
5.5 KiB
Go
// Copyright 2019 Sorint.lab
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
package executor
|
|
|
|
import (
|
|
"bufio"
|
|
"encoding/json"
|
|
"io"
|
|
"net/http"
|
|
"os"
|
|
"strconv"
|
|
"time"
|
|
|
|
"agola.io/agola/internal/errors"
|
|
"agola.io/agola/services/runservice/types"
|
|
"github.com/rs/zerolog"
|
|
)
|
|
|
|
type taskSubmissionHandler struct {
|
|
c chan<- *types.ExecutorTask
|
|
}
|
|
|
|
func NewTaskSubmissionHandler(c chan<- *types.ExecutorTask) *taskSubmissionHandler {
|
|
return &taskSubmissionHandler{c: c}
|
|
}
|
|
|
|
func (h *taskSubmissionHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) {
|
|
var et *types.ExecutorTask
|
|
d := json.NewDecoder(r.Body)
|
|
|
|
if err := d.Decode(&et); err != nil {
|
|
http.Error(w, "", http.StatusInternalServerError)
|
|
return
|
|
}
|
|
|
|
h.c <- et
|
|
}
|
|
|
|
type logsHandler struct {
|
|
log zerolog.Logger
|
|
e *Executor
|
|
}
|
|
|
|
func NewLogsHandler(log zerolog.Logger, e *Executor) *logsHandler {
|
|
return &logsHandler{
|
|
log: log,
|
|
e: e,
|
|
}
|
|
}
|
|
|
|
func (h *logsHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) {
|
|
q := r.URL.Query()
|
|
|
|
taskID := q.Get("taskid")
|
|
if taskID == "" {
|
|
http.Error(w, "", http.StatusBadRequest)
|
|
return
|
|
}
|
|
|
|
_, setup := q["setup"]
|
|
stepStr := q.Get("step")
|
|
if !setup && stepStr == "" {
|
|
http.Error(w, "", http.StatusBadRequest)
|
|
return
|
|
}
|
|
if setup && stepStr != "" {
|
|
http.Error(w, "", http.StatusBadRequest)
|
|
return
|
|
}
|
|
|
|
var step int
|
|
if stepStr != "" {
|
|
var err error
|
|
step, err = strconv.Atoi(stepStr)
|
|
if err != nil {
|
|
http.Error(w, "", http.StatusBadRequest)
|
|
return
|
|
}
|
|
}
|
|
|
|
follow := false
|
|
_, ok := q["follow"]
|
|
if ok {
|
|
follow = true
|
|
}
|
|
|
|
if err := h.readTaskLogs(taskID, setup, step, w, follow); err != nil {
|
|
h.log.Err(err).Send()
|
|
}
|
|
}
|
|
|
|
func (h *logsHandler) readTaskLogs(taskID string, setup bool, step int, w http.ResponseWriter, follow bool) error {
|
|
var logPath string
|
|
if setup {
|
|
logPath = h.e.setupLogPath(taskID)
|
|
} else {
|
|
logPath = h.e.stepLogPath(taskID, step)
|
|
}
|
|
return h.readLogs(taskID, setup, step, logPath, w, follow)
|
|
}
|
|
|
|
func (h *logsHandler) readLogs(taskID string, setup bool, step int, logPath string, w http.ResponseWriter, follow bool) error {
|
|
f, err := os.Open(logPath)
|
|
if err != nil {
|
|
if errors.Is(err, os.ErrNotExist) {
|
|
http.Error(w, "", http.StatusNotFound)
|
|
} else {
|
|
http.Error(w, "", http.StatusInternalServerError)
|
|
}
|
|
return errors.WithStack(err)
|
|
}
|
|
defer f.Close()
|
|
|
|
w.Header().Set("Cache-Control", "no-cache")
|
|
w.Header().Set("Connection", "keep-alive")
|
|
|
|
buf := make([]byte, 4096)
|
|
|
|
// if not following return the Content-Length
|
|
if !follow {
|
|
fi, err := f.Stat()
|
|
if err != nil {
|
|
return errors.WithStack(err)
|
|
}
|
|
w.Header().Set("Content-Length", strconv.FormatInt(fi.Size(), 10))
|
|
}
|
|
|
|
// write and flush the headers so the client will receive the response
|
|
// header also if there're currently no lines to send
|
|
w.WriteHeader(http.StatusOK)
|
|
var flusher http.Flusher
|
|
if fl, ok := w.(http.Flusher); ok {
|
|
flusher = fl
|
|
}
|
|
if flusher != nil {
|
|
flusher.Flush()
|
|
}
|
|
|
|
stop := false
|
|
flushstop := false
|
|
for {
|
|
if stop {
|
|
return nil
|
|
}
|
|
n, err := f.Read(buf)
|
|
if err != nil {
|
|
if err != io.EOF {
|
|
return errors.WithStack(err)
|
|
}
|
|
if !flushstop && follow {
|
|
if _, err := f.Seek(-int64(n), io.SeekCurrent); err != nil {
|
|
return errors.Wrapf(err, "failed to seek in log file %q", logPath)
|
|
}
|
|
// check if the step is finished, if so flush until EOF and stop
|
|
rt, ok := h.e.runningTasks.get(taskID)
|
|
if !ok {
|
|
flushstop = true
|
|
} else {
|
|
rt.Lock()
|
|
if rt.et.Status.Steps[step].Phase.IsFinished() {
|
|
flushstop = true
|
|
}
|
|
rt.Unlock()
|
|
}
|
|
// TODO(sgotti) use ionotify/fswatcher?
|
|
time.Sleep(500 * time.Millisecond)
|
|
continue
|
|
} else {
|
|
stop = true
|
|
}
|
|
}
|
|
if _, err := w.Write(buf[:n]); err != nil {
|
|
return errors.WithStack(err)
|
|
}
|
|
if flusher != nil {
|
|
flusher.Flush()
|
|
}
|
|
}
|
|
}
|
|
|
|
type archivesHandler struct {
|
|
e *Executor
|
|
}
|
|
|
|
func NewArchivesHandler(e *Executor) *archivesHandler {
|
|
return &archivesHandler{e: e}
|
|
}
|
|
|
|
func (h *archivesHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) {
|
|
q := r.URL.Query()
|
|
|
|
taskID := q.Get("taskid")
|
|
if taskID == "" {
|
|
http.Error(w, "", http.StatusBadRequest)
|
|
return
|
|
}
|
|
s := q.Get("step")
|
|
if s == "" {
|
|
http.Error(w, "", http.StatusBadRequest)
|
|
return
|
|
}
|
|
step, err := strconv.Atoi(s)
|
|
if err != nil {
|
|
http.Error(w, "", http.StatusBadRequest)
|
|
return
|
|
}
|
|
|
|
w.Header().Set("Cache-Control", "no-cache")
|
|
|
|
if err := h.readArchive(taskID, step, w); err != nil {
|
|
if errors.Is(err, os.ErrNotExist) {
|
|
http.Error(w, "", http.StatusNotFound)
|
|
} else {
|
|
http.Error(w, "", http.StatusInternalServerError)
|
|
}
|
|
return
|
|
}
|
|
}
|
|
|
|
func (h *archivesHandler) readArchive(taskID string, step int, w http.ResponseWriter) error {
|
|
archivePath := h.e.archivePath(taskID, step)
|
|
|
|
f, err := os.Open(archivePath)
|
|
if err != nil {
|
|
return errors.WithStack(err)
|
|
}
|
|
defer f.Close()
|
|
fi, err := f.Stat()
|
|
if err != nil {
|
|
return errors.WithStack(err)
|
|
}
|
|
|
|
w.Header().Set("Content-Length", strconv.FormatInt(fi.Size(), 10))
|
|
|
|
br := bufio.NewReader(f)
|
|
|
|
_, err = io.Copy(w, br)
|
|
return errors.WithStack(err)
|
|
}
|