2019-05-03 06:17:27 +08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-05-24 13:50:20 +08:00
|
|
|
# name: discourse-narrative-bot
|
|
|
|
# about: Introduces staff to Discourse
|
2018-03-23 09:57:53 +08:00
|
|
|
# version: 1.0
|
|
|
|
# authors: Nick Sahler, Alan Tan
|
2017-06-08 12:14:20 +08:00
|
|
|
# url: https://github.com/discourse/discourse/tree/master/plugins/discourse-narrative-bot
|
2017-05-24 13:50:20 +08:00
|
|
|
|
|
|
|
enabled_site_setting :discourse_narrative_bot_enabled
|
2018-05-16 06:43:09 +08:00
|
|
|
hide_plugin if self.respond_to?(:hide_plugin)
|
2017-05-24 13:50:20 +08:00
|
|
|
|
2018-03-23 09:57:53 +08:00
|
|
|
if Rails.env == "development"
|
|
|
|
# workaround, teach reloader to reload jobs
|
|
|
|
# if we do not do this then
|
|
|
|
#
|
|
|
|
# 1. on reload rails goes and undefines Jobs::Base
|
|
|
|
# 2. as a side effect this undefines Jobs::BotInput
|
|
|
|
# 3. we have a post_edited hook that queues a job for bot input
|
|
|
|
# 4. if you are not running sidekiq in dev every time you save a post it will trigger it
|
|
|
|
# 5. but the constant can not be autoloaded
|
|
|
|
Rails.configuration.autoload_paths << File.expand_path('../autoload', __FILE__)
|
|
|
|
end
|
|
|
|
|
2017-05-24 13:50:20 +08:00
|
|
|
require_relative 'lib/discourse_narrative_bot/welcome_post_type_site_setting.rb'
|
|
|
|
|
|
|
|
after_initialize do
|
2018-06-07 18:10:52 +08:00
|
|
|
SeedFu.fixture_paths << Rails.root.join("plugins", "discourse-narrative-bot", "db", "fixtures").to_s
|
2017-05-24 13:50:20 +08:00
|
|
|
|
|
|
|
Mime::Type.register "image/svg+xml", :svg
|
|
|
|
|
|
|
|
[
|
2018-03-23 09:57:53 +08:00
|
|
|
'../autoload/jobs/bot_input.rb',
|
|
|
|
'../autoload/jobs/narrative_timeout.rb',
|
|
|
|
'../autoload/jobs/narrative_init.rb',
|
|
|
|
'../autoload/jobs/send_default_welcome_message.rb',
|
2019-11-14 05:31:49 +08:00
|
|
|
'../autoload/jobs/send_advanced_tutorial_message.rb',
|
2018-03-23 09:57:53 +08:00
|
|
|
'../autoload/jobs/onceoff/grant_badges.rb',
|
|
|
|
'../autoload/jobs/onceoff/remap_old_bot_images.rb',
|
2017-05-24 13:50:20 +08:00
|
|
|
'../lib/discourse_narrative_bot/actions.rb',
|
|
|
|
'../lib/discourse_narrative_bot/base.rb',
|
|
|
|
'../lib/discourse_narrative_bot/new_user_narrative.rb',
|
|
|
|
'../lib/discourse_narrative_bot/advanced_user_narrative.rb',
|
|
|
|
'../lib/discourse_narrative_bot/track_selector.rb',
|
|
|
|
'../lib/discourse_narrative_bot/certificate_generator.rb',
|
|
|
|
'../lib/discourse_narrative_bot/dice.rb',
|
|
|
|
'../lib/discourse_narrative_bot/quote_generator.rb',
|
|
|
|
'../lib/discourse_narrative_bot/magic_8_ball.rb',
|
|
|
|
'../lib/discourse_narrative_bot/welcome_post_type_site_setting.rb'
|
|
|
|
].each { |path| load File.expand_path(path, __FILE__) }
|
|
|
|
|
|
|
|
# Disable welcome message because that is what the bot is supposed to replace.
|
2017-10-30 11:24:15 +08:00
|
|
|
SiteSetting.send_welcome_message = false if SiteSetting.send_welcome_message
|
2017-05-24 13:50:20 +08:00
|
|
|
|
2017-09-15 13:02:11 +08:00
|
|
|
require_dependency 'plugin_store'
|
|
|
|
|
2017-05-24 13:50:20 +08:00
|
|
|
module ::DiscourseNarrativeBot
|
|
|
|
PLUGIN_NAME = "discourse-narrative-bot".freeze
|
2020-05-23 12:56:13 +08:00
|
|
|
BOT_USER_ID = -2
|
2017-05-24 13:50:20 +08:00
|
|
|
|
|
|
|
class Engine < ::Rails::Engine
|
|
|
|
engine_name PLUGIN_NAME
|
|
|
|
isolate_namespace DiscourseNarrativeBot
|
|
|
|
end
|
|
|
|
|
|
|
|
class Store
|
|
|
|
def self.set(key, value)
|
|
|
|
::PluginStore.set(PLUGIN_NAME, key, value)
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.get(key)
|
|
|
|
::PluginStore.get(PLUGIN_NAME, key)
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.remove(key)
|
|
|
|
::PluginStore.remove(PLUGIN_NAME, key)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
class CertificatesController < ::ApplicationController
|
|
|
|
layout :false
|
2017-08-31 12:06:56 +08:00
|
|
|
skip_before_action :check_xhr
|
2018-08-20 11:21:54 +08:00
|
|
|
requires_login
|
2017-05-24 13:50:20 +08:00
|
|
|
|
|
|
|
def generate
|
2019-10-22 00:14:15 +08:00
|
|
|
immutable_for(24.hours)
|
|
|
|
|
|
|
|
%i[date user_id].each do |key|
|
|
|
|
raise Discourse::InvalidParameters.new("#{key} must be present") unless params[key]&.present?
|
2018-08-20 11:21:54 +08:00
|
|
|
end
|
2017-05-24 13:50:20 +08:00
|
|
|
|
2019-10-22 00:14:15 +08:00
|
|
|
rate_limiter = RateLimiter.new(current_user, 'svg_certificate', 3, 1.minute)
|
|
|
|
rate_limiter.performed! unless current_user.staff?
|
|
|
|
|
2017-05-24 13:50:20 +08:00
|
|
|
user = User.find_by(id: params[:user_id])
|
|
|
|
raise Discourse::NotFound if user.blank?
|
|
|
|
|
2019-10-22 00:14:15 +08:00
|
|
|
hijack do
|
2020-05-11 09:34:00 +08:00
|
|
|
avatar_data = fetch_avatar(user)
|
|
|
|
generator = CertificateGenerator.new(user, params[:date], avatar_data)
|
2017-05-24 13:50:20 +08:00
|
|
|
|
2019-10-22 00:14:15 +08:00
|
|
|
svg = params[:type] == 'advanced' ? generator.advanced_user_track : generator.new_user_track
|
2017-05-24 13:50:20 +08:00
|
|
|
|
2019-10-22 00:14:15 +08:00
|
|
|
respond_to do |format|
|
|
|
|
format.svg { render inline: svg }
|
2017-05-24 13:50:20 +08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2019-10-22 00:14:15 +08:00
|
|
|
|
|
|
|
private
|
|
|
|
|
2020-05-11 09:34:00 +08:00
|
|
|
def fetch_avatar(user)
|
2019-10-22 00:14:15 +08:00
|
|
|
avatar_url = UrlHelper.absolute(Discourse.base_uri + user.avatar_template.gsub('{size}', '250'))
|
2019-11-14 20:23:51 +08:00
|
|
|
FileHelper.download(
|
2019-11-14 23:20:36 +08:00
|
|
|
avatar_url.to_s,
|
2019-11-14 20:23:51 +08:00
|
|
|
max_file_size: SiteSetting.max_image_size_kb.kilobytes,
|
|
|
|
tmp_file_name: 'narrative-bot-avatar',
|
|
|
|
follow_redirect: true
|
2019-11-14 23:20:36 +08:00
|
|
|
)&.read
|
2019-10-22 00:14:15 +08:00
|
|
|
rescue OpenURI::HTTPError
|
|
|
|
# Ignore if fetching image returns a non 200 response
|
|
|
|
end
|
2017-05-24 13:50:20 +08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
DiscourseNarrativeBot::Engine.routes.draw do
|
|
|
|
get "/certificate" => "certificates#generate", format: :svg
|
|
|
|
end
|
|
|
|
|
|
|
|
Discourse::Application.routes.append do
|
|
|
|
mount ::DiscourseNarrativeBot::Engine, at: "/discobot"
|
|
|
|
end
|
|
|
|
|
|
|
|
self.add_model_callback(User, :after_destroy) do
|
|
|
|
DiscourseNarrativeBot::Store.remove(self.id)
|
|
|
|
end
|
|
|
|
|
2019-10-04 13:18:49 +08:00
|
|
|
self.on(:user_created) do |user|
|
|
|
|
if SiteSetting.discourse_narrative_bot_welcome_post_delay == 0 && !user.staged
|
|
|
|
user.enqueue_bot_welcome_post
|
2017-06-01 16:20:16 +08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
self.on(:user_first_logged_in) do |user|
|
|
|
|
if SiteSetting.discourse_narrative_bot_welcome_post_delay > 0
|
|
|
|
user.enqueue_bot_welcome_post
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-01-20 00:56:24 +08:00
|
|
|
self.on(:user_unstaged) do |user|
|
|
|
|
user.enqueue_bot_welcome_post
|
|
|
|
end
|
|
|
|
|
2017-06-01 16:20:16 +08:00
|
|
|
self.add_to_class(:user, :enqueue_bot_welcome_post) do
|
2017-05-24 13:50:20 +08:00
|
|
|
return if SiteSetting.disable_discourse_narrative_bot_welcome_post
|
|
|
|
|
|
|
|
delay = SiteSetting.discourse_narrative_bot_welcome_post_delay
|
|
|
|
|
|
|
|
case SiteSetting.discourse_narrative_bot_welcome_post_type
|
|
|
|
when 'new_user_track'
|
|
|
|
if enqueue_narrative_bot_job?
|
|
|
|
Jobs.enqueue_in(delay, :narrative_init,
|
|
|
|
user_id: self.id,
|
|
|
|
klass: DiscourseNarrativeBot::NewUserNarrative.to_s
|
|
|
|
)
|
|
|
|
end
|
|
|
|
when 'welcome_message'
|
|
|
|
Jobs.enqueue_in(delay, :send_default_welcome_message, user_id: self.id)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-06-01 11:06:25 +08:00
|
|
|
self.add_to_class(:user, :enqueue_narrative_bot_job?) do
|
|
|
|
SiteSetting.discourse_narrative_bot_enabled &&
|
2019-02-09 02:34:54 +08:00
|
|
|
self.human? &&
|
2017-06-01 11:06:25 +08:00
|
|
|
!self.anonymous? &&
|
|
|
|
!self.staged &&
|
|
|
|
!SiteSetting.discourse_narrative_bot_ignored_usernames.split('|'.freeze).include?(self.username)
|
2017-05-24 13:50:20 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
self.on(:post_created) do |post, options|
|
|
|
|
user = post.user
|
|
|
|
|
2020-03-11 20:03:20 +08:00
|
|
|
if user&.enqueue_narrative_bot_job? && !options[:skip_bot]
|
2017-05-24 13:50:20 +08:00
|
|
|
Jobs.enqueue(:bot_input,
|
|
|
|
user_id: user.id,
|
|
|
|
post_id: post.id,
|
|
|
|
input: :reply
|
|
|
|
)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
self.on(:post_edited) do |post|
|
2020-03-11 20:03:20 +08:00
|
|
|
if post.user&.enqueue_narrative_bot_job?
|
2017-05-24 13:50:20 +08:00
|
|
|
Jobs.enqueue(:bot_input,
|
|
|
|
user_id: post.user.id,
|
|
|
|
post_id: post.id,
|
|
|
|
input: :edit
|
|
|
|
)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
self.on(:post_destroyed) do |post, options, user|
|
2020-03-11 20:03:20 +08:00
|
|
|
if user&.enqueue_narrative_bot_job? && !options[:skip_bot]
|
2017-05-24 13:50:20 +08:00
|
|
|
Jobs.enqueue(:bot_input,
|
|
|
|
user_id: user.id,
|
|
|
|
post_id: post.id,
|
|
|
|
topic_id: post.topic_id,
|
|
|
|
input: :delete
|
|
|
|
)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
self.on(:post_recovered) do |post, _, user|
|
2020-03-11 20:03:20 +08:00
|
|
|
if user&.enqueue_narrative_bot_job?
|
2017-05-24 13:50:20 +08:00
|
|
|
Jobs.enqueue(:bot_input,
|
|
|
|
user_id: user.id,
|
|
|
|
post_id: post.id,
|
|
|
|
input: :recover
|
|
|
|
)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
self.add_model_callback(PostAction, :after_commit, on: :create) do
|
2018-12-21 22:09:27 +08:00
|
|
|
if self.post && self.user.enqueue_narrative_bot_job?
|
2017-05-24 13:50:20 +08:00
|
|
|
input =
|
|
|
|
case self.post_action_type_id
|
2017-10-18 01:31:45 +08:00
|
|
|
when *PostActionType.flag_types_without_custom.values
|
2017-05-24 13:50:20 +08:00
|
|
|
:flag
|
|
|
|
when PostActionType.types[:like]
|
|
|
|
:like
|
|
|
|
when PostActionType.types[:bookmark]
|
|
|
|
:bookmark
|
|
|
|
end
|
|
|
|
|
|
|
|
if input
|
|
|
|
Jobs.enqueue(:bot_input,
|
|
|
|
user_id: self.user.id,
|
|
|
|
post_id: self.post.id,
|
|
|
|
input: input
|
|
|
|
)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-03-27 10:17:18 +08:00
|
|
|
self.add_model_callback(Bookmark, :after_commit, on: :create) do
|
2020-04-22 11:44:19 +08:00
|
|
|
if self.post && self.user.enqueue_narrative_bot_job?
|
|
|
|
Jobs.enqueue(:bot_input, user_id: self.user_id, post_id: self.post_id, input: :bookmark)
|
2020-03-27 10:17:18 +08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-05-24 13:50:20 +08:00
|
|
|
self.on(:topic_notification_level_changed) do |_, user_id, topic_id|
|
|
|
|
user = User.find_by(id: user_id)
|
|
|
|
|
|
|
|
if user && user.enqueue_narrative_bot_job?
|
|
|
|
Jobs.enqueue(:bot_input,
|
|
|
|
user_id: user_id,
|
|
|
|
topic_id: topic_id,
|
|
|
|
input: :topic_notification_level_changed
|
|
|
|
)
|
|
|
|
end
|
|
|
|
end
|
2019-11-14 05:31:49 +08:00
|
|
|
|
|
|
|
self.on(:user_promoted) do |args|
|
|
|
|
promoted_from_tl1 = args[:new_trust_level] == TrustLevel[2] &&
|
|
|
|
args[:old_trust_level] == TrustLevel[1]
|
|
|
|
|
|
|
|
if SiteSetting.discourse_narrative_bot_enabled && promoted_from_tl1
|
2019-11-30 05:48:39 +08:00
|
|
|
# The event 'user_promoted' is sometimes called from inside a transaction.
|
|
|
|
# Use this helper to ensure the job is enqueued after commit to prevent
|
|
|
|
# any race conditions.
|
|
|
|
DB.after_commit do
|
|
|
|
Jobs.enqueue(:send_advanced_tutorial_message, user_id: args[:user_id])
|
|
|
|
end
|
2019-11-14 05:31:49 +08:00
|
|
|
end
|
|
|
|
end
|
2020-05-23 12:56:13 +08:00
|
|
|
|
|
|
|
UserAvatar.register_custom_user_gravatar_email_hash(
|
|
|
|
DiscourseNarrativeBot::BOT_USER_ID,
|
|
|
|
"discobot@discourse.org"
|
|
|
|
)
|
2017-05-24 13:50:20 +08:00
|
|
|
end
|