mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 01:47:22 +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
22 lines
790 B
Ruby
22 lines
790 B
Ruby
# frozen_string_literal: true
|
|
|
|
class FixOptimizedImagesUrls < ActiveRecord::Migration[4.2]
|
|
def up
|
|
# `AddUrlToOptimizedImages` was wrongly computing the URLs. This fixes it!
|
|
execute "UPDATE optimized_images
|
|
SET url = substring(oi.url from '^\\/uploads\\/[^/]+\\/_optimized\\/[0-9a-f]{3}\\/[0-9a-f]{3}\\/[0-9a-f]{11}')
|
|
|| '_'
|
|
|| oi.width
|
|
|| 'x'
|
|
|| oi.height
|
|
|| substring(oi.url from '\\.\\w{3,4}$')
|
|
FROM optimized_images oi
|
|
WHERE optimized_images.id = oi.id
|
|
AND oi.url ~ '^\\/uploads\\/[^/]+\\/_optimized\\/[0-9a-f]{3}\\/[0-9a-f]{3}\\/[0-9a-f]{11}\\.';"
|
|
end
|
|
|
|
def down
|
|
raise ActiveRecord::IrreversibleMigration
|
|
end
|
|
end
|