cb2702630c
This commit removes usage of Categories queries in order to support postgres. The Categories in postgres is an enum instead of a table and we don't need to use the table in sqlite because the value are hardcoded in the html and are unlikely to ever change. This commit breaks the thumbnails in the index. Other functionality needs to be tested before merging.
50 lignes
1,2 Kio
Go
50 lignes
1,2 Kio
Go
package router
|
|
|
|
import (
|
|
"html"
|
|
"html/template"
|
|
"net/http"
|
|
"strconv"
|
|
"github.com/ewhal/nyaa/model"
|
|
"github.com/ewhal/nyaa/templates"
|
|
"github.com/ewhal/nyaa/util/search"
|
|
"github.com/gorilla/mux"
|
|
)
|
|
|
|
var searchTemplate = template.Must(template.New("home").Funcs(FuncMap).ParseFiles("templates/index.html", "templates/home.html"))
|
|
|
|
func SearchHandler(w http.ResponseWriter, r *http.Request) {
|
|
vars := mux.Vars(r)
|
|
page := vars["page"]
|
|
|
|
// db params url
|
|
pagenum, _ := strconv.Atoi(html.EscapeString(page))
|
|
if pagenum == 0 {
|
|
pagenum = 1
|
|
}
|
|
|
|
b := []model.TorrentsJson{}
|
|
|
|
search_param, torrents, nbTorrents := search.SearchByQuery(r, pagenum)
|
|
|
|
for i, _ := range torrents {
|
|
res := torrents[i].ToJson()
|
|
b = append(b, res)
|
|
}
|
|
|
|
navigationTorrents := templates.Navigation{nbTorrents, search_param.Max, pagenum, "search_page"}
|
|
searchForm := templates.SearchForm{
|
|
search_param.Query,
|
|
search_param.Status,
|
|
search_param.Category,
|
|
search_param.Sort,
|
|
search_param.Order,
|
|
false,
|
|
}
|
|
htv := HomeTemplateVariables{b, searchForm, navigationTorrents, r.URL, mux.CurrentRoute(r)}
|
|
|
|
err := searchTemplate.ExecuteTemplate(w, "index.html", htv)
|
|
if err != nil {
|
|
http.Error(w, err.Error(), http.StatusInternalServerError)
|
|
}
|
|
}
|