Package com.bytedesk.kbase.taboo
Class TabooService
java.lang.Object
com.bytedesk.kbase.taboo.TabooService
Service for handling sensitive word filtering
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
addTabooWord
(String word) Add a new sensitive wordboolean
containsTabooWords
(String content) Check if a string contains sensitive wordsfilterTabooWords
(String content) Filter sensitive words from content (replace with *)void
init()
Initialize with some default sensitive wordsprocessContent
(String content, boolean throwException) Filter content, either throw exception or replace sensitive wordsvoid
removeTabooWord
(String word) Remove a sensitive word
-
Field Details
-
tabooWords
-
-
Constructor Details
-
TabooService
public TabooService()
-
-
Method Details
-
init
@PostConstruct public void init()Initialize with some default sensitive words -
addTabooWord
Add a new sensitive word- Parameters:
word
- the word to add
-
removeTabooWord
Remove a sensitive word- Parameters:
word
- the word to remove
-
containsTabooWords
Check if a string contains sensitive words- Parameters:
content
- the content to check- Returns:
- true if contains sensitive words
-
filterTabooWords
Filter sensitive words from content (replace with *)- Parameters:
content
- the content to filter- Returns:
- filtered content
-
processContent
Filter content, either throw exception or replace sensitive words- Parameters:
content
- the content to filterthrowException
- whether to throw exception- Returns:
- filtered content if not throwing exception
-