bestit / contentful-bundle
A simple contentful bundle providing you with an easy setup, easy contentmodels and a simple api providing the contentful contents as an array.
Installs: 11 197
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 2
Forks: 3
Open Issues: 3
Requires
- php: ^7.1
- contentful/contentful: ^4.0
- doctrine/cache: ^1.6
- erusev/parsedown: ^1.6
- psr/log: ^1.0
- symfony/contracts: ^1.0
- symfony/framework-bundle: ^3.1
- twig/twig: ^1.0 || ^2.0
Requires (Dev)
- dev-master
- 1.1.2
- 1.1.1
- 1.1.0
- 1.0.0
- 0.18.1
- 0.18.0
- 0.17.1
- 0.17.0
- 0.16.1
- 0.16.0
- 0.15.2
- 0.15.1
- 0.15.0
- 0.14.0
- 0.13.1
- 0.13.0
- 0.12.0
- 0.11.6
- 0.11.5
- 0.11.4
- 0.11.3
- 0.11.2
- 0.11.1
- 0.11.0
- 0.10.x-dev
- 0.10.5
- 0.10.4
- 0.10.3
- 0.10.2
- 0.10.1
- 0.10.0
- 0.9.1
- 0.9.0
- 0.8.0
- 0.7.2
- 0.7.1
- 0.7.0
- 0.6.1
- 0.6.0
- 0.5.0
- 0.4.2
- 0.4.1
- 0.4.0
- 0.3.2
- 0.3.1
- 0.3.0
- 0.2.3
- 0.2.2
- 0.2.1
- 0.2.0
- 0.1.0
- dev-master-0.15
- dev-contribution/disable-routing-cache
This package is auto-updated.
Last update: 2024-10-29 04:53:11 UTC
README
Decorates the client and provides the contentful model as an array as defined in the content type of contentful. Additional sugar are the template helper for easy access.
Installation
Step 1: Download the Bundle
Open a command console, enter your project directory and execute the following command to download the latest stable version of this bundle:
$ composer require bestit/contentful-bundle
This command requires you to have Composer installed globally, as explained in the installation chapter of the Composer documentation.
Step 2: Enable the Bundle
Then, enable the bundle by adding it to the list of registered bundles
in the app/AppKernel.php
file of your project:
<?php // app/AppKernel.php // ... class AppKernel extends Kernel { public function registerBundles() { $bundles = array( // ... new BestIt\ContentfulBundle\BestItContentfulBundle(), ); // ... } // ... }
Step 3: Configuration Reference
best_it_contentful: # This field indicates which controller should be used for the routing. controller_field: controller # Which field is used to mark the url of the contentful entry? routing_field: slug # This content types have a routable page in the project. routable_types: [] caching: # Required content: # Please provider your service id for caching contentful contents. service_id: ~ # Required # Please provide the ttl for your content cache in seconds. 0 means forever. cache_time: 0 routing: # Please provider your service id for caching contentful routings. service_id: ~ # Required # Please provide the ttl for your routing cache in seconds. 0 means forever. cache_time: 0 # If the requested url contains this query parameter, the routing cache will be ignored. parameter_against_routing_cache: ignore-contentful-routing-cache # Should the whole contentful cache be cleared every time on an entry reset request? complete_clear_on_webhook: false # Which cache ids should be resetted everytime? collection_consumer: [] # Add the content types mainly documented under: <https://www.contentful.com/developers/docs/references/content-management-api/#/reference/content-types> content_types: # Prototype id: description: ~ # Required displayField: ~ # Required name: ~ # Required # Give the logical controller name for the routing, like document under <http://symfony.com/doc/current/routing.html#controller-string-syntax> controller: ~ fields: # Required # Prototype id: linkType: ~ # One of "Asset"; "Entry" name: ~ # Required omitted: false required: false items: type: ~ # One of "Link"; "Symbol" linkType: ~ # One of "Asset"; "Entry" validations: linkContentType: [] type: ~ # One of "Array"; "Boolean"; "Date"; "Integer"; "Location"; "Link"; "Number"; "Object"; "Symbol"; "Text", Required # Shortcut to handle the editor interface for this field, documentation can be found here: <https://www.contentful.com/developers/docs/references/content-management-api/#/reference/editor-interface> control: # Required id: ~ # One of "assetLinkEditor"; "assetLinksEditor"; "assetGalleryEditor"; "boolean"; "datePicker"; "entryLinkEditor"; "entryLinksEditor"; "entryCardEditor"; "entryCardsEditor"; "numberEditor"; "rating"; "locationEditor"; "objectEditor"; "urlEditor"; "slugEditor"; "ooyalaEditor"; "kalturaEditor"; "kalturaMultiVideoEditor"; "listInput"; "checkbox"; "tagEditor"; "multipleLine"; "markdown"; "singleLine"; "dropdown"; "radio", Required settings: # Required ampm: ~ falseLabel: ~ format: ~ helpText: ~ # Required stars: ~ trueLabel: ~ validations: size: max: ~ min: ~ in: [] linkContentType: [] unique: ~
Step 4: Enable the cache reset webhook
Every contentful entry is cached forever with this bundle, but ...
You can use the contentful webhooks to reset your cache entries.
best_it_contentful: prefix: /bestit/contentful resource: "@BestItContentfulBundle/Controller" type: annotation
Just add the reset controller to your routing (we suggest to protected it with a http auth password) and input this url in your contentful webhook config and you are ready to go.
The most simple cache reset is the direct reset on an id or the array of the ids from an collection (used as cache tags).
If you have cache entries which are not matched to the entry ids directly but to your own custom cache ids, you need to fill the config value caching.collection_consumer with this custom cache ids to reset them anytime another cache is reset.
Usage
Contentmodel Creator
$php bin/console contentful:create-types`
This command copies your configured content-types in your contentful project.
Client Decorator
<?php /** @var \BestIt\ContentfulBundle\Service\Delivery\ClientDecorator $clientDecorator */ $clientDecorator = $this->getClient(); $contentType = 'example-type'; $limit = 5; $where = ['fields.example-slug' => 'example-com']; if (is_scalar($where)) { $entry = $clientDecorator->getEntry($id = $where); } else { $entries = $clientDecorator->getEntries( function (\Contentful\Delivery\Query $query) use ($contentType, $limit, $where) { $query->setContentType($contentType); if ($limit) { $query->setLimit($limit); } array_walk($where, function ($value, $key) use ($query) { $query->where($key, $value); }); return $query; }, $cacheId = sha1(__METHOD__ . ':' . $contentType . ':' . serialize($where)) ); }
Router
We provide you with a router if you want to match contentful elements directly through the url to a controller action of your app. Just register our Slug-Matcher with your CMF-Routing-Chain
You may choose between the caching Slug-Matcher with this service declaration:
services: app.router.contentful: class: BestIt\ContentfulBundle\Routing\CachingContentfulSlugMatcher public: false arguments: - '@best_it_contentful.cache.pool.routing' - '@contentful.delivery.contentful_client' - '%best_it_contentful.controller_field%' - '%best_it_contentful.routing_field%' - '@best_it_contentful.routing.route_collection_response_parser' - '@best_it_contentful.delivery.response_parser' - '%best_it_contentful.cache.parameter_against_routing_cache%' calls: - [setRoutableTypes, ['%best_it_contentful.routable_types%']] tags: - { name: router, priority: 0 } # Adjusted to not override the manual routing done by Symfony
Or the non caching Slug-Matcher:
services: app.router.contentful: class: BestIt\ContentfulBundle\Routing\ContentfulSlugMatcher public: false arguments: - '@best_it_contentful.delivery.client' - '%best_it_contentful.controller_field%' - '%best_it_contentful.routing_field%' - '@best_it_contentful.routing.route_collection_response_parser' calls: - [setRoutableTypes, ['%best_it_contentful.routable_types%']] tags: - { name: router, priority: 0 } # Adjusted to not override the manual routing done by Symfony
Note that the CachingContentfulSlugMatcher passes the data to your controller as an array, while the non caching ContentfulSlugMatcher passes contentfuls Entry
View-Helper
You can use following twig helper for easier access:
- get_contentful: Loads an entry/entries matching your query and returns it. If you load entries, you need to save the result array.
- parseMarkdown: This view helper makes use of Parsedown and returns the markdown of contentful as html.
Further Steps
- More documentation
- better unittests
- behat tests