Albirew/nyaa-pantsu
Archivé
1
0
Bifurcation 0
Ce dépôt a été archivé le 2022-05-07. Vous pouvez voir ses fichiers ou le cloner, mais pas ouvrir de ticket ou de demandes d'ajout, ni soumettre de changements.
nyaa-pantsu/router/rssHandler.go

54 lignes
1,2 Kio
Go
Brut Vue normale Historique

package router
import (
"net/http"
"strconv"
"time"
2017-05-07 15:19:36 +02:00
"github.com/ewhal/nyaa/config"
"github.com/ewhal/nyaa/util"
"github.com/ewhal/nyaa/util/search"
"github.com/gorilla/feeds"
)
func RssHandler(w http.ResponseWriter, r *http.Request) {
2017-05-09 17:07:42 +02:00
_, torrents, err := search.SearchByQueryNoCount(r, 1)
if err != nil {
util.SendError(w, err, 400)
return
}
created_as_time := time.Now()
if len(torrents) > 0 {
2017-05-08 19:26:29 +02:00
created_as_time = torrents[0].Date
}
feed := &feeds.Feed{
Title: "Nyaa Pantsu",
2017-05-07 15:19:36 +02:00
Link: &feeds.Link{Href: "https://" + config.WebAddress + "/"},
Created: created_as_time,
}
feed.Items = []*feeds.Item{}
feed.Items = make([]*feeds.Item, len(torrents))
for i, _ := range torrents {
torrent_json := torrents[i].ToJson()
feed.Items[i] = &feeds.Item{
// need a torrent view first
2017-05-08 19:26:29 +02:00
Id: "https://" + config.WebAddress + "/view/" + strconv.FormatUint(uint64(torrents[i].Id), 10),
Title: torrents[i].Name,
Link: &feeds.Link{Href: string(torrent_json.Magnet)},
Description: "",
2017-05-08 19:26:29 +02:00
Created: torrents[0].Date,
Updated: torrents[0].Date,
}
}
rss, err := feed.ToRss()
if err == nil {
w.Write([]byte(rss))
} else {
http.Error(w, err.Error(), http.StatusInternalServerError)
}
2017-05-07 15:19:36 +02:00
}