f22d11b35d
* Update mapping to be similar to TorrentJSON * Implement ES search for TorrentParam * Add seeders/leechers/completed to es index * Fix filter, use analyzer * Use ES for the search route * Add upload_id filtering with ES * Create/update ES index on torrent upload/update * Delete from ES index on Delete * Use ES everywhere, fallback to postgres query Use Elasticsearch to search the index whenever a call to searchByQuery is made. Big cleanup needed, but _it werks_. * Only fetch ids from ES, nothing else * Use ColumnUpdate instead of Save * Add FIXME/info to search * Template needs []TorrentJSON not []Torrent
208 lignes
5,5 Kio
Go
208 lignes
5,5 Kio
Go
package common
|
|
|
|
import (
|
|
"context"
|
|
"encoding/json"
|
|
"github.com/gorilla/mux"
|
|
elastic "gopkg.in/olivere/elastic.v5"
|
|
"net/http"
|
|
"strconv"
|
|
|
|
"github.com/NyaaPantsu/nyaa/config"
|
|
"github.com/NyaaPantsu/nyaa/db"
|
|
"github.com/NyaaPantsu/nyaa/model"
|
|
"github.com/NyaaPantsu/nyaa/util/log"
|
|
)
|
|
|
|
// TorrentParam defines all parameters that can be provided when searching for a torrent
|
|
type TorrentParam struct {
|
|
All bool // True means ignore everything but Max and Offset
|
|
Full bool // True means load all members
|
|
Order bool // True means ascending
|
|
Status Status
|
|
Sort SortMode
|
|
Category Category
|
|
Max uint32
|
|
Offset uint32
|
|
UserID uint32
|
|
TorrentID uint32
|
|
NotNull string // csv
|
|
Null string // csv
|
|
NameLike string // csv
|
|
}
|
|
|
|
// TODO Should probably return an error ?
|
|
func (p *TorrentParam) FromRequest(r *http.Request) {
|
|
var err error
|
|
|
|
nameLike := r.URL.Query().Get("q")
|
|
if nameLike == "" {
|
|
nameLike = "*"
|
|
}
|
|
|
|
page := mux.Vars(r)["page"]
|
|
pagenum, err := strconv.ParseUint(page, 10, 32)
|
|
if err != nil {
|
|
pagenum = 1
|
|
}
|
|
|
|
max, err := strconv.ParseUint(r.URL.Query().Get("max"), 10, 32)
|
|
if err != nil {
|
|
max = config.TorrentsPerPage
|
|
} else if max > config.MaxTorrentsPerPage {
|
|
max = config.MaxTorrentsPerPage
|
|
}
|
|
|
|
// FIXME 0 means no userId defined
|
|
userId, err := strconv.ParseUint(r.URL.Query().Get("userID"), 10, 32)
|
|
if err != nil {
|
|
userId = 0
|
|
}
|
|
|
|
var status Status
|
|
status.Parse(r.URL.Query().Get("s"))
|
|
|
|
var category Category
|
|
category.Parse(r.URL.Query().Get("c"))
|
|
|
|
var sortMode SortMode
|
|
sortMode.Parse(r.URL.Query().Get("sort"))
|
|
|
|
ascending := false
|
|
if r.URL.Query().Get("order") == "true" {
|
|
ascending = true
|
|
}
|
|
|
|
p.NameLike = nameLike
|
|
p.Offset = uint32(pagenum)
|
|
p.Max = uint32(max)
|
|
p.UserID = uint32(userId)
|
|
// TODO Use All
|
|
p.All = false
|
|
// TODO Use Full
|
|
p.Full = false
|
|
p.Order = ascending
|
|
p.Status = status
|
|
p.Sort = sortMode
|
|
p.Category = category
|
|
// FIXME 0 means no TorrentId defined
|
|
// Do we even need that ?
|
|
p.TorrentID = 0
|
|
}
|
|
|
|
// Builds a query string with for es query string query defined here
|
|
// https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl-query-string-query.html
|
|
func (p *TorrentParam) ToFilterQuery() string {
|
|
// Don't set sub category unless main category is set
|
|
query := ""
|
|
if p.Category.IsMainSet() {
|
|
query += "category:" + strconv.FormatInt(int64(p.Category.Main), 10)
|
|
if p.Category.IsSubSet() {
|
|
query += " sub_category:" + strconv.FormatInt(int64(p.Category.Sub), 10)
|
|
}
|
|
}
|
|
|
|
if p.UserID != 0 {
|
|
query += "uploader_id:" + strconv.FormatInt(int64(p.UserID), 10)
|
|
}
|
|
|
|
if p.Status != ShowAll {
|
|
query += " status:" + p.Status.ToString()
|
|
}
|
|
return query
|
|
}
|
|
|
|
/* Uses elasticsearch to find the torrents based on TorrentParam
|
|
* We decided to fetch only the ids from ES and then query these ids to the
|
|
* database
|
|
*/
|
|
func (p *TorrentParam) Find(client *elastic.Client) (int64, []model.Torrent, error) {
|
|
// TODO Why is it needed, what does it do ?
|
|
ctx := context.Background()
|
|
|
|
query := elastic.NewSimpleQueryStringQuery(p.NameLike).
|
|
Field("name").
|
|
Analyzer(config.DefaultElasticsearchAnalyzer).
|
|
DefaultOperator("AND")
|
|
|
|
fsc := elastic.NewFetchSourceContext(true).
|
|
Include("id")
|
|
|
|
// TODO Find a better way to keep in sync with mapping in ansible
|
|
search := client.Search().
|
|
Index(config.DefaultElasticsearchIndex).
|
|
Query(query).
|
|
Type(config.DefaultElasticsearchType).
|
|
From(int((p.Offset-1)*p.Max)).
|
|
Size(int(p.Max)).
|
|
Sort(p.Sort.ToESField(), p.Order).
|
|
Sort("_score", false). // Don't put _score before the field sort, it messes with the sorting
|
|
FetchSourceContext(fsc)
|
|
|
|
filterQueryString := p.ToFilterQuery()
|
|
if filterQueryString != "" {
|
|
filterQuery := elastic.NewQueryStringQuery(filterQueryString).
|
|
DefaultOperator("AND")
|
|
search = search.PostFilter(filterQuery)
|
|
}
|
|
|
|
result, err := search.Do(ctx)
|
|
if err != nil {
|
|
return 0, nil, err
|
|
}
|
|
|
|
log.Infof("Query '%s' took %d milliseconds.", p.NameLike, result.TookInMillis)
|
|
log.Infof("Amount of results %d.", result.TotalHits())
|
|
|
|
/* TODO Cleanup this giant mess
|
|
* The raw query is used because we need to preserve the order of the id's
|
|
* in the IN clause, so we can't just do
|
|
* select * from torrents where torrent_id IN (list_of_ids)
|
|
* This query is said to work on postgres 9.4+
|
|
*/
|
|
{
|
|
// Temporary struct to hold the id
|
|
// INFO We are not using Hits.Id because the id in the index might not
|
|
// correspond to the id in the database later on.
|
|
type TId struct {
|
|
Id string
|
|
}
|
|
var tid TId
|
|
var torrents []model.Torrent
|
|
if len(result.Hits.Hits) > 0 {
|
|
torrents = make([]model.Torrent, len(result.Hits.Hits))
|
|
hits := result.Hits.Hits
|
|
// Building a string of the form {id1,id2,id3}
|
|
source, _ := hits[0].Source.MarshalJSON()
|
|
json.Unmarshal(source, &tid)
|
|
idsToString := "{" + tid.Id
|
|
for _, t := range hits[1:] {
|
|
source, _ = t.Source.MarshalJSON()
|
|
json.Unmarshal(source, &tid)
|
|
idsToString += "," + tid.Id
|
|
}
|
|
idsToString += "}"
|
|
db.ORM.Raw("SELECT * FROM " + config.TorrentsTableName +
|
|
" JOIN unnest('" + idsToString + "'::int[]) " +
|
|
" WITH ORDINALITY t(torrent_id, ord) USING (torrent_id) ORDER BY t.ord").Find(&torrents)
|
|
}
|
|
return result.TotalHits(), torrents, nil
|
|
}
|
|
|
|
}
|
|
|
|
func (p *TorrentParam) Clone() TorrentParam {
|
|
return TorrentParam{
|
|
Order: p.Order,
|
|
Status: p.Status,
|
|
Sort: p.Sort,
|
|
Category: p.Category,
|
|
Max: p.Max,
|
|
Offset: p.Offset,
|
|
UserID: p.UserID,
|
|
TorrentID: p.TorrentID,
|
|
NotNull: p.NotNull,
|
|
Null: p.Null,
|
|
NameLike: p.NameLike,
|
|
}
|
|
}
|