use of com.adobe.cq.dam.cfm.VariationDef in project aem-core-wcm-components by Adobe-Marketing-Cloud.
the class ContentFragmentMockAdapter method apply.
@Nullable
@Override
public ContentFragment apply(@Nullable Resource resource) {
// check if the resource is valid and an asset
if (resource == null || !resource.isResourceType(NT_DAM_ASSET)) {
return null;
}
// check if the resource is a content fragment
Resource content = resource.getChild(JCR_CONTENT);
ValueMap contentProperties = content.getValueMap();
if (!contentProperties.get(PN_CONTENT_FRAGMENT, Boolean.FALSE)) {
return null;
}
// check if the content fragment is text-only or structured
Resource data = resource.getChild(PATH_DATA);
boolean isStructured = data != null;
/* get content fragment properties, model and elements */
String title = contentProperties.get(JCR_TITLE, String.class);
String description = contentProperties.get(JCR_DESCRIPTION, String.class);
String cfName = resource.getName();
Resource model;
Resource modelAdaptee;
List<ContentElement> elements = new LinkedList<>();
if (isStructured) {
// get the model (referenced in the property)
model = resource.getResourceResolver().getResource(data.getValueMap().get(PN_MODEL, String.class));
// for the 'adaptTo' mock below we use the jcr:content child to mimick the real behavior
modelAdaptee = model.getChild(JCR_CONTENT);
// create an element mock for each property on the master node
Resource master = resource.getChild(PATH_MASTER);
for (String name : master.getValueMap().keySet()) {
// skip the primary type and content type properties
if (JcrConstants.JCR_PRIMARYTYPE.equals(name) || name.endsWith("@ContentType")) {
continue;
}
elements.add(getMockElement(resource, name, model));
}
} else {
// get the model (stored in the fragment itself)
model = resource.getChild(PATH_MODEL);
modelAdaptee = model;
// add the "main" element to the list
elements.add(getMockElement(resource, null, null));
// create an element mock for each subasset
Resource subassets = resource.getChild("subassets");
if (subassets != null) {
for (Resource subasset : subassets.getChildren()) {
elements.add(getMockElement(resource, subasset.getName(), null));
}
}
}
/* create mock objects */
ContentFragment fragment = mock(ContentFragment.class, withSettings().lenient());
when(fragment.getTitle()).thenReturn(title);
when(fragment.getDescription()).thenReturn(description);
when(fragment.getName()).thenReturn(cfName);
when(fragment.adaptTo(Resource.class)).thenReturn(resource);
when(fragment.getElement(isNull())).thenAnswer(invocation -> {
String name = invocation.getArgument(0);
return getMockElement(resource, name, isStructured ? model : null);
});
when(fragment.getElement(any(String.class))).thenAnswer(invocation -> {
String name = invocation.getArgument(0);
return getMockElement(resource, name, isStructured ? model : null);
});
when(fragment.hasElement(any(String.class))).thenAnswer(invocation -> {
String name = invocation.getArgument(0);
return fragment.getElement(name) != null;
});
when(fragment.getElements()).thenReturn(elements.iterator());
List<VariationDef> variations = new LinkedList<>();
ContentElement main = fragment.getElement(null);
Iterator<ContentVariation> iterator = main.getVariations();
while (iterator.hasNext()) {
ContentVariation variation = iterator.next();
variations.add(new VariationDef() {
@Override
public String getName() {
return variation.getName();
}
@Override
public String getTitle() {
return variation.getTitle();
}
@Override
public String getDescription() {
return variation.getDescription();
}
});
}
when(fragment.listAllVariations()).thenReturn(variations.iterator());
FragmentTemplate template = mock(FragmentTemplate.class, withSettings().lenient());
when(template.adaptTo(Resource.class)).thenReturn(modelAdaptee);
when(fragment.getTemplate()).thenReturn(template);
Iterator<Resource> associatedContent = getAssociatedContent(resource);
when(fragment.getAssociatedContent()).thenReturn(associatedContent);
return fragment;
}
use of com.adobe.cq.dam.cfm.VariationDef in project aem-core-wcm-components by Adobe-Marketing-Cloud.
the class VariationsDataSourceServlet method getItems.
@NotNull
@Override
protected List<Variation> getItems(@NotNull ContentFragment fragment, @NotNull SlingHttpServletRequest request) {
// add implicit master variation
List<Variation> variations = new LinkedList<>();
variations.add(new Variation("master", (new I18n(request)).get("Master")));
// add explicit variations
Iterator<VariationDef> iterator = fragment.listAllVariations();
while (iterator.hasNext()) {
VariationDef variation = iterator.next();
variations.add(new Variation(variation.getName(), variation.getTitle()));
}
return variations;
}
Aggregations