Merge pull request #169 from lbryio/filter_by_channel_id

Add channel_id parameter to search api
This commit is contained in:
Mark 2019-09-22 12:09:02 -04:00 committed by GitHub
commit 02a0e45f65
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -41,6 +41,19 @@ function getResults (input) {
let washedQuery = getEscapedQuery(getWashedQuery(trimmedQuery));
let effectiveFactor = '0.00000000001';
// Search is split up into different parts, all search parts goes under this line.
let channelidSearch;
if (input.channel_id !== undefined) {
channelidSearch = { // If we got a channel_id argument, lets filter out only that channel_id
'bool': {
'must': {
'query_string': {
'fields': ['channel_id'],
'query' : getEscapedQuery(input.channel_id.trim()),
},
},
},
};
}
let channelSearch;
if (input.channel !== undefined) { // If we got a channel argument, lets filter out only that channel
channelSearch = {
@ -256,6 +269,7 @@ function getResults (input) {
],
'must': [
channelSearch,
channelidSearch,
{
'bool': {
'should': [