2016-05-27 14:26:28 +02:00
|
|
|
|
using Umbraco.Core.Models.PublishedContent;
|
|
|
|
|
|
using Umbraco.Web.PublishedCache.NuCache.DataSource;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Umbraco.Web.PublishedCache.NuCache
|
|
|
|
|
|
{
|
|
|
|
|
|
// what's needed to actually build a content node
|
2017-07-12 14:09:31 +02:00
|
|
|
|
internal struct ContentNodeKit
|
2016-05-27 14:26:28 +02:00
|
|
|
|
{
|
|
|
|
|
|
public ContentNode Node;
|
|
|
|
|
|
public int ContentTypeId;
|
|
|
|
|
|
public ContentData DraftData;
|
|
|
|
|
|
public ContentData PublishedData;
|
|
|
|
|
|
|
2016-05-30 19:54:36 +02:00
|
|
|
|
public bool IsEmpty => Node == null;
|
2016-05-27 14:26:28 +02:00
|
|
|
|
|
2017-07-17 10:48:48 +02:00
|
|
|
|
public bool IsNull => ContentTypeId < 0;
|
|
|
|
|
|
|
|
|
|
|
|
public static ContentNodeKit Null { get; } = new ContentNodeKit { ContentTypeId = -1 };
|
|
|
|
|
|
|
2019-01-23 14:16:42 +01:00
|
|
|
|
public void Build(
|
|
|
|
|
|
PublishedContentType contentType,
|
|
|
|
|
|
IPublishedSnapshotAccessor publishedSnapshotAccessor,
|
|
|
|
|
|
IVariationContextAccessor variationContextAccessor,
|
|
|
|
|
|
bool canBePublished,
|
|
|
|
|
|
IUmbracoContextAccessor umbracoContextAccessor)
|
2016-05-27 14:26:28 +02:00
|
|
|
|
{
|
2019-01-23 14:16:42 +01:00
|
|
|
|
Node.SetContentTypeAndData(contentType, DraftData, canBePublished ? PublishedData : null, publishedSnapshotAccessor, variationContextAccessor,umbracoContextAccessor);
|
2016-05-27 14:26:28 +02:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|