-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathmain.go
139 lines (122 loc) · 2.83 KB
/
main.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
package main
import (
"bytes"
"encoding/json"
"flag"
"fmt"
"io"
"log"
"net/http"
"os"
"os/exec"
"path/filepath"
"regexp"
"strings"
"unicode"
)
var (
help bool
listen string
tmpDir string
cosDir string
)
type Response struct {
Url string `json:"url"`
}
func init() {
flag.BoolVar(&help, "help", false, "显示帮助")
flag.StringVar(&listen, "http", "127.0.0.1:8016", "监听地址")
flag.StringVar(&tmpDir, "tmp", "/tmp/qcloud-cos-tmpdir", "临时目录")
flag.StringVar(&cosDir, "cosdir", "/blog/", "COS目录")
}
func cosUpload(filename string) (response Response, e error) {
basename := filepath.Base(filename)
// remove right '/' or space
remoteDir := strings.TrimRightFunc(cosDir, func(r rune) bool {
return r == '/' || unicode.IsSpace(r)
})
// add left '/' if not has
if !strings.HasPrefix(remoteDir, "/") {
remoteDir = "/" + remoteDir
}
cosfile := fmt.Sprintf(`%s/%s`, remoteDir, basename)
// 执行命令
var output bytes.Buffer
cmd := exec.Command("coscmd", "-d", "upload", filename, cosfile)
cmd.Stdout = &output
cmd.Stderr = &output
e = cmd.Run()
if e != nil {
return
}
// 使用正则解析
re, e := regexp.Compile(`(https://.*\.myqcloud\.com):443 "PUT (/[^ ]*) HTTP/1.1" 200 0`)
if e != nil {
return
}
match := re.FindStringSubmatch(output.String())
if len(match) < 3 {
e = fmt.Errorf(`cannot find Url from output: %s`, output.String())
return
}
url := fmt.Sprintf(`%s%s`, match[1], match[2])
// 打印日志
log.Println(`upload success:`, url)
return Response{Url: url}, nil
}
func Upload(w http.ResponseWriter, r *http.Request) {
// 获取上传的文件
file, header, err := r.FormFile("file")
if err != nil {
http.Error(w, `cannot get upload file:`+err.Error(), http.StatusBadRequest)
return
}
defer file.Close()
// 写入文件
uploadFile := fmt.Sprintf(`%s/%s`, tmpDir, header.Filename)
writer, e := os.Create(uploadFile)
if e != nil {
http.Error(w, `cannot create file:`+uploadFile+e.Error(), http.StatusInternalServerError)
return
}
defer writer.Close()
io.Copy(writer, file)
// 调用coscmd上传文件
response, e := cosUpload(uploadFile)
if e != nil {
http.Error(w, `cosUpload error:`+e.Error(), http.StatusInternalServerError)
return
}
// 返回JSON字符串
marshal, e := json.Marshal(response)
if e != nil {
http.Error(w, `json encode error:`+e.Error(), http.StatusInternalServerError)
return
}
w.Header().Set("Content-Type", "application/json")
w.Write(marshal)
return
}
func init() {
e := os.MkdirAll(tmpDir, 0755)
if e != nil {
log.Fatalln(e)
}
http.HandleFunc("/upload", Upload)
}
func main() {
flag.Parse()
if help {
flag.Usage()
os.Exit(0)
}
server := http.Server{Addr: listen}
go func() {
e := server.ListenAndServe()
if e != nil {
log.Fatalln(`serve error:`, e)
}
}()
log.Println(`Server already started...`)
select {}
}