diff --git a/server/controllers/lighthouse.js b/server/controllers/lighthouse.js index 6eb8578..da8190e 100644 --- a/server/controllers/lighthouse.js +++ b/server/controllers/lighthouse.js @@ -63,7 +63,7 @@ function getResults (input) { }, }, }; - const funcScore = { // 100 LBC adds 1 point to the score + const funcScoreClaimWeight = { // 100 LBC adds 1 point to the score 'function_score': { 'script_score': { 'script': { @@ -72,6 +72,16 @@ function getResults (input) { }, }, }; + + const funcScoreChannelWeight = { // 100 LBC adds 1 point to the score + 'function_score': { + 'script_score': { + 'script': { + 'source': `${effectiveFactor} * doc['certificate_amount'].value`, + }, + }, + }, + }; const matPhraseName = { // Match search text as phrase - Name 'match_phrase': { 'name': { @@ -176,7 +186,8 @@ function getResults (input) { 'bool': { 'should': [ conBoost, - funcScore, + funcScoreClaimWeight, + funcScoreChannelWeight, ], 'must': [ channelSearch, diff --git a/server/utils/chainquery/index.js b/server/utils/chainquery/index.js index b570968..fbe0027 100644 --- a/server/utils/chainquery/index.js +++ b/server/utils/chainquery/index.js @@ -161,6 +161,7 @@ function getClaimsSince (time) { `SELECT ` + `c.name,` + `p.name as channel,` + + `p.effective_amount as certificate_amount` + `c.bid_state,` + `c.effective_amount,` + `c.claim_id as claimId,` +