mirror of
				https://github.com/discourse/discourse-ai.git
				synced 2025-10-31 14:38:37 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			28 lines
		
	
	
		
			732 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			732 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
| # frozen_string_literal: true
 | |
| 
 | |
| module ::DiscourseAi
 | |
|   module Toxicity
 | |
|     class ScanQueue
 | |
|       class << self
 | |
|         def enqueue_post(post)
 | |
|           return if bypass?(post)
 | |
|           Jobs.enqueue(:toxicity_classify_post, post_id: post.id)
 | |
|         end
 | |
| 
 | |
|         def enqueue_chat_message(chat_message)
 | |
|           return if bypass?(chat_message)
 | |
|           Jobs.enqueue(:toxicity_classify_chat_message, chat_message_id: chat_message.id)
 | |
|         end
 | |
| 
 | |
|         def bypass?(content)
 | |
|           !SiteSetting.ai_toxicity_enabled || group_bypass?(content.user)
 | |
|         end
 | |
| 
 | |
|         def group_bypass?(user)
 | |
|           user.groups.pluck(:id).intersection(SiteSetting.ai_toxicity_groups_bypass_map).present?
 | |
|         end
 | |
|       end
 | |
|     end
 | |
|   end
 | |
| end
 |