eclipse/cmd/eclipse-run/main.go

205 lines
4.8 KiB
Go
Raw Normal View History

2024-01-18 07:43:02 +00:00
// Copyright (C) 2023-2024 Umorpha Systems
// SPDX-License-Identifier: AGPL-3.0-or-later
package main
import (
"context"
"encoding/json"
"fmt"
"io"
"io/fs"
2024-01-18 21:17:26 +00:00
"log"
2024-01-18 07:43:02 +00:00
"mime"
"mime/multipart"
"net/http"
"net/textproto"
"os"
"os/exec"
2024-01-19 01:23:49 +00:00
//"strings"
2024-01-18 07:43:02 +00:00
"github.com/datawire/ocibuild/pkg/cliutil"
"github.com/spf13/cobra"
source "git.mothstuff.lol/lukeshu/eclipse"
"git.mothstuff.lol/lukeshu/eclipse/lib/eclipse"
)
func main() {
argparser := &cobra.Command{
Use: os.Args[0] + " [flags] JOB_URL",
Short: "Grab a job from the central cordinator server",
Args: cliutil.WrapPositionalArgs(cobra.ExactArgs(1)),
SilenceErrors: true, // we'll handle this ourselves after .ExecuteContext()
SilenceUsage: true, // FlagErrorFunc will handle this
CompletionOptions: cobra.CompletionOptions{
DisableDefaultCmd: true,
},
}
argparser.SetFlagErrorFunc(cliutil.FlagErrorFunc)
argparser.SetHelpTemplate(cliutil.HelpTemplate)
var apikeyFile string
argparser.Flags().StringVar(&apikeyFile, "apikey-file", source.DefaultAPIKeyFile,
"file containing the API key to use")
argparser.MarkFlagFilename("apikey-file", "yml", "yaml")
argparser.RunE = func(cmd *cobra.Command, args []string) error {
return Run(apikeyFile, args[0])
}
ctx := context.Background()
if err := argparser.ExecuteContext(ctx); err != nil {
fmt.Fprintf(os.Stderr, "%v: error: %v\n", argparser.CommandPath(), err)
os.Exit(1)
}
}
func Run(apikeyFile, jobURL string) (err error) {
maybeSetErr := func(_err error) {
if err == nil && _err != nil {
err = _err
}
}
2024-01-19 01:23:49 +00:00
// _apikey, err := os.ReadFile(apikeyFile)
// if err != nil {
// return err
// }
// apikey := strings.TrimSpace(string(_apikey))
2024-01-18 07:43:02 +00:00
2024-01-19 01:23:49 +00:00
artifactsDir, err := os.MkdirTemp("", "eclipse-run.*")
2024-01-18 07:43:02 +00:00
if err != nil {
return err
}
2024-01-19 01:23:49 +00:00
defer func() { maybeSetErr(os.RemoveAll(artifactsDir)) }()
2024-01-18 07:43:02 +00:00
pipeR, pipeW := io.Pipe()
defer func() {
if err != nil {
pipeW.CloseWithError(err)
}
}()
writer := multipart.NewWriter(pipeW)
req, err := http.NewRequest(http.MethodPost, jobURL, pipeR)
if err != nil {
return err
}
2024-01-19 04:54:39 +00:00
2024-01-19 01:23:49 +00:00
//req.Header.Set("Authorization", "Bearer "+apikey)
2024-01-19 04:54:39 +00:00
// Tell the server that we're including a request body, even
// though we don't yet know how big it will be. Forcing
// "chunked" as apposed to other encodings allows better
// interrupted-connection detection.
2024-01-19 01:23:49 +00:00
req.Header.Set("Transfer-Encoding", "chunked")
2024-01-19 04:54:39 +00:00
// This isn't actually for the server--without this the HTTP
// client library would block waiting to upload the whole
// body, even if it already got an error response back. (as
// of Go 1.21.6)
req.Header.Set("Expect", "100-continue")
2024-01-18 07:43:02 +00:00
req.Header.Set("Content-Type", mime.FormatMediaType("multipart/mixed", map[string]string{
"boundary": writer.Boundary(),
}))
2024-01-18 21:17:26 +00:00
log.Printf("dialing %q...", jobURL)
2024-01-18 07:43:02 +00:00
resp, err := http.DefaultClient.Do(req)
if err != nil {
return err
}
2024-01-18 21:17:26 +00:00
log.Printf("... dialed")
2024-01-18 07:43:02 +00:00
////////////////////////////////////////////////////////////////////////
if resp.StatusCode != http.StatusOK {
2024-01-18 21:17:26 +00:00
err := fmt.Errorf("HTTP %s", resp.Status)
body, _ := io.ReadAll(resp.Body)
if len(body) > 0 {
err = fmt.Errorf("%w\n%s", err, body)
}
return err
2024-01-18 07:43:02 +00:00
}
dec := json.NewDecoder(resp.Body)
2024-01-18 21:17:26 +00:00
log.Printf("reading job description...")
2024-01-18 07:43:02 +00:00
var job eclipse.Job
if err := dec.Decode(&job); err != nil {
return err
}
2024-01-18 21:17:26 +00:00
log.Printf("... read")
2024-01-18 07:43:02 +00:00
hdr := make(textproto.MIMEHeader)
2024-01-19 01:23:49 +00:00
log.Printf("running command...")
2024-01-18 21:17:26 +00:00
hdr.Set("Content-Disposition", `attachment; filename="log.txt"`)
part, err := writer.CreatePart(hdr)
if err != nil {
2024-01-19 01:23:49 +00:00
return fmt.Errorf("create part: %w", err)
2024-01-18 21:17:26 +00:00
}
cmd := exec.Command("sh", "-c", job.Command)
cmd.Stdout = part
cmd.Stderr = part
cmd.Env = append(os.Environ(),
2024-01-19 01:23:49 +00:00
"ECLIPSE_ARTIFACTSDIR="+artifactsDir)
2024-01-18 21:17:26 +00:00
status := "0"
if err := cmd.Run(); err != nil {
status = err.Error()
}
2024-01-19 01:23:49 +00:00
log.Printf("... run")
2024-01-18 21:17:26 +00:00
2024-01-19 01:23:49 +00:00
log.Printf("uploading artifacts...")
artifactsFS := os.DirFS(artifactsDir)
if err := fs.WalkDir(artifactsFS, ".", func(path string, d fs.DirEntry, err error) error {
2024-01-18 21:17:26 +00:00
if err != nil {
return err
}
if d.Type() != 0 {
return nil
}
2024-01-19 01:23:49 +00:00
log.Printf(" -> %q...", path)
2024-01-18 21:17:26 +00:00
hdr.Set("Content-Disposition", mime.FormatMediaType("attachment", map[string]string{
2024-01-19 01:23:49 +00:00
"filename": "artifacts/" + path,
2024-01-18 21:17:26 +00:00
}))
2024-01-18 07:43:02 +00:00
part, err := writer.CreatePart(hdr)
if err != nil {
return err
}
2024-01-19 01:23:49 +00:00
fh, err := artifactsFS.Open(path)
2024-01-18 07:43:02 +00:00
if err != nil {
return err
}
2024-01-18 21:17:26 +00:00
if _, err := io.Copy(part, fh); err != nil {
_ = fh.Close()
return err
2024-01-18 07:43:02 +00:00
}
2024-01-18 21:17:26 +00:00
if err := fh.Close(); err != nil {
2024-01-18 07:43:02 +00:00
return err
}
2024-01-18 21:17:26 +00:00
return nil
}); err != nil {
return err
2024-01-18 07:43:02 +00:00
}
2024-01-19 01:23:49 +00:00
log.Printf("... uploaded")
2024-01-18 07:43:02 +00:00
2024-01-18 21:17:26 +00:00
hdr.Set("Content-Disposition", mime.FormatMediaType("form-data", map[string]string{
"name": "status",
}))
part, err = writer.CreatePart(hdr)
if err != nil {
return err
}
if _, err := io.WriteString(part, status); err != nil {
2024-01-18 07:43:02 +00:00
return err
}
2024-01-18 21:17:26 +00:00
if err := writer.Close(); err != nil {
return err
}
2024-01-18 07:43:02 +00:00
return nil
}