2013-12-15 20:46:46 -05:00
|
|
|
User.reset_column_information
|
|
|
|
Topic.reset_column_information
|
|
|
|
Post.reset_column_information
|
|
|
|
|
2014-07-24 14:27:34 -04:00
|
|
|
staff = Category.find_by(id: SiteSetting.staff_category_id)
|
2014-07-29 14:30:23 -04:00
|
|
|
seed_welcome_topics = (Topic.where('id NOT IN (SELECT topic_id from categories where topic_id is not null)').count == 0 && !Rails.env.test?)
|
2014-07-24 14:27:34 -04:00
|
|
|
|
|
|
|
unless Rails.env.test?
|
|
|
|
def create_static_page_topic(site_setting_key, title_key, body_key, body_override, category, description, params={})
|
|
|
|
unless SiteSetting.send(site_setting_key) > 0
|
2014-07-28 15:04:14 -04:00
|
|
|
creator = PostCreator.new( Discourse.system_user,
|
2014-07-24 14:27:34 -04:00
|
|
|
title: I18n.t(title_key, default: I18n.t(title_key, locale: :en)),
|
|
|
|
raw: body_override.present? ? body_override : I18n.t(body_key, params.merge(default: I18n.t(body_key, params.merge(locale: :en)))),
|
|
|
|
skip_validations: true,
|
|
|
|
category: category ? category.name : nil)
|
2014-07-28 15:04:14 -04:00
|
|
|
post = creator.create
|
2014-07-24 14:27:34 -04:00
|
|
|
|
2014-07-28 15:04:14 -04:00
|
|
|
raise "Failed to create the #{description} topic! #{creator.errors.full_messages.join('. ')}" if creator.errors.present?
|
2014-07-24 14:27:34 -04:00
|
|
|
|
|
|
|
SiteSetting.send("#{site_setting_key}=", post.topic_id)
|
|
|
|
|
2017-05-04 10:15:32 -04:00
|
|
|
_reply = PostCreator.create( Discourse.system_user,
|
2014-07-24 14:27:34 -04:00
|
|
|
raw: I18n.t('static_topic_first_reply', page_name: I18n.t(title_key, default: I18n.t(title_key, locale: :en))),
|
|
|
|
skip_validations: true,
|
|
|
|
topic_id: post.topic_id )
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
create_static_page_topic('tos_topic_id', 'tos_topic.title', "tos_topic.body", nil, staff, "terms of service", {
|
2014-12-03 15:39:53 -05:00
|
|
|
company_domain: "company_domain",
|
|
|
|
company_full_name: "company_full_name",
|
|
|
|
company_name: "company_short_name"
|
2014-07-24 14:27:34 -04:00
|
|
|
})
|
|
|
|
|
2015-11-23 16:45:05 -05:00
|
|
|
create_static_page_topic('guidelines_topic_id', 'guidelines_topic.title', "guidelines_topic.body", nil, staff, "guidelines")
|
2014-07-24 14:27:34 -04:00
|
|
|
|
2015-11-23 16:45:05 -05:00
|
|
|
create_static_page_topic('privacy_topic_id', 'privacy_topic.title', "privacy_topic.body", nil, staff, "privacy policy")
|
2014-07-24 14:27:34 -04:00
|
|
|
end
|
2014-07-29 14:30:23 -04:00
|
|
|
|
|
|
|
if seed_welcome_topics
|
|
|
|
puts "Seeding welcome topics"
|
|
|
|
|
2016-12-26 09:38:48 -05:00
|
|
|
PostCreator.create(Discourse.system_user, raw: I18n.t('assets_topic_body'), title: I18n.t('assets_topic_title'), skip_validations: true, category: staff ? staff.name : nil)
|
2014-07-29 14:30:23 -04:00
|
|
|
|
2016-12-26 09:56:33 -05:00
|
|
|
post = PostCreator.create(Discourse.system_user, raw: I18n.t('discourse_welcome_topic.body'), title: I18n.t('discourse_welcome_topic.title'), skip_validations: true)
|
2014-07-29 14:30:23 -04:00
|
|
|
post.topic.update_pinned(true, true)
|
|
|
|
|
|
|
|
lounge = Category.find_by(id: SiteSetting.lounge_category_id)
|
|
|
|
if lounge
|
|
|
|
post = PostCreator.create(Discourse.system_user, raw: I18n.t('lounge_welcome.body'), title: I18n.t('lounge_welcome.title'), skip_validations: true, category: lounge.name)
|
|
|
|
post.topic.update_pinned(true)
|
|
|
|
end
|
|
|
|
|
2015-06-04 15:56:17 -04:00
|
|
|
filename = DiscoursePluginRegistry.seed_data["admin_quick_start_filename"]
|
|
|
|
if filename.nil? || !File.exists?(filename)
|
|
|
|
filename = Rails.root + 'docs/ADMIN-QUICK-START-GUIDE.md'
|
|
|
|
end
|
|
|
|
|
|
|
|
welcome = File.read(filename)
|
|
|
|
PostCreator.create( Discourse.system_user,
|
|
|
|
raw: welcome,
|
|
|
|
title: DiscoursePluginRegistry.seed_data["admin_quick_start_title"] || "READ ME FIRST: Admin Quick Start Guide",
|
|
|
|
skip_validations: true,
|
|
|
|
category: staff ? staff.name : nil)
|
2014-07-29 14:30:23 -04:00
|
|
|
end
|
2016-12-04 20:11:46 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# run this later, cause we need to make sure new application controller resilience is in place first
|
2017-05-04 10:15:32 -04:00
|
|
|
|
2017-05-26 09:04:13 -04:00
|
|
|
ColumnDropper.drop(
|
|
|
|
table: 'user_stats',
|
|
|
|
after_migration: 'DropUnreadTrackingColumns',
|
|
|
|
columns: %w{
|
|
|
|
first_topic_unread_at
|
|
|
|
},
|
|
|
|
on_drop: ->(){
|
|
|
|
STDERR.puts "Removing superflous user stats columns!"
|
|
|
|
ActiveRecord::Base.exec_sql "DROP FUNCTION IF EXISTS first_unread_topic_for(int)"
|
|
|
|
}
|
|
|
|
)
|
|
|
|
|
2017-05-04 10:15:32 -04:00
|
|
|
ColumnDropper.drop(
|
|
|
|
table: 'topics',
|
2017-05-26 09:04:13 -04:00
|
|
|
after_migration: 'DropUnreadTrackingColumns',
|
2017-05-04 10:15:32 -04:00
|
|
|
columns: %w{
|
2016-12-04 20:11:46 -05:00
|
|
|
inappropriate_count
|
|
|
|
bookmark_count
|
|
|
|
off_topic_count
|
|
|
|
illegal_count
|
|
|
|
notify_user_count
|
2017-05-26 09:04:13 -04:00
|
|
|
last_unread_at
|
2017-05-04 10:15:32 -04:00
|
|
|
},
|
2017-05-04 13:41:05 -04:00
|
|
|
on_drop: ->(){
|
2017-05-04 10:15:32 -04:00
|
|
|
STDERR.puts "Removing superflous topic columns!"
|
|
|
|
}
|
|
|
|
)
|
2017-06-04 21:59:05 -04:00
|
|
|
|
|
|
|
ColumnDropper.drop(
|
|
|
|
table: 'topics',
|
|
|
|
after_migration: 'RemoveAutoCloseColumnsFromTopics',
|
|
|
|
columns: %w{
|
|
|
|
auto_close_at
|
|
|
|
auto_close_user_id
|
|
|
|
auto_close_started_at
|
|
|
|
auto_close_based_on_last_post
|
|
|
|
auto_close_hours
|
|
|
|
},
|
|
|
|
on_drop: ->(){
|
|
|
|
STDERR.puts "Removing superflous topic columns!"
|
2017-06-05 23:10:51 -04:00
|
|
|
},
|
2017-06-05 23:07:31 -04:00
|
|
|
delay: 3600
|
2017-06-04 21:59:05 -04:00
|
|
|
)
|