Content migration to Optimizely is an essential process to ensure your existing data, assets, and user content are transitioned effectively. While automation is the backbone of this process, there might still be a need for manual cleanup at the end to ensure all content is accurate and ready for use.
This blog will guide you through best practices for content migration, including the order of migration, Optimizely’s Content Repository APIs, and handling internal links effectively.
Automating migration ensures:
Audit Existing Content
Migrate Assets First
Map Content Types
Write Migration Scripts
Handle Links
Test Migration
Perform Manual Cleanup
Go Live
Assets, such as images and documents, should be migrated first since they are often referenced in content.
private async Task<ContentReference> UploadImageFromUrlAsync(string imageUrl){using HttpClient client = new HttpClient();byte[] imageBytes = await client.GetByteArrayAsync(imageUrl);var mediaFolder = _contentRepository.GetDefault<ImageFile>(SiteDefinition.Current.GlobalAssetsRoot);mediaFolder.Name = Path.GetFileName(imageUrl);var blob = _blobFactory.CreateBlob(mediaFolder.BinaryDataContainer, ".jpg");using (var stream = new MemoryStream(imageBytes)){blob.Write(stream);}mediaFolder.BinaryData = blob;return _contentRepository.Save(mediaFolder, SaveAction.Publish, AccessLevel.NoAccess);}
By uploading assets first, you ensure that references in content migration scripts (e.g., <img>
tags) work seamlessly.
Use Optimizely’s Content Repository APIs to create and publish content programmatically.
public void ImportContent(IEnumerable<ContentModel> sourceContent){var contentRepository = ServiceLocator.Current.GetInstance<IContentRepository>();foreach (var content in sourceContent){var newPage = contentRepository.GetDefault<StandardPage>(ContentReference.StartPage);newPage.PageTitle = content.Title;newPage.MainBody = new XhtmlString(content.Body);newPage.Image = ImportAsset(content.ImageUrl); // Reference migrated assetscontentRepository.Save(newPage, SaveAction.Publish);}}private ContentReference ImportAsset(string imageUrl){// Asset migration logic herereturn UploadImage(imageUrl, "ImageName");}
To avoid “Page Not Found” errors, ensure internal links are created in Optimizely before linking them in content.
public XhtmlString UpdateLinks(XhtmlString content){var document = new HtmlDocument();document.LoadHtml(content.ToString());foreach (var link in document.DocumentNode.SelectNodes("//a[@href]")){var oldUrl = link.Attributes["href"].Value;var newUrl = MapToNewUrl(oldUrl);// Check if the new URL is an internal linkif (IsInternalLink(newUrl)){var contentReference = GetContentReference(newUrl);if (contentReference != null){link.Attributes["href"].Value = ContentUrlResolver.Instance.GetUrl(contentReference);}else{Console.WriteLine($"Internal link not found for {newUrl}");}}else{link.Attributes["href"].Value = newUrl;}}return new XhtmlString(document.DocumentNode.OuterHtml);}private bool IsInternalLink(string url){return url.StartsWith("/"); // Basic check for relative URLs}private ContentReference GetContentReference(string url){var contentRepository = ServiceLocator.Current.GetInstance<IContentRepository>();return contentRepository.GetReferencesToContentByUrl(url).FirstOrDefault();}
Even with automation, some scenarios require manual attention:
Pro Tip: Use Optimizely’s Content Manager to visually review and edit content.
Validate the structure, links, and content in a staging environment. Create a checklist to ensure:
Here are commonly used methods from Optimizely’s IContentRepository
:
var content = contentRepository.Get<StandardPage>(ContentReference.StartPage);
var newPage = contentRepository.GetDefault<StandardPage>(ContentReference.StartPage);newPage.PageTitle = "New Page";contentRepository.Save(newPage, SaveAction.Publish);
var page = contentRepository.Get<StandardPage>(contentReference);page.PageTitle = "Updated Title";contentRepository.Save(page, SaveAction.Publish);
contentRepository.Delete(contentReference, true);
Plan your final migration during non-peak hours. Inform stakeholders about the downtime, if any, and perform a final test after the live migration.
Content migration to Optimizely involves a mix of automation and manual processes. By following a structured workflow, starting with assets, ensuring proper link updates, and performing manual cleanup, you can deliver a smooth and error-free migration. Optimizely’s Content Repository APIs make it easier to script these processes efficiently.
If you have any specific questions or need more examples, feel free to ask!
Quick Links
Legal Stuff