mirror of
https://github.com/Ernous/TorrServerJellyfin.git
synced 2025-12-19 13:36:09 +05:00
71 lines
1.3 KiB
Go
71 lines
1.3 KiB
Go
package api
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/gin-gonic/gin"
|
|
"server/log"
|
|
"server/torr"
|
|
"server/web/api/utils"
|
|
)
|
|
|
|
func torrentUpload(c *gin.Context) {
|
|
form, err := c.MultipartForm()
|
|
if err != nil {
|
|
c.AbortWithError(http.StatusBadRequest, err)
|
|
return
|
|
}
|
|
defer form.RemoveAll()
|
|
|
|
save := len(form.Value["save"]) > 0
|
|
title := ""
|
|
if len(form.Value["title"]) > 0 {
|
|
title = form.Value["title"][0]
|
|
}
|
|
poster := ""
|
|
if len(form.Value["poster"]) > 0 {
|
|
poster = form.Value["poster"][0]
|
|
}
|
|
data := ""
|
|
if len(form.Value["data"]) > 0 {
|
|
data = form.Value["data"][0]
|
|
}
|
|
var tor *torr.Torrent
|
|
for name, file := range form.File {
|
|
log.TLogln("add torrent file", name)
|
|
|
|
torrFile, err := file[0].Open()
|
|
if err != nil {
|
|
log.TLogln("error upload torrent:", err)
|
|
continue
|
|
}
|
|
defer torrFile.Close()
|
|
|
|
spec, err := utils.ParseFile(torrFile)
|
|
if err != nil {
|
|
log.TLogln("error upload torrent:", err)
|
|
continue
|
|
}
|
|
|
|
tor, err = torr.AddTorrent(spec, title, poster, data)
|
|
if err != nil {
|
|
log.TLogln("error upload torrent:", err)
|
|
continue
|
|
}
|
|
|
|
go func() {
|
|
if !tor.GotInfo() {
|
|
log.TLogln("error add torrent:", "timeout connection torrent")
|
|
return
|
|
}
|
|
|
|
if save {
|
|
torr.SaveTorrentToDB(tor)
|
|
}
|
|
}()
|
|
|
|
break
|
|
}
|
|
c.JSON(200, tor.Status())
|
|
}
|