-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Allow to Impersonate Containers by cloning Background Image - M…
…EED-7736 - Meeds-io/MIPs#160 (#254) This change will allow to clone Containers Background images when creating a site from a site template or a site template from an existing site.
- Loading branch information
Showing
4 changed files
with
439 additions
and
16 deletions.
There are no files selected for viewing
179 changes: 179 additions & 0 deletions
179
layout-service/src/main/java/io/meeds/layout/service/ContainerLayoutSrvice.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,179 @@ | ||
/** | ||
* This file is part of the Meeds project (https://meeds.io/). | ||
* | ||
* Copyright (C) 2020 - 2024 Meeds Association [email protected] | ||
* | ||
* This program is free software; you can redistribute it and/or | ||
* modify it under the terms of the GNU Lesser General Public | ||
* License as published by the Free Software Foundation; either | ||
* version 3 of the License, or (at your option) any later version. | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
* Lesser General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU Lesser General Public License | ||
* along with this program; if not, write to the Free Software Foundation, | ||
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. | ||
*/ | ||
package io.meeds.layout.service; | ||
|
||
import static io.meeds.layout.plugin.attachment.LayoutBackgroundAttachmentPlugin.OBJECT_TYPE; | ||
|
||
import java.io.File; | ||
import java.io.IOException; | ||
import java.io.InputStream; | ||
import java.nio.file.Files; | ||
import java.nio.file.Path; | ||
import java.util.UUID; | ||
|
||
import org.apache.commons.collections4.CollectionUtils; | ||
import org.apache.commons.io.FileUtils; | ||
import org.apache.commons.lang3.StringUtils; | ||
import org.apache.commons.lang3.math.NumberUtils; | ||
import org.springframework.beans.factory.annotation.Autowired; | ||
import org.springframework.stereotype.Service; | ||
|
||
import org.exoplatform.commons.file.model.FileInfo; | ||
import org.exoplatform.commons.file.model.FileItem; | ||
import org.exoplatform.commons.file.services.FileService; | ||
import org.exoplatform.portal.config.UserACL; | ||
import org.exoplatform.portal.config.model.ApplicationBackgroundStyle; | ||
import org.exoplatform.portal.config.model.Container; | ||
import org.exoplatform.portal.config.model.ModelStyle; | ||
import org.exoplatform.portal.config.model.Page; | ||
import org.exoplatform.social.attachment.AttachmentService; | ||
import org.exoplatform.social.attachment.model.ObjectAttachmentDetail; | ||
import org.exoplatform.social.attachment.model.ObjectAttachmentList; | ||
import org.exoplatform.social.attachment.model.UploadedAttachmentDetail; | ||
import org.exoplatform.social.core.manager.IdentityManager; | ||
import org.exoplatform.upload.UploadResource; | ||
import org.exoplatform.upload.UploadService; | ||
|
||
import lombok.SneakyThrows; | ||
|
||
@Service | ||
public class ContainerLayoutSrvice { | ||
|
||
private static final String CONTAINER_BACKGROUND_IMAGE_URI = String.format("/%s/", OBJECT_TYPE); | ||
|
||
@Autowired | ||
private AttachmentService attachmentService; | ||
|
||
@Autowired | ||
private UploadService uploadService; | ||
|
||
@Autowired | ||
private FileService fileService; | ||
|
||
@Autowired | ||
private UserACL userAcl; | ||
|
||
@Autowired | ||
private IdentityManager identityManager; | ||
|
||
private long superUserIdentityId; | ||
|
||
public void impersonateContainer(Container container, Page page) throws Exception { | ||
if (page == null || container == null) { // PortalConfig isn't managed yet | ||
// for now (Site Layout) | ||
return; | ||
} | ||
ModelStyle cssStyle = container.getCssStyle(); | ||
if (cssStyle != null && StringUtils.isNotBlank(cssStyle.getBackgroundImage())) { | ||
String clonedBackgroundImageUrl = null; | ||
try { | ||
clonedBackgroundImageUrl = cloneBackgroundUrl(container, page, cssStyle.getBackgroundImage()); | ||
} finally { | ||
// Even in case of exception thrown, set null | ||
cssStyle.setBackgroundImage(clonedBackgroundImageUrl); | ||
} | ||
} | ||
ApplicationBackgroundStyle appBackgroundStyle = container.getAppBackgroundStyle(); | ||
if (appBackgroundStyle != null | ||
&& StringUtils.isNotBlank(appBackgroundStyle.getBackgroundImage())) { | ||
String clonedBackgroundImageUrl = null; | ||
try { | ||
clonedBackgroundImageUrl = cloneBackgroundUrl(container, page, appBackgroundStyle.getBackgroundImage()); | ||
} finally { | ||
// Even in case of exception thrown, set null | ||
appBackgroundStyle.setBackgroundImage(clonedBackgroundImageUrl); | ||
} | ||
} | ||
} | ||
|
||
private String cloneBackgroundUrl(Container container, Page page, String backgroundImageUrl) throws Exception { // NOSONAR | ||
String clonedBackgroundImageUrl = null; | ||
if (StringUtils.contains(backgroundImageUrl, CONTAINER_BACKGROUND_IMAGE_URI)) { | ||
String[] backgroundImageUrlParts = backgroundImageUrl.split("/"); | ||
String fileIdString = backgroundImageUrlParts[backgroundImageUrlParts.length - 1]; | ||
if (StringUtils.isNotBlank(fileIdString) && NumberUtils.isCreatable(fileIdString)) { | ||
FileItem file = fileService.getFile(Long.parseLong(fileIdString)); | ||
if (file != null) { | ||
String objectId = getObjectId(container, page); | ||
UploadResource uploadResource = createUploadResource(file); | ||
ObjectAttachmentDetail attachment = saveAttachment(objectId, uploadResource); | ||
if (attachment != null) { | ||
clonedBackgroundImageUrl = buildBackgroundUrl(objectId, attachment); | ||
} | ||
} | ||
} | ||
} | ||
return clonedBackgroundImageUrl; | ||
} | ||
|
||
private String getObjectId(Container container, Page page) { | ||
return String.format("%s_%s", | ||
page.getStorageId().replace("page_", ""), | ||
container.getStorageId()); | ||
} | ||
|
||
private String buildBackgroundUrl(String objectId, ObjectAttachmentDetail attachment) { | ||
return String.format("/portal/rest/v1/social/attachments/%s/%s/%s", | ||
OBJECT_TYPE, | ||
objectId, | ||
attachment.getId()); | ||
} | ||
|
||
@SneakyThrows | ||
private ObjectAttachmentDetail saveAttachment(String objectId, UploadResource uploadResource) { | ||
UploadedAttachmentDetail attachmentDetail = new UploadedAttachmentDetail(uploadResource); | ||
attachmentService.saveAttachment(attachmentDetail, | ||
OBJECT_TYPE, | ||
objectId, | ||
null, | ||
getSuperUserIdentityId()); | ||
ObjectAttachmentList attachmentList = attachmentService.getAttachments(OBJECT_TYPE, objectId); | ||
if (attachmentList != null && CollectionUtils.isNotEmpty(attachmentList.getAttachments())) { | ||
return attachmentList.getAttachments().get(0); | ||
} else { | ||
return null; | ||
} | ||
} | ||
|
||
private UploadResource createUploadResource(FileItem fileItem) throws IOException { | ||
String uploadId = UUID.randomUUID().toString(); | ||
FileInfo fileInfo = fileItem.getFileInfo(); | ||
Path path = Files.createTempFile(fileInfo.getName(), ".png"); | ||
try (InputStream inputStream = fileItem.getAsStream()) { | ||
File file = path.toFile(); | ||
FileUtils.copyInputStreamToFile(inputStream, file); | ||
UploadResource uploadResource = new UploadResource(uploadId, | ||
fileInfo.getName(), | ||
fileInfo.getMimetype(), | ||
file.getAbsolutePath(), | ||
fileInfo.getSize(), | ||
fileInfo.getSize(), | ||
UploadResource.UPLOADED_STATUS); | ||
uploadService.createUploadResource(uploadResource); | ||
return uploadResource; | ||
} | ||
} | ||
|
||
private long getSuperUserIdentityId() { | ||
if (superUserIdentityId == 0) { | ||
superUserIdentityId = Long.parseLong(identityManager.getOrCreateUserIdentity(userAcl.getSuperUser()).getId()); | ||
} | ||
return superUserIdentityId; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.