mirror of
https://github.com/discourse/discourse.git
synced 2024-11-22 22:21:55 +08:00
30990006a9
This reduces chances of errors where consumers of strings mutate inputs and reduces memory usage of the app. Test suite passes now, but there may be some stuff left, so we will run a few sites on a branch prior to merging
49 lines
1.3 KiB
Ruby
49 lines
1.3 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
class Remap
|
|
def initialize(from, to, regex: false, verbose: false)
|
|
@from = from
|
|
@to = to
|
|
@regex = regex
|
|
@verbose = verbose
|
|
end
|
|
|
|
def perform
|
|
sql = "SELECT table_name, column_name
|
|
FROM information_schema.columns
|
|
WHERE table_schema='public' and (data_type like 'char%' or data_type like 'text%') and is_updatable = 'YES'"
|
|
|
|
cnn = ActiveRecord::Base.connection.raw_connection
|
|
|
|
results = cnn.async_exec(sql).to_a
|
|
|
|
results.each do |result|
|
|
table_name = result["table_name"]
|
|
column_name = result["column_name"]
|
|
|
|
log "Remapping #{table_name} #{column_name}"
|
|
|
|
result = if @regex
|
|
cnn.async_exec("UPDATE #{table_name}
|
|
SET #{column_name} = regexp_replace(#{column_name}, $1, $2, 'g')
|
|
WHERE NOT #{column_name} IS NULL
|
|
AND #{column_name} <> regexp_replace(#{column_name}, $1, $2, 'g')", [@from, @to])
|
|
else
|
|
cnn.async_exec("UPDATE #{table_name}
|
|
SET #{column_name} = replace(#{column_name}, $1, $2)
|
|
WHERE NOT #{column_name} IS NULL
|
|
AND #{column_name} <> replace(#{column_name}, $1, $2)", [@from, @to])
|
|
end
|
|
|
|
log "#{result.cmd_tuples} rows affected!"
|
|
end
|
|
|
|
Theme.expire_site_cache!
|
|
SiteIconManager.ensure_optimized!
|
|
end
|
|
|
|
def log(message)
|
|
puts(message) if @verbose
|
|
end
|
|
end
|