mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-13 07:46:06 +00:00
93 lines
2.9 KiB
JavaScript
93 lines
2.9 KiB
JavaScript
import log from './helpers/databaseLogger'
|
|
import { queryString } from './searches/queryString'
|
|
|
|
// see http://lucene.apache.org/core/8_3_1/queryparser/org/apache/lucene/queryparser/classic/package-summary.html#package.description
|
|
|
|
export default {
|
|
Query: {
|
|
findResources: async (_parent, args, context, _resolveInfo) => {
|
|
const { query, limit } = args
|
|
const { id: thisUserId } = context.user
|
|
|
|
const postCypher = `
|
|
CALL db.index.fulltext.queryNodes('post_fulltext_search', $query)
|
|
YIELD node as resource, score
|
|
MATCH (resource)<-[:WROTE]-(author:User)
|
|
WHERE score >= 0.0
|
|
AND NOT (
|
|
author.deleted = true OR author.disabled = true
|
|
OR resource.deleted = true OR resource.disabled = true
|
|
OR (:User {id: $thisUserId})-[:MUTED]->(author)
|
|
)
|
|
WITH resource, author,
|
|
[(resource)<-[:COMMENTS]-(comment:Comment) | comment] as comments,
|
|
[(resource)<-[:SHOUTED]-(user:User) | user] as shouter
|
|
RETURN resource {
|
|
.*,
|
|
__typename: labels(resource)[0],
|
|
author: properties(author),
|
|
commentsCount: toString(size(comments)),
|
|
shoutedCount: toString(size(shouter))
|
|
}
|
|
LIMIT $limit
|
|
`
|
|
|
|
const userCypher = `
|
|
CALL db.index.fulltext.queryNodes('user_fulltext_search', $query)
|
|
YIELD node as resource, score
|
|
MATCH (resource)
|
|
WHERE score >= 0.0
|
|
AND NOT (resource.deleted = true OR resource.disabled = true)
|
|
RETURN resource {.*, __typename: labels(resource)[0]}
|
|
LIMIT $limit
|
|
`
|
|
const myQuery = queryString(query)
|
|
|
|
const tagCypher = `
|
|
CALL db.index.fulltext.queryNodes('tag_fulltext_search', $query)
|
|
YIELD node as resource, score
|
|
MATCH (resource)
|
|
WHERE score >= 0.5
|
|
AND NOT (resource.deleted = true OR resource.disabled = true)
|
|
RETURN resource {.*, __typename: labels(resource)[0]}
|
|
LIMIT $limit
|
|
`
|
|
|
|
const session = context.driver.session()
|
|
const searchResultPromise = session.readTransaction(async transaction => {
|
|
const postTransactionResponse = transaction.run(postCypher, {
|
|
query: myQuery,
|
|
limit,
|
|
thisUserId,
|
|
})
|
|
const userTransactionResponse = transaction.run(userCypher, {
|
|
query: myQuery,
|
|
limit,
|
|
thisUserId,
|
|
})
|
|
const tagTransactionResponse = transaction.run(tagCypher, {
|
|
query: myQuery,
|
|
limit,
|
|
})
|
|
return Promise.all([
|
|
postTransactionResponse,
|
|
userTransactionResponse,
|
|
tagTransactionResponse,
|
|
])
|
|
})
|
|
|
|
try {
|
|
const [postResults, userResults, tagResults] = await searchResultPromise
|
|
log(postResults)
|
|
log(userResults)
|
|
log(tagResults)
|
|
return [...postResults.records, ...userResults.records, ...tagResults.records].map(r =>
|
|
r.get('resource'),
|
|
)
|
|
} finally {
|
|
session.close()
|
|
}
|
|
},
|
|
},
|
|
}
|