RoadSign/pkg/cmd/rds/deploy/commands.go

96 lines
2.6 KiB
Go
Raw Normal View History

2023-12-10 06:52:00 +00:00
package deploy
import (
"context"
"fmt"
"os"
"path/filepath"
2023-12-10 09:56:17 +00:00
"strings"
2023-12-10 06:52:00 +00:00
"code.smartsheep.studio/goatworks/roadsign/pkg/cmd/rds/conn"
"github.com/gofiber/fiber/v2"
"github.com/google/uuid"
"github.com/mholt/archiver/v4"
"github.com/rs/zerolog/log"
"github.com/samber/lo"
"github.com/urfave/cli/v2"
)
var DeployCommands = []*cli.Command{
{
Name: "deploy",
Aliases: []string{"dp"},
ArgsUsage: "<server> <site> <upstream> [path]",
Action: func(ctx *cli.Context) error {
if ctx.Args().Len() < 3 {
return fmt.Errorf("must have three arguments: <server> <site> <upstream> [path]")
}
server, ok := conn.GetConnection(ctx.Args().Get(0))
if !ok {
return fmt.Errorf("server was not found, use \"rds connect\" add one first")
}
// Prepare file to upload
cleanup := true
2023-12-10 09:56:17 +00:00
workdir, _ := os.Getwd()
var filename string
if ctx.Args().Len() < 3 || !strings.HasSuffix(ctx.Args().Get(3), ".zip") {
log.Info().Msg("Preparing file to upload, please stand by...")
2023-12-10 06:52:00 +00:00
2023-12-10 09:56:17 +00:00
filelist, err := archiver.FilesFromDisk(nil, map[string]string{
lo.Ternary(ctx.Args().Len() > 3, ctx.Args().Get(4), "."): "",
})
if err != nil {
return fmt.Errorf("failed to prepare file: %q", err)
}
2023-12-10 06:52:00 +00:00
2023-12-10 09:56:17 +00:00
filename = filepath.Join(workdir, fmt.Sprintf("rds-deploy-cache-%s.zip", uuid.NewString()))
out, err := os.Create(filename)
if err != nil {
return fmt.Errorf("failed to prepare file: %q", err)
}
defer out.Close()
2023-12-10 06:52:00 +00:00
2023-12-10 09:56:17 +00:00
if err := (archiver.Zip{}).Archive(context.Background(), out, filelist); err != nil {
return fmt.Errorf("failed to prepare file: %q", err)
}
} else if ctx.Args().Len() > 3 {
cleanup = false
2023-12-10 09:56:17 +00:00
filename = ctx.Args().Get(3)
2023-12-10 06:52:00 +00:00
}
// Send request
log.Info().Msg("Now publishing to remote server...")
url := fmt.Sprintf("/webhooks/publish/%s/%s?mimetype=%s", ctx.Args().Get(1), ctx.Args().Get(2), "application/zip")
client := fiber.Put(server.Url+url).
SendFile(filename, "attachments").
MultipartForm(nil).
BasicAuth("RoadSign CLI", server.Credential)
var mistake error
2023-12-10 10:26:04 +00:00
if status, data, err := client.Bytes(); len(err) > 0 {
2023-12-10 06:52:00 +00:00
mistake = fmt.Errorf("failed to publish to remote: %q", err)
} else if status != 200 {
2023-12-10 10:26:04 +00:00
mistake = fmt.Errorf("server rejected request, status code %d, response %s", status, string(data))
2023-12-10 06:52:00 +00:00
}
// Cleanup
if cleanup {
log.Info().Msg("Cleaning up...")
os.Remove(filename)
}
2023-12-10 06:52:00 +00:00
if mistake != nil {
return mistake
}
// Well done!
log.Info().Msg("Well done! Your site is successfully published! 🎉")
return nil
},
},
}