forked from JustaPenguin/assetto-server-manager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
server_install.go
101 lines (78 loc) · 2.4 KB
/
server_install.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
package servermanager
import (
"errors"
"fmt"
"os"
"os/exec"
"path/filepath"
"github.com/sirupsen/logrus"
)
// assettoServerSteamID is the ID of the server on steam.
const assettoServerSteamID = "302550"
var (
ErrNoSteamCMD = errors.New("servermanager: steamcmd was not found in $PATH")
// ServerInstallPath is where the assetto corsa server should be/is installed
ServerInstallPath = "assetto"
ServerConfigPath = "cfg"
)
func SetAssettoInstallPath(installPath string) {
if !filepath.IsAbs(installPath) {
wd, err := os.Getwd()
if err == nil {
ServerInstallPath = filepath.Join(wd, installPath)
} else {
panic("unable to get working directory. can't install server")
}
} else {
ServerInstallPath = installPath
}
}
func IsAssettoInstalled() bool {
_, err := os.Stat(filepath.Join(ServerInstallPath, "system"))
return err == nil
}
// InstallAssettoCorsaServer takes a steam login and password and runs steamcmd to install the assetto server.
// If the "ServerInstallPath" exists, this function will exit without installing - unless force == true.
func InstallAssettoCorsaServer(login, password string, force bool) error {
_, err := os.Stat(filepath.Join(ServerInstallPath, "system"))
if err != nil && !os.IsNotExist(err) {
return err
} else if !force && !os.IsNotExist(err) {
return nil // server is installed
}
logrus.Infof("Attempting to install the Assetto Corsa Server (steamid: %s) to %s", assettoServerSteamID, ServerInstallPath)
commandToUse := "steamcmd.sh"
if !isCommandAvailable(commandToUse) {
if isCommandAvailable("steamcmd") {
logrus.Infof("WARNING using steamcmd instead of steamcmd.sh. You must have run steamcmd before using this tool or Assetto Corsa Server will not install correctly.")
commandToUse = "steamcmd"
} else {
return ErrNoSteamCMD
}
}
cmd := exec.Command(commandToUse,
"+@sSteamCmdForcePlatformType windows",
fmt.Sprintf("+login %s %s", login, password),
"+force_install_dir "+ServerInstallPath,
"+app_update "+assettoServerSteamID,
"+quit",
)
cmd.Stdout = os.Stdout
cmd.Stderr = os.Stderr
err = cmd.Run()
if err != nil {
return err
}
// create default skins
for _, f := range defaultSkinsLayout {
err := os.MkdirAll(filepath.Join(ServerInstallPath, filepath.FromSlash(f)), 0755)
if err != nil {
return err
}
}
return nil
}
func isCommandAvailable(name string) bool {
_, err := exec.LookPath(name)
return err == nil
}