2023-02-23 12:25:00 -03:00
|
|
|
# frozen_string_literal: true
|
2023-03-14 16:03:50 -03:00
|
|
|
|
|
|
|
module DiscourseAi
|
2023-02-23 12:25:00 -03:00
|
|
|
module Sentiment
|
|
|
|
class EntryPoint
|
2023-02-23 15:50:10 -03:00
|
|
|
def inject_into(plugin)
|
|
|
|
sentiment_analysis_cb =
|
|
|
|
Proc.new do |post|
|
|
|
|
if SiteSetting.ai_sentiment_enabled
|
|
|
|
Jobs.enqueue(:post_sentiment_analysis, post_id: post.id)
|
|
|
|
end
|
|
|
|
end
|
2023-02-23 12:25:00 -03:00
|
|
|
|
2023-02-23 15:50:10 -03:00
|
|
|
plugin.on(:post_created, &sentiment_analysis_cb)
|
|
|
|
plugin.on(:post_edited, &sentiment_analysis_cb)
|
2023-11-08 10:50:37 -03:00
|
|
|
|
2024-11-14 12:45:40 -03:00
|
|
|
EmotionFilterOrder.register!(plugin)
|
2024-11-19 10:01:10 -03:00
|
|
|
EmotionDashboardReport.register!(plugin)
|
|
|
|
SentimentDashboardReport.register!(plugin)
|
2023-02-23 12:25:00 -03:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|