This plugin is a set of WP CLI commands and scripts used during Newspack sites Live Launches and/or Content Updates.
This Plugin consists of various Migrators (which perform reusable or publisher-specific content migration).
Run composer install.
- Run
composer run-script phpcsto check for coding standards issues on all files. If you pass-- path/to/file(s)it will only run on that. - Run
composer run-script phpcbfto automatically fix coding standards issues on all files. If you pass-- path/to/file(s)it will only run on that. - Run
composer run-script phpcs-unstaged-diffto check the lines in files that have changes that are not staged yet.
We are aiming to have all re-usable logic in the NMT. We pull in the NMT with composer, so that means that you need to keep your branch updated. Whenever code has been merged to trunk in the NMT, do a composer update automattic/newspack-migration-tools to update the lockfile and get the latest from the NMT into this repository. We point to the dev-trunk branch in this repo's composer file so run composer update automattic/newspack-migration-tools to update the lockfile and get the latest from the NMT. If nothing happens when you update, then run composer clear-cache and try again.
Here is a oneliner (well – there are multiple lines for readability) that is safe to use even if you have the NMT symlinked into the vendor directory. From your PR's branch run:
rm -rf vendor/automattic/newspack-migration-tools
composer update automattic/newspack-migration-tools
git add composer.lock
git commit -m 'Updating NMT composer pointer'
git push origin $(git symbolic-ref --short HEAD)It's likely that you'll have changes to both the NMT and the branch you are working in on the NCCM (this repo) too. To avoid working in the vendor directory, an easy way is to create a directory called dev in the root of this repository, go into that directory and then clone the NMT so you end up with a structure like: dev/newspack-migration-tools. Once you have that checked out into the dev directory, you are ready to switch back and forth between using the plain vendor/newspack-migration-tools dir and your repo checked out to dev/newspack-migration-tools with these two commands. (Call from the root of this repo).
- To use your NMT in
dev/.., runcomposer run-script update-with-nmt-symlinked. This will symlink the NMT into thevendordirectory. - To use a "normal" composer installed version of the NMT, run
composer install --no-dev --optimize-autoloader(the--no-dev --optimize-autoloaderis not necessary, but it will give you a smaller vendor dir). It will not delete your checked out NMT indev.
If you need to update the NMT, then go into the dev/newspack-migration-tools directory and do your work there. Once you have merged your changes to trunk in the NMT, then come back to this repo and run composer update automattic/newspack-migration-tools to update the lockfile and get the latest from the NMT.
The Plugin is installed on a the Staging Site, and executed there to import the most recent content from the current live site.
Migrators are classes which perform content migration and data reformatting functionality. They are organized like this:
- located in
src/Commandare WP CLI Command classes - located in
src/Logicare business logic classes
There are two kinds of Commands:
- General purpose -- located in
src/Command/General, these contain the reusable WP data migration logic, used by multiple Live Launches; - Publisher-specific -- located in
src/Command/PublisherSpecific, these are custom functionalities used one-time only for individual Publisher's specific needs.
Take any existing migrator from the src/Command and copy it either into the src/Command/General or the src/Command/PublisherSpecific with a new name.
Command classes implement the InterfaceCommand which simply makes sure they register WP CLI commands.
The new Command should be registered in the newspack-custom-content-migrator.php.
After creating a new Command, run composer dump-autoload to update the autoloading files.
- Update the version number in newspack-custom-content-migrator.php
- Git that with the version number
- Run
composer run-script release - Create a new release (with the browser) on Github and upload the .zip file from the release you just built.