mirror of
https://github.com/Ernous/TorrServerJellyfin.git
synced 2025-12-19 13:36:09 +05:00
* Initial version - Add OpenAPI documentation generator - Update README.md to remove endpoint documentations * Adds new endpoints - Fixes build with swag - Adds new endpoints * Adds more endpoints documentation - Also removes swag from Dockerfile and build script * Finally adds all endpoints documentation * Initial version - Add OpenAPI documentation generator - Update README.md to remove endpoint documentations * Adds new endpoints - Fixes build with swag - Adds new endpoints * Adds more endpoints documentation - Also removes swag from Dockerfile and build script * Finally adds all endpoints documentation * Update README (#1) * Update README I completely redid the `README.md`. Now it's much easier to read and understand. --------- Co-authored-by: cocool97 <34218602+cocool97@users.noreply.github.com> * Improves documentation * Delete server/config.db * Update README.md * Update README.md * fix download in api docs * add api docs to web --------- Co-authored-by: Shadeov <144587546+shadeov@users.noreply.github.com> Co-authored-by: nikk gitanes <tsynik@gmail.com>
94 lines
1.9 KiB
Go
94 lines
1.9 KiB
Go
package api
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"server/log"
|
|
"server/torr"
|
|
"server/web/api/utils"
|
|
|
|
"github.com/gin-gonic/gin"
|
|
)
|
|
|
|
// torrentUpload godoc
|
|
//
|
|
// @Summary Only one file support
|
|
// @Description Only one file support.
|
|
//
|
|
// @Tags API
|
|
//
|
|
// @Param file formData file true "Torrent file to insert"
|
|
// @Param save formData string false "Save to DB"
|
|
// @Param title formData string false "Torrent title"
|
|
// @Param poster formData string false "Torrent poster"
|
|
// @Param data formData string false "Torrent data"
|
|
//
|
|
// @Accept multipart/form-data
|
|
//
|
|
// @Produce json
|
|
// @Success 200 {object} state.TorrentStatus "Torrent status"
|
|
// @Router /torrent/upload [post]
|
|
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 tor.Title == "" {
|
|
tor.Title = tor.Name()
|
|
}
|
|
|
|
if save {
|
|
torr.SaveTorrentToDB(tor)
|
|
}
|
|
}()
|
|
|
|
break
|
|
}
|
|
c.JSON(200, tor.Status())
|
|
}
|