-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinstall.go
69 lines (58 loc) · 1.53 KB
/
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
//Package cmd
/*
Copyright © 2024 UnreadCode <[email protected]>
*/
package cmd
import (
"fmt"
"github.com/spf13/cobra"
"pvm/utils"
)
// installCmd represents the install command
var installCmd = &cobra.Command{
Use: "install",
Aliases: []string{"i"},
Short: "Install the specified PHP version.",
Long: `You can quickly install a PHP version
Alias i
usage example:
pvm install 8.0
pvm i 8.0
`,
Run: installRun,
}
func init() {
rootCmd.AddCommand(installCmd)
}
func installRun(cmd *cobra.Command, args []string) {
if len(args) == 0 {
utils.PrintMsg("Please specify the PHP version to install.", "Warning", 1)
}
version := args[0]
if utils.IsInstalled(version) {
utils.PrintMsg(fmt.Sprintf("PHP v%s is already installed.", version), "Warning", 1)
}
install(version)
}
// 安装指定版本
func install(version string) {
releases, err := utils.GetPHPReleases()
if err != nil {
utils.PrintMsg("Failed to get PHP releases.", "Error", 1)
}
zipInfo := releases[version]
if zipInfo.Path == "" {
utils.PrintMsg(fmt.Sprintf("PHP v%s is not found.", version), "Error", 1)
}
fileName, err := utils.Download(zipInfo.Path, version)
if err != nil {
utils.PrintMsg("Failed to download PHP release.", "Error", 1)
}
if err = utils.Unzip(fileName, version); err != nil {
utils.PrintMsg("Failed to unzip PHP release.", "Error", 1)
}
if err = utils.CopyIni(version); err != nil {
utils.PrintMsg("Failed to copy php.ini.", "Error", 1)
}
utils.PrintMsg(fmt.Sprintf("PHP v%s installed successfully.", version), "Success", 0)
}