upload.go
2.4 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
package v1
import (
"bytes"
"fmt"
"opp/controllers"
"opp/protocol"
"opp/services/upload"
"gitlab.fjmaimaimai.com/mmm-go/gocomm/pkg/log"
)
type UploadController struct {
controllers.BaseController
}
// Image
// @router /image [post]
func (this *UploadController) Image() {
var (
msg *protocol.ResponseMessage
err error
rsp *protocol.FileResponse = &protocol.FileResponse{}
)
defer func() {
this.Resp(msg)
}()
var request = &protocol.FileRequest{}
if len(this.Ctx.Request.MultipartForm.File) != 0 {
var tmp *protocol.FileResponse
for _, key := range upload.GetSortFileKeys(this.Ctx.Request.MultipartForm.File) {
request.Files = this.Ctx.Request.MultipartForm.File[key]
if tmp, err = upload.Image(request); err != nil {
log.Error(err)
return
}
rsp.Paths = append(rsp.Paths, tmp.Paths...)
}
}
msg = protocol.NewReturnResponse(rsp, err)
}
// Voice
// @router /voice [post]
func (this *UploadController) Voice() {
var (
msg *protocol.ResponseMessage
err error
rsp *protocol.FileResponse = &protocol.FileResponse{}
)
defer func() {
this.Resp(msg)
}()
var request = &protocol.FileRequest{}
if len(this.Ctx.Request.MultipartForm.File) != 0 {
var tmp *protocol.FileResponse
var logBuf = bytes.NewBufferString("")
for _, key := range upload.GetSortFileKeys(this.Ctx.Request.MultipartForm.File) {
request.Files = this.Ctx.Request.MultipartForm.File[key]
logBuf.WriteString(fmt.Sprintf(" key:%v 文件数量:%v ", key, len(request.Files)))
if tmp, err = upload.Voice(request); err != nil {
log.Error(err)
return
}
rsp.Paths = append(rsp.Paths, tmp.Paths...)
}
log.Debug("【上传音频文件】 ", logBuf.String())
}
msg = protocol.NewReturnResponse(rsp, err)
}
// Video
// @router /video [post]
func (this *UploadController) Video() {
var (
msg *protocol.ResponseMessage
err error
rsp *protocol.FileResponse = &protocol.FileResponse{}
)
defer func() {
this.Resp(msg)
}()
var request = &protocol.FileRequest{}
if len(this.Ctx.Request.MultipartForm.File) != 0 {
var tmp *protocol.FileResponse
for _, key := range upload.GetSortFileKeys(this.Ctx.Request.MultipartForm.File) {
request.Files = this.Ctx.Request.MultipartForm.File[key]
if tmp, err = upload.Video(request); err != nil {
log.Error(err)
return
}
rsp.Paths = append(rsp.Paths, tmp.Paths...)
}
}
msg = protocol.NewReturnResponse(rsp, err)
}