mirror of
https://github.com/mudler/luet.git
synced 2025-05-04 14:26:41 +00:00
It holds necessary state plus additional information relative to the context which we are being run to (e.g. if we are in a terminal or not). Besides in the future we can use it also as a contextual logger to provide more smart logging capabilities. This also replace the general global configuration instance that previously was share between the core components.
198 lines
5.1 KiB
Go
198 lines
5.1 KiB
Go
// Copyright © 2019 Ettore Di Giacinto <mudler@gentoo.org>
|
|
//
|
|
// This program is free software; you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation; either version 2 of the License, or
|
|
// (at your option) any later version.
|
|
//
|
|
// This program is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU General Public License along
|
|
// with this program; if not, see <http://www.gnu.org/licenses/>.
|
|
|
|
package backend
|
|
|
|
import (
|
|
"os"
|
|
"os/exec"
|
|
"strings"
|
|
|
|
"github.com/mudler/luet/pkg/api/core/types"
|
|
bus "github.com/mudler/luet/pkg/bus"
|
|
|
|
"github.com/pkg/errors"
|
|
)
|
|
|
|
type SimpleImg struct {
|
|
ctx *types.Context
|
|
}
|
|
|
|
func NewSimpleImgBackend(ctx *types.Context) *SimpleImg {
|
|
return &SimpleImg{ctx: ctx}
|
|
}
|
|
|
|
// TODO: Missing still: labels, and build args expansion
|
|
func (s *SimpleImg) BuildImage(opts Options) error {
|
|
name := opts.ImageName
|
|
bus.Manager.Publish(bus.EventImagePreBuild, opts)
|
|
|
|
buildarg := genBuildCommand(opts)
|
|
|
|
s.ctx.Info(":tea: Building image " + name)
|
|
|
|
cmd := exec.Command("img", buildarg...)
|
|
cmd.Dir = opts.SourcePath
|
|
err := runCommand(s.ctx, cmd)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
bus.Manager.Publish(bus.EventImagePostBuild, opts)
|
|
|
|
s.ctx.Info(":tea: Building image " + name + " done")
|
|
|
|
return nil
|
|
}
|
|
|
|
func (s *SimpleImg) RemoveImage(opts Options) error {
|
|
name := opts.ImageName
|
|
buildarg := []string{"rm", name}
|
|
s.ctx.Spinner()
|
|
defer s.ctx.SpinnerStop()
|
|
out, err := exec.Command("img", buildarg...).CombinedOutput()
|
|
if err != nil {
|
|
return errors.Wrap(err, "Failed removing image: "+string(out))
|
|
}
|
|
|
|
s.ctx.Info(":tea: Image " + name + " removed")
|
|
return nil
|
|
}
|
|
|
|
func (s *SimpleImg) DownloadImage(opts Options) error {
|
|
name := opts.ImageName
|
|
bus.Manager.Publish(bus.EventImagePrePull, opts)
|
|
|
|
buildarg := []string{"pull", name}
|
|
s.ctx.Debug(":tea: Downloading image " + name)
|
|
|
|
s.ctx.Spinner()
|
|
defer s.ctx.SpinnerStop()
|
|
|
|
cmd := exec.Command("img", buildarg...)
|
|
out, err := cmd.CombinedOutput()
|
|
if err != nil {
|
|
return errors.Wrap(err, "Failed downloading image: "+string(out))
|
|
}
|
|
|
|
s.ctx.Info(":tea: Image " + name + " downloaded")
|
|
bus.Manager.Publish(bus.EventImagePostPull, opts)
|
|
|
|
return nil
|
|
}
|
|
func (s *SimpleImg) CopyImage(src, dst string) error {
|
|
s.ctx.Spinner()
|
|
defer s.ctx.SpinnerStop()
|
|
|
|
s.ctx.Debug(":tea: Tagging image", src, dst)
|
|
cmd := exec.Command("img", "tag", src, dst)
|
|
out, err := cmd.CombinedOutput()
|
|
if err != nil {
|
|
return errors.Wrap(err, "Failed tagging image: "+string(out))
|
|
}
|
|
s.ctx.Info(":tea: Image " + dst + " tagged")
|
|
|
|
return nil
|
|
}
|
|
|
|
func (s *SimpleImg) ImageAvailable(imagename string) bool {
|
|
return imageAvailable(imagename)
|
|
}
|
|
|
|
// ImageExists check if the given image is available locally
|
|
func (*SimpleImg) ImageExists(imagename string) bool {
|
|
cmd := exec.Command("img", "ls")
|
|
out, err := cmd.Output()
|
|
if err != nil {
|
|
return false
|
|
}
|
|
if strings.Contains(string(out), imagename) {
|
|
return true
|
|
}
|
|
return false
|
|
}
|
|
|
|
func (s *SimpleImg) ImageDefinitionToTar(opts Options) error {
|
|
if err := s.BuildImage(opts); err != nil {
|
|
return errors.Wrap(err, "Failed building image")
|
|
}
|
|
if err := s.ExportImage(opts); err != nil {
|
|
return errors.Wrap(err, "Failed exporting image")
|
|
}
|
|
if err := s.RemoveImage(opts); err != nil {
|
|
return errors.Wrap(err, "Failed removing image")
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (s *SimpleImg) ExportImage(opts Options) error {
|
|
name := opts.ImageName
|
|
path := opts.Destination
|
|
buildarg := []string{"save", "-o", path, name}
|
|
s.ctx.Debug(":tea: Saving image " + name)
|
|
|
|
s.ctx.Spinner()
|
|
defer s.ctx.SpinnerStop()
|
|
|
|
out, err := exec.Command("img", buildarg...).CombinedOutput()
|
|
if err != nil {
|
|
return errors.Wrap(err, "Failed exporting image: "+string(out))
|
|
}
|
|
s.ctx.Info(":tea: Image " + name + " saved")
|
|
return nil
|
|
}
|
|
|
|
// ExtractRootfs extracts the docker image content inside the destination
|
|
func (s *SimpleImg) ExtractRootfs(opts Options, keepPerms bool) error {
|
|
name := opts.ImageName
|
|
path := opts.Destination
|
|
|
|
if !s.ImageExists(name) {
|
|
if err := s.DownloadImage(opts); err != nil {
|
|
return errors.Wrap(err, "failed pulling image "+name+" during extraction")
|
|
}
|
|
}
|
|
|
|
os.RemoveAll(path)
|
|
|
|
buildarg := []string{"unpack", "-o", path, name}
|
|
s.ctx.Debug(":tea: Extracting image " + name)
|
|
|
|
s.ctx.Spinner()
|
|
defer s.ctx.SpinnerStop()
|
|
|
|
out, err := exec.Command("img", buildarg...).CombinedOutput()
|
|
if err != nil {
|
|
return errors.Wrap(err, "Failed extracting image: "+string(out))
|
|
}
|
|
s.ctx.Debug(":tea: Image " + name + " extracted")
|
|
return nil
|
|
}
|
|
|
|
func (s *SimpleImg) Push(opts Options) error {
|
|
name := opts.ImageName
|
|
bus.Manager.Publish(bus.EventImagePrePush, opts)
|
|
|
|
pusharg := []string{"push", name}
|
|
out, err := exec.Command("img", pusharg...).CombinedOutput()
|
|
if err != nil {
|
|
return errors.Wrap(err, "Failed pushing image: "+string(out))
|
|
}
|
|
s.ctx.Info(":tea: Pushed image:", name)
|
|
bus.Manager.Publish(bus.EventImagePostPush, opts)
|
|
|
|
//s.ctx.Info(string(out))
|
|
return nil
|
|
}
|