生成单页和设置控制器
This commit is contained in:
parent
8fb12e5a48
commit
bf2b1904cb
|
@ -0,0 +1,132 @@
|
|||
package com.zheng.cms.admin.controller.manage;
|
||||
|
||||
import com.baidu.unbiz.fluentvalidator.ComplexResult;
|
||||
import com.baidu.unbiz.fluentvalidator.FluentValidator;
|
||||
import com.baidu.unbiz.fluentvalidator.ResultCollectors;
|
||||
import com.zheng.cms.common.constant.CmsResult;
|
||||
import com.zheng.cms.common.constant.CmsResultConstant;
|
||||
import com.zheng.cms.dao.model.CmsPage;
|
||||
import com.zheng.cms.dao.model.CmsPageExample;
|
||||
import com.zheng.cms.rpc.api.CmsPageService;
|
||||
import com.zheng.common.base.BaseController;
|
||||
import com.zheng.common.validator.LengthValidator;
|
||||
import io.swagger.annotations.Api;
|
||||
import io.swagger.annotations.ApiOperation;
|
||||
import org.apache.commons.lang.StringUtils;
|
||||
import org.apache.shiro.authz.annotation.RequiresPermissions;
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.stereotype.Controller;
|
||||
import org.springframework.ui.ModelMap;
|
||||
import org.springframework.web.bind.annotation.*;
|
||||
|
||||
import java.util.HashMap;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
/**
|
||||
* 单页控制器
|
||||
* Created by shuzheng on 2017/3/18.
|
||||
*/
|
||||
@Controller
|
||||
@Api(value = "单页管理", description = "单页管理")
|
||||
@RequestMapping("/manage/page")
|
||||
public class CmsPageController extends BaseController {
|
||||
|
||||
private static Logger _log = LoggerFactory.getLogger(CmsPageController.class);
|
||||
|
||||
@Autowired
|
||||
private CmsPageService cmsPageService;
|
||||
|
||||
@ApiOperation(value = "评论首页")
|
||||
@RequiresPermissions("cms:page:read")
|
||||
@RequestMapping(value = "/index", method = RequestMethod.GET)
|
||||
public String index() {
|
||||
return "/manage/page/index";
|
||||
}
|
||||
|
||||
@ApiOperation(value = "评论列表")
|
||||
@RequiresPermissions("cms:page:read")
|
||||
@RequestMapping(value = "/list", method = RequestMethod.GET)
|
||||
@ResponseBody
|
||||
public Object list(
|
||||
@RequestParam(required = false, defaultValue = "0", value = "offset") int offset,
|
||||
@RequestParam(required = false, defaultValue = "10", value = "limit") int limit,
|
||||
@RequestParam(required = false, value = "sort") String sort,
|
||||
@RequestParam(required = false, value = "order") String order) {
|
||||
CmsPageExample cmsPageExample = new CmsPageExample();
|
||||
cmsPageExample.setOffset(offset);
|
||||
cmsPageExample.setLimit(limit);
|
||||
if (!StringUtils.isBlank(sort) && !StringUtils.isBlank(order)) {
|
||||
cmsPageExample.setOrderByClause(sort + " " + order);
|
||||
}
|
||||
List<CmsPage> rows = cmsPageService.selectByExample(cmsPageExample);
|
||||
long total = cmsPageService.countByExample(cmsPageExample);
|
||||
Map<String, Object> result = new HashMap<>();
|
||||
result.put("rows", rows);
|
||||
result.put("total", total);
|
||||
return result;
|
||||
}
|
||||
|
||||
@ApiOperation(value = "新增单页")
|
||||
@RequiresPermissions("cms:page:create")
|
||||
@RequestMapping(value = "/create", method = RequestMethod.GET)
|
||||
public String create() {
|
||||
return "/manage/page/create";
|
||||
}
|
||||
|
||||
@ApiOperation(value = "新增单页")
|
||||
@RequiresPermissions("cms:page:create")
|
||||
@RequestMapping(value = "/create", method = RequestMethod.POST)
|
||||
@ResponseBody
|
||||
public Object create(CmsPage cmsPage) {
|
||||
ComplexResult result = FluentValidator.checkAll()
|
||||
.on(cmsPage.getTitle(), new LengthValidator(1, 20, "标题"))
|
||||
.doValidate()
|
||||
.result(ResultCollectors.toComplex());
|
||||
if (!result.isSuccess()) {
|
||||
return new CmsResult(CmsResultConstant.INVALID_LENGTH, result.getErrors());
|
||||
}
|
||||
long time = System.currentTimeMillis();
|
||||
cmsPage.setOrders(time);
|
||||
int count = cmsPageService.insertSelective(cmsPage);
|
||||
return new CmsResult(CmsResultConstant.SUCCESS, count);
|
||||
}
|
||||
|
||||
@ApiOperation(value = "删除单页")
|
||||
@RequiresPermissions("cms:page:delete")
|
||||
@RequestMapping(value = "/delete/{ids}",method = RequestMethod.GET)
|
||||
@ResponseBody
|
||||
public Object delete(@PathVariable("ids") String ids) {
|
||||
int count = cmsPageService.deleteByPrimaryKeys(ids);
|
||||
return new CmsResult(CmsResultConstant.SUCCESS, count);
|
||||
}
|
||||
|
||||
@ApiOperation(value = "修改单页")
|
||||
@RequiresPermissions("cms:page:update")
|
||||
@RequestMapping(value = "/update/{id}", method = RequestMethod.GET)
|
||||
public String update(@PathVariable("id") int id, ModelMap modelMap) {
|
||||
CmsPage page = cmsPageService.selectByPrimaryKey(id);
|
||||
modelMap.put("page", page);
|
||||
return "/manage/page/update";
|
||||
}
|
||||
|
||||
@ApiOperation(value = "修改单页")
|
||||
@RequiresPermissions("cms:page:update")
|
||||
@RequestMapping(value = "/update/{id}", method = RequestMethod.POST)
|
||||
@ResponseBody
|
||||
public Object update(@PathVariable("id") int id, CmsPage cmsPage) {
|
||||
ComplexResult result = FluentValidator.checkAll()
|
||||
.on(cmsPage.getTitle(), new LengthValidator(1, 20, "标题"))
|
||||
.doValidate()
|
||||
.result(ResultCollectors.toComplex());
|
||||
if (!result.isSuccess()) {
|
||||
return new CmsResult(CmsResultConstant.INVALID_LENGTH, result.getErrors());
|
||||
}
|
||||
cmsPage.setPageId(id);
|
||||
int count = cmsPageService.updateByPrimaryKeySelective(cmsPage);
|
||||
return new CmsResult(CmsResultConstant.SUCCESS, count);
|
||||
}
|
||||
|
||||
}
|
|
@ -0,0 +1,130 @@
|
|||
package com.zheng.cms.admin.controller.manage;
|
||||
|
||||
import com.baidu.unbiz.fluentvalidator.ComplexResult;
|
||||
import com.baidu.unbiz.fluentvalidator.FluentValidator;
|
||||
import com.baidu.unbiz.fluentvalidator.ResultCollectors;
|
||||
import com.zheng.cms.common.constant.CmsResult;
|
||||
import com.zheng.cms.common.constant.CmsResultConstant;
|
||||
import com.zheng.cms.dao.model.CmsSetting;
|
||||
import com.zheng.cms.dao.model.CmsSettingExample;
|
||||
import com.zheng.cms.rpc.api.CmsSettingService;
|
||||
import com.zheng.common.base.BaseController;
|
||||
import com.zheng.common.validator.LengthValidator;
|
||||
import io.swagger.annotations.Api;
|
||||
import io.swagger.annotations.ApiOperation;
|
||||
import org.apache.commons.lang.StringUtils;
|
||||
import org.apache.shiro.authz.annotation.RequiresPermissions;
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.stereotype.Controller;
|
||||
import org.springframework.ui.ModelMap;
|
||||
import org.springframework.web.bind.annotation.*;
|
||||
|
||||
import java.util.HashMap;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
/**
|
||||
* 设置控制器
|
||||
* Created by shuzheng on 2017/3/18.
|
||||
*/
|
||||
@Controller
|
||||
@Api(value = "设置管理", description = "设置管理")
|
||||
@RequestMapping("/manage/setting")
|
||||
public class CmsSettingController extends BaseController {
|
||||
|
||||
private static Logger _log = LoggerFactory.getLogger(CmsSettingController.class);
|
||||
|
||||
@Autowired
|
||||
private CmsSettingService cmsSettingService;
|
||||
|
||||
@ApiOperation(value = "评论首页")
|
||||
@RequiresPermissions("cms:setting:read")
|
||||
@RequestMapping(value = "/index", method = RequestMethod.GET)
|
||||
public String index() {
|
||||
return "/manage/setting/index";
|
||||
}
|
||||
|
||||
@ApiOperation(value = "评论列表")
|
||||
@RequiresPermissions("cms:setting:read")
|
||||
@RequestMapping(value = "/list", method = RequestMethod.GET)
|
||||
@ResponseBody
|
||||
public Object list(
|
||||
@RequestParam(required = false, defaultValue = "0", value = "offset") int offset,
|
||||
@RequestParam(required = false, defaultValue = "10", value = "limit") int limit,
|
||||
@RequestParam(required = false, value = "sort") String sort,
|
||||
@RequestParam(required = false, value = "order") String order) {
|
||||
CmsSettingExample cmsSettingExample = new CmsSettingExample();
|
||||
cmsSettingExample.setOffset(offset);
|
||||
cmsSettingExample.setLimit(limit);
|
||||
if (!StringUtils.isBlank(sort) && !StringUtils.isBlank(order)) {
|
||||
cmsSettingExample.setOrderByClause(sort + " " + order);
|
||||
}
|
||||
List<CmsSetting> rows = cmsSettingService.selectByExample(cmsSettingExample);
|
||||
long total = cmsSettingService.countByExample(cmsSettingExample);
|
||||
Map<String, Object> result = new HashMap<>();
|
||||
result.put("rows", rows);
|
||||
result.put("total", total);
|
||||
return result;
|
||||
}
|
||||
|
||||
@ApiOperation(value = "新增设置")
|
||||
@RequiresPermissions("cms:setting:create")
|
||||
@RequestMapping(value = "/create", method = RequestMethod.GET)
|
||||
public String create() {
|
||||
return "/manage/setting/create";
|
||||
}
|
||||
|
||||
@ApiOperation(value = "新增设置")
|
||||
@RequiresPermissions("cms:setting:create")
|
||||
@RequestMapping(value = "/create", method = RequestMethod.POST)
|
||||
@ResponseBody
|
||||
public Object create(CmsSetting cmsSetting) {
|
||||
ComplexResult result = FluentValidator.checkAll()
|
||||
.on(cmsSetting.getSettingKey(), new LengthValidator(1, 20, "键"))
|
||||
.doValidate()
|
||||
.result(ResultCollectors.toComplex());
|
||||
if (!result.isSuccess()) {
|
||||
return new CmsResult(CmsResultConstant.INVALID_LENGTH, result.getErrors());
|
||||
}
|
||||
int count = cmsSettingService.insertSelective(cmsSetting);
|
||||
return new CmsResult(CmsResultConstant.SUCCESS, count);
|
||||
}
|
||||
|
||||
@ApiOperation(value = "删除设置")
|
||||
@RequiresPermissions("cms:setting:delete")
|
||||
@RequestMapping(value = "/delete/{ids}",method = RequestMethod.GET)
|
||||
@ResponseBody
|
||||
public Object delete(@PathVariable("ids") String ids) {
|
||||
int count = cmsSettingService.deleteByPrimaryKeys(ids);
|
||||
return new CmsResult(CmsResultConstant.SUCCESS, count);
|
||||
}
|
||||
|
||||
@ApiOperation(value = "修改设置")
|
||||
@RequiresPermissions("cms:setting:update")
|
||||
@RequestMapping(value = "/update/{id}", method = RequestMethod.GET)
|
||||
public String update(@PathVariable("id") int id, ModelMap modelMap) {
|
||||
CmsSetting setting = cmsSettingService.selectByPrimaryKey(id);
|
||||
modelMap.put("setting", setting);
|
||||
return "/manage/setting/update";
|
||||
}
|
||||
|
||||
@ApiOperation(value = "修改设置")
|
||||
@RequiresPermissions("cms:setting:update")
|
||||
@RequestMapping(value = "/update/{id}", method = RequestMethod.POST)
|
||||
@ResponseBody
|
||||
public Object update(@PathVariable("id") int id, CmsSetting cmsSetting) {
|
||||
ComplexResult result = FluentValidator.checkAll()
|
||||
.on(cmsSetting.getSettingKey(), new LengthValidator(1, 20, "键"))
|
||||
.doValidate()
|
||||
.result(ResultCollectors.toComplex());
|
||||
if (!result.isSuccess()) {
|
||||
return new CmsResult(CmsResultConstant.INVALID_LENGTH, result.getErrors());
|
||||
}
|
||||
cmsSetting.setSettingId(id);
|
||||
int count = cmsSettingService.updateByPrimaryKeySelective(cmsSetting);
|
||||
return new CmsResult(CmsResultConstant.SUCCESS, count);
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in New Issue