Added content type filter

Added claim type filter
This commit is contained in:
marcdeb1 2018-10-22 09:59:12 +02:00 committed by Mark Beamer Jr
parent 423176da3f
commit fa1938b104
No known key found for this signature in database
GPG key ID: 1C314FB89AD76973
2 changed files with 28 additions and 2 deletions

View file

@ -255,14 +255,37 @@ function getAutoCompleteQuery (query) {
};
function getFilters (input) {
// this is the best place for putting things like filtering on the type of content
// Perhaps we can add search param that will filter on how people have categorized / tagged their content
var filters = [];
var bidStateFilter = {'bool': {'must_not': {'match': { 'bid_state': 'Accepted' }}}};
if (input.nsfw === 'true' || input.nsfw === 'false') {
const nsfwFilter = {'match': {'value.stream.metadata.nsfw': input.nsfw}};
filters.push(nsfwFilter);
}
if (input.contentType !== undefined) {
const contentFilter = {'match_phrase': {'value.stream.source.contentType': getEscapedQuery(input.contentType)}};
filters.push(contentFilter);
}
if (input.mediaType !== undefined) {
const mediaTypes = ['audio', 'video', 'text', 'application', 'image'];
if (mediaTypes.includes(input.mediaType)) {
const mediaFilter = {'match_phrase_prefix': {'value.stream.source.contentType': input.mediaType + '\\/'}};
filters.push(mediaFilter);
} else if (input.mediaType === 'cad') {
const cadTypes = ['SKP', 'simplify3d_stl'];
const cadFilter = {'terms': {'value.stream.source.contentType': cadTypes}};
filters.push(cadFilter);
}
}
if (input.claimType === 'channel' || input.claimType === 'file') {
var query = '';
if (input.claimType === 'channel') {
query = 'certificateType';
} else if (input.claimType === 'file') {
query = 'streamType';
}
const claimTypeFilter = {'match': {'value.claimType': query}};
filters.push(claimTypeFilter);
}
if (filters.length > 0) {
const filterQuery = [
{

View file

@ -20,6 +20,9 @@ router.get('/', LighthouseControllers.info);
* - (query) size {Integer} The amount of results to return at max
* - (query) from {Integer} The number to start from, good for pagination
* - (query) nsfw {Boolean} If search should return nsfw content or not.
* - (query) contentType {String} Filter by MIME type.
* - (query) mediaType {String} Filter by media type, can be audio, video, image, application, text or cad.
* - (query) claimType {String} Return channels or files only, value can be 'channel' or 'file'.
* responses:
* 200:
* description: The search API returns an array of the found matching search items.