2014-07-03 04:50:44 +08:00
if ARGV . include? ( 'bbcode-to-md' )
# Replace (most) bbcode with markdown before creating posts.
# This will dramatically clean up the final posts in Discourse.
#
# In a temp dir:
#
2014-07-12 01:36:05 +08:00
# git clone https://github.com/nlalonde/ruby-bbcode-to-md.git
2014-07-03 04:50:44 +08:00
# cd ruby-bbcode-to-md
# gem build ruby-bbcode-to-md.gemspec
2015-05-05 05:09:58 +08:00
# gem install ruby-bbcode-to-md-*.gem
2014-07-03 04:50:44 +08:00
require 'ruby-bbcode-to-md'
end
2015-01-31 22:42:39 +08:00
require_relative '../../config/environment'
2015-05-05 05:09:58 +08:00
require_relative 'base/lookup_container'
require_relative 'base/uploader'
2015-01-24 01:19:46 +08:00
2014-05-31 03:09:58 +08:00
module ImportScripts ; end
class ImportScripts :: Base
2015-01-24 01:19:46 +08:00
include ActionView :: Helpers :: NumberHelper
2014-05-31 03:09:58 +08:00
def initialize
2014-08-14 04:17:16 +08:00
preload_i18n
2014-05-31 03:09:58 +08:00
2015-05-05 05:09:58 +08:00
@lookup = ImportScripts :: LookupContainer . new
@uploader = ImportScripts :: Uploader . new
2014-05-31 03:09:58 +08:00
2015-05-05 05:09:58 +08:00
@bbcode_to_md = true if use_bbcode_to_md?
@site_settings_during_import = { }
@old_site_settings = { }
@start_times = { import : Time . now }
2014-05-31 03:09:58 +08:00
end
2014-08-14 04:17:16 +08:00
def preload_i18n
I18n . t ( " test " )
ActiveSupport :: Inflector . transliterate ( " test " )
end
2014-05-31 03:09:58 +08:00
def perform
Rails . logger . level = 3 # :error, so that we don't create log files that are many GB
2014-06-06 02:40:11 +08:00
2014-09-01 00:09:21 +08:00
change_site_settings
2014-05-31 03:09:58 +08:00
execute
2014-08-14 04:17:16 +08:00
puts " "
2014-05-31 03:09:58 +08:00
update_bumped_at
2014-09-09 01:36:55 +08:00
update_last_posted_at
2015-02-13 01:24:53 +08:00
update_last_seen_at
2016-05-18 06:38:51 +08:00
update_user_stats
2014-06-06 03:30:29 +08:00
update_feature_topic_users
2014-07-04 02:43:24 +08:00
update_category_featured_topics
update_topic_count_replies
2014-09-05 01:08:57 +08:00
reset_topic_counters
2014-06-06 03:30:29 +08:00
2015-05-05 05:09:58 +08:00
elapsed = Time . now - @start_times [ :import ]
puts '' , '' , 'Done (%02dh %02dmin %02dsec)' % [ elapsed / 3600 , elapsed / 60 % 60 , elapsed % 60 ]
2014-05-31 03:09:58 +08:00
ensure
2014-09-01 00:09:21 +08:00
reset_site_settings
end
2015-05-05 05:09:58 +08:00
def get_site_settings_for_import
{
2014-09-01 00:09:21 +08:00
email_domains_blacklist : '' ,
min_topic_title_length : 1 ,
min_post_length : 1 ,
2015-03-19 22:17:55 +08:00
min_first_post_length : 1 ,
2014-09-01 00:09:21 +08:00
min_private_message_post_length : 1 ,
min_private_message_title_length : 1 ,
allow_duplicate_topic_titles : true ,
2015-03-14 04:24:11 +08:00
disable_emails : true ,
authorized_extensions : '*'
2014-09-01 00:09:21 +08:00
}
2015-05-05 05:09:58 +08:00
end
def change_site_settings
@site_settings_during_import = get_site_settings_for_import
2014-09-01 00:09:21 +08:00
2015-03-14 04:24:11 +08:00
@site_settings_during_import . each do | key , value |
2014-09-01 00:09:21 +08:00
@old_site_settings [ key ] = SiteSetting . send ( key )
SiteSetting . set ( key , value )
end
RateLimiter . disable
end
def reset_site_settings
@old_site_settings . each do | key , value |
2015-03-14 04:24:11 +08:00
current_value = SiteSetting . send ( key )
SiteSetting . set ( key , value ) unless current_value != @site_settings_during_import [ key ]
2014-09-01 00:09:21 +08:00
end
2014-05-31 03:09:58 +08:00
RateLimiter . enable
end
2015-05-05 05:09:58 +08:00
def use_bbcode_to_md?
ARGV . include? ( " bbcode-to-md " )
end
2014-05-31 03:09:58 +08:00
# Implementation will do most of its work in its execute method.
# It will need to call create_users, create_categories, and create_posts.
def execute
raise NotImplementedError
end
2017-04-26 21:36:35 +08:00
% i { post_id_from_imported_post_id
topic_lookup_from_imported_post_id
group_id_from_imported_group_id
find_group_by_import_id
user_id_from_imported_user_id
find_user_by_import_id
category_id_from_imported_category_id
add_group add_user add_category add_topic add_post
} . each do | method_name |
delegate method_name , to : :@lookup
2014-05-31 03:09:58 +08:00
end
def create_admin ( opts = { } )
admin = User . new
admin . email = opts [ :email ] || " sam.saffron@gmail.com "
admin . username = opts [ :username ] || " sam "
admin . password = SecureRandom . uuid
admin . save!
admin . grant_admin!
2014-09-05 13:20:39 +08:00
admin . change_trust_level! ( TrustLevel [ 4 ] )
2014-05-31 03:09:58 +08:00
admin . email_tokens . update_all ( confirmed : true )
admin
end
2016-10-26 23:51:34 +08:00
def created_group ( group )
# override if needed
end
2014-07-17 01:59:30 +08:00
# Iterate through a list of groups to be imported.
# Takes a collection and yields to the block for each element.
# Block should return a hash with the attributes for each element.
# Required fields are :id and :name, where :id is the id of the
# group in the original datasource. The given id will not be used
# to create the Discourse group record.
def create_groups ( results , opts = { } )
2015-05-05 05:09:58 +08:00
created = 0
skipped = 0
failed = 0
2014-07-17 01:59:30 +08:00
total = opts [ :total ] || results . size
results . each do | result |
g = yield ( result )
2017-04-26 21:36:35 +08:00
if group_id_from_imported_group_id ( g [ :id ] )
2015-05-05 05:09:58 +08:00
skipped += 1
2014-07-17 01:59:30 +08:00
else
new_group = create_group ( g , g [ :id ] )
2016-10-26 23:51:34 +08:00
created_group ( new_group )
2014-07-17 01:59:30 +08:00
if new_group . valid?
2017-04-26 21:36:35 +08:00
add_group ( g [ :id ] . to_s , new_group )
2015-05-05 05:09:58 +08:00
created += 1
2014-07-17 01:59:30 +08:00
else
2015-05-05 05:09:58 +08:00
failed += 1
2014-07-17 01:59:30 +08:00
puts " Failed to create group id #{ g [ :id ] } #{ new_group . name } : #{ new_group . errors . full_messages } "
end
end
2015-05-05 05:09:58 +08:00
print_status created + skipped + failed + ( opts [ :offset ] || 0 ) , total
2014-07-17 01:59:30 +08:00
end
2015-05-05 05:09:58 +08:00
[ created , skipped ]
2014-07-17 01:59:30 +08:00
end
def create_group ( opts , import_id )
opts = opts . dup . tap { | o | o . delete ( :id ) }
import_name = opts [ :name ]
opts [ :name ] = UserNameSuggester . suggest ( import_name )
existing = Group . where ( name : opts [ :name ] ) . first
return existing if existing and existing . custom_fields [ " import_id " ] . to_i == import_id . to_i
g = existing || Group . new ( opts )
g . custom_fields [ " import_id " ] = import_id
g . custom_fields [ " import_name " ] = import_name
g . tap ( & :save )
end
2015-09-22 07:48:42 +08:00
def all_records_exist? ( type , import_ids )
return false if import_ids . empty?
2017-02-01 21:33:09 +08:00
connection = ActiveRecord :: Base . connection . raw_connection
connection . exec ( 'CREATE TEMP TABLE import_ids(val text PRIMARY KEY)' )
2015-10-15 10:25:10 +08:00
2016-03-08 01:21:09 +08:00
import_id_clause = import_ids . map { | id | " (' #{ PG :: Connection . escape_string ( id . to_s ) } ') " } . join ( " , " )
2016-06-14 23:44:35 +08:00
2017-02-01 21:33:09 +08:00
connection . exec ( " INSERT INTO import_ids VALUES #{ import_id_clause } " )
2015-09-22 07:48:42 +08:00
2017-02-01 21:33:09 +08:00
existing = " #{ type . to_s . classify } CustomField " . constantize
existing = existing . where ( name : 'import_id' )
. joins ( 'JOIN import_ids ON val = value' )
. count
if existing == import_ids . length
2015-10-15 10:25:10 +08:00
puts " Skipping #{ import_ids . length } already imported #{ type } "
return true
2015-09-22 07:48:42 +08:00
end
2015-10-15 10:25:10 +08:00
ensure
2017-07-07 23:11:43 +08:00
connection . exec ( 'DROP TABLE import_ids' ) unless connection . nil?
2015-09-22 07:48:42 +08:00
end
2016-10-26 23:51:34 +08:00
def created_user ( user )
# override if needed
end
2014-05-31 03:09:58 +08:00
# Iterate through a list of user records to be imported.
# Takes a collection, and yields to the block for each element.
# Block should return a hash with the attributes for the User model.
# Required fields are :id and :email, where :id is the id of the
# user in the original datasource. The given id will not be used to
# create the Discourse user record.
2014-07-05 04:05:15 +08:00
def create_users ( results , opts = { } )
2015-05-05 05:09:58 +08:00
created = 0
skipped = 0
failed = 0
2014-07-05 04:05:15 +08:00
total = opts [ :total ] || results . size
2014-05-31 03:09:58 +08:00
results . each do | result |
u = yield ( result )
2015-01-19 22:00:55 +08:00
# block returns nil to skip a user
2014-08-12 00:44:17 +08:00
if u . nil?
2015-05-05 05:09:58 +08:00
skipped += 1
2014-09-05 01:18:22 +08:00
else
import_id = u [ :id ]
2014-08-18 19:04:08 +08:00
2017-04-26 21:36:35 +08:00
if user_id_from_imported_user_id ( import_id )
2015-05-05 05:09:58 +08:00
skipped += 1
2014-09-05 01:18:22 +08:00
elsif u [ :email ] . present?
new_user = create_user ( u , import_id )
2016-10-26 23:51:34 +08:00
created_user ( new_user )
2014-05-31 03:09:58 +08:00
2015-12-01 22:38:21 +08:00
if new_user && new_user . valid? && new_user . user_profile && new_user . user_profile . valid?
2017-04-26 21:36:35 +08:00
add_user ( import_id . to_s , new_user )
2015-05-05 05:09:58 +08:00
created += 1
2014-09-05 01:18:22 +08:00
else
2015-05-05 05:09:58 +08:00
failed += 1
2015-12-01 22:38:21 +08:00
puts " Failed to create user id: #{ import_id } , username: #{ new_user . try ( :username ) } , email: #{ new_user . try ( :email ) } "
if new_user . try ( :errors )
puts " user errors: #{ new_user . errors . full_messages } "
if new_user . try ( :user_profile ) . try ( :errors )
puts " user_profile errors: #{ new_user . user_profile . errors . full_messages } "
end
end
2014-09-05 01:18:22 +08:00
end
2014-05-31 03:09:58 +08:00
else
2015-05-05 05:09:58 +08:00
failed += 1
2014-09-05 01:18:22 +08:00
puts " Skipping user id #{ import_id } because email is blank "
2014-05-31 03:09:58 +08:00
end
end
2015-05-05 05:09:58 +08:00
print_status created + skipped + failed + ( opts [ :offset ] || 0 ) , total
2014-05-31 03:09:58 +08:00
end
2015-05-05 05:09:58 +08:00
[ created , skipped ]
2014-05-31 03:09:58 +08:00
end
def create_user ( opts , import_id )
opts . delete ( :id )
2014-08-25 16:48:29 +08:00
merge = opts . delete ( :merge )
2014-07-17 01:59:30 +08:00
post_create_action = opts . delete ( :post_create_action )
2014-08-25 16:48:29 +08:00
2016-08-18 03:10:25 +08:00
existing = User . where ( " email = ? OR username = ? " , opts [ :email ] . downcase , opts [ :username ] ) . first
2014-08-25 16:48:29 +08:00
return existing if existing && ( merge || existing . custom_fields [ " import_id " ] . to_i == import_id . to_i )
2014-05-31 03:09:58 +08:00
2014-06-10 14:07:16 +08:00
bio_raw = opts . delete ( :bio_raw )
2014-08-18 19:04:08 +08:00
website = opts . delete ( :website )
2015-01-24 01:19:46 +08:00
location = opts . delete ( :location )
2014-08-14 15:43:32 +08:00
avatar_url = opts . delete ( :avatar_url )
2016-07-28 04:30:15 +08:00
original_username = opts [ :username ]
original_name = opts [ :name ]
2015-10-30 04:47:27 +08:00
# Allow the || operations to work with empty strings ''
opts [ :username ] = nil if opts [ :username ] . blank?
2014-08-14 04:17:16 +08:00
opts [ :name ] = User . suggest_name ( opts [ :email ] ) unless opts [ :name ]
2016-07-28 04:30:15 +08:00
2014-08-15 00:11:28 +08:00
if opts [ :username ] . blank? ||
2015-01-24 05:44:00 +08:00
opts [ :username ] . length < User . username_length . begin ||
opts [ :username ] . length > User . username_length . end ||
2015-09-22 07:27:47 +08:00
! User . username_available? ( opts [ :username ] ) ||
! UsernameValidator . new ( opts [ :username ] ) . valid_format?
2016-02-22 04:58:47 +08:00
opts [ :username ] = UserNameSuggester . suggest ( opts [ :username ] || opts [ :name ] . presence || opts [ :email ] )
2014-08-14 04:17:16 +08:00
end
2016-07-28 04:30:15 +08:00
opts [ :name ] = original_username if original_name . blank? && opts [ :username ] != original_username
2014-05-31 03:09:58 +08:00
opts [ :email ] = opts [ :email ] . downcase
2014-09-05 13:20:39 +08:00
opts [ :trust_level ] = TrustLevel [ 1 ] unless opts [ :trust_level ]
2015-01-24 05:44:00 +08:00
opts [ :active ] = opts . fetch ( :active , true )
2014-08-14 04:17:16 +08:00
opts [ :import_mode ] = true
2015-03-19 03:48:26 +08:00
opts [ :last_emailed_at ] = opts . fetch ( :last_emailed_at , Time . now )
2014-05-31 03:09:58 +08:00
u = User . new ( opts )
2015-12-01 22:38:21 +08:00
( opts [ :custom_fields ] || { } ) . each { | k , v | u . custom_fields [ k ] = v }
2014-05-31 03:09:58 +08:00
u . custom_fields [ " import_id " ] = import_id
2016-07-28 04:30:15 +08:00
u . custom_fields [ " import_username " ] = opts [ :username ] if original_username . present?
2014-08-14 15:43:32 +08:00
u . custom_fields [ " import_avatar_url " ] = avatar_url if avatar_url . present?
2015-08-21 04:15:57 +08:00
u . custom_fields [ " import_pass " ] = opts [ :password ] if opts [ :password ] . present?
2014-05-31 03:09:58 +08:00
begin
2014-06-10 14:07:16 +08:00
User . transaction do
u . save!
2015-03-07 22:42:42 +08:00
if bio_raw . present? || website . present? || location . present?
2016-02-22 00:38:04 +08:00
u . user_profile . bio_raw = bio_raw [ 0 .. 2999 ] if bio_raw . present?
u . user_profile . website = website unless website . blank? || website !~ UserProfile :: WEBSITE_REGEXP
2015-01-24 01:19:46 +08:00
u . user_profile . location = location if location . present?
2014-06-10 14:07:16 +08:00
u . user_profile . save!
end
end
2015-08-21 04:15:57 +08:00
if opts [ :active ] && opts [ :password ] . present?
u . activate
end
2015-09-22 07:27:47 +08:00
rescue = > e
2014-05-31 03:09:58 +08:00
# try based on email
2015-12-01 22:38:21 +08:00
if e . try ( :record ) . try ( :errors ) . try ( :messages ) . try ( :[] , :email ) . present?
2017-04-27 02:47:36 +08:00
if existing = User . find_by_email ( opts [ :email ] . downcase )
2015-09-22 07:27:47 +08:00
existing . custom_fields [ " import_id " ] = import_id
existing . save!
u = existing
end
else
2015-10-30 04:47:27 +08:00
puts " Error on record: #{ opts . inspect } "
2015-09-22 07:27:47 +08:00
raise e
2014-05-31 03:09:58 +08:00
end
end
2015-12-01 22:38:21 +08:00
2014-07-17 01:59:30 +08:00
post_create_action . try ( :call , u ) if u . persisted?
2014-05-31 03:09:58 +08:00
u # If there was an error creating the user, u.errors has the messages
end
2016-10-26 23:51:34 +08:00
def created_category ( category )
# override if needed
end
2014-05-31 03:09:58 +08:00
# Iterates through a collection to create categories.
# The block should return a hash with attributes for the new category.
# Required fields are :id and :name, where :id is the id of the
# category in the original datasource. The given id will not be used to
# create the Discourse category record.
# Optional attributes are position, description, and parent_category_id.
def create_categories ( results )
2015-05-05 05:09:58 +08:00
created = 0
skipped = 0
total = results . size
2014-05-31 03:09:58 +08:00
results . each do | c |
params = yield ( c )
2014-09-11 02:27:18 +08:00
2015-03-13 04:15:02 +08:00
# block returns nil to skip
2017-04-26 21:36:35 +08:00
if params . nil? || category_id_from_imported_category_id ( params [ :id ] )
2015-05-05 05:09:58 +08:00
skipped += 1
else
# Basic massaging on the category name
params [ :name ] = " Blank " if params [ :name ] . blank?
params [ :name ] . strip!
params [ :name ] = params [ :name ] [ 0 .. 49 ]
# make sure categories don't go more than 2 levels deep
if params [ :parent_category_id ]
top = Category . find_by_id ( params [ :parent_category_id ] )
top = top . parent_category while top && ! top . parent_category . nil?
params [ :parent_category_id ] = top . id if top
end
2014-09-11 02:27:18 +08:00
2016-10-26 23:51:34 +08:00
new_category = create_category ( params , params [ :id ] )
created_category ( new_category )
2014-07-05 04:05:15 +08:00
2015-05-05 05:09:58 +08:00
created += 1
2014-07-05 04:05:15 +08:00
end
2015-05-05 05:09:58 +08:00
print_status created + skipped , total
2014-05-31 03:09:58 +08:00
end
2015-05-05 05:09:58 +08:00
[ created , skipped ]
2014-05-31 03:09:58 +08:00
end
def create_category ( opts , import_id )
2015-03-13 04:15:02 +08:00
existing = Category . where ( " LOWER(name) = ? " , opts [ :name ] . downcase ) . first
return existing if existing && existing . parent_category . try ( :id ) == opts [ :parent_category_id ]
2014-05-31 03:09:58 +08:00
2014-07-17 01:59:30 +08:00
post_create_action = opts . delete ( :post_create_action )
2014-08-18 19:04:08 +08:00
2014-05-31 03:09:58 +08:00
new_category = Category . new (
name : opts [ :name ] ,
2016-07-28 00:38:23 +08:00
user_id : opts [ :user_id ] || opts [ :user ] . try ( :id ) || Discourse :: SYSTEM_USER_ID ,
2014-05-31 03:09:58 +08:00
position : opts [ :position ] ,
description : opts [ :description ] ,
2015-05-19 18:40:35 +08:00
parent_category_id : opts [ :parent_category_id ] ,
color : opts [ :color ] || " AB9364 " ,
text_color : opts [ :text_color ] || " FFF " ,
2016-07-28 00:38:23 +08:00
read_restricted : opts [ :read_restricted ] || false ,
2014-05-31 03:09:58 +08:00
)
2014-08-18 19:04:08 +08:00
2014-05-31 03:09:58 +08:00
new_category . custom_fields [ " import_id " ] = import_id if import_id
new_category . save!
2014-08-18 19:04:08 +08:00
2017-04-26 21:36:35 +08:00
add_category ( import_id , new_category )
2015-12-03 23:12:06 +08:00
2014-07-17 01:59:30 +08:00
post_create_action . try ( :call , new_category )
2014-08-18 19:04:08 +08:00
2014-05-31 03:09:58 +08:00
new_category
end
2014-10-31 12:16:08 +08:00
def created_post ( post )
# override if needed
end
2014-05-31 03:09:58 +08:00
# Iterates through a collection of posts to be imported.
# It can create topics and replies.
# Attributes will be passed to the PostCreator.
# Topics should give attributes title and category.
# Replies should provide topic_id. Use topic_lookup_from_imported_post_id to find the topic.
def create_posts ( results , opts = { } )
skipped = 0
created = 0
total = opts [ :total ] || results . size
2015-05-05 05:09:58 +08:00
start_time = get_start_time ( " posts- #{ total } " ) # the post count should be unique enough to differentiate between posts and PMs
2014-05-31 03:09:58 +08:00
results . each do | r |
params = yield ( r )
2014-09-05 01:18:22 +08:00
# block returns nil to skip a post
2014-05-31 03:09:58 +08:00
if params . nil?
skipped += 1
else
2014-09-05 01:18:22 +08:00
import_id = params . delete ( :id ) . to_s
2017-04-26 21:36:35 +08:00
if post_id_from_imported_post_id ( import_id )
2014-09-05 01:18:22 +08:00
skipped += 1 # already imported this post
else
begin
new_post = create_post ( params , import_id )
if new_post . is_a? ( Post )
2017-04-26 21:36:35 +08:00
add_post ( import_id , new_post )
add_topic ( new_post )
2014-09-05 01:18:22 +08:00
2014-10-31 12:16:08 +08:00
created_post ( new_post )
2014-09-05 01:18:22 +08:00
created += 1
else
skipped += 1
puts " Error creating post #{ import_id } . Skipping. "
puts new_post . inspect
end
rescue Discourse :: InvalidAccess = > e
skipped += 1
puts " InvalidAccess creating post #{ import_id } . Topic is closed? #{ e . message } "
rescue = > e
2014-07-05 04:05:15 +08:00
skipped += 1
2014-09-05 01:18:22 +08:00
puts " Exception while creating post #{ import_id } . Skipping. "
puts e . message
puts e . backtrace . join ( " \n " )
2014-07-05 04:05:15 +08:00
end
2014-05-31 03:09:58 +08:00
end
end
2015-05-05 05:09:58 +08:00
print_status ( created + skipped + ( opts [ :offset ] || 0 ) , total , start_time )
2014-05-31 03:09:58 +08:00
end
2015-05-05 05:09:58 +08:00
[ created , skipped ]
2014-05-31 03:09:58 +08:00
end
2016-07-28 00:38:23 +08:00
STAFF_GUARDIAN || = Guardian . new ( Discourse . system_user )
2015-10-15 10:25:10 +08:00
2014-06-26 07:11:52 +08:00
def create_post ( opts , import_id )
2014-05-31 03:09:58 +08:00
user = User . find ( opts [ :user_id ] )
2014-07-17 01:59:30 +08:00
post_create_action = opts . delete ( :post_create_action )
2014-05-31 03:09:58 +08:00
opts = opts . merge ( skip_validations : true )
2014-07-04 02:43:24 +08:00
opts [ :import_mode ] = true
2014-06-26 07:11:52 +08:00
opts [ :custom_fields ] || = { }
opts [ :custom_fields ] [ 'import_id' ] = import_id
2014-05-31 03:09:58 +08:00
2015-10-15 10:25:10 +08:00
opts [ :guardian ] = STAFF_GUARDIAN
2014-07-03 04:50:44 +08:00
if @bbcode_to_md
2014-07-24 03:15:51 +08:00
opts [ :raw ] = opts [ :raw ] . bbcode_to_md ( false ) rescue opts [ :raw ]
2014-07-03 04:50:44 +08:00
end
2014-07-05 04:05:15 +08:00
post_creator = PostCreator . new ( user , opts )
post = post_creator . create
2014-07-17 01:59:30 +08:00
post_create_action . try ( :call , post ) if post
2014-07-05 04:05:15 +08:00
post ? post : post_creator . errors . full_messages
2014-05-31 03:09:58 +08:00
end
2014-07-17 01:59:30 +08:00
def create_upload ( user_id , path , source_filename )
2015-05-05 05:09:58 +08:00
@uploader . create_upload ( user_id , path , source_filename )
2014-07-17 01:59:30 +08:00
end
2015-03-14 04:24:11 +08:00
# Iterate through a list of bookmark records to be imported.
# Takes a collection, and yields to the block for each element.
# Block should return a hash with the attributes for the bookmark.
# Required fields are :user_id and :post_id, where both ids are
# the values in the original datasource.
def create_bookmarks ( results , opts = { } )
2015-05-05 05:09:58 +08:00
created = 0
skipped = 0
2015-03-14 04:24:11 +08:00
total = opts [ :total ] || results . size
user = User . new
post = Post . new
results . each do | result |
params = yield ( result )
# only the IDs are needed, so this should be enough
2015-05-05 05:09:58 +08:00
if params . nil?
skipped += 1
2015-03-14 04:24:11 +08:00
else
2017-04-26 21:36:35 +08:00
user . id = user_id_from_imported_user_id ( params [ :user_id ] )
post . id = post_id_from_imported_post_id ( params [ :post_id ] )
2015-03-14 04:24:11 +08:00
2015-05-05 05:09:58 +08:00
if user . id . nil? || post . id . nil?
skipped += 1
puts " Skipping bookmark for user id #{ params [ :user_id ] } and post id #{ params [ :post_id ] } "
else
begin
PostAction . act ( user , post , PostActionType . types [ :bookmark ] )
created += 1
rescue PostAction :: AlreadyActed
skipped += 1
end
end
2015-03-14 04:24:11 +08:00
end
2015-05-05 05:09:58 +08:00
print_status created + skipped + ( opts [ :offset ] || 0 ) , total
2015-03-14 04:24:11 +08:00
end
2015-05-05 05:09:58 +08:00
[ created , skipped ]
2015-03-14 04:24:11 +08:00
end
2014-06-04 22:37:43 +08:00
def close_inactive_topics ( opts = { } )
num_days = opts [ :days ] || 30
2015-01-24 05:44:00 +08:00
puts '' , " Closing topics that have been inactive for more than #{ num_days } days. "
2014-06-04 22:37:43 +08:00
query = Topic . where ( 'last_posted_at < ?' , num_days . days . ago ) . where ( closed : false )
total_count = query . count
closed_count = 0
query . find_each do | topic |
topic . update_status ( 'closed' , true , Discourse . system_user )
closed_count += 1
print_status ( closed_count , total_count )
end
end
2014-06-05 06:21:45 +08:00
def update_bumped_at
2014-08-25 16:48:29 +08:00
puts " " , " updating bumped_at on topics "
2015-07-25 04:39:03 +08:00
Post . exec_sql ( " update topics t set bumped_at = COALESCE((select max(created_at) from posts where topic_id = t.id and post_type = #{ Post . types [ :regular ] } ), bumped_at) " )
2014-06-05 06:21:45 +08:00
end
2014-09-09 01:36:55 +08:00
def update_last_posted_at
2014-09-09 04:08:41 +08:00
puts " " , " updating last posted at on users "
sql = <<-SQL
WITH lpa AS (
SELECT user_id , MAX ( posts . created_at ) AS last_posted_at
FROM posts
GROUP BY user_id
)
UPDATE users
SET last_posted_at = lpa . last_posted_at
FROM users u1
JOIN lpa ON lpa . user_id = u1 . id
WHERE u1 . id = users . id
AND users . last_posted_at < > lpa . last_posted_at
SQL
User . exec_sql ( sql )
2014-09-09 01:36:55 +08:00
end
2016-05-18 06:38:51 +08:00
def update_user_stats
puts " " , " Updating topic reply counts... "
2016-09-21 02:27:45 +08:00
start_time = Time . now
progress_count = 0
total_count = User . real . count
2016-05-18 06:38:51 +08:00
User . find_each do | u |
u . create_user_stat if u . user_stat . nil?
us = u . user_stat
us . update_topic_reply_count
us . save
2016-09-21 02:27:45 +08:00
progress_count += 1
print_status ( progress_count , total_count , start_time )
2016-05-18 06:38:51 +08:00
end
2016-09-21 02:27:45 +08:00
puts " . " " Updating first_post_created_at... "
2016-05-18 06:38:51 +08:00
sql = <<-SQL
WITH sub AS (
SELECT user_id , MIN ( posts . created_at ) AS first_post_created_at
FROM posts
GROUP BY user_id
)
UPDATE user_stats
SET first_post_created_at = sub . first_post_created_at
FROM user_stats u1
JOIN sub ON sub . user_id = u1 . user_id
WHERE u1 . user_id = user_stats . user_id
AND user_stats . first_post_created_at < > sub . first_post_created_at
SQL
User . exec_sql ( sql )
puts " Updating user post_count... "
sql = <<-SQL
WITH sub AS (
SELECT user_id , COUNT ( * ) AS post_count
FROM posts
GROUP BY user_id
)
UPDATE user_stats
SET post_count = sub . post_count
FROM user_stats u1
JOIN sub ON sub . user_id = u1 . user_id
WHERE u1 . user_id = user_stats . user_id
AND user_stats . post_count < > sub . post_count
SQL
User . exec_sql ( sql )
puts " Updating user topic_count... "
sql = <<-SQL
WITH sub AS (
SELECT user_id , COUNT ( * ) AS topic_count
FROM topics
GROUP BY user_id
)
UPDATE user_stats
SET topic_count = sub . topic_count
FROM user_stats u1
JOIN sub ON sub . user_id = u1 . user_id
WHERE u1 . user_id = user_stats . user_id
AND user_stats . topic_count < > sub . topic_count
SQL
User . exec_sql ( sql )
end
2015-02-13 01:24:53 +08:00
# scripts that are able to import last_seen_at from the source data should override this method
def update_last_seen_at
puts " " , " updating last seen at on users "
User . exec_sql ( " UPDATE users SET last_seen_at = created_at WHERE last_seen_at IS NULL " )
User . exec_sql ( " UPDATE users SET last_seen_at = last_posted_at WHERE last_posted_at IS NOT NULL " )
end
2014-06-06 03:30:29 +08:00
def update_feature_topic_users
2014-08-25 16:48:29 +08:00
puts " " , " updating featured topic users "
2014-06-06 03:30:29 +08:00
total_count = Topic . count
progress_count = 0
Topic . find_each do | topic |
topic . feature_topic_users
progress_count += 1
print_status ( progress_count , total_count )
end
end
2014-09-05 01:08:57 +08:00
def reset_topic_counters
2015-01-24 05:44:00 +08:00
puts " " , " resetting topic counters "
2014-09-05 01:08:57 +08:00
total_count = Topic . count
progress_count = 0
Topic . find_each do | topic |
Topic . reset_highest ( topic . id )
progress_count += 1
print_status ( progress_count , total_count )
end
end
2014-07-04 02:43:24 +08:00
def update_category_featured_topics
2014-08-25 16:48:29 +08:00
puts " " , " updating featured topics in categories "
2014-08-22 16:11:12 +08:00
total_count = Category . count
progress_count = 0
2014-07-04 02:43:24 +08:00
Category . find_each do | category |
CategoryFeaturedTopic . feature_topics_for ( category )
2014-08-22 16:11:12 +08:00
progress_count += 1
print_status ( progress_count , total_count )
2014-07-04 02:43:24 +08:00
end
end
def update_topic_count_replies
2014-08-25 16:48:29 +08:00
puts " " , " updating user topic reply counts "
2014-07-04 02:43:24 +08:00
total_count = User . real . count
progress_count = 0
User . real . find_each do | u |
u . user_stat . update_topic_reply_count
u . user_stat . save!
progress_count += 1
print_status ( progress_count , total_count )
end
end
2015-02-07 05:03:41 +08:00
def update_tl0
2015-03-21 05:05:13 +08:00
puts " " , " setting users with no posts to trust level 0 "
total_count = User . count
progress_count = 0
2016-07-06 22:58:43 +08:00
User . includes ( :user_stat ) . find_each do | user |
2015-04-17 23:34:20 +08:00
begin
2016-07-06 22:58:43 +08:00
user . update_columns ( trust_level : 0 ) if user . trust_level > 0 && user . post_count == 0
2015-04-17 23:34:20 +08:00
rescue Discourse :: InvalidAccess
nil
end
2015-03-21 05:05:13 +08:00
progress_count += 1
print_status ( progress_count , total_count )
2015-02-07 05:03:41 +08:00
end
end
2015-12-03 23:12:06 +08:00
def update_user_signup_date_based_on_first_post
puts " " , " setting users' signup date based on the date of their first post "
total_count = User . count
progress_count = 0
User . find_each do | user |
first = user . posts . order ( 'created_at ASC' ) . first
if first
user . created_at = first . created_at
user . save!
end
progress_count += 1
print_status ( progress_count , total_count )
end
end
2015-01-24 01:19:46 +08:00
def html_for_upload ( upload , display_filename )
2015-05-05 05:09:58 +08:00
@uploader . html_for_upload ( upload , display_filename )
2015-01-24 01:19:46 +08:00
end
def embedded_image_html ( upload )
2015-05-05 05:09:58 +08:00
@uploader . embedded_image_html ( upload )
2015-01-24 01:19:46 +08:00
end
def attachment_html ( upload , display_filename )
2015-05-05 05:09:58 +08:00
@uploader . attachment_html ( upload , display_filename )
2015-01-24 01:19:46 +08:00
end
2015-05-05 05:09:58 +08:00
def print_status ( current , max , start_time = nil )
if start_time . present?
elapsed_seconds = Time . now - start_time
elements_per_minute = '[%.0f items/min] ' % [ current / elapsed_seconds . to_f * 60 ]
else
elements_per_minute = ''
end
print " \r %9d / %d (%5.1f%%) %s " % [ current , max , current / max . to_f * 100 , elements_per_minute ]
2014-05-31 03:09:58 +08:00
end
2015-03-31 00:29:48 +08:00
def print_spinner
@spinner_chars || = %w{ | / - \\ }
@spinner_chars . push @spinner_chars . shift
print " \b #{ @spinner_chars [ 0 ] } "
end
2015-05-05 05:09:58 +08:00
def get_start_time ( key )
@start_times . fetch ( key ) { | k | @start_times [ k ] = Time . now }
end
2014-05-31 03:09:58 +08:00
def batches ( batch_size )
offset = 0
loop do
yield offset
offset += batch_size
end
end
end