Search in sources :

Example 1 with LogOperate

use of com.publiccms.entities.log.LogOperate in project PublicCMS-preview by sanluan.

the class LoginAdminController method changeMyselfPassword.

/**
 * @param oldpassword
 * @param password
 * @param repassword
 * @param request
 * @param session
 * @param response
 * @param model
 * @return view name
 */
@RequestMapping(value = "changePassword", method = RequestMethod.POST)
public String changeMyselfPassword(String oldpassword, String password, String repassword, HttpServletRequest request, HttpSession session, HttpServletResponse response, ModelMap model) {
    SysSite site = getSite(request);
    SysUser user = service.getEntity(getAdminFromSession(session).getId());
    if (ControllerUtils.verifyNotEquals("siteId", site.getId(), user.getSiteId(), model)) {
        return TEMPLATE_ERROR;
    }
    String encodedOldPassword = VerificationUtils.md5Encode(oldpassword);
    if (ControllerUtils.verifyNotEquals("password", user.getPassword(), encodedOldPassword, model)) {
        return TEMPLATE_ERROR;
    } else if (ControllerUtils.verifyNotEmpty("password", password, model) || ControllerUtils.verifyNotEquals("repassword", password, repassword, model)) {
        return TEMPLATE_ERROR;
    } else {
        clearAdminToSession(request.getContextPath(), request.getSession(), response);
        model.addAttribute(MESSAGE, "message.needReLogin");
    }
    service.updatePassword(user.getId(), VerificationUtils.md5Encode(password));
    sysUserTokenService.delete(user.getId());
    logOperateService.save(new LogOperate(site.getId(), user.getId(), LogLoginService.CHANNEL_WEB_MANAGER, "changepassword", RequestUtils.getIpAddress(request), CommonUtils.getDate(), encodedOldPassword));
    return "common/ajaxTimeout";
}
Also used : LogOperate(com.publiccms.entities.log.LogOperate) SysUser(com.publiccms.entities.sys.SysUser) SysSite(com.publiccms.entities.sys.SysSite) RequestMapping(org.springframework.web.bind.annotation.RequestMapping)

Example 2 with LogOperate

use of com.publiccms.entities.log.LogOperate in project PublicCMS-preview by sanluan.

the class CmsCategoryAdminController method move.

/**
 * @param ids
 * @param parentId
 * @param request
 * @param session
 * @param model
 * @return view name
 */
@RequestMapping("move")
public String move(Integer[] ids, Integer parentId, HttpServletRequest request, HttpSession session, ModelMap model) {
    SysSite site = getSite(request);
    CmsCategory parent = service.getEntity(parentId);
    if (CommonUtils.notEmpty(ids) && (null == parent || null != parent && site.getId() == parent.getSiteId())) {
        for (Integer id : ids) {
            move(site, id, parentId);
        }
        logOperateService.save(new LogOperate(site.getId(), getAdminFromSession(session).getId(), LogLoginService.CHANNEL_WEB_MANAGER, "move.category", RequestUtils.getIpAddress(request), CommonUtils.getDate(), new StringBuilder(StringUtils.join(ids, ',')).append(" to ").append(parentId).toString()));
    }
    return TEMPLATE_DONE;
}
Also used : LogOperate(com.publiccms.entities.log.LogOperate) CmsCategory(com.publiccms.entities.cms.CmsCategory) SysSite(com.publiccms.entities.sys.SysSite) RequestMapping(org.springframework.web.bind.annotation.RequestMapping)

Example 3 with LogOperate

use of com.publiccms.entities.log.LogOperate 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)

Example 4 with LogOperate

use of com.publiccms.entities.log.LogOperate in project PublicCMS-preview by sanluan.

the class CmsCategoryAdminController method delete.

/**
 * @param ids
 * @param request
 * @param session
 * @return view name
 */
@RequestMapping("delete")
public String delete(Integer[] ids, HttpServletRequest request, HttpSession session) {
    if (CommonUtils.notEmpty(ids)) {
        SysSite site = getSite(request);
        service.delete(site.getId(), ids);
        contentService.deleteByCategoryIds(site.getId(), ids);
        logOperateService.save(new LogOperate(site.getId(), getAdminFromSession(session).getId(), LogLoginService.CHANNEL_WEB_MANAGER, "delete.category", RequestUtils.getIpAddress(request), CommonUtils.getDate(), StringUtils.join(ids, ',')));
    }
    return TEMPLATE_DONE;
}
Also used : LogOperate(com.publiccms.entities.log.LogOperate) SysSite(com.publiccms.entities.sys.SysSite) RequestMapping(org.springframework.web.bind.annotation.RequestMapping)

Example 5 with LogOperate

use of com.publiccms.entities.log.LogOperate in project PublicCMS-preview by sanluan.

the class CmsContentAdminController method check.

/**
 * @param ids
 * @param refresh
 * @param request
 * @param session
 * @param model
 * @return view name
 */
@RequestMapping("check")
public String check(Long[] ids, Boolean refresh, HttpServletRequest request, HttpSession session, ModelMap model) {
    if (CommonUtils.notEmpty(ids)) {
        SysSite site = getSite(request);
        Long userId = getAdminFromSession(session).getId();
        List<CmsContent> entityList = service.check(site.getId(), userId, ids, refresh);
        Set<Integer> categoryIdSet = new HashSet<>();
        for (CmsContent entity : entityList) {
            if (null != entity && site.getId() == entity.getSiteId()) {
                if (CommonUtils.notEmpty(entity.getParentId())) {
                    publish(new Long[] { entity.getParentId() }, request, session, model);
                }
                publish(new Long[] { entity.getId() }, request, session, model);
                categoryIdSet.add(entity.getCategoryId());
            }
        }
        for (CmsCategory category : categoryService.getEntitys(categoryIdSet.toArray(new Integer[categoryIdSet.size()]))) {
            templateComponent.createCategoryFile(site, category, null, null);
        }
        logOperateService.save(new LogOperate(site.getId(), userId, LogLoginService.CHANNEL_WEB_MANAGER, "check.content", RequestUtils.getIpAddress(request), CommonUtils.getDate(), StringUtils.join(ids, ',')));
    }
    return TEMPLATE_DONE;
}
Also used : CmsContent(com.publiccms.entities.cms.CmsContent) LogOperate(com.publiccms.entities.log.LogOperate) CmsCategory(com.publiccms.entities.cms.CmsCategory) SysSite(com.publiccms.entities.sys.SysSite) HashSet(java.util.HashSet) RequestMapping(org.springframework.web.bind.annotation.RequestMapping)

Aggregations

LogOperate (com.publiccms.entities.log.LogOperate)117 SysSite (com.publiccms.entities.sys.SysSite)117 RequestMapping (org.springframework.web.bind.annotation.RequestMapping)115 SysUser (com.publiccms.entities.sys.SysUser)15 IOException (java.io.IOException)13 CmsContent (com.publiccms.entities.cms.CmsContent)9 File (java.io.File)9 MultipartFile (org.springframework.web.multipart.MultipartFile)8 CmsCategory (com.publiccms.entities.cms.CmsCategory)7 TemplateException (freemarker.template.TemplateException)7 SysDept (com.publiccms.entities.sys.SysDept)6 SysTask (com.publiccms.entities.sys.SysTask)6 CmsPageMetadata (com.publiccms.views.pojo.entities.CmsPageMetadata)5 CmsPlaceMetadata (com.publiccms.views.pojo.entities.CmsPlaceMetadata)5 CmsPlace (com.publiccms.entities.cms.CmsPlace)4 CmsWord (com.publiccms.entities.cms.CmsWord)4 SysDomain (com.publiccms.entities.sys.SysDomain)4 SysRoleUser (com.publiccms.entities.sys.SysRoleUser)4 CmsModel (com.publiccms.views.pojo.entities.CmsModel)4 CmsCategoryType (com.publiccms.entities.cms.CmsCategoryType)3