2021-04-19 21:25:34 +02:00
|
|
|
package server
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"encoding/hex"
|
2021-06-11 14:34:27 +02:00
|
|
|
"encoding/json"
|
|
|
|
"fmt"
|
2021-06-18 06:01:47 +02:00
|
|
|
"log"
|
|
|
|
"math"
|
|
|
|
"reflect"
|
|
|
|
"strings"
|
|
|
|
|
|
|
|
//"github.com/lbryio/hub/schema"
|
|
|
|
|
2021-05-16 05:13:14 +02:00
|
|
|
"github.com/btcsuite/btcutil/base58"
|
2021-05-31 20:53:08 +02:00
|
|
|
"github.com/golang/protobuf/ptypes/wrappers"
|
|
|
|
pb "github.com/lbryio/hub/protobuf/go"
|
2021-06-04 07:56:50 +02:00
|
|
|
"github.com/lbryio/hub/util"
|
2021-04-19 21:25:34 +02:00
|
|
|
"github.com/olivere/elastic/v7"
|
2021-05-31 03:34:57 +02:00
|
|
|
"golang.org/x/text/cases"
|
2021-06-01 04:19:10 +02:00
|
|
|
"golang.org/x/text/language"
|
2021-06-07 22:57:41 +02:00
|
|
|
"gopkg.in/karalabe/cookiejar.v1/collections/deque"
|
2021-04-19 21:25:34 +02:00
|
|
|
)
|
|
|
|
|
2021-06-18 06:01:47 +02:00
|
|
|
const DefaultSearchSize = 1000
|
|
|
|
|
2021-04-19 21:25:34 +02:00
|
|
|
type record struct {
|
2021-06-10 02:04:06 +02:00
|
|
|
Txid string `json:"tx_id"`
|
|
|
|
Nout uint32 `json:"tx_nout"`
|
|
|
|
Height uint32 `json:"height"`
|
|
|
|
ClaimId string `json:"claim_id"`
|
|
|
|
ChannelId string `json:"channel_id"`
|
|
|
|
RepostedClaimId string `json:"reposted_claim_id"`
|
|
|
|
CensorType uint32 `json:"censor_type"`
|
|
|
|
CensoringChannelHash string `json:"censoring_channel_hash"`
|
|
|
|
ShortUrl string `json:"short_url"`
|
|
|
|
CanonicalUrl string `json:"canonical_url"`
|
|
|
|
IsControlling bool `json:"is_controlling"`
|
2021-06-12 00:18:17 +02:00
|
|
|
TakeOverHeight uint32 `json:"last_take_over_height"`
|
2021-06-10 02:04:06 +02:00
|
|
|
CreationHeight uint32 `json:"creation_height"`
|
|
|
|
ActivationHeight uint32 `json:"activation_height"`
|
|
|
|
ExpirationHeight uint32 `json:"expiration_height"`
|
|
|
|
ClaimsInChannel uint32 `json:"claims_in_channel"`
|
|
|
|
Reposted uint32 `json:"reposted"`
|
|
|
|
EffectiveAmount uint64 `json:"effective_amount"`
|
|
|
|
SupportAmount uint64 `json:"support_amount"`
|
|
|
|
TrendingGroup uint32 `json:"trending_group"`
|
|
|
|
TrendingMixed float32 `json:"trending_mixed"`
|
|
|
|
TrendingLocal float32 `json:"trending_local"`
|
|
|
|
TrendingGlobal float32 `json:"trending_global"`
|
|
|
|
Name string `json:"name"`
|
2021-04-19 21:25:34 +02:00
|
|
|
}
|
|
|
|
|
2021-05-18 12:02:55 +02:00
|
|
|
type orderField struct {
|
|
|
|
Field string
|
2021-06-06 06:57:37 +02:00
|
|
|
IsAsc bool
|
2021-05-18 12:02:55 +02:00
|
|
|
}
|
2021-05-13 22:06:19 +02:00
|
|
|
|
2021-05-16 05:13:14 +02:00
|
|
|
func StrArrToInterface(arr []string) []interface{} {
|
|
|
|
searchVals := make([]interface{}, len(arr))
|
|
|
|
for i := 0; i < len(arr); i++ {
|
|
|
|
searchVals[i] = arr[i]
|
|
|
|
}
|
|
|
|
return searchVals
|
|
|
|
}
|
|
|
|
|
2021-06-18 06:01:47 +02:00
|
|
|
func AddTermsField(q *elastic.BoolQuery, arr []string, name string) *elastic.BoolQuery {
|
|
|
|
if len(arr) == 0 {
|
|
|
|
return q
|
2021-05-16 05:13:14 +02:00
|
|
|
}
|
2021-06-18 06:01:47 +02:00
|
|
|
searchVals := StrArrToInterface(arr)
|
|
|
|
return q.Must(elastic.NewTermsQuery(name, searchVals...))
|
2021-05-16 05:13:14 +02:00
|
|
|
}
|
|
|
|
|
2021-06-18 06:01:47 +02:00
|
|
|
func AddIndividualTermFields(q *elastic.BoolQuery, arr []string, name string, invert bool) *elastic.BoolQuery {
|
|
|
|
for _, x := range arr {
|
|
|
|
if invert {
|
|
|
|
q = q.MustNot(elastic.NewTermQuery(name, x))
|
|
|
|
} else {
|
|
|
|
q = q.Must(elastic.NewTermQuery(name, x))
|
2021-06-01 04:19:10 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return q
|
|
|
|
}
|
|
|
|
|
2021-06-18 06:01:47 +02:00
|
|
|
func AddRangeField(q *elastic.BoolQuery, rq *pb.RangeField, name string) *elastic.BoolQuery {
|
2021-05-16 05:13:14 +02:00
|
|
|
if rq == nil {
|
|
|
|
return q
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(rq.Value) > 1 {
|
2021-05-18 12:02:55 +02:00
|
|
|
if rq.Op != pb.RangeField_EQ {
|
2021-05-16 05:13:14 +02:00
|
|
|
return q
|
|
|
|
}
|
2021-06-18 06:01:47 +02:00
|
|
|
return AddTermsField(q, rq.Value, name)
|
2021-05-16 05:13:14 +02:00
|
|
|
}
|
2021-05-18 12:02:55 +02:00
|
|
|
if rq.Op == pb.RangeField_EQ {
|
2021-06-03 06:31:58 +02:00
|
|
|
return q.Must(elastic.NewTermQuery(name, rq.Value[0]))
|
2021-05-18 12:02:55 +02:00
|
|
|
} else if rq.Op == pb.RangeField_LT {
|
2021-06-01 04:19:10 +02:00
|
|
|
return q.Must(elastic.NewRangeQuery(name).Lt(rq.Value[0]))
|
2021-05-18 12:02:55 +02:00
|
|
|
} else if rq.Op == pb.RangeField_LTE {
|
2021-06-01 04:19:10 +02:00
|
|
|
return q.Must(elastic.NewRangeQuery(name).Lte(rq.Value[0]))
|
2021-05-18 12:02:55 +02:00
|
|
|
} else if rq.Op == pb.RangeField_GT {
|
2021-06-01 04:19:10 +02:00
|
|
|
return q.Must(elastic.NewRangeQuery(name).Gt(rq.Value[0]))
|
2021-05-18 12:02:55 +02:00
|
|
|
} else { // pb.RangeField_GTE
|
2021-06-01 04:19:10 +02:00
|
|
|
return q.Must(elastic.NewRangeQuery(name).Gte(rq.Value[0]))
|
2021-05-16 05:13:14 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-06-18 06:01:47 +02:00
|
|
|
func AddInvertibleField(q *elastic.BoolQuery, field *pb.InvertibleField, name string) *elastic.BoolQuery {
|
2021-05-18 12:02:55 +02:00
|
|
|
if field == nil {
|
|
|
|
return q
|
|
|
|
}
|
|
|
|
searchVals := StrArrToInterface(field.Value)
|
|
|
|
if field.Invert {
|
2021-06-01 04:19:10 +02:00
|
|
|
q = q.MustNot(elastic.NewTermsQuery(name, searchVals...))
|
|
|
|
if name == "channel_id.keyword" {
|
|
|
|
q = q.MustNot(elastic.NewTermsQuery("_id", searchVals...))
|
|
|
|
}
|
|
|
|
return q
|
2021-05-18 12:02:55 +02:00
|
|
|
} else {
|
|
|
|
return q.Must(elastic.NewTermsQuery(name, searchVals...))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-06-11 14:34:27 +02:00
|
|
|
// Search /*
|
|
|
|
// Search logic is as follows:
|
|
|
|
// 1) Setup query with params given
|
|
|
|
// 2) Do query with limit of 1000
|
|
|
|
// 3) remove blocked content (these are returned separately)
|
|
|
|
// 4) remove duplicates (these are not returned)
|
|
|
|
// 5) limit claims per channel logic
|
|
|
|
// 6) get claims referenced by reposts
|
|
|
|
// 7) get channels references by claims and repost claims
|
|
|
|
// 8) return streams referenced by repost and all channel referenced in extra_txos
|
|
|
|
//*/
|
2021-06-04 07:56:50 +02:00
|
|
|
func (s *Server) Search(ctx context.Context, in *pb.SearchRequest) (*pb.Outputs, error) {
|
|
|
|
var client *elastic.Client = nil
|
|
|
|
if s.EsClient == nil {
|
2021-06-04 18:38:17 +02:00
|
|
|
esUrl := s.Args.EsHost + ":" + s.Args.EsPort
|
|
|
|
tmpClient, err := elastic.NewClient(elastic.SetURL(esUrl), elastic.SetSniff(false))
|
2021-06-04 07:56:50 +02:00
|
|
|
if err != nil {
|
2021-06-17 01:42:11 +02:00
|
|
|
log.Println(err)
|
2021-06-04 07:56:50 +02:00
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
client = tmpClient
|
|
|
|
s.EsClient = client
|
|
|
|
} else {
|
|
|
|
client = s.EsClient
|
|
|
|
}
|
|
|
|
|
2021-06-18 06:01:47 +02:00
|
|
|
var from = 0
|
|
|
|
var pageSize = 10
|
|
|
|
var orderBy []orderField
|
|
|
|
var searchIndices = []string{}
|
|
|
|
|
|
|
|
q := elastic.NewBoolQuery()
|
|
|
|
|
|
|
|
q = s.setupEsQuery(q, in, &pageSize, &from, &orderBy)
|
|
|
|
|
|
|
|
if s.Args.Dev && len(in.SearchIndices) == 0 {
|
|
|
|
// If we're running in dev mode ignore the mainnet claims index
|
|
|
|
indices, err := client.IndexNames()
|
|
|
|
if err != nil {
|
|
|
|
log.Fatalln(err)
|
|
|
|
}
|
|
|
|
var numIndices = len(indices)
|
|
|
|
searchIndices = make([]string, 0, numIndices)
|
|
|
|
for i := 0; i < numIndices; i++ {
|
|
|
|
if indices[i] == "claims" {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
searchIndices = append(searchIndices, indices[i])
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(in.SearchIndices) > 0 {
|
|
|
|
searchIndices = in.SearchIndices
|
|
|
|
}
|
|
|
|
|
|
|
|
fsc := elastic.NewFetchSourceContext(true).Exclude("description", "title")
|
|
|
|
search := client.Search().
|
|
|
|
Index(searchIndices...).
|
|
|
|
FetchSourceContext(fsc).
|
|
|
|
Query(q). // specify the query
|
|
|
|
From(0).Size(DefaultSearchSize)
|
|
|
|
|
|
|
|
|
|
|
|
for _, x := range orderBy {
|
|
|
|
search = search.Sort(x.Field, x.IsAsc)
|
|
|
|
}
|
|
|
|
|
|
|
|
searchResult, err := search.Do(ctx) // execute
|
|
|
|
if err != nil {
|
|
|
|
log.Println(err)
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
log.Printf("%s: found %d results in %dms\n", in.Text, len(searchResult.Hits.Hits), searchResult.TookInMillis)
|
|
|
|
|
|
|
|
txos, extraTxos, blocked := s.postProcessResults(ctx, client, searchResult, in, pageSize, from, searchIndices)
|
|
|
|
|
|
|
|
if in.NoTotals != nil && !in.NoTotals.Value {
|
|
|
|
return &pb.Outputs{
|
|
|
|
Txos: txos,
|
|
|
|
ExtraTxos: extraTxos,
|
|
|
|
Offset: uint32(int64(from) + searchResult.TotalHits()),
|
|
|
|
Blocked: blocked,
|
|
|
|
}, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
var blockedTotal uint32 = 0
|
|
|
|
for _, b := range blocked {
|
|
|
|
blockedTotal += b.Count
|
|
|
|
}
|
|
|
|
return &pb.Outputs{
|
|
|
|
Txos: txos,
|
|
|
|
ExtraTxos: extraTxos,
|
|
|
|
Total: uint32(searchResult.TotalHits()),
|
|
|
|
Offset: uint32(int64(from) + searchResult.TotalHits()),
|
|
|
|
Blocked: blocked,
|
|
|
|
BlockedTotal: blockedTotal,
|
|
|
|
}, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *Server) normalizeTag(tag string) string {
|
|
|
|
c := cases.Lower(language.English)
|
|
|
|
res := s.MultiSpaceRe.ReplaceAll(
|
|
|
|
s.WeirdCharsRe.ReplaceAll(
|
|
|
|
[]byte(strings.TrimSpace(strings.Replace(c.String(tag), "'", "", -1))),
|
|
|
|
[]byte(" ")),
|
|
|
|
[]byte(" "))
|
|
|
|
|
|
|
|
return string(res)
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (s *Server) cleanTags(tags []string) []string {
|
|
|
|
cleanedTags := make([]string, len(tags))
|
|
|
|
for i, tag := range tags {
|
|
|
|
cleanedTags[i] = s.normalizeTag(tag)
|
|
|
|
}
|
|
|
|
return cleanedTags
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *Server) postProcessResults(
|
|
|
|
ctx context.Context,
|
|
|
|
client *elastic.Client,
|
|
|
|
searchResult *elastic.SearchResult,
|
|
|
|
in *pb.SearchRequest,
|
|
|
|
pageSize int,
|
|
|
|
from int,
|
|
|
|
searchIndices []string) ([]*pb.Output, []*pb.Output, []*pb.Blocked) {
|
|
|
|
var txos []*pb.Output
|
|
|
|
var records []*record
|
|
|
|
var blockedRecords []*record
|
|
|
|
var blocked []*pb.Blocked
|
|
|
|
var blockedMap map[string]*pb.Blocked
|
|
|
|
|
|
|
|
records = make([]*record, 0, searchResult.TotalHits())
|
|
|
|
|
|
|
|
var r record
|
|
|
|
for _, item := range searchResult.Each(reflect.TypeOf(r)) {
|
|
|
|
if t, ok := item.(record); ok {
|
|
|
|
records = append(records, &t)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//printJsonFullResults(searchResult)
|
|
|
|
records, blockedRecords, blockedMap = removeBlocked(records)
|
|
|
|
|
|
|
|
if in.RemoveDuplicates != nil {
|
|
|
|
records = removeDuplicates(records)
|
|
|
|
}
|
|
|
|
|
|
|
|
if in.LimitClaimsPerChannel != nil && in.LimitClaimsPerChannel.Value > 0 {
|
|
|
|
records = searchAhead(records, pageSize, int(in.LimitClaimsPerChannel.Value))
|
|
|
|
}
|
|
|
|
|
|
|
|
finalLength := int(math.Min(float64(len(records)), float64(pageSize)))
|
|
|
|
txos = make([]*pb.Output, 0, finalLength)
|
|
|
|
var j = 0
|
|
|
|
for i := from; i < from + finalLength && i < len(records) && j < finalLength; i++ {
|
|
|
|
t := records[i]
|
|
|
|
res := t.recordToOutput()
|
|
|
|
txos = append(txos, res)
|
|
|
|
j += 1
|
|
|
|
}
|
|
|
|
|
|
|
|
//printJsonFullRecords(blockedRecords)
|
|
|
|
|
|
|
|
//Get claims for reposts
|
|
|
|
repostClaims, repostRecords, repostedMap := getClaimsForReposts(ctx, client, records, searchIndices)
|
|
|
|
//get all unique channels
|
|
|
|
channels, channelMap := getUniqueChannels(append(append(records, repostRecords...), blockedRecords...), client, ctx, searchIndices)
|
|
|
|
//add these to extra txos
|
|
|
|
extraTxos := append(repostClaims, channels...)
|
|
|
|
|
|
|
|
//Fill in channel / repost data for txos and blocked
|
|
|
|
for i, txo := range txos {
|
|
|
|
channel, cOk := channelMap[records[i].ChannelId]
|
|
|
|
repostClaim, rOk := repostedMap[records[i].RepostedClaimId]
|
|
|
|
if cOk {
|
|
|
|
txo.GetClaim().Channel = channel
|
|
|
|
}
|
|
|
|
if rOk {
|
|
|
|
txo.GetClaim().Repost = repostClaim
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
blocked = make([]*pb.Blocked, 0, len(blockedMap))
|
|
|
|
for k, v := range blockedMap {
|
|
|
|
if channel, ok := channelMap[k]; ok {
|
|
|
|
v.Channel = channel
|
|
|
|
}
|
|
|
|
blocked = append(blocked, v)
|
|
|
|
}
|
|
|
|
|
|
|
|
return txos, extraTxos, blocked
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *Server) setupEsQuery(
|
|
|
|
q *elastic.BoolQuery,
|
|
|
|
in *pb.SearchRequest,
|
|
|
|
pageSize *int,
|
2021-06-18 06:34:22 +02:00
|
|
|
from *int,
|
2021-06-18 06:01:47 +02:00
|
|
|
orderBy *[]orderField) *elastic.BoolQuery {
|
2021-05-13 22:06:19 +02:00
|
|
|
claimTypes := map[string]int {
|
|
|
|
"stream": 1,
|
|
|
|
"channel": 2,
|
|
|
|
"repost": 3,
|
|
|
|
"collection": 4,
|
|
|
|
}
|
2021-05-18 12:02:55 +02:00
|
|
|
|
|
|
|
streamTypes := map[string]int {
|
|
|
|
"video": 1,
|
|
|
|
"audio": 2,
|
|
|
|
"image": 3,
|
|
|
|
"document": 4,
|
|
|
|
"binary": 5,
|
|
|
|
"model": 6,
|
|
|
|
}
|
|
|
|
|
|
|
|
replacements := map[string]string {
|
|
|
|
"name": "normalized",
|
|
|
|
"txid": "tx_id",
|
|
|
|
"claim_hash": "_id",
|
|
|
|
}
|
|
|
|
|
|
|
|
textFields := map[string]bool {
|
|
|
|
"author": true,
|
|
|
|
"canonical_url": true,
|
|
|
|
"channel_id": true,
|
|
|
|
"claim_name": true,
|
|
|
|
"description": true,
|
|
|
|
"claim_id": true,
|
|
|
|
"media_type": true,
|
|
|
|
"normalized": true,
|
|
|
|
"public_key_bytes": true,
|
|
|
|
"public_key_hash": true,
|
|
|
|
"short_url": true,
|
|
|
|
"signature": true,
|
|
|
|
"signature_digest": true,
|
|
|
|
"stream_type": true,
|
|
|
|
"title": true,
|
|
|
|
"tx_id": true,
|
|
|
|
"fee_currency": true,
|
|
|
|
"reposted_claim_id": true,
|
|
|
|
"tags": true,
|
|
|
|
}
|
|
|
|
|
2021-05-31 20:53:08 +02:00
|
|
|
if in.IsControlling != nil {
|
|
|
|
q = q.Must(elastic.NewTermQuery("is_controlling", in.IsControlling.Value))
|
|
|
|
}
|
|
|
|
|
|
|
|
if in.AmountOrder != nil {
|
|
|
|
in.Limit.Value = 1
|
2021-05-18 12:02:55 +02:00
|
|
|
in.OrderBy = []string{"effective_amount"}
|
2021-05-31 20:53:08 +02:00
|
|
|
in.Offset = &wrappers.Int32Value{Value: in.AmountOrder.Value - 1}
|
2021-05-13 22:06:19 +02:00
|
|
|
}
|
|
|
|
|
2021-05-31 20:53:08 +02:00
|
|
|
if in.Limit != nil {
|
2021-06-18 06:01:47 +02:00
|
|
|
*pageSize = int(in.Limit.Value)
|
2021-05-18 12:02:55 +02:00
|
|
|
}
|
|
|
|
|
2021-05-31 20:53:08 +02:00
|
|
|
if in.Offset != nil {
|
2021-06-18 06:01:47 +02:00
|
|
|
*from = int(in.Offset.Value)
|
2021-05-18 12:02:55 +02:00
|
|
|
}
|
|
|
|
|
2021-05-25 05:28:43 +02:00
|
|
|
if len(in.Name) > 0 {
|
2021-05-31 03:34:57 +02:00
|
|
|
normalized := make([]string, len(in.Name))
|
|
|
|
for i := 0; i < len(in.Name); i++ {
|
2021-06-04 07:56:50 +02:00
|
|
|
normalized[i] = util.Normalize(in.Name[i])
|
2021-05-31 03:34:57 +02:00
|
|
|
}
|
|
|
|
in.Normalized = normalized
|
2021-05-25 05:28:43 +02:00
|
|
|
}
|
|
|
|
|
2021-05-18 12:02:55 +02:00
|
|
|
if len(in.OrderBy) > 0 {
|
|
|
|
for _, x := range in.OrderBy {
|
|
|
|
var toAppend string
|
2021-06-06 06:57:37 +02:00
|
|
|
var isAsc = false
|
2021-05-18 12:02:55 +02:00
|
|
|
if x[0] == '^' {
|
2021-06-06 06:57:37 +02:00
|
|
|
isAsc = true
|
2021-05-18 12:02:55 +02:00
|
|
|
x = x[1:]
|
|
|
|
}
|
|
|
|
if _, ok := replacements[x]; ok {
|
|
|
|
toAppend = replacements[x]
|
2021-05-31 20:53:08 +02:00
|
|
|
} else {
|
|
|
|
toAppend = x
|
2021-05-18 12:02:55 +02:00
|
|
|
}
|
2021-05-31 20:53:08 +02:00
|
|
|
|
|
|
|
if _, ok := textFields[toAppend]; ok {
|
|
|
|
toAppend = toAppend + ".keyword"
|
2021-05-18 12:02:55 +02:00
|
|
|
}
|
2021-06-18 06:01:47 +02:00
|
|
|
*orderBy = append(*orderBy, orderField{toAppend, isAsc})
|
2021-06-06 06:57:37 +02:00
|
|
|
}
|
2021-05-18 12:02:55 +02:00
|
|
|
}
|
|
|
|
|
2021-05-13 22:06:19 +02:00
|
|
|
if len(in.ClaimType) > 0 {
|
|
|
|
searchVals := make([]interface{}, len(in.ClaimType))
|
|
|
|
for i := 0; i < len(in.ClaimType); i++ {
|
|
|
|
searchVals[i] = claimTypes[in.ClaimType[i]]
|
|
|
|
}
|
|
|
|
q = q.Must(elastic.NewTermsQuery("claim_type", searchVals...))
|
|
|
|
}
|
|
|
|
|
2021-05-18 12:02:55 +02:00
|
|
|
if len(in.StreamType) > 0 {
|
|
|
|
searchVals := make([]interface{}, len(in.StreamType))
|
|
|
|
for i := 0; i < len(in.StreamType); i++ {
|
|
|
|
searchVals[i] = streamTypes[in.StreamType[i]]
|
|
|
|
}
|
2021-06-01 04:19:10 +02:00
|
|
|
q = q.Must(elastic.NewTermsQuery("stream_type", searchVals...))
|
2021-05-18 12:02:55 +02:00
|
|
|
}
|
|
|
|
|
2021-05-13 22:06:19 +02:00
|
|
|
if len(in.XId) > 0 {
|
|
|
|
searchVals := make([]interface{}, len(in.XId))
|
|
|
|
for i := 0; i < len(in.XId); i++ {
|
2021-06-04 07:56:50 +02:00
|
|
|
util.ReverseBytes(in.XId[i])
|
2021-05-13 22:06:19 +02:00
|
|
|
searchVals[i] = hex.Dump(in.XId[i])
|
|
|
|
}
|
2021-05-16 05:13:14 +02:00
|
|
|
if len(in.XId) == 1 && len(in.XId[0]) < 20 {
|
|
|
|
q = q.Must(elastic.NewPrefixQuery("_id", string(in.XId[0])))
|
|
|
|
} else {
|
|
|
|
q = q.Must(elastic.NewTermsQuery("_id", searchVals...))
|
|
|
|
}
|
2021-05-13 22:06:19 +02:00
|
|
|
}
|
|
|
|
|
2021-05-16 05:13:14 +02:00
|
|
|
|
2021-05-18 12:02:55 +02:00
|
|
|
if in.ClaimId != nil {
|
|
|
|
searchVals := StrArrToInterface(in.ClaimId.Value)
|
|
|
|
if len(in.ClaimId.Value) == 1 && len(in.ClaimId.Value[0]) < 20 {
|
|
|
|
if in.ClaimId.Invert {
|
|
|
|
q = q.MustNot(elastic.NewPrefixQuery("claim_id.keyword", in.ClaimId.Value[0]))
|
|
|
|
} else {
|
|
|
|
q = q.Must(elastic.NewPrefixQuery("claim_id.keyword", in.ClaimId.Value[0]))
|
|
|
|
}
|
2021-05-16 05:13:14 +02:00
|
|
|
} else {
|
2021-05-18 12:02:55 +02:00
|
|
|
if in.ClaimId.Invert {
|
|
|
|
q = q.MustNot(elastic.NewTermsQuery("claim_id.keyword", searchVals...))
|
|
|
|
} else {
|
|
|
|
q = q.Must(elastic.NewTermsQuery("claim_id.keyword", searchVals...))
|
|
|
|
}
|
2021-05-16 05:13:14 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if in.PublicKeyId != "" {
|
2021-05-31 20:53:08 +02:00
|
|
|
value := hex.EncodeToString(base58.Decode(in.PublicKeyId)[1:21])
|
2021-05-16 05:13:14 +02:00
|
|
|
q = q.Must(elastic.NewTermQuery("public_key_hash.keyword", value))
|
|
|
|
}
|
|
|
|
|
2021-05-31 20:53:08 +02:00
|
|
|
if in.HasChannelSignature != nil && in.HasChannelSignature.Value {
|
|
|
|
q = q.Must(elastic.NewExistsQuery("signature_digest"))
|
|
|
|
if in.SignatureValid != nil {
|
|
|
|
q = q.Must(elastic.NewTermQuery("signature_valid", in.SignatureValid.Value))
|
2021-05-18 12:02:55 +02:00
|
|
|
}
|
2021-05-31 20:53:08 +02:00
|
|
|
} else if in.SignatureValid != nil {
|
2021-05-18 12:02:55 +02:00
|
|
|
q = q.MinimumNumberShouldMatch(1)
|
|
|
|
q = q.Should(elastic.NewBoolQuery().MustNot(elastic.NewExistsQuery("signature_digest")))
|
2021-05-31 20:53:08 +02:00
|
|
|
q = q.Should(elastic.NewTermQuery("signature_valid", in.SignatureValid.Value))
|
2021-05-18 12:02:55 +02:00
|
|
|
}
|
|
|
|
|
2021-05-31 20:53:08 +02:00
|
|
|
if in.HasSource != nil {
|
2021-05-18 12:02:55 +02:00
|
|
|
q = q.MinimumNumberShouldMatch(1)
|
2021-05-31 20:53:08 +02:00
|
|
|
isStreamOrRepost := elastic.NewTermsQuery("claim_type", claimTypes["stream"], claimTypes["repost"])
|
|
|
|
q = q.Should(elastic.NewBoolQuery().Must(isStreamOrRepost, elastic.NewMatchQuery("has_source", in.HasSource.Value)))
|
|
|
|
q = q.Should(elastic.NewBoolQuery().MustNot(isStreamOrRepost))
|
2021-05-18 12:02:55 +02:00
|
|
|
q = q.Should(elastic.NewBoolQuery().Must(elastic.NewTermQuery("reposted_claim_type", claimTypes["channel"])))
|
|
|
|
}
|
|
|
|
|
2021-05-31 20:53:08 +02:00
|
|
|
if in.TxNout != nil {
|
|
|
|
q = q.Must(elastic.NewTermQuery("tx_nout", in.TxNout.Value))
|
|
|
|
}
|
2021-05-18 12:02:55 +02:00
|
|
|
|
2021-06-18 06:01:47 +02:00
|
|
|
q = AddTermsField(q, in.PublicKeyHash, "public_key_hash.keyword")
|
|
|
|
q = AddTermsField(q, in.Author, "author.keyword")
|
|
|
|
q = AddTermsField(q, in.Title, "title.keyword")
|
|
|
|
q = AddTermsField(q, in.CanonicalUrl, "canonical_url.keyword")
|
|
|
|
q = AddTermsField(q, in.ClaimName, "claim_name.keyword")
|
|
|
|
q = AddTermsField(q, in.Description, "description.keyword")
|
|
|
|
q = AddTermsField(q, in.MediaType, "media_type.keyword")
|
|
|
|
q = AddTermsField(q, in.Normalized, "normalized.keyword")
|
|
|
|
q = AddTermsField(q, in.PublicKeyBytes, "public_key_bytes.keyword")
|
|
|
|
q = AddTermsField(q, in.ShortUrl, "short_url.keyword")
|
|
|
|
q = AddTermsField(q, in.Signature, "signature.keyword")
|
|
|
|
q = AddTermsField(q, in.SignatureDigest, "signature_digest.keyword")
|
|
|
|
q = AddTermsField(q, in.TxId, "tx_id.keyword")
|
|
|
|
q = AddTermsField(q, in.FeeCurrency, "fee_currency.keyword")
|
|
|
|
q = AddTermsField(q, in.RepostedClaimId, "reposted_claim_id.keyword")
|
|
|
|
|
|
|
|
|
|
|
|
q = AddTermsField(q, s.cleanTags(in.AnyTags), "tags.keyword")
|
|
|
|
q = AddIndividualTermFields(q, s.cleanTags(in.AllTags), "tags.keyword", false)
|
|
|
|
q = AddIndividualTermFields(q, s.cleanTags(in.NotTags), "tags.keyword", true)
|
|
|
|
q = AddTermsField(q, in.AnyLanguages, "languages")
|
|
|
|
q = AddIndividualTermFields(q, in.AllLanguages, "languages", false)
|
|
|
|
|
|
|
|
q = AddInvertibleField(q, in.ChannelId, "channel_id.keyword")
|
|
|
|
q = AddInvertibleField(q, in.ChannelIds, "channel_id.keyword")
|
|
|
|
|
|
|
|
|
|
|
|
q = AddRangeField(q, in.TxPosition, "tx_position")
|
|
|
|
q = AddRangeField(q, in.Amount, "amount")
|
|
|
|
q = AddRangeField(q, in.Timestamp, "timestamp")
|
|
|
|
q = AddRangeField(q, in.CreationTimestamp, "creation_timestamp")
|
|
|
|
q = AddRangeField(q, in.Height, "height")
|
|
|
|
q = AddRangeField(q, in.CreationHeight, "creation_height")
|
|
|
|
q = AddRangeField(q, in.ActivationHeight, "activation_height")
|
|
|
|
q = AddRangeField(q, in.ExpirationHeight, "expiration_height")
|
|
|
|
q = AddRangeField(q, in.ReleaseTime, "release_time")
|
|
|
|
q = AddRangeField(q, in.Reposted, "reposted")
|
|
|
|
q = AddRangeField(q, in.FeeAmount, "fee_amount")
|
|
|
|
q = AddRangeField(q, in.Duration, "duration")
|
|
|
|
q = AddRangeField(q, in.CensorType, "censor_type")
|
|
|
|
q = AddRangeField(q, in.ChannelJoin, "channel_join")
|
|
|
|
q = AddRangeField(q, in.EffectiveAmount, "effective_amount")
|
|
|
|
q = AddRangeField(q, in.SupportAmount, "support_amount")
|
|
|
|
q = AddRangeField(q, in.TrendingGroup, "trending_group")
|
|
|
|
q = AddRangeField(q, in.TrendingMixed, "trending_mixed")
|
|
|
|
q = AddRangeField(q, in.TrendingLocal, "trending_local")
|
|
|
|
q = AddRangeField(q, in.TrendingGlobal, "trending_global")
|
2021-05-16 05:13:14 +02:00
|
|
|
|
2021-05-31 20:53:08 +02:00
|
|
|
if in.Text != "" {
|
|
|
|
textQuery := elastic.NewSimpleQueryStringQuery(in.Text).
|
2021-05-13 22:06:19 +02:00
|
|
|
FieldWithBoost("claim_name", 4).
|
|
|
|
FieldWithBoost("channel_name", 8).
|
|
|
|
FieldWithBoost("title", 1).
|
|
|
|
FieldWithBoost("description", 0.5).
|
|
|
|
FieldWithBoost("author", 1).
|
|
|
|
FieldWithBoost("tags", 0.5)
|
|
|
|
|
|
|
|
q = q.Must(textQuery)
|
|
|
|
}
|
|
|
|
|
2021-06-18 06:01:47 +02:00
|
|
|
return q
|
2021-04-19 21:25:34 +02:00
|
|
|
}
|
2021-06-07 22:57:41 +02:00
|
|
|
|
2021-06-17 18:15:05 +02:00
|
|
|
func getUniqueChannels(records []*record, client *elastic.Client, ctx context.Context, searchIndices []string) ([]*pb.Output, map[string]*pb.Output) {
|
2021-06-12 00:18:17 +02:00
|
|
|
channels := make(map[string]*pb.Output)
|
|
|
|
channelsSet := make(map[string]bool)
|
|
|
|
var mget = client.Mget()
|
|
|
|
var totalChannels = 0
|
2021-06-11 14:34:27 +02:00
|
|
|
for _, r := range records {
|
2021-06-17 18:15:05 +02:00
|
|
|
for _, searchIndex := range searchIndices {
|
|
|
|
if r.ChannelId != "" && !channelsSet[r.ChannelId] {
|
|
|
|
channelsSet[r.ChannelId] = true
|
|
|
|
nmget := elastic.NewMultiGetItem().Id(r.ChannelId).Index(searchIndex)
|
|
|
|
mget = mget.Add(nmget)
|
|
|
|
totalChannels++
|
|
|
|
}
|
|
|
|
if r.CensorType != 0 && !channelsSet[r.CensoringChannelHash] {
|
|
|
|
channelsSet[r.CensoringChannelHash] = true
|
|
|
|
nmget := elastic.NewMultiGetItem().Id(r.CensoringChannelHash).Index(searchIndex)
|
|
|
|
mget = mget.Add(nmget)
|
|
|
|
totalChannels++
|
|
|
|
}
|
2021-06-12 00:18:17 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if totalChannels == 0 {
|
|
|
|
return []*pb.Output{}, make(map[string]*pb.Output)
|
|
|
|
}
|
|
|
|
|
|
|
|
res, err := mget.Do(ctx)
|
|
|
|
if err != nil {
|
|
|
|
log.Println(err)
|
|
|
|
return []*pb.Output{}, make(map[string]*pb.Output)
|
|
|
|
}
|
|
|
|
|
|
|
|
channelTxos := make([]*pb.Output, totalChannels)
|
|
|
|
//repostedRecords := make([]*record, totalReposted)
|
|
|
|
|
|
|
|
log.Println("total channel", totalChannels)
|
|
|
|
for i, doc := range res.Docs {
|
|
|
|
var r record
|
|
|
|
err := json.Unmarshal(doc.Source, &r)
|
|
|
|
if err != nil {
|
|
|
|
return []*pb.Output{}, make(map[string]*pb.Output)
|
2021-06-11 14:34:27 +02:00
|
|
|
}
|
2021-06-12 00:18:17 +02:00
|
|
|
channelTxos[i] = r.recordToOutput()
|
|
|
|
channels[r.ClaimId] = channelTxos[i]
|
|
|
|
//log.Println(r)
|
|
|
|
//repostedRecords[i] = &r
|
2021-06-11 14:34:27 +02:00
|
|
|
}
|
|
|
|
|
2021-06-12 00:18:17 +02:00
|
|
|
return channelTxos, channels
|
2021-06-11 14:34:27 +02:00
|
|
|
}
|
|
|
|
|
2021-06-18 06:01:47 +02:00
|
|
|
func getClaimsForReposts(ctx context.Context, client *elastic.Client, records []*record, searchIndices []string) ([]*pb.Output, []*record, map[string]*pb.Output) {
|
2021-06-07 22:57:41 +02:00
|
|
|
|
2021-06-11 14:34:27 +02:00
|
|
|
var totalReposted = 0
|
2021-06-12 00:18:17 +02:00
|
|
|
var mget = client.Mget()//.StoredFields("_id")
|
|
|
|
/*
|
|
|
|
var nmget = elastic.NewMultiGetItem()
|
|
|
|
for _, index := range searchIndices {
|
|
|
|
nmget = nmget.Index(index)
|
|
|
|
}
|
|
|
|
*/
|
2021-06-11 14:34:27 +02:00
|
|
|
for _, r := range records {
|
2021-06-17 18:15:05 +02:00
|
|
|
for _, searchIndex := range searchIndices {
|
|
|
|
if r.RepostedClaimId != "" {
|
|
|
|
var nmget = elastic.NewMultiGetItem().Id(r.RepostedClaimId).Index(searchIndex)
|
|
|
|
//nmget = nmget.Id(r.RepostedClaimId)
|
|
|
|
mget = mget.Add(nmget)
|
|
|
|
totalReposted++
|
|
|
|
}
|
2021-06-11 14:34:27 +02:00
|
|
|
}
|
|
|
|
}
|
2021-06-12 00:18:17 +02:00
|
|
|
//mget = mget.Add(nmget)
|
|
|
|
if totalReposted == 0 {
|
|
|
|
return []*pb.Output{}, []*record{}, make(map[string]*pb.Output)
|
|
|
|
}
|
2021-06-11 14:34:27 +02:00
|
|
|
|
|
|
|
res, err := mget.Do(ctx)
|
|
|
|
if err != nil {
|
|
|
|
log.Println(err)
|
2021-06-12 00:18:17 +02:00
|
|
|
return []*pb.Output{}, []*record{}, make(map[string]*pb.Output)
|
2021-06-07 22:57:41 +02:00
|
|
|
}
|
|
|
|
|
2021-06-11 14:34:27 +02:00
|
|
|
claims := make([]*pb.Output, totalReposted)
|
|
|
|
repostedRecords := make([]*record, totalReposted)
|
2021-06-12 00:18:17 +02:00
|
|
|
respostedMap := make(map[string]*pb.Output)
|
2021-06-11 14:34:27 +02:00
|
|
|
|
|
|
|
log.Println("reposted records", totalReposted)
|
|
|
|
for i, doc := range res.Docs {
|
|
|
|
var r record
|
|
|
|
err := json.Unmarshal(doc.Source, &r)
|
|
|
|
if err != nil {
|
2021-06-12 00:18:17 +02:00
|
|
|
return []*pb.Output{}, []*record{}, make(map[string]*pb.Output)
|
2021-06-11 14:34:27 +02:00
|
|
|
}
|
|
|
|
claims[i] = r.recordToOutput()
|
|
|
|
repostedRecords[i] = &r
|
2021-06-12 00:18:17 +02:00
|
|
|
respostedMap[r.ClaimId] = claims[i]
|
2021-06-11 14:34:27 +02:00
|
|
|
}
|
|
|
|
|
2021-06-12 00:18:17 +02:00
|
|
|
return claims, repostedRecords, respostedMap
|
2021-06-07 22:57:41 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func searchAhead(searchHits []*record, pageSize int, perChannelPerPage int) []*record {
|
|
|
|
finalHits := make([]*record, 0 , len(searchHits))
|
|
|
|
var channelCounters map[string]int
|
|
|
|
channelCounters = make(map[string]int)
|
|
|
|
nextPageHitsMaybeCheckLater := deque.New()
|
|
|
|
searchHitsQ := deque.New()
|
|
|
|
for _, rec := range searchHits {
|
|
|
|
searchHitsQ.PushRight(rec)
|
|
|
|
}
|
|
|
|
for !searchHitsQ.Empty() || !nextPageHitsMaybeCheckLater.Empty() {
|
|
|
|
if len(finalHits) > 0 && len(finalHits) % pageSize == 0 {
|
|
|
|
channelCounters = make(map[string]int)
|
|
|
|
} else if len(finalHits) != 0 {
|
|
|
|
// means last page was incomplete and we are left with bad replacements
|
|
|
|
break
|
|
|
|
}
|
|
|
|
|
|
|
|
for i := 0; i < nextPageHitsMaybeCheckLater.Size(); i++ {
|
|
|
|
rec := nextPageHitsMaybeCheckLater.PopLeft().(*record)
|
|
|
|
if perChannelPerPage > 0 && channelCounters[rec.ChannelId] < perChannelPerPage {
|
|
|
|
finalHits = append(finalHits, rec)
|
|
|
|
channelCounters[rec.ChannelId] = channelCounters[rec.ChannelId] + 1
|
|
|
|
}
|
|
|
|
}
|
|
|
|
for !searchHitsQ.Empty() {
|
|
|
|
hit := searchHitsQ.PopLeft().(*record)
|
|
|
|
if hit.ChannelId == "" || perChannelPerPage < 0 {
|
|
|
|
finalHits = append(finalHits, hit)
|
|
|
|
} else if channelCounters[hit.ChannelId] < perChannelPerPage {
|
|
|
|
finalHits = append(finalHits, hit)
|
|
|
|
channelCounters[hit.ChannelId] = channelCounters[hit.ChannelId] + 1
|
|
|
|
if len(finalHits) % pageSize == 0 {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
nextPageHitsMaybeCheckLater.PushRight(hit)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return finalHits
|
|
|
|
}
|
2021-06-09 04:07:59 +02:00
|
|
|
|
2021-06-12 00:18:17 +02:00
|
|
|
func (r *record) recordToChannelOutput() *pb.Output {
|
|
|
|
// Don't nee dthe meta for this one
|
|
|
|
return &pb.Output{
|
|
|
|
TxHash: util.ToHash(r.Txid),
|
|
|
|
Nout: r.Nout,
|
|
|
|
Height: r.Height,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-06-10 04:41:01 +02:00
|
|
|
func (r *record) recordToOutput() *pb.Output {
|
|
|
|
return &pb.Output{
|
|
|
|
TxHash: util.ToHash(r.Txid),
|
|
|
|
Nout: r.Nout,
|
|
|
|
Height: r.Height,
|
|
|
|
Meta: &pb.Output_Claim{
|
|
|
|
Claim: &pb.ClaimMeta{
|
|
|
|
//Channel:
|
|
|
|
//Repost:
|
|
|
|
ShortUrl: r.ShortUrl,
|
|
|
|
CanonicalUrl: r.CanonicalUrl,
|
|
|
|
IsControlling: r.IsControlling,
|
|
|
|
TakeOverHeight: r.TakeOverHeight,
|
|
|
|
CreationHeight: r.CreationHeight,
|
|
|
|
ActivationHeight: r.ActivationHeight,
|
|
|
|
ExpirationHeight: r.ExpirationHeight,
|
|
|
|
ClaimsInChannel: r.ClaimsInChannel,
|
|
|
|
Reposted: r.Reposted,
|
|
|
|
EffectiveAmount: r.EffectiveAmount,
|
|
|
|
SupportAmount: r.SupportAmount,
|
|
|
|
TrendingGroup: r.TrendingGroup,
|
|
|
|
TrendingMixed: r.TrendingMixed,
|
|
|
|
TrendingLocal: r.TrendingLocal,
|
|
|
|
TrendingGlobal: r.TrendingGlobal,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-06-09 04:07:59 +02:00
|
|
|
func (r *record) getHitId() string {
|
|
|
|
if r.RepostedClaimId != "" {
|
|
|
|
return r.RepostedClaimId
|
|
|
|
} else {
|
|
|
|
return r.ClaimId
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func removeDuplicates(searchHits []*record) []*record {
|
|
|
|
dropped := make(map[*record]bool)
|
|
|
|
// claim_id -> (creation_height, hit_id), where hit_id is either reposted claim id or original
|
|
|
|
knownIds := make(map[string]*record)
|
|
|
|
|
|
|
|
for _, hit := range searchHits {
|
|
|
|
hitHeight := hit.Height
|
|
|
|
hitId := hit.getHitId()
|
|
|
|
|
|
|
|
|
|
|
|
if knownIds[hitId] == nil {
|
|
|
|
knownIds[hitId] = hit
|
|
|
|
} else {
|
|
|
|
prevHit := knownIds[hitId]
|
|
|
|
if hitHeight < prevHit.Height {
|
|
|
|
knownIds[hitId] = hit
|
|
|
|
dropped[prevHit] = true
|
|
|
|
} else {
|
|
|
|
dropped[hit] = true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
deduped := make([]*record, len(searchHits) - len(dropped))
|
|
|
|
|
|
|
|
var i = 0
|
|
|
|
for _, hit := range searchHits {
|
|
|
|
if !dropped[hit] {
|
|
|
|
deduped[i] = hit
|
|
|
|
i++
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return deduped
|
|
|
|
}
|
2021-06-10 02:04:06 +02:00
|
|
|
|
2021-06-12 00:18:17 +02:00
|
|
|
func removeBlocked(searchHits []*record) ([]*record, []*record, map[string]*pb.Blocked) {
|
2021-06-10 02:04:06 +02:00
|
|
|
newHits := make([]*record, 0, len(searchHits))
|
2021-06-12 00:18:17 +02:00
|
|
|
blockedHits := make([]*record, 0, len(searchHits))
|
2021-06-10 02:04:06 +02:00
|
|
|
blockedChannels := make(map[string]*pb.Blocked)
|
|
|
|
for _, r := range searchHits {
|
|
|
|
if r.CensorType != 0 {
|
2021-06-12 00:18:17 +02:00
|
|
|
if blockedChannels[r.CensoringChannelHash] == nil {
|
2021-06-10 02:04:06 +02:00
|
|
|
blockedObj := &pb.Blocked{
|
|
|
|
Count: 1,
|
2021-06-12 00:18:17 +02:00
|
|
|
Channel: nil,
|
2021-06-10 02:04:06 +02:00
|
|
|
}
|
2021-06-12 00:18:17 +02:00
|
|
|
blockedChannels[r.CensoringChannelHash] = blockedObj
|
|
|
|
blockedHits = append(blockedHits, r)
|
2021-06-10 02:04:06 +02:00
|
|
|
} else {
|
2021-06-12 00:18:17 +02:00
|
|
|
blockedChannels[r.CensoringChannelHash].Count += 1
|
2021-06-10 02:04:06 +02:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
newHits = append(newHits, r)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-06-12 00:18:17 +02:00
|
|
|
return newHits, blockedHits, blockedChannels
|
|
|
|
}
|
|
|
|
|
|
|
|
func printJsonFullRecords(records []*record) {
|
|
|
|
// or if you want more control
|
|
|
|
for _, r := range records {
|
|
|
|
// hit.Index contains the name of the index
|
|
|
|
|
|
|
|
b, err := json.MarshalIndent(r, "", " ")
|
|
|
|
if err != nil {
|
|
|
|
fmt.Println("error:", err)
|
|
|
|
}
|
|
|
|
fmt.Println(string(b))
|
|
|
|
}
|
2021-06-10 02:04:06 +02:00
|
|
|
}
|
2021-06-11 14:34:27 +02:00
|
|
|
|
|
|
|
func printJsonFullResults(searchResult *elastic.SearchResult) {
|
|
|
|
// or if you want more control
|
|
|
|
for _, hit := range searchResult.Hits.Hits {
|
|
|
|
// hit.Index contains the name of the index
|
|
|
|
|
|
|
|
var t map[string]interface{} // or could be a Record
|
|
|
|
err := json.Unmarshal(hit.Source, &t)
|
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
b, err := json.MarshalIndent(t, "", " ")
|
|
|
|
if err != nil {
|
|
|
|
fmt.Println("error:", err)
|
|
|
|
}
|
|
|
|
fmt.Println(string(b))
|
|
|
|
}
|
|
|
|
}
|