OpenMediaCenter/apiGo/api/FileUpload.go

69 lines
1.5 KiB
Go
Raw Normal View History

2021-09-21 15:45:24 +00:00
package api
import (
"fmt"
"io"
"openmediacenter/apiGo/api/api"
"openmediacenter/apiGo/database"
"openmediacenter/apiGo/videoparser"
2021-09-21 15:45:24 +00:00
"os"
)
func addUploadHandler() {
api.AddHandler("fileupload", api.VideoNode, api.PermUser, func(ctx api.Context) {
fmt.Println("we are in file upload handler")
fmt.Printf("permission: %s\n", ctx.PermID().String())
2021-09-21 15:45:24 +00:00
// get path where to store videos to
mSettings, PathPrefix, _ := database.GetSettings()
2021-09-21 15:45:24 +00:00
req := ctx.GetRequest()
mr, err := req.MultipartReader()
if err != nil {
return
}
//length := req.ContentLength
2021-09-21 15:45:24 +00:00
for {
part, err := mr.NextPart()
if err == io.EOF {
break
}
//var read int64
//var p float32
// todo check where we want to place this file
vidpath := PathPrefix + mSettings.VideoPath + part.FileName()
dst, err := os.OpenFile(vidpath, os.O_WRONLY|os.O_CREATE, 0644)
2021-09-21 15:45:24 +00:00
if err != nil {
return
}
fmt.Printf("Uploading file %s\n", part.FileName())
2021-09-21 15:45:24 +00:00
// so now loop through every appended file and upload
buffer := make([]byte, 100000)
for {
cBytes, err := part.Read(buffer)
if cBytes > 0 {
//read = read + int64(cBytes)
//p = float32(read) / float32(length) * 100
//fmt.Printf("progress: %v \n", p)
2021-09-21 15:45:24 +00:00
dst.Write(buffer[0:cBytes])
}
if err == io.EOF {
fmt.Printf("Finished uploading file %s\n", part.FileName())
videoparser.InitDeps(&mSettings)
videoparser.ProcessVideo(part.FileName())
2021-09-21 15:45:24 +00:00
break
}
}
_ = dst.Close()
2021-09-21 15:45:24 +00:00
}
ctx.Text("finished all files")
2021-09-21 15:45:24 +00:00
})
}