mirror of
https://github.com/Ernous/TorrServerJellyfin.git
synced 2025-12-19 21:46:11 +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>
58 lines
1.2 KiB
Go
58 lines
1.2 KiB
Go
package pages
|
|
|
|
import (
|
|
"github.com/anacrolix/torrent/metainfo"
|
|
"github.com/gin-gonic/gin"
|
|
|
|
"server/settings"
|
|
"server/torr"
|
|
"server/web/pages/template"
|
|
)
|
|
|
|
func SetupRoute(route *gin.RouterGroup) {
|
|
template.RouteWebPages(route)
|
|
route.GET("/stat", statPage)
|
|
route.GET("/magnets", getTorrents)
|
|
}
|
|
|
|
// stat godoc
|
|
//
|
|
// @Summary Stat server
|
|
// @Description Stat server.
|
|
//
|
|
// @Tags Pages
|
|
//
|
|
// @Produce text/plain
|
|
// @Success 200 "Stats"
|
|
// @Router /stat [get]
|
|
func statPage(c *gin.Context) {
|
|
torr.WriteStatus(c.Writer)
|
|
c.Status(200)
|
|
}
|
|
|
|
// getTorrents godoc
|
|
//
|
|
// @Summary Get HTML of magnet links
|
|
// @Description Get HTML of magnet links.
|
|
//
|
|
// @Tags Pages
|
|
//
|
|
// @Produce text/html
|
|
// @Success 200 "Magnet links"
|
|
// @Router /magnets [get]
|
|
func getTorrents(c *gin.Context) {
|
|
list := settings.ListTorrent()
|
|
http := "<div>"
|
|
for _, db := range list {
|
|
ts := db.TorrentSpec
|
|
mi := metainfo.MetaInfo{
|
|
AnnounceList: ts.Trackers,
|
|
}
|
|
mag := mi.Magnet(ts.DisplayName, ts.InfoHash)
|
|
// mag := mi.Magnet(&ts.InfoHash, &metainfo.Info{Name: ts.DisplayName})
|
|
http += "<p><a href='" + mag.String() + "'>magnet:?xt=urn:btih:" + mag.InfoHash.HexString() + "</a></p>"
|
|
}
|
|
http += "</div>"
|
|
c.Data(200, "text/html; charset=utf-8", []byte(http))
|
|
}
|