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";
}
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;
}
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;
}
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;
}
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;
}
Aggregations