0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-04-01 02:41:39 -05:00

🐛 Fixed incorrectly stored URLs after migration from 3.x to 4.6.1-4.8.4 (#13109)

refs https://github.com/TryGhost/Team/issues/853

A refactor of `urlUtils` usage in 4.6.1 left a buggy 4.0 migration that did not transform URLs inside of mobiledoc cards. Anyone upgrading from 3.x to 4.6.1-4.8.4 would end up with inconsistent URL formats and potentially broken images.

- fixed 4.0 migration by passing our mobiledoc cards list in when transforming mobiledoc urls
- added a new migration that re-applies the missed URL transforms and content re-generation for any site that did a 3.x upgrade to a buggy 4.x version
This commit is contained in:
Kevin Ansfield 2021-07-06 10:15:00 +01:00 committed by GitHub
parent 2c1ae2e9af
commit 05b317af9d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 87 additions and 1 deletions

View file

@ -33,7 +33,7 @@ module.exports = createIrreversibleMigration(async (knex) => {
]);
/* eslint-disable camelcase */
const mobiledoc = urlUtils.mobiledocToTransformReady(post.mobiledoc);
const mobiledoc = urlUtils.mobiledocToTransformReady(post.mobiledoc, {cardTransformers: mobiledocLib.cards});
const custom_excerpt = urlUtils.htmlToTransformReady(post.custom_excerpt);
const codeinjection_head = urlUtils.htmlToTransformReady(post.codeinjection_head);
const codeinjection_foot = urlUtils.htmlToTransformReady(post.codeinjection_foot);

View file

@ -0,0 +1,86 @@
const logging = require('@tryghost/logging');
const urlUtils = require('../../../../../shared/url-utils');
const htmlToPlaintext = require('../../../../../shared/html-to-plaintext');
const mobiledocLib = require('../../../../lib/mobiledoc');
const {createTransactionalMigration} = require('../../utils');
// in Ghost versions 4.6.1-4.8.4 the 4.0 migration that transfored URLs had a bug
// that meant urls inside cards in mobiledoc content was not being transformed
//
// if the migrations table indicates an upgrade was made from 3.x to 4.6-4.8 then
// we'll re-run the transforms against post.mobiledoc and re-generate the html
// and plaintext contents
module.exports = createTransactionalMigration(
async function up(knex) {
const badVersionUsedFor40Migration = await knex('migrations')
.where({
name: '18-transform-urls-absolute-to-transform-ready.js'
})
.whereIn('currentVersion', ['4.6', '4.7', '4.8'])
.first();
if (!badVersionUsedFor40Migration) {
logging.info('Skipping transform of mobiledoc URLs - original transform was good');
return;
}
logging.info('Transforming all internal URLs in posts.{mobiledoc,html,plaintext} to transform-ready');
await knex.transaction(async (trx) => {
const postIdRows = await knex('posts')
.transacting(trx)
.forUpdate()
.select('id');
for (const postIdRow of postIdRows) {
const {id} = postIdRow;
const [post] = await knex('posts')
.transacting(trx)
.where({id})
.select([
'mobiledoc'
]);
let mobiledoc;
let html;
try {
mobiledoc = urlUtils.mobiledocToTransformReady(post.mobiledoc, {cardTransformers: mobiledocLib.cards});
if (!mobiledoc) {
logging.warn(`No mobiledoc for ${id}. Skipping.`);
continue;
}
} catch (err) {
logging.warn(`Invalid mobiledoc JSON structure for ${id}. Skipping`);
continue;
}
try {
html = mobiledocLib.mobiledocHtmlRenderer.render(JSON.parse(mobiledoc));
} catch (err) {
logging.warn(`Invalid mobiledoc content structure for ${id}, unable to render. Skipping`);
continue;
}
const plaintext = htmlToPlaintext(html);
await knex('posts')
.transacting(trx)
.where({id})
.update({
mobiledoc,
html,
plaintext
});
}
return 'transaction complete';
});
},
async function down() {
// noop
}
);