Search in sources :

Example 1 with CmsCategoryModelParamters

use of com.publiccms.views.pojo.model.CmsCategoryModelParamters in project PublicCMS-preview by sanluan.

the class CmsCategoryAdminController method save.

/**
 * @param entity
 * @param attribute
 * @param categoryParamters
 * @param request
 * @param session
 * @param model
 * @return view name
 */
@RequestMapping("save")
public String save(CmsCategory entity, CmsCategoryAttribute attribute, @ModelAttribute CmsCategoryParamters categoryParamters, HttpServletRequest request, HttpSession session, ModelMap model) {
    SysSite site = getSite(request);
    if (null != entity.getId()) {
        CmsCategory oldEntity = service.getEntity(entity.getId());
        if (null == oldEntity || ControllerUtils.verifyNotEquals("siteId", site.getId(), oldEntity.getSiteId(), model)) {
            return TEMPLATE_ERROR;
        }
        entity = service.update(entity.getId(), entity, ignoreProperties);
        if (null != entity) {
            if (null != oldEntity.getParentId() && oldEntity.getParentId() != entity.getParentId()) {
                service.generateChildIds(site.getId(), oldEntity.getParentId());
                service.generateChildIds(site.getId(), entity.getParentId());
            } else if (null != entity.getParentId() && null == oldEntity.getParentId()) {
                service.generateChildIds(site.getId(), entity.getParentId());
            }
            logOperateService.save(new LogOperate(site.getId(), getAdminFromSession(session).getId(), LogLoginService.CHANNEL_WEB_MANAGER, "update.category", RequestUtils.getIpAddress(request), CommonUtils.getDate(), JsonUtils.getString(entity)));
        }
    } else {
        if (entity.isOnlyUrl()) {
            entity.setUrl(entity.getPath());
        }
        entity.setSiteId(site.getId());
        service.save(entity);
        service.addChildIds(entity.getParentId(), entity.getId());
        logOperateService.save(new LogOperate(site.getId(), getAdminFromSession(session).getId(), LogLoginService.CHANNEL_WEB_MANAGER, "save.category", RequestUtils.getIpAddress(request), CommonUtils.getDate(), JsonUtils.getString(entity)));
    }
    if (null == extendService.getEntity(entity.getExtendId())) {
        entity = service.updateExtendId(entity.getId(), (Integer) extendService.save(new SysExtend("category", entity.getId())));
    }
    Integer[] tagTypeIds = tagTypeService.update(site.getId(), categoryParamters.getTagTypes());
    // 更新保存标签分类
    service.updateTagTypeIds(entity.getId(), arrayToCommaDelimitedString(tagTypeIds));
    List<CmsCategoryModelParamters> categoryModelList = categoryParamters.getCategoryModelList();
    if (CommonUtils.notEmpty(categoryModelList)) {
        for (CmsCategoryModelParamters cmsCategoryModelParamters : categoryModelList) {
            if (null != cmsCategoryModelParamters.getCategoryModel()) {
                cmsCategoryModelParamters.getCategoryModel().getId().setCategoryId(entity.getId());
                if (cmsCategoryModelParamters.isUse()) {
                    categoryModelService.updateCategoryModel(cmsCategoryModelParamters.getCategoryModel());
                } else {
                    categoryModelService.delete(cmsCategoryModelParamters.getCategoryModel().getId());
                }
            }
        }
    }
    // 修改或增加内容扩展字段
    extendFieldService.update(entity.getExtendId(), categoryParamters.getContentExtends());
    CmsCategoryType categoryType = categoryTypeService.getEntity(entity.getTypeId());
    if (null != categoryType && CommonUtils.notEmpty(categoryType.getExtendId())) {
        List<SysExtendField> categoryTypeExtendList = extendFieldService.getList(categoryType.getExtendId());
        Map<String, String> map = ExtendUtils.getSysExtentDataMap(categoryParamters.getExtendDataList(), categoryTypeExtendList);
        attribute.setData(ExtendUtils.getExtendString(map));
    } else {
        attribute.setData(null);
    }
    attributeService.updateAttribute(entity.getId(), attribute);
    try {
        publish(site, entity.getId(), null);
    } catch (IOException | TemplateException e) {
        ControllerUtils.verifyCustom("static", true, model);
        log.error(e.getMessage(), e);
    }
    return TEMPLATE_DONE;
}
Also used : LogOperate(com.publiccms.entities.log.LogOperate) TemplateException(freemarker.template.TemplateException) CmsCategoryType(com.publiccms.entities.cms.CmsCategoryType) StringUtils.arrayToCommaDelimitedString(org.springframework.util.StringUtils.arrayToCommaDelimitedString) IOException(java.io.IOException) CmsCategoryModelParamters(com.publiccms.views.pojo.model.CmsCategoryModelParamters) SysSite(com.publiccms.entities.sys.SysSite) SysExtendField(com.publiccms.entities.sys.SysExtendField) CmsCategory(com.publiccms.entities.cms.CmsCategory) SysExtend(com.publiccms.entities.sys.SysExtend) RequestMapping(org.springframework.web.bind.annotation.RequestMapping)

Aggregations

CmsCategory (com.publiccms.entities.cms.CmsCategory)1 CmsCategoryType (com.publiccms.entities.cms.CmsCategoryType)1 LogOperate (com.publiccms.entities.log.LogOperate)1 SysExtend (com.publiccms.entities.sys.SysExtend)1 SysExtendField (com.publiccms.entities.sys.SysExtendField)1 SysSite (com.publiccms.entities.sys.SysSite)1 CmsCategoryModelParamters (com.publiccms.views.pojo.model.CmsCategoryModelParamters)1 TemplateException (freemarker.template.TemplateException)1 IOException (java.io.IOException)1 StringUtils.arrayToCommaDelimitedString (org.springframework.util.StringUtils.arrayToCommaDelimitedString)1 RequestMapping (org.springframework.web.bind.annotation.RequestMapping)1