discourse/lib/introduction_updater.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

72 lines
1.6 KiB
Ruby
Raw Normal View History

# frozen_string_literal: true
2016-09-20 17:01:54 -04:00
class IntroductionUpdater
def initialize(user)
@user = user
end
def get_summary
summary_from_post(find_welcome_post)
end
def update_summary(new_value)
post = find_welcome_post
return unless post
previous_value = summary_from_post(post).strip
if previous_value != new_value
revisor = PostRevisor.new(post)
if post.raw.chomp == I18n.t('discourse_welcome_topic.body', base_path: Discourse.base_path).chomp
revisor.revise!(@user, raw: new_value)
else
remaining = post.raw[previous_value.length..-1]
revisor.revise!(@user, raw: "#{new_value}#{remaining}")
end
2016-09-20 17:01:54 -04:00
end
end
protected
2016-09-20 17:01:54 -04:00
def summary_from_post(post)
post ? post.raw.split("\n").first : nil
2016-09-20 17:01:54 -04:00
end
def find_welcome_post
topic_id = SiteSetting.welcome_topic_id
if topic_id <= 0
title = I18n.t("discourse_welcome_topic.title")
topic_id = find_topic_id(title)
end
if topic_id.blank?
title = I18n.t("discourse_welcome_topic.title", locale: :en)
topic_id = find_topic_id(title)
end
if topic_id.blank?
topic_id = Topic.listable_topics
.where(pinned_globally: true)
.order(:created_at)
.limit(1)
.pluck(:id)
end
2016-09-20 17:01:54 -04:00
welcome_topic = Topic.where(id: topic_id).first
return nil if welcome_topic.blank?
2016-09-20 17:01:54 -04:00
welcome_topic.first_post
2016-09-20 17:01:54 -04:00
end
def find_topic_id(topic_title)
slug = Slug.for(topic_title, nil)
return nil if slug.blank?
Topic.listable_topics
.where(slug: slug)
.pluck(:id)
end
2016-09-20 17:01:54 -04:00
end