-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsrkTools.go
More file actions
101 lines (82 loc) · 1.57 KB
/
srkTools.go
File metadata and controls
101 lines (82 loc) · 1.57 KB
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 srkTools
import (
"encoding/json"
"fmt"
"io"
"io/ioutil"
"log"
"net/http"
"os"
"os/exec"
"time"
)
type SrkTools struct {
}
func DebugLog(debug, msg string) {
if debug != "" {
fmt.Println(msg)
}
}
//func DecodeJson(resp *http.Response, sct interface{}) map[string]interface{} {
func DecodeJson(logPrefix, debugLevel string, resp *http.Response, sct interface{}) {
body, _ := ioutil.ReadAll(resp.Body)
_ = json.Unmarshal(body, &sct)
defer resp.Body.Close()
DebugLog(debugLevel, fmt.Sprintf("%s %s",logPrefix, body))
/*
result := sct.(map[string]interface{})
return result
*/
}
func GetCstTime() time.Time {
TZ := time.FixedZone("CST", 8*3600)
return time.Now().In(TZ)
}
func (srk SrkTools) CustomCmd(command string) {
/*
执行linux命令
*/
cmd := exec.Command("sh", "-c", command)
output, err := cmd.CombinedOutput()
if err != nil {
log.Fatal(err)
} else {
fmt.Printf("%s\n", output)
}
}
func (srk SrkTools) Download(filePath string, url string) {
/*
下载文件
*/
resp := srk.HttpReq(url)
f, err := os.Create(filePath)
if err != nil {
panic(err)
}
_, err = io.Copy(f, resp.Body)
if err != nil {
panic(err)
}
//if strings.Contains(filePath, "sbin") {
// cmd := fmt.Sprintf("chmod +x %s", filePath)
// customCmd(cmd)
//}
defer func(f *os.File) {
_ = f.Close()
}(f)
defer func(Body io.ReadCloser) {
_ = Body.Close()
}(resp.Body)
}
func (srk SrkTools) HttpReq(url string) *http.Response {
/*
http 请求
return response
*/
resp, err := http.Get(url)
if err != nil {
log.Fatal(err)
return nil
}
return resp
}