file.go
1.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
package v1
import (
"encoding/json"
"fmt"
"github.com/astaxie/beego"
"gitlab.fjmaimaimai.com/mmm-go/gocomm/pkg/log"
"opp/controllers"
"opp/internal/aliyun"
"opp/internal/utils"
"opp/protocol"
"opp/services/file"
"path/filepath"
"strings"
)
type FileController struct {
controllers.BaseController
}
// DownLoad
// @router /opp/file [post]
func (this *FileController) DownLoad() {
var (
msg *protocol.ResponseMessage
err error
rsp *protocol.FileResponse = &protocol.FileResponse{}
)
defer func() {
if msg.Errno != 0 {
this.Resp(msg)
}
}()
fileUrl := this.Ctx.Request.RequestURI
filePath := strings.Replace(fileUrl, "/file/opp", "", 1)
filePath = filepath.Join(beego.AppConfig.String("source_path"), filePath)
if utils.Exists(filePath) {
this.Ctx.Output.Download(filePath)
} else {
err = protocol.NewCustomMessage(0, fmt.Sprintf("文件不存在:%v", filePath))
}
msg = protocol.NewReturnResponse(rsp, err)
}
//GetPlayInfo 获取播放信息
// @router /getPlayInfo [post]
func (this *FileController) GetPlayInfo() {
var msg *protocol.ResponseMessage
defer func() {
this.Resp(msg)
}()
var request *aliyun.GetPlayInfoRequest
if err := json.Unmarshal(this.ByteBody, &request); err != nil {
log.Error(err)
msg = protocol.BadRequestParam(1)
return
}
if b, m := this.Valid(request); !b {
msg = m
return
}
header := controllers.GetRequestHeader(this.Ctx)
msg = protocol.NewReturnResponse(file.GetPlayInfo(header, request))
}