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>
42 lines
901 B
Go
42 lines
901 B
Go
package api
|
|
|
|
import (
|
|
"github.com/gin-gonic/gin"
|
|
)
|
|
|
|
type requestI struct {
|
|
Action string `json:"action,omitempty"`
|
|
}
|
|
|
|
func SetupRoute(route *gin.RouterGroup) {
|
|
route.GET("/shutdown", shutdown)
|
|
|
|
route.POST("/settings", settings)
|
|
|
|
route.POST("/torrents", torrents)
|
|
route.POST("/torrent/upload", torrentUpload)
|
|
|
|
route.POST("/cache", cache)
|
|
|
|
route.HEAD("/stream", stream)
|
|
route.HEAD("/stream/*fname", stream)
|
|
|
|
route.GET("/stream", stream)
|
|
route.GET("/stream/*fname", stream)
|
|
|
|
route.HEAD("/play/:hash/:id", play)
|
|
route.GET("/play/:hash/:id", play)
|
|
|
|
route.POST("/viewed", viewed)
|
|
|
|
route.GET("/playlistall/all.m3u", allPlayList)
|
|
route.GET("/playlist", playList)
|
|
route.GET("/playlist/*fname", playList) // Is this endpoint still needed ? `fname` is never used in handler
|
|
|
|
route.GET("/download/:size", download)
|
|
|
|
route.GET("/search/*query", rutorSearch)
|
|
|
|
route.GET("/ffp/:hash/:id", ffp)
|
|
}
|