ALR/pkg/build/install.go

85 lines
3.4 KiB
Go
Raw Permalink Normal View History

2025-01-18 16:30:02 +00:00
// This file was originally part of the project "LURE - Linux User REpository", created by Elara Musayelyan.
// It has been modified as part of "ALR - Any Linux Repository" by Евгений Храмов.
//
// ALR - Any Linux Repository
// Copyright (C) 2025 Евгений Храмов
//
// 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 <http://www.gnu.org/licenses/>.
2024-01-22 10:36:06 +00:00
package build
import (
"context"
2025-01-22 13:37:16 +00:00
"log/slog"
"os"
2024-01-22 10:36:06 +00:00
"path/filepath"
2025-01-22 13:37:16 +00:00
"github.com/leonelquinteros/gotext"
"gitea.plemya-x.ru/Plemya-x/ALR/internal/config"
"gitea.plemya-x.ru/Plemya-x/ALR/internal/db"
"gitea.plemya-x.ru/Plemya-x/ALR/internal/types"
2024-01-22 10:36:06 +00:00
)
// InstallPkgs устанавливает нативные пакеты с использованием менеджера пакетов,
// затем строит и устанавливает пакеты ALR
2024-05-05 10:32:08 +00:00
func InstallPkgs(ctx context.Context, alrPkgs []db.Package, nativePkgs []string, opts types.BuildOpts) {
2024-01-22 10:36:06 +00:00
if len(nativePkgs) > 0 {
err := opts.Manager.Install(nil, nativePkgs...)
2025-01-18 16:30:02 +00:00
// Если есть нативные пакеты, выполняем их установку
2024-01-22 10:36:06 +00:00
if err != nil {
2025-01-22 13:37:16 +00:00
slog.Error(gotext.Get("Error installing native packages"), "err", err)
os.Exit(1)
2025-01-18 16:30:02 +00:00
// Логируем и завершаем выполнение при ошибке
2024-01-22 10:36:06 +00:00
}
}
2024-05-05 10:32:08 +00:00
InstallScripts(ctx, GetScriptPaths(ctx, alrPkgs), opts)
2025-01-18 16:30:02 +00:00
// Устанавливаем скрипты сборки через функцию InstallScripts
2024-01-22 10:36:06 +00:00
}
// GetScriptPaths возвращает срез путей к скриптам, соответствующий
// данным пакетам
2024-01-22 10:36:06 +00:00
func GetScriptPaths(ctx context.Context, pkgs []db.Package) []string {
var scripts []string
for _, pkg := range pkgs {
2025-01-18 16:30:02 +00:00
// Для каждого пакета создаем путь к скрипту сборки
2024-05-05 10:32:08 +00:00
scriptPath := filepath.Join(config.GetPaths(ctx).RepoDir, pkg.Repository, pkg.Name, "alr.sh")
2024-01-22 10:36:06 +00:00
scripts = append(scripts, scriptPath)
}
return scripts
}
// InstallScripts строит и устанавливает переданные alr скрипты сборки
2024-01-22 10:36:06 +00:00
func InstallScripts(ctx context.Context, scripts []string, opts types.BuildOpts) {
for _, script := range scripts {
opts.Script = script // Устанавливаем текущий скрипт в опции
2024-01-22 10:36:06 +00:00
builtPkgs, _, err := BuildPackage(ctx, opts)
2025-01-18 16:30:02 +00:00
// Выполняем сборку пакета
2024-01-22 10:36:06 +00:00
if err != nil {
2025-01-22 13:37:16 +00:00
slog.Error(gotext.Get("Error building package"), "err", err)
os.Exit(1)
2025-01-18 16:30:02 +00:00
// Логируем и завершаем выполнение при ошибке сборки
2024-01-22 10:36:06 +00:00
}
err = opts.Manager.InstallLocal(nil, builtPkgs...)
2025-01-18 16:30:02 +00:00
// Устанавливаем локально собранные пакеты
2024-01-22 10:36:06 +00:00
if err != nil {
2025-01-22 13:37:16 +00:00
slog.Error(gotext.Get("Error installing package"), "err", err)
os.Exit(1)
2025-01-18 16:30:02 +00:00
// Логируем и завершаем выполнение при ошибке установки
2024-01-22 10:36:06 +00:00
}
}
}