Skip to main content

Library to auto setup apphooks

Project description

Join the Gitter chat Latest PyPI version Python versions Latest Travis CI build status Test coverage Code Climate License

Utility function to auto setup apphooks on project startup.

Supported Django versions:

  • Django 1.11 to 2.2

Supported django CMS versions:

  • django CMS 3.5, 3.6, 3.7

Features

The mixin included in this utility allows to automatically add an Apphook to a django CMS project on the first access to the website.

This is intended for use by the django CMS application developers by extending their own CMSApp classes.

This behavior simplify the initial setup of a project and lower the barrier for the end user.

The setup function included here does the following:

  • Check if the Apphook is already added to a CMS page

  • If it is, it skips any further step

  • If not:

    • Creates the home page (if not present)

    • Creates a sub page of the home

    • Adds the application Apphook to it

In case the application uses aldryn-apphooks-config, a Apphook Config instance is created and added to the application page together with the Apphook.

Usage

This utility can be used by extending the CMSApp class, adding the auto_setup attribute with relevant configuration options and triggering setup at the end of cms_app.py:

@apphook_pool.register
class App4(AutoCMSAppMixin, CMSConfigApp):
    name = _('App4')
    urls = ['sample_app_4.urls']
    app_name = 'app4'
    app_config = App4Config
    # djangocms-apphook-setup attribute
    auto_setup = {
        'enabled': True,
        'home title': 'home title',
        'page title': 'page 4 title',
        'namespace': 'namespace',
        'config_fields': {'random_option': True},
        'config_translated_fields': {'app_title': 'app title', 'object_name': 'name'},
        'sites': True,
    }


# trigger djangocms-apphook-setup function
App4.setup()

Customizing ApphookConfig instances creation

While config_fields and config_translated_fields should cover most use cases when it comes to ApphookConfig instances creation, you may need more control over the process.

For this, it’s possible to override AutoCMSAppMixin._create_config and AutoCMSAppMixin._create_config_translation.

Default implementation:

@classmethod
def _create_config(cls):
    return cls.app_config.objects.create(
        namespace=cls.auto_setup['namespace'], **cls.auto_setup['config_fields']
    )

@classmethod
def _create_config_translation(cls, config, lang):
    config.set_current_language(lang, initialize=True)
    for field, data in cls.auto_setup['config_translated_fields'].items():
        setattr(config, field, data)
    config.save_translations()

You can completely redefine the methods, provided you return an ApphookConfig instance in _create_config.

Configuration options

The behavior of the setup function can be customized by setting the following keys in the auto_setup attribute:

  • enabled: If True the setup is invoked; a good option is to use a setting to control this to allow application users to disable the behavior (default: True)

  • home title: Title of the home page if created by the setup function; this must be set in the application CMSApp, otherwise the setup function will exit with a warning.

  • page title: Title of the page created by the setup function; this must be set in the application CMSApp, otherwise the setup function will exit with a warning.

  • namespace: Application instance name used when attaching the Apphook; this must be set in the application CMSApp if an app_name is defined, otherwise the setup function will exit with a warning.

  • config_fields: Fields used when creating the ApphookConfigModel instance; use this attribute for non-translated fields.

  • config_translated_fields: Fields used when creating the ApphookConfigModel instance; use this attribute for translated fields (currently only django-parler is supported).

  • sites: List of site ids for which to create the pages; if set to True (the default value) pages will be created for all sites. A single apphook config is created for all the sites; instance is created only on first page creation.

Notes on testing

As this utility works by triggering setup function at import time, extra steps must be taken in the tests to unload the modules between the tests (this is only needed when testing the setup).

Example cleanup to be included in setUp method:

def setUp(self):
    super(SetupAppBaseTest, self).setUp()
    from cms.apphook_pool import apphook_pool

    delete = [
        'my_app',
        'my_app.cms_app',
    ]
    for module in delete:
        if module in sys.modules:
            del sys.modules[module]
    MyApphoolConfigModel.cmsapp = None
    apphook_pool.clear()

History

Unreleased

  • Nothing yet

0.4.1 (2019-12-22)

  • Fix classifiers

0.4.0 (2019-12-22)

  • Add Django 2.2 support

  • Add django CMS 3.6, 3.7 support

  • Drop Django < 1.11 support

  • Drop django CMS < 3.6 support

  • Fix monkey-patch not applied consistently

0.3.0 (2018-01-15)

  • Add support for multisite setups

  • Add Django 1.11 support

  • Add django CMS 3.5 support

0.2.0 (2016-12-04)

  • Add support for multisite setups

  • Add Django 1.9, 1.10 support

  • Add django CMS 3.4 support

0.1.2 (2015-12-22)

  • Monekypatch aldryn_search index to avoid errors

0.1.1 (2015-11-02)

  • Easier extension of ApphookConfig creation

0.1.0 (2015-10-24)

  • First experimental release

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

djangocms-apphook-setup-0.4.1.tar.gz (9.0 kB view details)

Uploaded Source

Built Distribution

djangocms_apphook_setup-0.4.1-py2.py3-none-any.whl (7.4 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file djangocms-apphook-setup-0.4.1.tar.gz.

File metadata

  • Download URL: djangocms-apphook-setup-0.4.1.tar.gz
  • Upload date:
  • Size: 9.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.37.0 CPython/3.7.3

File hashes

Hashes for djangocms-apphook-setup-0.4.1.tar.gz
Algorithm Hash digest
SHA256 48152518ada859a787def20a9e94cfbec094aa9c4c47c39240621b18345f73df
MD5 dc4c207fce80fbc3fbdabae0fdda61c5
BLAKE2b-256 05b55515fade36345b119854871d50b7fab2712bb8a6181afbe57330e5271300

See more details on using hashes here.

File details

Details for the file djangocms_apphook_setup-0.4.1-py2.py3-none-any.whl.

File metadata

  • Download URL: djangocms_apphook_setup-0.4.1-py2.py3-none-any.whl
  • Upload date:
  • Size: 7.4 kB
  • Tags: Python 2, Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.37.0 CPython/3.7.3

File hashes

Hashes for djangocms_apphook_setup-0.4.1-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 7d9987f4933b96e3eddcf52d47977ac669a30413fc4e5eeefdd5c3e28a2da482
MD5 17bd4cfc0982b2fefdd997b9e159a549
BLAKE2b-256 084b22b7ab01d81b345092e261c51ab9142af55ac6b27bb220916f5570359725

See more details on using hashes here.

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