ficsit-cli-flake/cli/installations.go

488 lines
12 KiB
Go
Raw Normal View History

2021-11-05 21:42:49 +00:00
package cli
2021-12-02 04:00:33 +00:00
import (
"encoding/json"
"fmt"
"os"
2022-05-02 20:07:15 +00:00
"path/filepath"
"regexp"
"strings"
2022-05-02 20:07:15 +00:00
"github.com/satisfactorymodding/ficsit-cli/utils"
2021-12-02 04:00:33 +00:00
"github.com/pkg/errors"
"github.com/rs/zerolog/log"
"github.com/spf13/viper"
)
type InstallationsVersion int
const (
InitialInstallationsVersion = InstallationsVersion(iota)
// Always last
nextInstallationsVersion
)
type Installations struct {
Version InstallationsVersion `json:"version"`
Installations []*Installation `json:"installations"`
SelectedInstallation string `json:"selected_installation"`
}
2021-11-05 21:42:49 +00:00
type Installation struct {
2021-12-02 04:00:33 +00:00
Path string `json:"path"`
Profile string `json:"profile"`
}
func InitInstallations() (*Installations, error) {
2022-04-14 01:27:39 +00:00
localDir := viper.GetString("local-dir")
2021-12-02 04:00:33 +00:00
2022-06-05 01:56:46 +00:00
installationsFile := filepath.Join(localDir, viper.GetString("installations-file"))
2021-12-02 04:00:33 +00:00
_, err := os.Stat(installationsFile)
if err != nil {
if !os.IsNotExist(err) {
return nil, errors.Wrap(err, "failed to stat installations file")
}
2022-04-14 01:27:39 +00:00
_, err := os.Stat(localDir)
2021-12-02 04:00:33 +00:00
if err != nil {
if !os.IsNotExist(err) {
return nil, errors.Wrap(err, "failed to read cache directory")
}
2022-04-14 01:27:39 +00:00
err = os.MkdirAll(localDir, 0755)
2021-12-02 04:00:33 +00:00
if err != nil {
return nil, errors.Wrap(err, "failed to create cache directory")
}
}
emptyInstallations := Installations{
Version: nextInstallationsVersion - 1,
}
if err := emptyInstallations.Save(); err != nil {
return nil, errors.Wrap(err, "failed to save empty installations")
}
}
installationsData, err := os.ReadFile(installationsFile)
if err != nil {
return nil, errors.Wrap(err, "failed to read installations")
}
var installations Installations
if err := json.Unmarshal(installationsData, &installations); err != nil {
return nil, errors.Wrap(err, "failed to unmarshal installations")
}
if installations.Version >= nextInstallationsVersion {
return nil, fmt.Errorf("unknown installations version: %d", installations.Version)
}
return &installations, nil
}
func (i *Installations) Save() error {
if viper.GetBool("dry-run") {
log.Info().Msg("dry-run: skipping installation saving")
return nil
}
2022-06-05 01:56:46 +00:00
installationsFile := filepath.Join(viper.GetString("local-dir"), viper.GetString("installations-file"))
2021-12-02 04:00:33 +00:00
log.Info().Str("path", installationsFile).Msg("saving installations")
installationsJSON, err := json.MarshalIndent(i, "", " ")
if err != nil {
return errors.Wrap(err, "failed to marshal installations")
}
if err := os.WriteFile(installationsFile, installationsJSON, 0755); err != nil {
return errors.Wrap(err, "failed to write installations")
}
return nil
}
func (i *Installations) AddInstallation(ctx *GlobalContext, installPath string, profile string) (*Installation, error) {
2022-05-02 20:07:15 +00:00
absolutePath, err := filepath.Abs(installPath)
if err != nil {
return nil, errors.Wrap(err, "could not resolve absolute path of: "+installPath)
}
2021-12-02 04:00:33 +00:00
installation := &Installation{
2022-05-02 20:07:15 +00:00
Path: absolutePath,
2021-12-02 04:00:33 +00:00
Profile: profile,
}
if err := installation.Validate(ctx); err != nil {
return nil, errors.Wrap(err, "failed to validate installation")
}
newStat, err := os.Stat(installation.Path)
if err != nil {
return nil, errors.Wrap(err, "failed to stat installation directory")
}
found := false
2022-04-14 01:27:39 +00:00
for _, install := range i.Installations {
2021-12-02 04:00:33 +00:00
stat, err := os.Stat(install.Path)
if err != nil {
continue
}
found = os.SameFile(newStat, stat)
if found {
break
}
}
if found {
return nil, errors.New("installation already present")
}
i.Installations = append(i.Installations, installation)
return installation, nil
}
func (i *Installations) GetInstallation(installPath string) *Installation {
for _, install := range i.Installations {
if install.Path == installPath {
return install
}
}
return nil
}
2022-04-14 01:27:39 +00:00
func (i *Installations) DeleteInstallation(installPath string) error {
found := -1
for j, install := range i.Installations {
if install.Path == installPath {
found = j
break
}
}
if found == -1 {
return errors.New("installation not found")
}
i.Installations = append(i.Installations[:found], i.Installations[found+1:]...)
return nil
}
2021-12-02 04:00:33 +00:00
func (i *Installation) Validate(ctx *GlobalContext) error {
found := false
for _, p := range ctx.Profiles.Profiles {
if p.Name == i.Profile {
found = true
break
}
}
if !found {
return errors.New("profile not found")
}
2022-04-14 01:27:39 +00:00
foundExecutable := false
2022-06-05 01:56:46 +00:00
_, err := os.Stat(filepath.Join(i.Path, "FactoryGame.exe"))
2022-04-14 01:27:39 +00:00
if err != nil {
if !os.IsNotExist(err) {
return errors.Wrap(err, "failed reading FactoryGame.exe")
}
} else {
foundExecutable = true
}
2022-06-05 01:56:46 +00:00
_, err = os.Stat(filepath.Join(i.Path, "FactoryServer.sh"))
2022-04-14 01:27:39 +00:00
if err != nil {
if !os.IsNotExist(err) {
return errors.Wrap(err, "failed reading FactoryServer.sh")
}
} else {
foundExecutable = true
}
2022-06-05 01:56:46 +00:00
_, err = os.Stat(filepath.Join(i.Path, "FactoryServer.exe"))
2022-04-14 01:27:39 +00:00
if err != nil {
if !os.IsNotExist(err) {
return errors.Wrap(err, "failed reading FactoryServer.exe")
}
} else {
foundExecutable = true
}
if !foundExecutable {
return errors.New("did not find game executable in " + i.Path)
}
2021-12-02 04:00:33 +00:00
return nil
}
var (
lockFileCleaner = regexp.MustCompile(`[^a-zA-Z\d]]`)
matchFirstCap = regexp.MustCompile(`(.)([A-Z][a-z]+)`)
matchAllCap = regexp.MustCompile(`([a-z\d])([A-Z])`)
)
2021-12-02 04:00:33 +00:00
func (i *Installation) LockFilePath(ctx *GlobalContext) (string, error) {
2022-05-02 20:07:15 +00:00
platform, err := i.GetPlatform(ctx)
if err != nil {
return "", err
2022-05-02 20:07:15 +00:00
}
lockFileName := ctx.Profiles.Profiles[i.Profile].Name
lockFileName = matchFirstCap.ReplaceAllString(lockFileName, "${1}_${2}")
lockFileName = matchAllCap.ReplaceAllString(lockFileName, "${1}_${2}")
lockFileName = lockFileCleaner.ReplaceAllLiteralString(lockFileName, "-")
lockFileName = strings.ToLower(lockFileName) + "-lock.json"
2022-06-05 01:56:46 +00:00
return filepath.Join(i.Path, platform.LockfilePath, lockFileName), nil
}
func (i *Installation) LockFile(ctx *GlobalContext) (*LockFile, error) {
lockfilePath, err := i.LockFilePath(ctx)
if err != nil {
return nil, err
}
2022-05-02 20:07:15 +00:00
var lockFile *LockFile
lockFileJSON, err := os.ReadFile(lockfilePath)
if err != nil {
if !os.IsNotExist(err) {
return nil, errors.Wrap(err, "failed reading lockfile")
2022-05-02 20:07:15 +00:00
}
} else {
if err := json.Unmarshal(lockFileJSON, &lockFile); err != nil {
return nil, errors.Wrap(err, "failed parsing lockfile")
2022-05-02 20:07:15 +00:00
}
}
return lockFile, nil
}
func (i *Installation) WriteLockFile(ctx *GlobalContext, lockfile LockFile) error {
lockfilePath, err := i.LockFilePath(ctx)
if err != nil {
return err
}
marshaledLockfile, err := json.MarshalIndent(lockfile, "", " ")
if err != nil {
return errors.Wrap(err, "failed to serialize lockfile json")
}
if err := os.WriteFile(lockfilePath, marshaledLockfile, 0777); err != nil {
return errors.Wrap(err, "failed writing lockfile")
}
return nil
}
type InstallUpdate struct {
ModName string
OverallProgress float64
DownloadProgress float64
ExtractProgress float64
}
func (i *Installation) Install(ctx *GlobalContext, updates chan InstallUpdate) error {
if err := i.Validate(ctx); err != nil {
return errors.Wrap(err, "failed to validate installation")
}
lockFile, err := i.LockFile(ctx)
if err != nil {
return err
}
2022-05-02 20:07:15 +00:00
resolver := NewDependencyResolver(ctx.APIClient)
gameVersion, err := i.GetGameVersion(ctx)
if err != nil {
return errors.Wrap(err, "failed to detect game version")
}
lockfile, err := ctx.Profiles.Profiles[i.Profile].Resolve(resolver, lockFile, gameVersion)
if err != nil {
return errors.Wrap(err, "could not resolve mods")
}
2022-06-05 01:56:46 +00:00
modsDirectory := filepath.Join(i.Path, "FactoryGame", "Mods")
2022-05-02 20:07:15 +00:00
if err := os.MkdirAll(modsDirectory, 0777); err != nil {
return errors.Wrap(err, "failed creating Mods directory")
}
dir, err := os.ReadDir(modsDirectory)
if err != nil {
return errors.Wrap(err, "failed to read mods directory")
}
for _, entry := range dir {
if entry.IsDir() {
if _, ok := lockfile[entry.Name()]; !ok {
modDir := filepath.Join(modsDirectory, entry.Name())
_, err := os.Stat(filepath.Join(modDir, ".smm"))
if err == nil {
log.Info().Str("mod_reference", entry.Name()).Msg("deleting mod")
if err := os.RemoveAll(modDir); err != nil {
return errors.Wrap(err, "failed to delete mod directory")
}
}
}
}
}
completed := 0
2022-05-02 20:07:15 +00:00
for modReference, version := range lockfile {
// Only install if a link is provided, otherwise assume mod is already installed
if version.Link != "" {
downloading := true
var genericUpdates chan utils.GenericUpdate
if updates != nil {
genericUpdates = make(chan utils.GenericUpdate)
go func() {
update := InstallUpdate{
ModName: modReference,
OverallProgress: float64(completed) / float64(len(lockfile)),
DownloadProgress: 0,
ExtractProgress: 0,
}
select {
case updates <- update:
default:
}
for up := range genericUpdates {
if downloading {
update.DownloadProgress = up.Progress
} else {
update.DownloadProgress = 1
update.ExtractProgress = up.Progress
}
select {
case updates <- update:
default:
}
}
}()
}
2022-06-03 22:33:42 +00:00
log.Info().Str("mod_reference", modReference).Str("version", version.Version).Str("link", version.Link).Msg("downloading mod")
reader, size, err := utils.DownloadOrCache(modReference+"_"+version.Version+".zip", version.Hash, version.Link, genericUpdates)
2022-05-02 20:07:15 +00:00
if err != nil {
return errors.Wrap(err, "failed to download "+modReference+" from: "+version.Link)
}
downloading = false
2022-06-03 22:33:42 +00:00
log.Info().Str("mod_reference", modReference).Str("version", version.Version).Str("link", version.Link).Msg("extracting mod")
if err := utils.ExtractMod(reader, size, filepath.Join(modsDirectory, modReference), version.Hash, genericUpdates); err != nil {
2022-05-02 20:07:15 +00:00
return errors.Wrap(err, "could not extract "+modReference)
}
2022-06-03 22:33:42 +00:00
if genericUpdates != nil {
close(genericUpdates)
}
}
2022-05-02 20:07:15 +00:00
completed++
2022-05-02 20:07:15 +00:00
}
if err := i.WriteLockFile(ctx, lockfile); err != nil {
return err
2022-05-02 20:07:15 +00:00
}
2022-04-14 01:27:39 +00:00
return nil
}
func (i *Installation) SetProfile(ctx *GlobalContext, profile string) error {
found := false
for _, p := range ctx.Profiles.Profiles {
if p.Name == profile {
found = true
break
}
}
if !found {
return errors.New("could not find profile: " + profile)
}
i.Profile = profile
2021-12-02 04:00:33 +00:00
return nil
2021-11-05 21:42:49 +00:00
}
2022-05-02 20:07:15 +00:00
type gameVersionFile struct {
MajorVersion int `json:"MajorVersion"`
MinorVersion int `json:"MinorVersion"`
PatchVersion int `json:"PatchVersion"`
Changelist int `json:"Changelist"`
CompatibleChangelist int `json:"CompatibleChangelist"`
IsLicenseeVersion int `json:"IsLicenseeVersion"`
IsPromotedBuild int `json:"IsPromotedBuild"`
BranchName string `json:"BranchName"`
BuildID string `json:"BuildId"`
}
func (i *Installation) GetGameVersion(ctx *GlobalContext) (int, error) {
if err := i.Validate(ctx); err != nil {
return 0, errors.Wrap(err, "failed to validate installation")
}
platform, err := i.GetPlatform(ctx)
if err != nil {
return 0, err
}
2022-06-05 01:56:46 +00:00
fullPath := filepath.Join(i.Path, platform.VersionPath)
2022-05-02 20:07:15 +00:00
file, err := os.ReadFile(fullPath)
if err != nil {
if os.IsNotExist(err) {
return 0, errors.Wrap(err, "could not find game version file")
}
return 0, errors.Wrap(err, "failed reading version file")
}
var versionData gameVersionFile
if err := json.Unmarshal(file, &versionData); err != nil {
return 0, errors.Wrap(err, "failed to parse version file json")
}
return versionData.Changelist, nil
}
func (i *Installation) GetPlatform(ctx *GlobalContext) (*Platform, error) {
if err := i.Validate(ctx); err != nil {
return nil, errors.Wrap(err, "failed to validate installation")
}
for _, platform := range platforms {
2022-06-05 01:56:46 +00:00
fullPath := filepath.Join(i.Path, platform.VersionPath)
2022-05-02 20:07:15 +00:00
_, err := os.Stat(fullPath)
if err != nil {
if os.IsNotExist(err) {
continue
} else {
return nil, errors.Wrap(err, "failed detecting version file")
}
}
return &platform, nil
}
return nil, errors.New("no platform detected")
}