mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 06:04:11 +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
40 lines
1.3 KiB
Ruby
40 lines
1.3 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
class CreateEmbeddableHosts < ActiveRecord::Migration[4.2]
|
|
def change
|
|
create_table :embeddable_hosts, force: true do |t|
|
|
t.string :host, null: false
|
|
t.integer :category_id, null: false
|
|
t.timestamps null: false
|
|
end
|
|
|
|
category_id = 0
|
|
category_row = execute("SELECT c.id FROM categories AS c
|
|
INNER JOIN site_settings AS s ON s.value = c.name
|
|
WHERE s.name = 'embed_category'")
|
|
|
|
if category_row.cmd_tuples > 0
|
|
category_id = category_row[0]['id'].to_i
|
|
end
|
|
|
|
if category_id == 0
|
|
category_id = execute("SELECT value FROM site_settings WHERE name = 'uncategorized_category_id'")[0]['value'].to_i
|
|
end
|
|
|
|
embeddable_hosts = execute("SELECT value FROM site_settings WHERE name = 'embeddable_hosts'")
|
|
if embeddable_hosts && embeddable_hosts.cmd_tuples > 0
|
|
val = embeddable_hosts[0]['value']
|
|
if val.present?
|
|
records = val.split("\n")
|
|
if records.present?
|
|
records.each do |h|
|
|
execute "INSERT INTO embeddable_hosts (host, category_id, created_at, updated_at) VALUES ('#{h}', #{category_id}, CURRENT_TIMESTAMP, CURRENT_TIMESTAMP)"
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|
|
execute "DELETE FROM site_settings WHERE name IN ('embeddable_hosts', 'embed_category')"
|
|
end
|
|
end
|