Class TabooService

java.lang.Object
com.bytedesk.kbase.taboo.TabooService

@Service public class TabooService extends Object
Service for handling sensitive word filtering
  • Field Details

    • tabooWords

      private final Set<String> tabooWords
  • Constructor Details

    • TabooService

      public TabooService()
  • Method Details

    • init

      @PostConstruct public void init()
      Initialize with some default sensitive words
    • addTabooWord

      public void addTabooWord(String word)
      Add a new sensitive word
      Parameters:
      word - the word to add
    • removeTabooWord

      public void removeTabooWord(String word)
      Remove a sensitive word
      Parameters:
      word - the word to remove
    • containsTabooWords

      public boolean containsTabooWords(String content)
      Check if a string contains sensitive words
      Parameters:
      content - the content to check
      Returns:
      true if contains sensitive words
    • filterTabooWords

      public String filterTabooWords(String content)
      Filter sensitive words from content (replace with *)
      Parameters:
      content - the content to filter
      Returns:
      filtered content
    • processContent

      public String processContent(String content, boolean throwException)
      Filter content, either throw exception or replace sensitive words
      Parameters:
      content - the content to filter
      throwException - whether to throw exception
      Returns:
      filtered content if not throwing exception