-
-
Notifications
You must be signed in to change notification settings - Fork 117
/
Copy pathreqs.go
174 lines (160 loc) · 5.53 KB
/
reqs.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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
/*
* Copyright (c) 2021-present Fabien Potencier <[email protected]>
*
* This file is part of Symfony CLI project
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero 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 Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package book
import (
"bytes"
"os"
"os/exec"
"path/filepath"
"strings"
"github.com/hashicorp/go-version"
"github.com/pkg/errors"
"github.com/symfony-cli/phpstore"
"github.com/symfony-cli/symfony-cli/util"
"github.com/symfony-cli/terminal"
)
func (b *Book) CheckRepository() error {
if _, err := os.Stat(filepath.Join(b.Dir, ".git")); os.IsNotExist(err) {
return errors.New("the current directory is not a clone of the book repository, no .git directory found")
}
if !b.Force {
cmd := exec.Command("git", "config", "--get", "remote.origin.url")
cmd.Env = os.Environ()
out, err := cmd.CombinedOutput()
if err != nil {
return errors.Errorf("unable to get the Git information:\n%s\n%s", err, out)
}
if !strings.HasPrefix(string(out), "https://github.com/the-fast-track/book-") {
return errors.New("the current directory does not seem to be a clone of the book repository")
}
}
return nil
}
func CheckRequirements() (bool, error) {
ready := true
// Git
if _, err := exec.LookPath("git"); err != nil {
ready = false
terminal.Println("<error>[KO]</> Cannot find Git, please install it <href=https://git-scm.com/>https://git-scm.com/</>")
} else {
terminal.Println("<info>[OK]</> Git installed")
}
// PHP
minv, err := version.NewVersion("8.1.0")
if err != nil {
return false, err
}
store := phpstore.New(util.GetHomeDir(), true, nil)
wd, err := os.Getwd()
if err != nil {
return false, err
}
v, _, _, _ := store.BestVersionForDir(wd)
if v == nil {
ready = false
terminal.Println("<error>[KO]</> Cannot find PHP, please install it <href=https://php.net/>https://php.net/</>")
} else {
if v.FullVersion.GreaterThan(minv) {
terminal.Printfln("<info>[OK]</> PHP installed version %s (%s)", v.FullVersion, v.PHPPath)
} else {
ready = false
terminal.Printfln("<error>[KO]</> PHP installed; version %s found but we need version %s+ (%s)", v.FullVersion, minv.String(), v.PHPPath)
}
}
// PHP extensions
if v != nil {
exts := map[string]string{
"iconv": "required",
"json": "required",
"session": "required",
"ctype": "required",
"tokenizer": "required",
"xml": "required",
"intl": "required",
"pdo_pgsql": "required",
"mbstring": "required",
"xsl": "required",
"openssl": "required",
"sodium": "required",
"curl": "optional - needed only for chapter 17 (Panther)",
"zip": "optional - needed only for chapter 17 (Panther)",
"gd": "optional - needed only for chapter 23 (Imagine)",
"redis": "optional - needed only for chapter 31",
"amqp": "optional - needed only for chapter 32",
}
phpexts := getPhpExtensions(v)
for ext, reason := range exts {
if _, ok := phpexts[ext]; !ok {
if reason == "required" {
ready = false
terminal.Printfln(`<error>[KO]</> PHP extension "%s" <error>not found</>, please install it - <comment>%s</>`, ext, reason)
} else {
terminal.Printfln(`<info>[OK]</> PHP extension "%s" <warning>not found</>, <comment>%s</>`, ext, reason)
}
} else {
terminal.Printfln(`<info>[OK]</> PHP extension "%s" installed - <comment>%s</>`, ext, reason)
}
}
}
// Composer
if _, err := exec.LookPath("composer"); err != nil {
ready = false
terminal.Println("<error>[KO]</> Cannot find Composer, please install it <href=https://getcomposer.org/download/>https://getcomposer.org/download/</>")
} else {
terminal.Println("<info>[OK]</> Composer installed")
}
// Docker
if _, err := exec.LookPath("docker"); err != nil {
ready = false
terminal.Println("<error>[KO]</> Cannot find Docker, please install it <href=https://www.docker.com/get-started>https://www.docker.com/get-started</>")
} else {
terminal.Println("<info>[OK]</> Docker installed")
}
// Docker Compose
_, err1 := exec.LookPath("docker-compose")
err2 := exec.Command("docker", "compose").Run()
if err1 != nil && err2 != nil {
ready = false
terminal.Println("<error>[KO]</> Cannot find Docker Compose, please install it <href=https://docs.docker.com/compose/install/>https://docs.docker.com/compose/install/</>")
} else {
terminal.Println("<info>[OK]</> Docker Compose installed")
}
// NPM
if _, err := exec.LookPath("npm"); err != nil {
ready = false
terminal.Println("<error>[KO]</> Cannot find the npm package manager, please install it <href=https://www.npmjs.com/>https://www.npmjs.com/</>")
} else {
terminal.Println("<info>[OK]</> npm installed")
}
return ready, nil
}
func getPhpExtensions(php *phpstore.Version) map[string]bool {
exts := make(map[string]bool)
var buf bytes.Buffer
cmd := exec.Command(php.PHPPath, "-m")
cmd.Stdout = &buf
cmd.Stderr = &buf
if err := cmd.Run(); err != nil {
return exts
}
for _, ext := range strings.Split(buf.String(), "\n") {
exts[ext] = true
}
return exts
}