file.go
840 字节
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
package v1
import (
"fmt"
"github.com/astaxie/beego"
"opp/controllers"
"opp/internal/utils"
"opp/protocol"
"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)
}