Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

skip item filters and fix sorting #407

Merged
merged 5 commits into from
Sep 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified .DS_Store
Binary file not shown.
15 changes: 9 additions & 6 deletions lib/resources.js
Original file line number Diff line number Diff line change
Expand Up @@ -245,10 +245,12 @@ module.exports = function (app, _private = null) {
}
}
}
if (params.all_items) {
const paramsIncludesItemLevelFiltering = Object.keys(params)
.filter((param) => param.startsWith('item_')).length > 0
const returnAllItems = params.all_items && !paramsIncludesItemLevelFiltering
if (returnAllItems) {
body._source.excludes = EXCLUDE_FIELDS.filter((field) => field !== '*_sort')
}
if (!params.all_items) {
} else {
// No specific item requested, so add pagination and matching params:
const itemsOptions = {
size: params.items_size,
Expand Down Expand Up @@ -276,6 +278,7 @@ module.exports = function (app, _private = null) {
return app.esClient.search(body)
.then((resp) => {
resp = resp.body

// Mindfully throw errors for known issues:
if (!resp || !resp.hits) {
throw new Error('Error connecting to index')
Expand Down Expand Up @@ -1218,9 +1221,9 @@ const buildElasticQueryForFilters = function (params) {
const buildElasticQuery = function (params) {
// Build ES query:
const query = {}

// clean up params
;['q'].forEach(function (param) {
const paramsArray = ['q']
// clean up params
paramsArray.forEach(function (param) {
if (params[param]) {
params[param] = params[param].replace(/date:/g, 'dateStartYear:')
params[param] = params[param].replace(/location:/g, 'locations:')
Expand Down
16 changes: 10 additions & 6 deletions lib/response_massager.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
const LocationLabelUpdater = require('./location_label_updater')
const AvailabilityResolver = require('./availability_resolver.js')
const parallelFieldsExtractor = require('./parallel-fields-extractor')
const { isAeonUrl } = require('../lib/util')
const { isAeonUrl, sortOnPropWithUndefinedLast } = require('../lib/util')
const FulfillmentResolver = require('./fulfillment_resolver')
const RequestabilityResolver = require('./requestability_resolver')

Expand All @@ -22,10 +22,10 @@ class ResponseMassager {
processInnerHitsProperties (response, sortOnEnumerationChronology) {
response.hits.hits.forEach((hit) => {
if (sortOnEnumerationChronology) {
hit._source.items.sort((a, b) => a.enumerationChronology_sort[0] > b.enumerationChronology_sort[0] ? -1 : 1)
hit._source.items.sort(sortOnPropWithUndefinedLast('enumerationChronology_sort'))
}
// Process "items" inner_hits
if (hit.inner_hits && hit.inner_hits.items) {
if (hit?.inner_hits?.items) {
// Reassign items inner_hits to .items
hit._source.items = hit.inner_hits.items.hits.hits.map((itemHit) => itemHit._source)

Expand All @@ -40,7 +40,7 @@ class ResponseMassager {
hit._source.numItemsTotal = [unfilteredItems.hits.total]
}
// Process "electronicResources" inner_hits
if (hit.inner_hits && hit.inner_hits.electronicResources) {
if (hit?.inner_hits?.electronicResources) {
// If record doesn't have indexed electronicResources...
if (!hit._source.electronicResources || hit._source.electronicResources.length === 0) {
// Gather up all records in the electronicResources inner_hit,
Expand All @@ -61,10 +61,14 @@ class ResponseMassager {

massagedResponse (request, options = {}) {
let response = this.elasticSearchResponse
const allItemsBibQuery = request?.query?.all_items
const queryKeys = Object.keys(request?.query || {})
const itemFilterQuery = queryKeys
.filter((param) => param.startsWith('item_')).length > 0
const returnAllItems = queryKeys?.includes('all_items') &&
!itemFilterQuery
// Inspect response inner_hits queries and move properties around to ease
// serialization:
response = this.processInnerHitsProperties(response, allItemsBibQuery)
response = this.processInnerHitsProperties(response, returnAllItems)

// Rename parallel fields:
response = parallelFieldsExtractor(response)
Expand Down
17 changes: 17 additions & 0 deletions lib/util.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,23 @@
const logger = require('./logger')
const isItemNyplOwned = require('./ownership_determination').isItemNyplOwned

exports.sortOnPropWithUndefinedLast = (property) => {
return function (a, b) {
// equal items sort equally
if (a[property]?.[0] === b[property]?.[0]) {
return 0
}
// nulls sort after anything else
if (!a[property]?.[0]) {
return 1
}
if (!b[property]?.[0]) {
return -1
}
return a[property]?.[0] > b[property]?.[0] ? -1 : 1
}
}

exports.buildJsonLdContext = function (prefixes) {
const context = JSON.parse(JSON.stringify(prefixes))
delete context.urn
Expand Down
Binary file added test/.DS_Store
Binary file not shown.
Loading
Loading