Stop inserting search history to the DB in the search API

This commit is contained in:
Hongbo Wu
2023-04-05 11:45:39 +08:00
parent 9bc76b3c00
commit e5ffd3f5bd
2 changed files with 0 additions and 38 deletions

View File

@ -4,7 +4,6 @@
/* eslint-disable @typescript-eslint/no-unsafe-member-access */
/* eslint-disable @typescript-eslint/no-floating-promises */
import { Readability } from '@omnivore/readability'
import * as httpContext from 'express-http-context'
import graphqlFields from 'graphql-fields'
import normalizeUrl from 'normalize-url'
import { searchHighlights } from '../../elastic/highlights'
@ -73,7 +72,6 @@ import {
} from '../../generated/graphql'
import { createPageSaveRequest } from '../../services/create_page_save_request'
import { parsedContentToPage } from '../../services/save_page'
import { saveSearchHistory } from '../../services/search_history'
import { traceAs } from '../../tracing'
import { Merge } from '../../util'
import { analytics } from '../../utils/analytics'
@ -953,14 +951,6 @@ export const searchResolver = authorized<
}
})
// save query, including advanced search terms, in search history
if (params.query) {
const client = httpContext.get('client') as string | undefined
// don't save search history for rule based queries
client !== 'rule-handler' &&
(await saveSearchHistory(claims.uid, params.query))
}
return {
edges,
pageInfo: {

View File

@ -20,7 +20,6 @@ import {
PageContext,
PageType,
} from '../../src/elastic/types'
import { SearchHistory } from '../../src/entity/search_history'
import { UploadFile } from '../../src/entity/upload_file'
import { User } from '../../src/entity/user'
import { getRepository } from '../../src/entity/utils'
@ -876,33 +875,6 @@ describe('Article API', () => {
after(async () => {
await deletePagesByParam({ userId: user.id }, ctx)
await getRepository(SearchHistory).delete({ user: { id: user.id } })
})
context('when we search for a keyword', () => {
before(() => {
keyword = 'search api'
})
it('saves the term in search history', async () => {
await graphqlRequest(query, authToken).expect(200)
const searchHistories = await getRepository(SearchHistory).findBy({
user: { id: user.id },
})
expect(searchHistories.length).to.eq(1)
expect(searchHistories[0].term).to.eq(keyword)
const searchHistory = searchHistories[0]
// Check that the search history is updated
await graphqlRequest(query, authToken).expect(200)
const newSearchHistories = await getRepository(SearchHistory).findBy({
user: { id: user.id },
})
expect(newSearchHistories.length).to.eq(1)
expect(newSearchHistories[0].createdAt).to.be.greaterThan(
searchHistory.createdAt
)
})
})
context('when type:highlights is not in the query', () => {