站点主题补充自定义动态模板页面数据

This commit is contained in:
liweiyi 2024-03-17 17:19:06 +08:00
parent 071733ce26
commit 582c7bdc06

View File

@ -0,0 +1,78 @@
/*
* Copyright 2022-2024 兮玥(190785909@qq.com)
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.chestnut.cms.dynamic;
import com.chestnut.cms.dynamic.domain.CmsDynamicPage;
import com.chestnut.cms.dynamic.service.IDynamicPageService;
import com.chestnut.common.async.AsyncTaskManager;
import com.chestnut.common.utils.IdUtils;
import com.chestnut.common.utils.JacksonUtils;
import com.chestnut.contentcore.core.ICoreDataHandler;
import com.chestnut.contentcore.core.SiteExportContext;
import com.chestnut.contentcore.core.SiteImportContext;
import lombok.RequiredArgsConstructor;
import lombok.extern.slf4j.Slf4j;
import org.springframework.stereotype.Component;
import java.io.File;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
/**
* 自定义动态模板核心数据处理器
*
* @author 兮玥
* @email 190785909@qq.com
*/
@Slf4j
@Component
@RequiredArgsConstructor
public class DynamicCoreHandler implements ICoreDataHandler {
private final IDynamicPageService dynamicPageService;
@Override
public void onSiteExport(SiteExportContext context) {
// cms_dynamic_page
AsyncTaskManager.setTaskTenPercentProgressInfo("正在导出自定义动态模板页面数据");
List<CmsDynamicPage> list = dynamicPageService.lambdaQuery()
.eq(CmsDynamicPage::getSiteId, context.getSite().getSiteId())
.list();
context.saveData(CmsDynamicPage.TABLE_NAME, JacksonUtils.to(list));
}
@Override
public void onSiteImport(SiteImportContext context) {
AsyncTaskManager.setTaskTenPercentProgressInfo("正在导入自定义动态模板页面数据");
// cms_dynamic_page
List<File> files = context.readDataFiles(CmsDynamicPage.TABLE_NAME);
files.forEach(f -> {
List<CmsDynamicPage> list = JacksonUtils.fromList(f, CmsDynamicPage.class);
for (CmsDynamicPage data : list) {
try {
data.setPageId(IdUtils.getSnowflakeId());
data.setSiteId(context.getSite().getSiteId());
data.createBy(context.getOperator());
dynamicPageService.save(data);
} catch (Exception e) {
AsyncTaskManager.addErrMessage("导入自定义动态模板页面失败:" + data.getName() + "[" + data.getCode() + "]");
log.error("Import dynamic page failed: {}", data.getCode(), e);
}
}
});
}
}