arrow_back

Sync Spaces in Contentful With Proper Handling of Embedded URLs

contentful sync spaces local_offer

Why Sync Spaces?

Contentful provides spaces to group related resources into one repository. The content from these spaces can then be retrieved using Contentful’s Content Delivery APIs. In situations where development is occurring on a website while a live (production) website is available and both are using the same space, there is a danger that development changes will be visible on the live website. To avoid running into such situations, it is desirable to have separate spaces for development and production and have a mechanism to sync these spaces periodically in a controlled environment.

Challenges While Syncing Spaces

There are some sync tools currently out there that provide a mechanism to sync from one space to another. However, these tools have limitations:

  1. Most of these sync tools are command-line based.
  2. They don’t provide a mechanism for the user to know the differences between the spaces and accept the changes for synchronization.
  3. They fail to modify embedded URLs properly (to the Media in the space) within a Content.
In our experience, the embedded URL issue (#3) has caused us some major headaches.  After the sync process, this leaves the Content in the production space pointing at the Media in development space. Not a good situation!

To illustrate the problem of the embedded link not being updated properly,  we can first create a Media named "Icon" in development space. "Icon" is then inserted in a Content. As illustrated below the Content (entity) has a link to a Media (an image in this case) within the Development space.

Content.png

 

After using one of the sync tools, we can see below that the link inside the Content (entity) in the production space is using the "Icon" link in development space (Note that the ID of development space is "hzii1xxglycn" whereas the ID of production space is "o35m36eh7yf4").

Content_Prod_Space.png

 

Our Solution

At Cirruslabs,  we are in the process of creating an OAuth2.0 Express and Node.js based web tool to compare and synchronize spaces. This tool also properly handles the embedded URLs in a Content.  

The tool first lets the user see the spaces that can be compared.

Contentful_landingNew.png

By clicking the Compare button, the user can see which of the resources (Content Model, Content and Media) are different. Contentful_ComparisonNew.png

Once the Approve & Sync button is clicked, the sync process begins. After it is completed, the comparison shows that no discrepancies are found.

Contentful_Comparison_New2.png 

To cross check, we can see in the Contentful Web Interface that the Content is properly synced, and the links are correct. The link for the "Icon" has the right space ID of "o35m36eh7yf4".

Content_Prod_Space_2.png

 

To learn about how CirrusLabs can deliver working software, check out our Agile Software Delivery page. 

Learn More