/* * LURE - Linux User REpository * Copyright (C) 2023 Arsen Musayelyan * * 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 3 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 . */ package main import ( "context" "path/filepath" "go.arsenm.dev/logger/log" "github.com/urfave/cli/v2" "go.arsenm.dev/lure/internal/cliutils" "go.arsenm.dev/lure/internal/config" "go.arsenm.dev/lure/internal/db" "go.arsenm.dev/lure/internal/repos" "go.arsenm.dev/lure/manager" ) func installCmd(c *cli.Context) error { args := c.Args() if args.Len() < 1 { log.Fatalf("Command install expected at least 1 argument, got %d", args.Len()).Send() } mgr := manager.Detect() if mgr == nil { log.Fatal("Unable to detect supported package manager on system").Send() } err := repos.Pull(c.Context, gdb, cfg.Repos) if err != nil { log.Fatal("Error pulling repositories").Err(err).Send() } found, notFound, err := repos.FindPkgs(gdb, args.Slice()) if err != nil { log.Fatal("Error finding packages").Err(err).Send() } installPkgs(c.Context, cliutils.FlattenPkgs(found, "install", translator), notFound, mgr, c.Bool("clean")) return nil } // installPkgs installs non-LURE packages via the package manager, then builds and installs LURE // packages func installPkgs(ctx context.Context, pkgs []db.Package, notFound []string, mgr manager.Manager, clean bool) { if len(notFound) > 0 { err := mgr.Install(nil, notFound...) if err != nil { log.Fatal("Error installing native packages").Err(err).Send() } } installScripts(ctx, mgr, getScriptPaths(pkgs), clean) } // getScriptPaths generates a slice of script paths corresponding to the // given packages func getScriptPaths(pkgs []db.Package) []string { var scripts []string for _, pkg := range pkgs { scriptPath := filepath.Join(config.RepoDir, pkg.Repository, pkg.Name, "lure.sh") scripts = append(scripts, scriptPath) } return scripts } // installScripts builds and installs LURE build scripts func installScripts(ctx context.Context, mgr manager.Manager, scripts []string, clean bool) { for _, script := range scripts { builtPkgs, _, err := buildPackage(ctx, script, mgr, clean) if err != nil { log.Fatal("Error building package").Err(err).Send() } err = mgr.InstallLocal(nil, builtPkgs...) if err != nil { log.Fatal("Error installing package").Err(err).Send() } } } func removeCmd(c *cli.Context) error { args := c.Args() if args.Len() < 1 { log.Fatalf("Command remove expected at least 1 argument, got %d", args.Len()).Send() } mgr := manager.Detect() if mgr == nil { log.Fatal("Unable to detect supported package manager on system").Send() } err := mgr.Remove(nil, c.Args().Slice()...) if err != nil { log.Fatal("Error removing packages").Err(err).Send() } return nil }