qa-prevention-gwj/src/main/java/com/zcloud/controller/system/UeditorController.java

74 lines
2.0 KiB
Java
Raw Normal View History

2024-02-06 11:02:25 +08:00
package com.zcloud.controller.system;
import java.util.HashMap;
import java.util.Map;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;
import com.zcloud.controller.base.BaseController;
import com.zcloud.entity.PageData;
import com.zcloud.entity.system.User;
import com.zcloud.service.system.UeditorService;
import com.zcloud.util.Const;
import com.zcloud.util.Jurisdiction;
import org.apache.shiro.session.Session;
/**
*
* luoxiaobao
* www.qdkjchina.com
*/
@Controller
@RequestMapping("/ueditor")
public class UeditorController extends BaseController {
@Autowired
private UeditorService ueditorService;
/**or
* @param
* @throws Exception
*/
@RequestMapping(value="/edit")
@ResponseBody
public Object edit() throws Exception{
Map<String,Object> map = new HashMap<String,Object>();
String errInfo = "success";
PageData pd = new PageData();
pd = this.getPageData();
Session session = Jurisdiction.getSession();
User user = (User)session.getAttribute(Const.SESSION_USER);
pd.put("UEDITOR_ID", this.get32UUID()); //主键
pd.put("USER_ID", user.getUSER_ID()); //用户ID
pd.put("USERNAME", user.getUSERNAME()); //用户名
ueditorService.edit(pd);
map.put("result", errInfo); //返回结果
return map;
}
/**
* @param
* @throws Exception
*/
@RequestMapping(value="/getContent")
@ResponseBody
public Object getContent()throws Exception{
Map<String,Object> map = new HashMap<String,Object>();
String errInfo = "success";
PageData pd = new PageData();
pd = this.getPageData();
pd.put("USERNAME", Jurisdiction.getUsername()); //用户名
pd = ueditorService.findById(pd); //根据用户名和类型读取
if(null == pd) errInfo = "fail";
map.put("pd", pd);
map.put("result", errInfo); //返回结果
return map;
}
}