Adds import and export of plugin data.
Project description
django CMS Transfer is an experimental package that allows you to export and import plugin data from a page or a placeholder. It does not support foreign key relations and won’t import/export related data, such as media.
Contribute to this project and win rewards
Because this is a an open-source project, we welcome everyone to get involved in the project and receive a reward for their contribution. Become part of a fantastic community and help us make django CMS the best CMS in the world.
We’ll be delighted to receive your feedback in the form of issues and pull requests. Before submitting your pull request, please review our contribution guidelines.
We’re grateful to all contributors who have helped create and maintain this package. Contributors are listed at the contributors section.
Documentation
The setting DJANGO_CMS_TRANSFER_SERIALIZER allows to register a custom json serializer. An example for an use case could be to subclass Django’s build-in python serializer and let it base64-encode inline image data base64.
See REQUIREMENTS in the setup.py file for additional dependencies:
Installation
For a manual install:
run pip install djangocms-transfer
add djangocms_transfer to your INSTALLED_APPS
run python manage.py migrate djangocms_transfer
Customization
Following settings are available:
DJANGOCMS_TRANSFER_PROCESS_EXPORT_PLUGIN_DATA:
Enables processing of plugin instances prior to serialization, e.g. myapp.module.function.
DJANGOCMS_TRANSFER_PROCESS_IMPORT_PLUGIN_DATA:
Enables processing of plugin instances prior to saving, e.g. myapp.module.function. For example: set default-values for ForeignKeys (images for django_filer, ..)
As an example the combination of _PROCESS_EXPORT_PLUGIN_DATA and _PROCESS_IMPORT_PLUGIN_DATA lets you export and import the data between different systems while setting the contents as you need it:
# settings.py .._PROCESS_EXPORT_PLUGIN_DATA = "myapp.some.module.export_function" .._PROCESS_IMPORT_PLUGIN_DATA = "myapp.some.module.import_function" # custom functions def export_function(plugin, plugin_data): # remove child-plugins which can't be handled if plugin.parent_id and plugin.parent.plugin_type == "SomeParentPlugin": return None # change data if plugin.plugin_type == "SomePlugin": plugin_data["data"].update({ "some_field": "TODO: change me", }) return plugin_data def import_function(deserialized_object): some_related_object = MyModel.objects.first() for field in deserialized_object.object._meta.fields: # example of setting a default value for a related field if isinstance(field, ForeignKey): value = getattr(deserialized_object.object, field.attname) if field.related_model == MyModel and value is not None: setattr(deserialized_object.object, field.name, some_related_object)
Running Tests
You can run tests by executing:
virtualenv env source env/bin/activate pip install -r tests/requirements/base.txt python setup.py test
For code formatting, black is used. To automatically fix errors reported from black, you can install it via virtualenv and pip install -r tests/requirements/base.txt. After this you just need to run tools/black.
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
Built Distribution
File details
Details for the file djangocms_transfer-1.0.2.tar.gz
.
File metadata
- Download URL: djangocms_transfer-1.0.2.tar.gz
- Upload date:
- Size: 18.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ce0676cb884f08958488fda7e0be5e2db50922e4ff70ea98c792420857fc9a35 |
|
MD5 | 33b05e2a3362529fafe4894963726073 |
|
BLAKE2b-256 | adb29c4adda7a79b6dd38fe59990513f8200b2aa0ab97abe2f0a8caed7915b4b |
Provenance
File details
Details for the file djangocms_transfer-1.0.2-py3-none-any.whl
.
File metadata
- Download URL: djangocms_transfer-1.0.2-py3-none-any.whl
- Upload date:
- Size: 21.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 49e3ef6d02729047c38d9e2f3a69b133003d65d582b1260e50ce603c5baeed6e |
|
MD5 | 0a9500b87b4dedc5fb8e451c3566e36c |
|
BLAKE2b-256 | e1fd3e522400ff464409f10aa6bb1ef3023a31a025e92200de4e0e958d47d2d7 |