Merge pull request #3320 from betagouv/fix-search-special-chars
search: exclude more special characters
This commit is contained in:
commit
75b6eaca53
2 changed files with 7 additions and 1 deletions
|
@ -39,7 +39,7 @@ class DossierSearchService
|
|||
|
||||
def self.to_tsquery(search_terms)
|
||||
search_terms.strip
|
||||
.gsub(/['?\\:&|!]/, "") # drop disallowed characters
|
||||
.gsub(/['?\\:&|!<>\(\)]/, "") # drop disallowed characters
|
||||
.split(/\s+/) # split words
|
||||
.map { |x| "#{x}:*" } # enable prefix matching
|
||||
.join(" & ")
|
||||
|
|
|
@ -90,5 +90,11 @@ describe DossierSearchService do
|
|||
|
||||
it { expect(subject.size).to eq(1) }
|
||||
end
|
||||
|
||||
describe 'search with characters disallowed by the tsquery parser' do
|
||||
let(:terms) { "'?\\:&!(OCTO) <plop>" }
|
||||
|
||||
it { expect(subject.size).to eq(1) }
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue