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/home_handler.go

86 lignes
2,1 Kio
Go
Brut Vue normale Historique

package router
import (
"html"
"net/http"
"strconv"
2017-05-17 07:58:40 +02:00
"github.com/NyaaPantsu/nyaa/cache"
"github.com/NyaaPantsu/nyaa/common"
"github.com/NyaaPantsu/nyaa/model"
"github.com/NyaaPantsu/nyaa/service/torrent"
"github.com/NyaaPantsu/nyaa/util"
"github.com/NyaaPantsu/nyaa/util/log"
2017-05-23 04:05:33 +02:00
msg "github.com/NyaaPantsu/nyaa/util/messages"
"github.com/gorilla/mux"
)
// HomeHandler : Controller for Home page, can have some query arguments
func HomeHandler(w http.ResponseWriter, r *http.Request) {
vars := mux.Vars(r)
page := vars["page"]
2017-05-23 04:05:33 +02:00
messages := msg.GetMessages(r)
deleteVar := r.URL.Query()["deleted"]
2017-05-27 03:50:31 +02:00
defer r.Body.Close()
// db params url
var err error
maxPerPage := 50
maxString := r.URL.Query().Get("max")
if maxString != "" {
maxPerPage, err = strconv.Atoi(maxString)
if !log.CheckError(err) {
maxPerPage = 50 // default Value maxPerPage
}
}
2017-05-24 09:11:13 +02:00
if deleteVar != nil {
2017-05-23 04:05:33 +02:00
messages.AddInfoTf("infos", "torrent_deleted", "")
}
pagenum := 1
if page != "" {
pagenum, err = strconv.Atoi(html.EscapeString(page))
if !log.CheckError(err) {
http.Error(w, err.Error(), http.StatusInternalServerError)
return
}
if pagenum <= 0 {
NotFoundHandler(w, r)
return
}
}
search := common.SearchParam{
Max: uint(maxPerPage),
Page: pagenum,
}
2017-05-11 15:01:53 +02:00
torrents, nbTorrents, err := cache.Impl.Get(search, func() ([]model.Torrent, int, error) {
torrents, nbTorrents, err := torrentService.GetAllTorrents(maxPerPage, maxPerPage*(pagenum-1))
if !log.CheckError(err) {
util.SendError(w, err, 400)
}
return torrents, nbTorrents, err
})
navigationTorrents := navigation{
TotalItem: nbTorrents,
MaxItemPerPage: maxPerPage,
CurrentPage: pagenum,
Route: "search_page",
}
2017-05-08 21:16:26 +02:00
torrentsJSON := model.TorrentsToJSON(torrents)
common := newCommonVariables(r)
common.Navigation = navigationTorrents
htv := modelListVbs{
commonTemplateVariables: common,
Models: torrentsJSON,
2017-05-24 09:11:13 +02:00
Infos: messages.GetAllInfos(),
}
err = homeTemplate.ExecuteTemplate(w, "index.html", htv)
if err != nil {
log.Errorf("HomeHandler(): %s", err)
}
}