Skip to main content

Drive-by transmogrifiction made easy!

Project description

Mr.Migrator: Drive-by transmogrification made easy!

mr.migrator is a transmogrifier pipeline runner, either via the commandline or as a Plone add-on.

Introduction

Transmogrifier is a powerful tool for creating transformation processes called “pipelines”. Transmogrifier gives you the tools to create and share these pipelines but doesn’t provide an easy way to run the pipeline. Mr.migrator aims to bridge that gap.

Mr.Migrator provides the following:

  • A buildout recipe with which you can override a given pipeline.

  • A commandline script (with help) which lets you run pipelines and see their progress. This is useful when used in conjunction with transmogrify.ploneremote or other blueprints which are not expected to be run inside the Plone process.

  • A Plone plugin that once installed lets you pick which pipeline you want to run, provides a form to override the pipeline options and then provides progress on the running pipeline. This is useful when you want to use plone.app.transmogrifier blueprints that should be run inside the Plone process.

Getting a pipeline

A pipeline is a concept from collective.transmogrifier where dictionary items pass through a series of steps, each adding, removing or uploading information to an external source. A pipeline is configured in configuration file using the INI style syntax. Mr.Migrator lets you run either pipelines you built yourself, or

Build your own pipeline

see collective.transmogrifer pipelines for more details.

Once you’ve created your pipeline .cfg you can use it on the commandline via

migrate --pipeline=mypipeline.cfg

or if installing via buildout

[migrate]
recipe = mr.migrator
pipeline = mypipeline.cfg

If you’re using blueprints in your pipeline you will need to ensure that zcml configuration that registers them is executed. If you are using buildout you can use the following

[buildout]
parts += mr.migrator

[migrator]
recipe = mr.migrator
pipeline = mypipeline.cfg
eggs = transmogrify.sqlalchemy
zcml = transmogrify.sqlalchemy

This will ensure that the package that contains the blueprints is downloaded and the zcml for it is run before the pipeline is run so that the blueprints are registered.

If you aren’t using buildout you can will need to tell the runner which packages to load zcml in via

migrate --zcml=transmogrify.sqlalchemy,transmogrify.other

If you the blueprint package includes the following entry_point you can skip the zcml settings above

entry-points = {"z3c.autoinclude.plugin":['target = transmogrify']}

There currently isn’t a way to run a custom pipeline if using the Plone plugin. You will have to register it as below.

Using a Registered Pipeline

If a pipeline has been registered inside another package via zcml such as

<configure
    xmlns="http://namespaces.zope.org/zope"
    xmlns:transmogrifier="http://namespaces.plone.org/transmogrifier"
    i18n_domain="collective.transmogrifier">

<transmogrifier:registerConfig
    name="exampleconfig"
    title="Example pipeline configuration"
    description="This is an example pipeline configuration"
    configuration="example.cfg"
    />

</configure>

and the package has an entry point that will enable the zcml to be loaded such as

entry_points = {"z3c.autoinclude.plugin":['target = transmogrify']}

Then you can get mr.migrator to run that pipeline via

migrate --pipeline=exampleconfig

or

[migrate]
recipe = mr.migrator
pipeline = exampleconfig

An example of a package which declares a pipeline designed to be overridden is funnelweb.

Overriding pipeline values

Pipelines are organised as a series of steps through which crawled items pass before eventually being uploaded. Each step as one or more configuration options so you can customise import process for your needs. Almost all imports will require some level of configurations.

The first part of each configuration key is the step e.g. crawler. The second part is the particular configuration option for that particular step. e.g. url. This is then followed by = and value or values.

The configuration options can either be given as part of the buildout part e.g.

[buildout]
parts += mr.migrator

[mr.migrator]
recipe = mr.migrator
crawler-url=http://www.whitehouse.gov

or the same option can be overridden via the command line

$> bin/migrate --crawler:url=http://www.whitehouse.gov

some options require multiple lines within a buildout part. These can be overridden via the commandline by repeating the same argument e.g.

$> bin/migrate --crawler:ignore=\.mp3 --crawler:ignore=\.pdf

You use the commandline help to view the list of available options

$> bin/migrate --help

Controlling Logging

You can show additional debug output on any particular set by setting a debug commandline switch. For instance to see see additional details about template matching failures

$> bin/mr.migrator --template1:debug

Working directly with transmogrifier (advanced)

You might need to insert further transformation steps for your particular conversion usecase. To do this, you can extend a plugins underlying transmogrifier pipeline. mr.migrator uses a transmogrifier pipeline to perform the needed transformations and all commandline and recipe options refer to options in the pipeline.

You can view pipeline and all its options via the following command

$> bin/mr.migrator --show-pipeline

You can also save this pipeline and customise it for your own needs

$> bin/mr.migrator --show-pipeline > pipeline.cfg
$> {edit} pipeline.cfg
$> bin/mr.migrator --pipeline=pipeline.cfg

Customising the pipeline allows you add your own personal transformations which haven’t been pre-considered by the standard mr.migrator tool.

See transmogrifier documentation to see how to add your own blueprints or add blueprints that already exist to your custom pipeline.

Using external blueprints

If you have decided you need to customise your pipeline and you want to install transformation steps that use blueprints not already included in mr.migrator or transmogrifier, you can include them using the eggs option in a mr.migrator buildout part

[mr.migrator]
recipe = mr.migrator
eggs = myblueprintpackage
pipeline = mypipeline.cfg

However, this only works if your blueprint package includes the following setuptools entrypoint in its setup.py

entry_points="""
      [z3c.autoinclude.plugin]
      target = transmogrify
      """,
      )

Help syntax for pipeline configuration

TODO

Mr.Migrator in Plone

*under development*

Mr.Migrator needs to be combined with a package providing a registered pipeline.

  1. Install mr.migrator into your buildout

  2. Install a package providing your pipeline such as funnelweb or collective.jsonmigrator

  3. Go to the place in your site where you want to import content and select Actions > Mr.Migrate here (alternatively, open the URL @@mr.migrator)

  4. Pick the pipeline you want from the drop down list

  5. A form for filling in extra configuration for your pipeline will displayed (either autogenerated from the .cfg or a form designed by the pipeline author)

  6. Click run

  7. Popup a progress feedback dialog with a log of activity

TODO

  • Finish autoform so works in all cases

  • combine argsparse and autoform code

  • do progress dialog

  • hook point for packages to register form along with pipeline

  • when no pipelines found: display help on where to find them and how to install them

Contributing

Thanks

  • Alex Clark - for the name

  • Rok Garbas - the original code for the z3cform

  • Dylan Jay - the original code of the commandline runner

Contributors

  • “Dylan Jay”, Author

  • “Alex Clark”, Maintainer

  • “Leonardo J. Caballero G.”, Tester, Spanish translator

Changelog

1.2 (2017-05-15)

  • Add Spanish translation. [macagua]

  • Added more improvements about i18n support. [macagua]

  • Added Buildout configuration file for Plone 4.3.x version. [macagua]

  • Fix IOError: [Errno 2] No such file or directory: mr/migrator/autoinclude.zcml missing file. [macagua]

  • Updated Buildout configuration file for Plone 3.3.x version. [macagua]

  • Fix form problem with security hotfix 20160830 [agitator]

1.1 (2015-10-22)

  • Remove browserlayer registration, so the mr.migrator doesn’t have to be installed to be used. Calling /@@mr.migrator is enough.

  • Add uninstallation profile. [thet]

  • Allow any pipeline configuration to be imported through the web at the @@mr.migrator view. Previously, only those pipelines were shown, which had a plone.app.transmogrifier.atschemaupdater blueprint included. Now any pipelines can be used, e.g. those which handle only Dexterity objects. [thet]

  • Pep8. [thet]

1.0.1 (2012-09-18)

  • put back in manual zcml loading [djay]

1.0 (2012-04-28)

  • fix setup.py issue breaking buildout [djay]

  • fixed NameError: global name ‘cparser’ is not defined, issue #6 [gborelli]

  • fix default profile [toutpt]

  • fix import error [toutpt]

1.0b11 (2012-04-25)

  • support pipeline includes [djay]

1.0b10 (2012-01-23)

  • Revert portion of ec799dcd3d, causing ConfigurationErrors [aclark]

1.0b9 (2012-01-23)

  • Fix brown bag release (bad MANIFEST) [aclark]

1.0b8 (2012-01-23)

  • Fix brown bag release (missing zcml) [aclark]

1.0b7 (2012-01-23)

  • Look for pipeline.cfg in cwd [aclark]

1.0b6 (2012-01-23)

  • Fix brown bag release [aclark]

1.0b5 (2012-01-22)

  • Bug fix: support for –zcml arguments [aclark]

1.0b4 (2011-08-14)

  • Bug fix: ZCML config [aclark]

1.0b3 (2011-08-14)

  • Bug fix: ZCML config [aclark]

1.0b2 (2011-08-14)

  • Bug fix: Python 2.4 compat [aclark]

1.0b1 (2011-06-29)

  • allow way of running zcml for blueprint packages in commandline [djay]

  • split out commandline runner from funnelweb [djay]

  • add start of form for running transmogrifier inside plone [djay]

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

mr.migrator-1.2.tar.gz (40.0 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page